~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/programs/notepad/Si.rc

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * Notepad (Slovenian resources)
  3  *
  4  * Copyright 2002, 2003, 2008 Rok Mandeljc
  5  *
  6  * This library is free software; you can redistribute it and/or
  7  * modify it under the terms of the GNU Lesser General Public
  8  * License as published by the Free Software Foundation; either
  9  * version 2.1 of the License, or (at your option) any later version.
 10  *
 11  * This library is distributed in the hope that it will be useful,
 12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 14  * Lesser General Public License for more details.
 15  *
 16  * You should have received a copy of the GNU Lesser General Public
 17  * License along with this library; if not, write to the Free Software
 18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 19  */
 20 
 21 #include "notepad_res.h"
 22 
 23 #pragma code_page(65001)
 24 
 25 LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
 26 
 27 MAIN_MENU MENU
 28 {
 29  POPUP "&Datoteka" {
 30   MENUITEM "&Nova\tCtrl+N",      CMD_NEW
 31   MENUITEM "&Odpri ...\tCtrl+O",  CMD_OPEN
 32   MENUITEM "&Shrani\tCtrl+S",     CMD_SAVE
 33   MENUITEM "Shrani &kot ...",       CMD_SAVE_AS
 34   MENUITEM SEPARATOR
 35   MENUITEM "Na&tisni ...\tCtrl+P",            CMD_PRINT
 36   MENUITEM "P&riprava strani ...",    CMD_PAGE_SETUP
 37   MENUITEM "&Tiskalnik ...", CMD_PRINTER_SETUP
 38   MENUITEM SEPARATOR
 39   MENUITEM "Iz&hod",             CMD_EXIT
 40  }
 41 POPUP "&Urejanje" {
 42   MENUITEM "&Razveljavi\tCtrl+Z",     CMD_UNDO
 43   MENUITEM SEPARATOR
 44   MENUITEM "&Izreži\tCtrl+X",      CMD_CUT
 45   MENUITEM "&Kopiraj\tCtrl+C",     CMD_COPY
 46   MENUITEM "&Prilepi\tCtrl+V",    CMD_PASTE
 47   MENUITEM "Iznri&ši\tDel",      CMD_DELETE
 48   MENUITEM SEPARATOR
 49   MENUITEM "Izberi &vse\tCtrl+A",       CMD_SELECT_ALL
 50   MENUITEM "&Datum/čas\tF5",    CMD_TIME_DATE
 51   MENUITEM SEPARATOR
 52   MENUITEM "Pre&lom dolgih vrstic",  CMD_WRAP
 53   MENUITEM "Pi&sava ...",          CMD_FONT
 54  }
 55 POPUP "&Iskanje" {
 56   MENUITEM "&Najdi ...\tCtrl+F",   CMD_SEARCH
 57   MENUITEM "Najdi na&slednje\tF3",  CMD_SEARCH_NEXT
 58   MENUITEM "&Zamenjaj ...\tCtrl+H", CMD_REPLACE
 59  }
 60 POPUP "&Pomoč" {
 61   MENUITEM "&Teme pomoči",         CMD_HELP_CONTENTS
 62   MENUITEM "&Iskanje ...",        CMD_HELP_SEARCH
 63   MENUITEM "&O pomoči",     CMD_HELP_ON_HELP
 64   MENUITEM SEPARATOR
 65   MENUITEM "&O Beležnici", CMD_HELP_ABOUT_NOTEPAD
 66  }
 67 }
 68 
 69 /* Dialog `Page setup' */
 70 
 71 DIALOG_PAGESETUP DIALOG 0, 0, 225, 95
 72 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
 73 FONT 8, "MS Shell Dlg"
 74 CAPTION "Priprava strani"
 75 {
 76 LTEXT    "&Glava:",  0x140,  10, 07, 40, 15
 77 EDITTEXT IDC_PAGESETUP_HEADERVALUE,   60, 05,110, 12, WS_BORDER | WS_TABSTOP
 78 LTEXT    "&Noga:",  0x142,   10, 24, 40, 15
 79 EDITTEXT IDC_PAGESETUP_FOOTERVALUE,   60, 22,110, 12, WS_BORDER | WS_TABSTOP
 80 
 81 GROUPBOX "&Robovi (v milimeterih):",      0x144,     10, 43,160, 45
 82 LTEXT    "&Levo:",        0x145,   20, 55, 30, 10, WS_CHILD
 83 EDITTEXT IDC_PAGESETUP_LEFTVALUE,     50, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
 84 LTEXT    "&Zgoraj:",         0x148,    20, 73, 30, 10, WS_CHILD
 85 EDITTEXT IDC_PAGESETUP_TOPVALUE,      50, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
 86 LTEXT    "&Desno:",       0x14B, 100, 55, 30, 10, WS_CHILD
 87 EDITTEXT IDC_PAGESETUP_RIGHTVALUE,   130, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
 88 LTEXT    "&Spodaj:",      0x14E,100, 73, 30, 10, WS_CHILD
 89 EDITTEXT IDC_PAGESETUP_BOTTOMVALUE,  130, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
 90 
 91 DEFPUSHBUTTON "V redu",         IDOK,                   180,  3, 40, 15, WS_TABSTOP
 92 PUSHBUTTON    "Prekliči",     IDCANCEL,               180, 21, 40, 15, WS_TABSTOP
 93 PUSHBUTTON    "&Pomoč",       IDHELP,                180, 39, 40, 15, WS_TABSTOP
 94 }
 95 
 96 STRINGTABLE DISCARDABLE
 97 {
 98 STRING_PAGESETUP_HEADERVALUE,   "&f"
 99 STRING_PAGESETUP_FOOTERVALUE,   "Stran &p"
100 
101 STRING_NOTEPAD,                                 "Beležnica"
102 STRING_ERROR,                                   "NAPAKA"
103 STRING_WARNING,                                 "OPOZORILO"
104 STRING_INFO,                                    "Informacija"
105 
106 STRING_UNTITLED,                                "Neimenovana"
107 
108 STRING_ALL_FILES,                               "Vse datoteke (*.*)"
109 STRING_TEXT_FILES_TXT,                  "Datoteke z besedilom (*.txt)"
110 
111 STRING_TOOLARGE,                                "Datotka '%s' je prevelika za Beležnico.\n \
112 Uporabite drug urejevalnik."
113 STRING_NOTEXT,                                  "Niste vnesli besedila. \
114 \nVnesite besedilo in poskusite znova."
115 STRING_DOESNOTEXIST,                            "Datoteka '%s'\nne obstaja\n\n \
116 Ali jo želite ustvariti?"
117 STRING_NOTSAVED,                                "Datoteka '%s'\nje bila spremenjena\n\n \
118 Ali želite shraniti spremembe?"
119 STRING_NOTFOUND,                                        "Niza '%s' ni mogoče najti."
120 STRING_OUT_OF_MEMORY,                   "Za dokončanje operacije je na voljo premalo \
121 pomnilnika.\nZaprite enega ali več programov in poskusite znova."
122 
123 }

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.