Føj et punkt til menuen Opret ny

    From KDE UserBase Wiki
    Revision as of 05:11, 20 October 2014 by Claus chr (talk | contribs) (Created page with "* '''Comment''' er etiketten for navnet på en ny fil af denne type. Når du vælger dit tilpassede punkt i menuen <menuchoice>Opret ny </menuchoice> dukker der en dialog op, ...")
    Vejledning som beskriver, hvordan man føjer et punkt til menuen Opret ny i en filbrowser som Dolphin eller Konqueror

    Punkterne i menuen Opret ny kaldes skabeloner. De er enten defineret for hele systemet i /usr/share/templates eller for den enkelte bruger i ~/.kde4/share/templates. I denne vejledning vil vi føje en ny skabelon til ~/.kde4/share/templates.

    Definition af metadata

    Opret mappen templates i ~/.kde4/share hvis den ikke allerede eksisterer og gå til denne mappe.

    I denne mappe oprettes en ny fil med filendelsen .desktop; for eksempel tilpasset-fil.desktop.

    Åbn denne fil og kopiér følgende indhold til den:

    [Desktop Entry]
    Name=
    Comment=
    Type=Link
    URL=
    Icon=
    

    Udfyld disse felter således:

    • Name er den tekst, som optræder i menuen Opret ny</menuchoide>.
      [[Image:CustomCreateNewMenuEntry.png]]
      "Custom Entry" er værdien hørende til feltet '''Name'''.
    • '''Comment''' er etiketten for navnet på en ny fil af denne type. Når du vælger dit tilpassede punkt i menuen <menuchoice>Opret ny dukker der en dialog op, hvor du skal skrive navnet på din nye fil og denne tekst er etiketten til det felt, hvor du skriver det nye navn.
      "New custom entry:" er værdien hørende til feltet Comment.
    • URL is the path to a file containing the initial content that new files of this type have. These files with the initial content are usually located within the hidden .source folder of the templates folder, so use a relative path that starts with .source/, such as .source/custom-entry.txt.
    • Icon is the code of the icon that appears in the Create New menu for your custom entry. The code is the filename of the icon to use. You can browse MIME type icon files at /usr/share/icons/<theme>/<size>/mimetypes/. For example, to use /usr/share/icons/<theme>/<size>/mimetypes/application-vnd.oasis.opendocument.text.png, fill Icon with "application-vnd.oasis.opendocument.text".

    This is an example of a filled .desktop file:

    [Desktop Entry]
    Name=Custom Entry
    Comment=New custom entry:
    Type=Link
    URL=.source/custom-entry.txt
    Icon=application-vnd.oasis.opendocument.text
    

    Translating the Name and Comment

    The Name and Comment fields can be translated to any language. To provide a translation, include a new field in your .desktop file with the form "Field[language code]=Value" for each language that you want to support. For example:

    [Desktop Entry]
    Name=Custom Entry
    Name[ca]=Entrada personalitzada
    Name[gl]=Entrada personalizada
    

    Defining the content

    Create a .source folder in ~/.kde4/share/templates if such a folder does not exist already, and enter the hidden .source folder.

    Create a new file with the same filename that you defined in the URL field of the metadata of your new entry, and fill the file with the default content that you want for new files created with your new entry.