mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 07:53:07 +00:00
Update write and winfile to wine 1.0
This gives us new Translations for write. (Norway, Netherlands, Russia, Slovak) and a updated Danish one for winfile. svn path=/trunk/; revision=34089
This commit is contained in:
parent
241449fc0e
commit
88c5a596a1
13 changed files with 218 additions and 111 deletions
|
@ -1,5 +1,6 @@
|
||||||
/* TRANSLATOR : Mário Kaèmár /Mario Kacmar/ aka Kario (kario@szm.sk)
|
/* TRANSLATOR : Mário Kaèmár /Mario Kacmar/ aka Kario (kario@szm.sk)
|
||||||
* DATE OF TR: 02-02-2008
|
* DATE OF TR.: 02-02-2008
|
||||||
|
* LAST CHANGE: 21-06-2008
|
||||||
* ______________________________________________
|
* ______________________________________________
|
||||||
* NOTE: this file is not fully translated
|
* NOTE: this file is not fully translated
|
||||||
*/
|
*/
|
||||||
|
@ -181,10 +182,10 @@ BEGIN
|
||||||
IDS_IMAGE_PALETTE "Paleta alebo 256 farieb (8 bitov)"
|
IDS_IMAGE_PALETTE "Paleta alebo 256 farieb (8 bitov)"
|
||||||
IDS_IMAGE_TRUECOLOR "Pravé farby (24 bitov)"
|
IDS_IMAGE_TRUECOLOR "Pravé farby (24 bitov)"
|
||||||
|
|
||||||
IDS_UNIT_PIXELS "Pixels"
|
IDS_UNIT_PIXELS "Pixely"
|
||||||
IDS_UNIT_CM "Cm"
|
IDS_UNIT_CM "Centimetre"
|
||||||
IDS_UNIT_INCHES "Inches"
|
IDS_UNIT_INCHES "Palce"
|
||||||
IDS_UNIT_DOTSCM "Dots / Cm"
|
IDS_UNIT_DOTSCM "Body na cm"
|
||||||
IDS_UNIT_DPI "DPI"
|
IDS_UNIT_DPI "DPI"
|
||||||
IDS_UNIT_KB "%d KB"
|
IDS_UNIT_KB "%d KB"
|
||||||
IDS_UNIT_MB "%d MB"
|
IDS_UNIT_MB "%d MB"
|
||||||
|
@ -221,20 +222,20 @@ BEGIN
|
||||||
IDS_HINT_PROP " Zobrazí vlastnosti aktívneho obrázka."
|
IDS_HINT_PROP " Zobrazí vlastnosti aktívneho obrázka."
|
||||||
IDS_HINT_EXIT " Ukonèí program."
|
IDS_HINT_EXIT " Ukonèí program."
|
||||||
|
|
||||||
IDS_HINT_TOOLS " Shows or hides the tools floating window."
|
IDS_HINT_TOOLS " Zobrazí alebo skryje plávajúce okno nástrojov."
|
||||||
IDS_HINT_COLORS " Shows or hides the colors floating window."
|
IDS_HINT_COLORS " Zobrazí alebo skryje plávajúce okno farieb."
|
||||||
IDS_HINT_HISTORY " Shows or hides the history floating window."
|
IDS_HINT_HISTORY " Zobrazí alebo skryje plávajúce okno histórie."
|
||||||
IDS_HINT_STATUS " Shows or hides the status bar."
|
IDS_HINT_STATUS " Zobrazí alebo skryje stavový riadok."
|
||||||
|
|
||||||
IDS_HINT_CASCADE " Arrange windows so they overlap."
|
IDS_HINT_CASCADE " Arrange windows so they overlap."
|
||||||
IDS_HINT_TILE_HORZ " Arrange windows as non-overlapping tiles."
|
IDS_HINT_TILE_HORZ " Arrange windows as non-overlapping tiles."
|
||||||
IDS_HINT_TILE_VERT " Arrange windows as non-overlapping tiles."
|
IDS_HINT_TILE_VERT " Arrange windows as non-overlapping tiles."
|
||||||
IDS_HINT_ARRANGE " Arrange icons at the bottom of the window."
|
IDS_HINT_ARRANGE " Arrange icons at the bottom of the window."
|
||||||
IDS_HINT_NEXT " Activates the next window."
|
IDS_HINT_NEXT " Aktivuje ïalšie okno v poradí."
|
||||||
|
|
||||||
IDS_HINT_SYS_RESTORE " Restores this window to normal size."
|
IDS_HINT_SYS_RESTORE " Obnoví okno na normálnu ve¾kos<6F>."
|
||||||
IDS_HINT_SYS_MOVE " Moves this window."
|
IDS_HINT_SYS_MOVE " Premiestni okno."
|
||||||
IDS_HINT_SYS_SIZE " Resizes this window."
|
IDS_HINT_SYS_SIZE " Zmení ve¾kos<6F> okna."
|
||||||
IDS_HINT_SYS_MINIMIZE " Collapses this window to an icon."
|
IDS_HINT_SYS_MINIMIZE " Zbalí okno do ve¾kosti ikony."
|
||||||
IDS_HINT_SYS_MAXIMIZE " Expands this window to fill this screen."
|
IDS_HINT_SYS_MAXIMIZE " Zväèsí okno tak, aby zaplnilo obrazovku."
|
||||||
END
|
END
|
||||||
|
|
|
@ -4720,11 +4720,7 @@ static void InitInstance(HINSTANCE hinstance)
|
||||||
CoInitialize(NULL);
|
CoInitialize(NULL);
|
||||||
CoGetMalloc(MEMCTX_TASK, &Globals.iMalloc);
|
CoGetMalloc(MEMCTX_TASK, &Globals.iMalloc);
|
||||||
SHGetDesktopFolder(&Globals.iDesktop);
|
SHGetDesktopFolder(&Globals.iDesktop);
|
||||||
#ifdef __WINE__
|
|
||||||
Globals.cfStrFName = RegisterClipboardFormatA(CFSTR_FILENAME);
|
|
||||||
#else
|
|
||||||
Globals.cfStrFName = RegisterClipboardFormat(CFSTR_FILENAME);
|
Globals.cfStrFName = RegisterClipboardFormat(CFSTR_FILENAME);
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* load column strings */
|
/* load column strings */
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* German language support
|
|
||||||
*
|
|
||||||
* Copyright (C) 2007 Mikolaj Zalewski
|
* Copyright (C) 2007 Mikolaj Zalewski
|
||||||
* Copyright (C) 2007 Daniel Reimer
|
* Copyright (C) 2008 Michael Stefaniuc
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
@ -22,6 +20,6 @@
|
||||||
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
|
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
{
|
||||||
IDS_FAILED, "Wordpad konnte nicht gestartet werden"
|
IDS_FAILED, "Der Start von Wordpad ist fehlgeschlagen"
|
||||||
END
|
}
|
||||||
|
|
|
@ -18,9 +18,9 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
{
|
||||||
IDS_FAILED, "Starting Wordpad failed"
|
IDS_FAILED, "Starting Wordpad failed"
|
||||||
END
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* English language support
|
* French language support
|
||||||
*
|
*
|
||||||
* Copyright (C) 2007 Mikolaj Zalewski
|
* Copyright (C) 2007 Jonathan Ernst
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
@ -17,10 +17,13 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
#pragma code_page(65001)
|
||||||
|
|
||||||
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
{
|
||||||
IDS_FAILED, "Le lancement de Wordpad a échoué"
|
IDS_FAILED, "Wordpad n'a pas pu être démarré"
|
||||||
END
|
}
|
||||||
|
|
||||||
|
#pragma code_page(default)
|
||||||
|
|
|
@ -22,6 +22,6 @@
|
||||||
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
|
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
{
|
||||||
IDS_FAILED, "워드패드 시작 실패함"
|
IDS_FAILED, "워드패드 시작 실패함"
|
||||||
END
|
}
|
||||||
|
|
26
rosapps/write/lang/nb-NO.rc
Normal file
26
rosapps/write/lang/nb-NO.rc
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
/*
|
||||||
|
* Norwegian Bokmål language support
|
||||||
|
*
|
||||||
|
* Copyright (C) 2007 Alexander N. Sørnes <alex@thehandofagony.com>
|
||||||
|
*
|
||||||
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
|
||||||
|
|
||||||
|
STRINGTABLE
|
||||||
|
{
|
||||||
|
IDS_FAILED, "Klarte ikke starte Wordpad"
|
||||||
|
}
|
26
rosapps/write/lang/nl-NL.rc
Normal file
26
rosapps/write/lang/nl-NL.rc
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
/*
|
||||||
|
* Dutch language support
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Frans Kool
|
||||||
|
*
|
||||||
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
|
||||||
|
|
||||||
|
STRINGTABLE
|
||||||
|
{
|
||||||
|
IDS_FAILED, "Starten van Wordpad mislukt"
|
||||||
|
}
|
|
@ -1,4 +1,6 @@
|
||||||
/*
|
/*
|
||||||
|
* Polish language support
|
||||||
|
*
|
||||||
* Copyright (C) 2007 Mikolaj Zalewski
|
* Copyright (C) 2007 Mikolaj Zalewski
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
|
@ -14,16 +16,11 @@
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*
|
|
||||||
* translated by Caemyr - Olaf Siejka (Feb, 2008)
|
|
||||||
* Use ReactOS forum PM or IRC to contact me
|
|
||||||
* http://www.reactos.org
|
|
||||||
* IRC: irc.freenode.net #reactos-pl;
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
|
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
{
|
||||||
IDS_FAILED, "B³¹d podczas uruchamiania Wordpad"
|
IDS_FAILED, "Nie udało się uruchomić programu Wordpad"
|
||||||
END
|
}
|
||||||
|
|
26
rosapps/write/lang/ru-RU.rc
Normal file
26
rosapps/write/lang/ru-RU.rc
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
/*
|
||||||
|
* Russian language support
|
||||||
|
*
|
||||||
|
* Copyright 2008 Andrey Esin <andrey@esin.name>
|
||||||
|
*
|
||||||
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
|
||||||
|
|
||||||
|
STRINGTABLE
|
||||||
|
{
|
||||||
|
IDS_FAILED, "Íå óäàëîñü çàïóñòèòü Wordpad"
|
||||||
|
}
|
30
rosapps/write/lang/sl-SI.rc
Normal file
30
rosapps/write/lang/sl-SI.rc
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* Slovenian language support
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Rok Mandeljc
|
||||||
|
*
|
||||||
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
|
||||||
|
|
||||||
|
#pragma code_page(65001)
|
||||||
|
|
||||||
|
STRINGTABLE
|
||||||
|
{
|
||||||
|
IDS_FAILED, "Zagon programa Wordpad ni uspel"
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma code_page(default)
|
|
@ -28,6 +28,10 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||||
#include "lang/en-US.rc"
|
#include "lang/en-US.rc"
|
||||||
#include "lang/fr-FR.rc"
|
#include "lang/fr-FR.rc"
|
||||||
#include "lang/ko-KR.rc"
|
#include "lang/ko-KR.rc"
|
||||||
|
#include "lang/nb-NO.rc"
|
||||||
|
#include "lang/nl-NL.rc"
|
||||||
#include "lang/pl-PL.rc"
|
#include "lang/pl-PL.rc"
|
||||||
|
#include "lang/ru-RU.rc"
|
||||||
|
#include "lang/sl-SI.rc"
|
||||||
#include "lang/sk-SK.rc"
|
#include "lang/sk-SK.rc"
|
||||||
#include "lang/uk-UA.rc"
|
#include "lang/uk-UA.rc"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue