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

Wine Cross Reference
wine/programs/notepad/Fi.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 (Finnish resources)
  3  *
  4  *  Copyright 1999 by Jukka Iivonen <iivonen@iki.fi>
  5  *  Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
  6  *
  7  * This library is free software; you can redistribute it and/or
  8  * modify it under the terms of the GNU Lesser General Public
  9  * License as published by the Free Software Foundation; either
 10  * version 2.1 of the License, or (at your option) any later version.
 11  *
 12  * This library is distributed in the hope that it will be useful,
 13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 15  * Lesser General Public License for more details.
 16  *
 17  * You should have received a copy of the GNU Lesser General Public
 18  * License along with this library; if not, write to the Free Software
 19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 20  */
 21 
 22 #include "notepad_res.h"
 23 
 24 LANGUAGE LANG_FINNISH, SUBLANG_DEFAULT
 25 
 26 MAIN_MENU MENU
 27 {
 28  POPUP "&Tiedosto" {
 29   MENUITEM "&Uusi\tCtrl+N",             CMD_NEW
 30   MENUITEM "&Avaa...\tCtrl+O",          CMD_OPEN
 31   MENUITEM "Ta&lleta\tCtrl+S",          CMD_SAVE
 32   MENUITEM "Talleta &nimellä...",       CMD_SAVE_AS
 33   MENUITEM SEPARATOR
 34   MENUITEM "T&ulosta...\tCtrl+P",               CMD_PRINT
 35   MENUITEM "&Sivun asetukset...",       CMD_PAGE_SETUP
 36   MENUITEM "&Kirjoittimen asetukset...",        CMD_PRINTER_SETUP
 37   MENUITEM SEPARATOR
 38   MENUITEM "&Poistu",           CMD_EXIT
 39  }
 40 POPUP "&Muokkaa" {
 41   MENUITEM "&Palauta\tCtrl+Z",  CMD_UNDO
 42   MENUITEM SEPARATOR
 43   MENUITEM "&Leikkaa\tCtrl+X",  CMD_CUT
 44   MENUITEM "&Kopioi\tCtrl+C",   CMD_COPY
 45   MENUITEM "L&iitä\tCtrl+V",    CMD_PASTE
 46   MENUITEM "P&oista\tDel",      CMD_DELETE
 47   MENUITEM SEPARATOR
 48   MENUITEM "&Valitse kaikki",   CMD_SELECT_ALL
 49   MENUITEM "&Aika/Päivämäärä\tF5",      CMD_TIME_DATE
 50   MENUITEM SEPARATOR
 51   MENUITEM "Ka&tkaise pitkä rivi",      CMD_WRAP
 52   MENUITEM "&Font...",          CMD_FONT
 53  }
 54 POPUP "&Etsi" {
 55   MENUITEM "Etsi...",           CMD_SEARCH
 56   MENUITEM "Etsi &seuraava\tF3",        CMD_SEARCH_NEXT
 57   MENUITEM "&Korvaa...\tCtrl+H", CMD_REPLACE
 58  }
 59 POPUP "&Apua" {
 60   MENUITEM "&Sisältö",          CMD_HELP_CONTENTS
 61   MENUITEM "&Etsi...",          CMD_HELP_SEARCH
 62   MENUITEM "Apua &Opastuksesta",        CMD_HELP_ON_HELP
 63   MENUITEM SEPARATOR
 64   MENUITEM "&About Notepad", CMD_HELP_ABOUT_NOTEPAD
 65  }
 66 }
 67 
 68 /* Dialog `Page setup' */
 69 
 70 DIALOG_PAGESETUP DIALOG 0, 0, 225, 95
 71 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
 72 FONT 8, "MS Shell Dlg"
 73 CAPTION "Sivun asetukset"
 74 {
 75 LTEXT    "&Yläotsikko:",  0x140,   10, 07, 40, 15
 76 EDITTEXT IDC_PAGESETUP_HEADERVALUE,   60, 05,110, 12, WS_BORDER | WS_TABSTOP
 77 LTEXT    "Alao&tsikko:",  0x142,   10, 24, 40, 15
 78 EDITTEXT IDC_PAGESETUP_FOOTERVALUE,   60, 22,110, 12, WS_BORDER | WS_TABSTOP
 79 
 80 GROUPBOX "&Marginaali:",      0x144,     10, 43,160, 45
 81 LTEXT    "&Vasen:",        0x145,   20, 55, 30, 10, WS_CHILD
 82 EDITTEXT IDC_PAGESETUP_LEFTVALUE,     50, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
 83 LTEXT    "Y&lä:",         0x148,    20, 73, 30, 10, WS_CHILD
 84 EDITTEXT IDC_PAGESETUP_TOPVALUE,      50, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
 85 LTEXT    "&Oikea:",       0x14B, 100, 55, 30, 10, WS_CHILD
 86 EDITTEXT IDC_PAGESETUP_RIGHTVALUE,   130, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
 87 LTEXT    "&Ala:",      0x14E,100, 73, 30, 10, WS_CHILD
 88 EDITTEXT IDC_PAGESETUP_BOTTOMVALUE,  130, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
 89 
 90 DEFPUSHBUTTON "OK",         IDOK,                   180,  3, 40, 15, WS_TABSTOP
 91 PUSHBUTTON    "Peruuta",     IDCANCEL,               180, 21, 40, 15, WS_TABSTOP
 92 PUSHBUTTON    "&Apua",       IDHELP,                180, 39, 40, 15, WS_TABSTOP
 93 }
 94 
 95 STRINGTABLE DISCARDABLE
 96 {
 97 STRING_PAGESETUP_HEADERVALUE,   "&f"
 98 STRING_PAGESETUP_FOOTERVALUE,   "Sivu &p"
 99 
100 STRING_NOTEPAD,                                 "Notepad"
101 STRING_ERROR,                                   "VIRHE"
102 STRING_WARNING,                                 "VAROITUS"
103 STRING_INFO,                                    "Tiedoitus"
104 
105 STRING_UNTITLED,                                "(otsikoimaton)"
106 
107 STRING_ALL_FILES,                               "Kaikki tiedostot (*.*)"
108 STRING_TEXT_FILES_TXT,                  "Teksti tiedostot (*.txt)"
109 
110 STRING_TOOLARGE,                                "Tiedosto '%s' on liian suuri.\n \
111 Please use a different editor."
112 STRING_NOTEXT,                                  "Et syöttänyt lainkaan tekstiä. \
113 \nKirjoita jotain ja yritä uudelleen"
114 STRING_DOESNOTEXIST,                            "File '%s'\ndoes not exist\n\n \
115 Do you want to create a new file ?"
116 STRING_NOTSAVED,                                "File '%s'\nhas been modified\n\n \
117 Would you like to save the changes ?"
118 STRING_NOTFOUND,                                        "'%s' ei löydy."
119 STRING_OUT_OF_MEMORY,                   "Muistia ei ole riittävästi tämän \
120 \ntehtävän tekemiseksi. Sulje jokin sovellus vapauttaaksesi\n \
121 muistia."
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.