Si.rc 6.18 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * WineFile
 * Slovenian Language Support
 *
 * Copyright 2003 Rok Mandeljc <rok.mandeljc@gimb.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT

/* Menu */

IDM_WINEFILE MENU FIXED IMPURE
{
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    POPUP "&File"  {
        MENUITEM "&Open\tEnter",                ID_ACTIVATE
        MENUITEM "&Move...\tF7",                ID_FILE_MOVE
        MENUITEM "&Copy...\tF8",                ID_FILE_COPY
        MENUITEM "&In Clipboard...\tF9",        118
        MENUITEM "&Delete\tDel",                ID_FILE_DELETE
        MENUITEM "Re&name...",                  109
        MENUITEM "Propert&ies...\tAlt+Enter",   ID_EDIT_PROPERTIES
        MENUITEM SEPARATOR
        MENUITEM "C&ompress...",                119
        MENUITEM "Dec&ompress...",              120
        MENUITEM SEPARATOR
        MENUITEM "&Run...",                     ID_EXECUTE
        MENUITEM "&Print...",                   102
        MENUITEM "Associate...",                103
        MENUITEM SEPARATOR
        MENUITEM "Cr&eate Directory...",        111
        MENUITEM "Searc&h...",                  104
        MENUITEM "&Select Files...",            116
        MENUITEM SEPARATOR
48
#ifndef _NO_EXTENSIONS
49
        MENUITEM "E&xit\tAlt+X",                ID_FILE_EXIT
50
#else
51
        MENUITEM "E&xit",                       ID_FILE_EXIT
52
#endif
53
    }
54

55 56 57 58 59
    POPUP "&Disk"  {
        MENUITEM "&Copy Disk...",               201
        MENUITEM "&Label Disk...",              202
        MENUITEM SEPARATOR
        MENUITEM "&Format Disk...",             ID_FORMAT_DISK
60
#ifdef _WIN95
61
        MENUITEM "&Make System Disk...", -1 /*TODO*/
62
#endif
63 64 65 66 67 68 69 70 71
        MENUITEM SEPARATOR
        MENUITEM "Connect &Network Drive",      ID_CONNECT_NETWORK_DRIVE
        MENUITEM "&Disconnect Network Drive",   ID_DISCONNECT_NETWORK_DRIVE
        MENUITEM SEPARATOR
        MENUITEM "Share as...",                 254
        MENUITEM "&Remove Share...",            255
        MENUITEM SEPARATOR
        MENUITEM "&Select Drive...",            251
    }
72

73 74 75 76 77 78 79 80
    POPUP "&Directories"  {
        MENUITEM "&Next Level\t+",              301
        MENUITEM "Expand &Tree\t*",             302
        MENUITEM "Expand &all\tStrg+*",         303
        MENUITEM "Collapse &Tree\t-",           304
        MENUITEM SEPARATOR
        MENUITEM "&Mark Childs",                505
    }
81

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
    POPUP "&View"  {
        MENUITEM "T&ree and Directory",         413
        MENUITEM "Tr&ee Only",                  411
        MENUITEM "Directory &Only",             412
        MENUITEM SEPARATOR
        MENUITEM "Sp&lit",                      ID_VIEW_SPLIT
        MENUITEM SEPARATOR
        MENUITEM "&Name",                       ID_VIEW_NAME
        MENUITEM "&All File Details",           ID_VIEW_ALL_ATTRIBUTES, CHECKED
        MENUITEM "&Partial Details...",         ID_VIEW_SELECTED_ATTRIBUTES
        MENUITEM SEPARATOR
        MENUITEM "&Sort by Name",               ID_VIEW_SORT_NAME
        MENUITEM "Sort &by Type",               ID_VIEW_SORT_TYPE
        MENUITEM "Sort by Si&ze",               ID_VIEW_SORT_SIZE
        MENUITEM "Sort by &Date",               ID_VIEW_SORT_DATE
        MENUITEM SEPARATOR
        MENUITEM "Filter by &...",              ID_VIEW_FILTER
    }
100

101 102 103 104 105 106 107 108
    POPUP "&Options"  {
        MENUITEM "&Confirmation...",            501
        MENUITEM "&Font...",                    ID_SELECT_FONT
        MENUITEM "Customize Tool&bar...",       512
        MENUITEM SEPARATOR
        MENUITEM "&Toolbar",                    ID_VIEW_TOOL_BAR, CHECKED
        MENUITEM "&Drivebar",                   ID_VIEW_DRIVE_BAR, CHECKED
        MENUITEM "&Status Bar",                 ID_VIEW_STATUSBAR, CHECKED
109
#ifndef _NO_EXTENSIONS
110
        MENUITEM "F&ull Screen\tCtrl+Shift+S",  ID_VIEW_FULLSCREEN
111
#endif
112 113 114 115
        MENUITEM SEPARATOR
        MENUITEM "&Minize on run",              504
        MENUITEM "&Save settings on exit",      511
    }
116 117


118 119 120 121 122
    POPUP "&Security"  {
        MENUITEM "&Access...",                  605
        MENUITEM "&Logging...",                 606
        MENUITEM "&Owner...",                   607
    }
123

124 125 126 127 128
    POPUP "&Window"  {
        MENUITEM "New &Window",                 ID_WINDOW_NEW
        MENUITEM "Cascading\tCtrl+F5",          ID_WINDOW_CASCADE
        MENUITEM "Tile &Horizontally",          ID_WINDOW_TILE_HORZ
        MENUITEM "Tile &Vertically\tCtrl+F4",   ID_WINDOW_TILE_VERT
129
#ifndef _NO_EXTENSIONS
130
        MENUITEM "Arrange Automatically",       ID_WINDOW_AUTOSORT
131
#endif
132 133 134
        MENUITEM "Arrange &Symbols",            ID_WINDOW_ARRANGE
        MENUITEM "&Refresh\tF5",                ID_REFRESH
    }
135

136 137 138 139 140 141 142 143 144 145
    POPUP "&?"  {
        MENUITEM "&Help Topics\tF1",            ID_HELP
        MENUITEM "Help &Search...\tF1",         ID_HELP
        MENUITEM "&Using Help\tF1",             ID_HELP_USING
        MENUITEM SEPARATOR
        MENUITEM "&Info about Winefile...",     ID_ABOUT
#ifdef __WINE__
        MENUITEM "Info about &Wine...",         ID_ABOUT_WINE
#endif
    }
146 147 148 149 150 151 152 153
}


IDD_EXECUTE DIALOG FIXED IMPURE 15, 13, 210, 63
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Execute"
FONT 8, "MS Shell Dlg"
{
154 155 156 157 158 159 160
    CONTROL         "", 101, "Static", SS_SIMPLE|SS_NOPREFIX, 3, 6, 162, 10
    CONTROL         "&Command:", -1, "Static", SS_LEFTNOWORDWRAP|WS_GROUP, 3, 18, 60, 10
    EDITTEXT        201, 3, 29, 134, 12, ES_AUTOHSCROLL
    CONTROL         "As &Symbol", 214, "Button", BS_AUTOCHECKBOX|WS_TABSTOP,3, 45, 71, 12
    DEFPUSHBUTTON   "OK", 1, 158, 6, 47, 14
    PUSHBUTTON      "Cancel", 2, 158, 23, 47, 14
    PUSHBUTTON      "&Help", 254, 158, 43, 47, 14
161
}