light.msstyles: Add Classic Blue visual style.

Classic Blue is a visual style that uses blue as the main color and doesn't have bitmaps for UI
controls.

Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zhiyi Zhang 2021-06-23 18:14:33 +08:00 committed by Alexandre Julliard
parent 7dba45f6ec
commit 062ef9f68e
56 changed files with 673 additions and 196 deletions

2
configure vendored
View File

@ -1411,6 +1411,7 @@ enable_ksproxy_ax
enable_ksuser enable_ksuser
enable_ktmw32 enable_ktmw32
enable_l3codeca_acm enable_l3codeca_acm
enable_light_msstyles
enable_loadperf enable_loadperf
enable_localspl enable_localspl
enable_localui enable_localui
@ -20648,6 +20649,7 @@ wine_fn_config_makefile dlls/ksproxy.ax enable_ksproxy_ax
wine_fn_config_makefile dlls/ksuser enable_ksuser wine_fn_config_makefile dlls/ksuser enable_ksuser
wine_fn_config_makefile dlls/ktmw32 enable_ktmw32 wine_fn_config_makefile dlls/ktmw32 enable_ktmw32
wine_fn_config_makefile dlls/l3codeca.acm enable_l3codeca_acm wine_fn_config_makefile dlls/l3codeca.acm enable_l3codeca_acm
wine_fn_config_makefile dlls/light.msstyles enable_light_msstyles
wine_fn_config_makefile dlls/loadperf enable_loadperf wine_fn_config_makefile dlls/loadperf enable_loadperf
wine_fn_config_makefile dlls/localspl enable_localspl wine_fn_config_makefile dlls/localspl enable_localspl
wine_fn_config_makefile dlls/localspl/tests enable_tests wine_fn_config_makefile dlls/localspl/tests enable_tests

View File

@ -3326,6 +3326,7 @@ WINE_CONFIG_MAKEFILE(dlls/ksproxy.ax)
WINE_CONFIG_MAKEFILE(dlls/ksuser) WINE_CONFIG_MAKEFILE(dlls/ksuser)
WINE_CONFIG_MAKEFILE(dlls/ktmw32) WINE_CONFIG_MAKEFILE(dlls/ktmw32)
WINE_CONFIG_MAKEFILE(dlls/l3codeca.acm) WINE_CONFIG_MAKEFILE(dlls/l3codeca.acm)
WINE_CONFIG_MAKEFILE(dlls/light.msstyles)
WINE_CONFIG_MAKEFILE(dlls/loadperf) WINE_CONFIG_MAKEFILE(dlls/loadperf)
WINE_CONFIG_MAKEFILE(dlls/localspl) WINE_CONFIG_MAKEFILE(dlls/localspl)
WINE_CONFIG_MAKEFILE(dlls/localspl/tests) WINE_CONFIG_MAKEFILE(dlls/localspl/tests)

View File

@ -0,0 +1,3 @@
MODULE = light.msstyles
RC_SRCS = light.rc

View File

@ -0,0 +1 @@
# no exported entry points

View File

@ -0,0 +1,140 @@
/*
* Copyright 2021 Zhiyi Zhang for CodeWeavers
*
* 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
*/
#include "resources.h"
#pragma makedep po
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
/* Theme color display names */
STRINGTABLE
{
IDS_COLOR_DISPLAY_NAME_CLASSIC_BLUE "Classic Blue"
}
/* Theme color tooltips */
STRINGTABLE
{
IDS_COLOR_TOOLTIP_CLASSIC_BLUE "Classic Blue"
}
/* Theme size display names */
STRINGTABLE
{
IDS_SIZE_DISPLAY_NAME_NORMAL "Normal"
}
/* Theme size tooltips */
STRINGTABLE
{
IDS_SIZE_TOOLTIP_NORMAL "Normal"
}
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
/* Theme version */
1 PACKTHEM_VERSION {0x3}
/* Theme color names */
1 COLORNAMES
{
"Classic Blue\0"
"\0"
}
/* Theme size names */
1 SIZENAMES
{
"NormalSize\0"
"\0"
}
/* Theme ini files */
1 FILERESNAMES
{
"CLASSIC_BLUE_INI\0"
"\0"
}
/* Theme definition */
THEMES_INI TEXTFILE
{
"[documentation]\r\n"
"DisplayName = Light\r\n"
"ToolTip = Light Visual Style\r\n"
}
/* Light theme definition */
/* Classic blue theme, no bitmaps */
CLASSIC_BLUE_INI TEXTFILE
{
"[Globals]\r\n"
"EdgeLightColor = 255 255 255\r\n"
"EdgeHighLightColor = 255 255 255\r\n"
"EdgeShadowColor = 189 189 189\r\n"
"EdgeDkShadowColor = 158 158 158\r\n"
"EdgeFillColor = 255 255 255\r\n"
"\r\n[SysMetrics]\r\n"
"; System colors\r\n"
"Scrollbar = 255 255 255\r\n"
"Background = 37 111 149\r\n"
"ActiveCaption = 50 150 250\r\n"
"InactiveCaption = 245 245 245\r\n"
"Menu = 255 255 255\r\n"
"Window = 255 255 255\r\n"
"WindowFrame = 158 158 158\r\n"
"MenuText = 0 0 0\r\n"
"WindowText = 0 0 0\r\n"
"CaptionText = 0 0 0\r\n"
"ActiveBorder = 255 255 255\r\n"
"InactiveBorder = 255 255 255\r\n"
"AppWorkSpace = 128 128 128\r\n"
"Highlight = 48 150 250\r\n"
"HighlightText = 255 255 255\r\n"
"BtnFace = 245 245 245\r\n"
"BtnShadow = 166 166 166\r\n"
"GrayText = 166 166 166\r\n"
"BtnText = 0 0 0\r\n"
"InactiveCaptionText = 100 100 100\r\n"
"BtnHighlight = 255 255 255\r\n"
"DkShadow3d = 106 106 106\r\n"
"Light3d = 227 227 227\r\n"
"InfoText = 0 0 0\r\n"
"InfoBk = 255 255 255\r\n"
"ButtonAlternateFace = 255 255 255\r\n"
"HotTracking = 224 224 224\r\n"
"GradientActiveCaption = 50 150 250\r\n"
"GradientInactiveCaption = 245 245 245\r\n"
"MenuHilight = 48 150 250\r\n"
"MenuBar = 255 255 255\r\n"
"\r\n; Flat menus\r\n"
"FlatMenus = true\r\n"
}
/* File version */
#define WINE_FILEDESCRIPTION_STR "Light Theme"
#define WINE_FILENAME_STR "light.msstyles"
#define WINE_FILEVERSION 1,0,0,1
#define WINE_FILEVERSION_STR "1.0.0.1"
#define WINE_PRODUCTVERSION 1,0,0,1
#define WINE_PRODUCTVERSION_STR "1.0.0.1"
#include "wine/wine_common_ver.rc"

View File

@ -0,0 +1,24 @@
/*
* Copyright 2021 Zhiyi Zhang for CodeWeavers
*
* 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
*/
#include <winnt.h>
#define IDS_COLOR_DISPLAY_NAME_CLASSIC_BLUE 1000
#define IDS_COLOR_TOOLTIP_CLASSIC_BLUE 2000
#define IDS_SIZE_DISPLAY_NAME_NORMAL 3000
#define IDS_SIZE_TOOLTIP_NORMAL 4000

View File

@ -2638,6 +2638,7 @@ HKLM,%CurrentVersion%\Telephony\Country List\998,"SameAreaRule",,"G"
16427,System\ADO,msado15.dll 16427,System\ADO,msado15.dll
66000,3,wineps.drv 66000,3,wineps.drv
12,,*.sys,- 12,,*.sys,-
11,,*.msstyles,-
11,,* 11,,*
[FakeDlls] [FakeDlls]
@ -2658,6 +2659,8 @@ HKLM,%CurrentVersion%\Telephony\Country List\998,"SameAreaRule",,"G"
11,,iexplore.exe 11,,iexplore.exe
11,,notepad.exe 11,,notepad.exe
11,,winetest.exe,- 11,,winetest.exe,-
; themes
10,resources\themes\light,light.msstyles
; skip .NET fake dlls in Wine Mono package ; skip .NET fake dlls in Wine Mono package
11,,aspnet_regiis.exe,- 11,,aspnet_regiis.exe,-
11,,ngen.exe,- 11,,ngen.exe,-

View File

@ -7022,6 +7022,17 @@ msgstr "المستوى غير سليم.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "المساعدة غير متاحة." msgstr "المساعدة غير متاحة."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "اسم الفئة:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "عادي"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18662,10 +18673,6 @@ msgstr "ال&خطوط"
msgid "Small" msgid "Small"
msgstr "صغير" msgstr "صغير"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "عادي"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "كبير" msgstr "كبير"

View File

@ -6887,6 +6887,15 @@ msgstr "El nivel nun ye válidu.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "L'ayuda nun ta disponible." msgstr "L'ayuda nun ta disponible."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -17366,10 +17375,6 @@ msgstr ""
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -7137,6 +7137,15 @@ msgstr "Невалидни знаци в пътя.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Оставащ размер.\n" msgstr "Оставащ размер.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17787,10 +17796,6 @@ msgstr "Шрифтове"
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6994,6 +6994,17 @@ msgstr "La trucada no és vàlida.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "El recurs actualment no està disponible.\n" msgstr "El recurs actualment no està disponible.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Nom de classe:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18035,10 +18046,6 @@ msgstr "Lletra"
msgid "Small" msgid "Small"
msgstr "Petita" msgstr "Petita"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Gran" msgstr "Gran"

View File

@ -6957,6 +6957,17 @@ msgstr "Neplatná úroveň.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Nápověda není dostupná." msgstr "Nápověda není dostupná."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Název třídy:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normální"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18059,10 +18070,6 @@ msgstr "Písma"
msgid "Small" msgid "Small"
msgstr "Malé" msgstr "Malé"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normální"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Velké" msgstr "Velké"

View File

@ -7064,6 +7064,17 @@ msgstr "Ugyldigt niveau.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Hjælp er ikke tilgængelig." msgstr "Hjælp er ikke tilgængelig."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Klassenavn:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18590,10 +18601,6 @@ msgstr "Skrifttype"
msgid "Small" msgid "Small"
msgstr "Lille" msgstr "Lille"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Stor" msgstr "Stor"

View File

@ -6980,6 +6980,17 @@ msgstr "Ungültiger Aufruf.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Ressource ist zur Zeit nicht verfügbar.\n" msgstr "Ressource ist zur Zeit nicht verfügbar.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Klassenname:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Mittel"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18173,10 +18184,6 @@ msgstr "Schriftarten"
msgid "Small" msgid "Small"
msgstr "Klein" msgstr "Klein"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Mittel"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Groß" msgstr "Groß"

View File

@ -7016,6 +7016,15 @@ msgstr "Μη έγγυρος(οι) χαρακτήρας(ες) στο μονοπά
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "ΜΗ διαθέσιμος; .\n" msgstr "ΜΗ διαθέσιμος; .\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17381,10 +17390,6 @@ msgstr "Γραμματοσειρές"
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6967,6 +6967,15 @@ msgstr "Invalid call.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Resource is not currently available.\n" msgstr "Resource is not currently available.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr "Classic Blue"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "Letter" msgstr "Letter"
@ -17908,10 +17917,6 @@ msgstr "Fonts"
msgid "Small" msgid "Small"
msgstr "Small" msgstr "Small"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Large" msgstr "Large"

View File

@ -6967,6 +6967,15 @@ msgstr "Invalid call.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Resource is not currently available.\n" msgstr "Resource is not currently available.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr "Classic Blue"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "Letter" msgstr "Letter"
@ -17908,10 +17917,6 @@ msgstr "Fonts"
msgid "Small" msgid "Small"
msgstr "Small" msgstr "Small"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Large" msgstr "Large"

View File

@ -6935,6 +6935,15 @@ msgstr "Nevalida tabelo.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Noma servo ne disponeblas.\n" msgstr "Noma servo ne disponeblas.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Ordinara"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -17588,10 +17597,6 @@ msgstr "Tiparoj"
msgid "Small" msgid "Small"
msgstr "Malgranda" msgstr "Malgranda"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Ordinara"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Granda" msgstr "Granda"

View File

@ -6990,6 +6990,17 @@ msgstr "Llamada inválida.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "El recurso no esta disponible actualmente.\n" msgstr "El recurso no esta disponible actualmente.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Nombre de Clase:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18106,10 +18117,6 @@ msgstr "Fuentes"
msgid "Small" msgid "Small"
msgstr "Pequeña" msgstr "Pequeña"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Grande" msgstr "Grande"

View File

@ -6987,6 +6987,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "اطلاعات.\n" msgstr "اطلاعات.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17365,10 +17374,6 @@ msgstr "&قلم‌ها..."
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6960,6 +6960,17 @@ msgstr "Kutsu ei kelpaa.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Resurssi ei ole nyt saatavilla.\n" msgstr "Resurssi ei ole nyt saatavilla.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Luokan nimi:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normaali"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17865,10 +17876,6 @@ msgstr "Fontit"
msgid "Small" msgid "Small"
msgstr "Pieni" msgstr "Pieni"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normaali"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Suuri" msgstr "Suuri"

View File

@ -7048,6 +7048,17 @@ msgstr "Niveau non valide.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Impossible d'afficher l'aide." msgstr "Impossible d'afficher l'aide."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Nom de classe :"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normale"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18674,10 +18685,6 @@ msgstr "Polices"
msgid "Small" msgid "Small"
msgstr "Petite" msgstr "Petite"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normale"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Grande" msgstr "Grande"

View File

@ -7271,6 +7271,17 @@ msgstr "אפשרות שגויה.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "הגודל הזמין.\n" msgstr "הגודל הזמין.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "שם המחלקה:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "רגילים"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
msgid "Letter" msgid "Letter"
@ -18175,10 +18186,6 @@ msgstr "גופנים"
msgid "Small" msgid "Small"
msgstr "קטנים" msgstr "קטנים"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "רגילים"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "גדולים" msgstr "גדולים"

View File

@ -6880,6 +6880,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "" msgstr ""
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17043,10 +17052,6 @@ msgstr "फ़ॉन्ट (&F)..."
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -7027,6 +7027,17 @@ msgstr "Neispravna razina.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Pomoć nije dostupna." msgstr "Pomoć nije dostupna."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Ime klase:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normalan"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18030,10 +18041,6 @@ msgstr "Fontovi"
msgid "Small" msgid "Small"
msgstr "Mali" msgstr "Mali"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normalan"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Veliki" msgstr "Veliki"

View File

@ -7081,6 +7081,17 @@ msgstr "Érvénytelen szint.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "A súgó nem elérhető." msgstr "A súgó nem elérhető."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Osztálynév:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normál"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18586,10 +18597,6 @@ msgstr "Betûtípusok"
msgid "Small" msgid "Small"
msgstr "Kicsi" msgstr "Kicsi"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normál"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Nagy" msgstr "Nagy"

View File

@ -7090,6 +7090,17 @@ msgstr "Livello non valido.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Guida non disponibile." msgstr "Guida non disponibile."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Nome della classe:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normali"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18680,10 +18691,6 @@ msgstr "Caratteri"
msgid "Small" msgid "Small"
msgstr "Piccoli" msgstr "Piccoli"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normali"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Grandi" msgstr "Grandi"

View File

@ -6960,6 +6960,17 @@ msgstr "呼び出しは正しくありません。\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "リソースは現在使用できません。\n" msgstr "リソースは現在使用できません。\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "クラス名:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "標準"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18042,10 +18053,6 @@ msgstr "フォント"
msgid "Small" msgid "Small"
msgstr "小" msgstr "小"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "標準"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "大" msgstr "大"

View File

@ -6956,6 +6956,17 @@ msgstr "잘못된 호출.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "현재 리소스를 사용할 수 없습니다.\n" msgstr "현재 리소스를 사용할 수 없습니다.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "클래스 이름:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "보통"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -17839,10 +17850,6 @@ msgstr "글꼴"
msgid "Small" msgid "Small"
msgstr "작게" msgstr "작게"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "보통"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "크게" msgstr "크게"

View File

@ -6972,6 +6972,17 @@ msgstr "Neteisingas kreipinys.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Išteklius šiuo metu neprieinamas.\n" msgstr "Išteklius šiuo metu neprieinamas.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Klasės vardas:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "&Normalus"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "Laiškas" msgstr "Laiškas"
@ -17929,10 +17940,6 @@ msgstr "Šriftai"
msgid "Small" msgid "Small"
msgstr "&Mažas" msgstr "&Mažas"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "&Normalus"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "&Didelis" msgstr "&Didelis"

View File

@ -6882,6 +6882,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "" msgstr ""
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17042,10 +17051,6 @@ msgstr "_അക്ഷരസഞ്ചയ..."
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6995,6 +6995,17 @@ msgstr "Ugyldig nivå.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Verdi er ikke tilgjengelig.\n" msgstr "Verdi er ikke tilgjengelig.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Klassenavn:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18159,10 +18170,6 @@ msgstr "Skrifttyper"
msgid "Small" msgid "Small"
msgstr "Liten" msgstr "Liten"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Stor" msgstr "Stor"

View File

@ -6982,6 +6982,17 @@ msgstr "Ongeldige oproep.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Bron is tijdelijk niet beschikbaar.\n" msgstr "Bron is tijdelijk niet beschikbaar.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Klassenaam:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Standaard"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "Letter (VS)" msgstr "Letter (VS)"
@ -18009,10 +18020,6 @@ msgstr "Lettertype"
msgid "Small" msgid "Small"
msgstr "Klein" msgstr "Klein"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Standaard"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Groot" msgstr "Groot"

View File

@ -6880,6 +6880,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "" msgstr ""
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17028,10 +17037,6 @@ msgstr "ଅକ୍ଷରରୂପ (&F)..."
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6880,6 +6880,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "" msgstr ""
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17028,10 +17037,6 @@ msgstr "ਫੌਂਟ(&F)..."
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6984,6 +6984,17 @@ msgstr "Nieprawidłowe wywołanie.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Zasób jest obecnie niedostępny.\n" msgstr "Zasób jest obecnie niedostępny.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Nazwa klasy:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normalne"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18114,10 +18125,6 @@ msgstr "Czcionki"
msgid "Small" msgid "Small"
msgstr "Małe" msgstr "Małe"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normalne"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Duże" msgstr "Duże"

View File

@ -6981,6 +6981,17 @@ msgstr "Chamada inválida.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Recurso atualmente não disponível.\n" msgstr "Recurso atualmente não disponível.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Nome da classe:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "Carta" msgstr "Carta"
@ -18001,10 +18012,6 @@ msgstr "Fontes"
msgid "Small" msgid "Small"
msgstr "Pequeno" msgstr "Pequeno"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Grande" msgstr "Grande"

View File

@ -7039,6 +7039,17 @@ msgstr "Nível inválido.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Ajuda não disponível." msgstr "Ajuda não disponível."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Nome da classe:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18306,10 +18317,6 @@ msgstr "Tipos de Letra"
msgid "Small" msgid "Small"
msgstr "Pequeno" msgstr "Pequeno"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Grande" msgstr "Grande"

View File

@ -6934,6 +6934,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "INFUORMAZIUN.\n" msgstr "INFUORMAZIUN.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17164,10 +17173,6 @@ msgstr ""
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -7082,6 +7082,17 @@ msgstr "Nivel nevalid.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Nu este disponibil ajutor." msgstr "Nu este disponibil ajutor."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Nume clasă:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18331,10 +18342,6 @@ msgstr "Fonturi"
msgid "Small" msgid "Small"
msgstr "Mic" msgstr "Mic"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Mare" msgstr "Mare"

View File

@ -7000,6 +7000,17 @@ msgstr "Неверный уровень системного вызова.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Значение недоступно.\n" msgstr "Значение недоступно.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Имя класса:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Обычный"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -17996,10 +18007,6 @@ msgstr "Шрифты"
msgid "Small" msgid "Small"
msgstr "Мелкий" msgstr "Мелкий"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Обычный"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Крупный" msgstr "Крупный"

View File

@ -6933,6 +6933,17 @@ msgstr "අවලංගු මට්ටමක්.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "අගය ලද හැකි නැහැ.\n" msgstr "අගය ලද හැකි නැහැ.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "පන්තිය නම:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "සාමාන"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -17602,10 +17613,6 @@ msgstr "ෆොන්ට"
msgid "Small" msgid "Small"
msgstr "පොඩි" msgstr "පොඩි"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "සාමාන"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "ලොකු" msgstr "ලොකු"

View File

@ -7018,6 +7018,15 @@ msgstr "Nesprávne údaje.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Nápoveda nedostupná." msgstr "Nápoveda nedostupná."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normálne"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -17804,10 +17813,6 @@ msgstr "Písma"
msgid "Small" msgid "Small"
msgstr "Malé" msgstr "Malé"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normálne"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Veľké" msgstr "Veľké"

View File

@ -7083,6 +7083,17 @@ msgstr "Neveljavna raven.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Pomoč ni na voljo." msgstr "Pomoč ni na voljo."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Ime razreda:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Običajna"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18609,10 +18620,6 @@ msgstr "Pisave"
msgid "Small" msgid "Small"
msgstr "Majhna" msgstr "Majhna"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Običajna"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Velika" msgstr "Velika"

View File

@ -7290,6 +7290,15 @@ msgstr "Неисправни акредитиви.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Недоступно" msgstr "Недоступно"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -18159,10 +18168,6 @@ msgstr "Фонтови"
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -7387,6 +7387,15 @@ msgstr "Neispravni akreditivi.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Nedostupno" msgstr "Nedostupno"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normalan"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
msgid "Letter" msgid "Letter"
@ -18362,10 +18371,6 @@ msgstr "Fontovi"
msgid "Small" msgid "Small"
msgstr "Mali" msgstr "Mali"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normalan"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Veliki" msgstr "Veliki"

View File

@ -7018,6 +7018,17 @@ msgstr "Ogiltig nivå.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Ingen hjälp finns tillgänglig." msgstr "Ingen hjälp finns tillgänglig."
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Klassnamn:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normalt"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18257,10 +18268,6 @@ msgstr "Typsnitt"
msgid "Small" msgid "Small"
msgstr "Litet" msgstr "Litet"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normalt"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Stort" msgstr "Stort"

View File

@ -6843,6 +6843,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "" msgstr ""
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -16939,10 +16948,6 @@ msgstr ""
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6880,6 +6880,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "" msgstr ""
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17028,10 +17037,6 @@ msgstr "ఫాంట్... (&F)"
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -7030,6 +7030,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "ใช้ไม่ได้ตอนนี้; .\n" msgstr "ใช้ไม่ได้ตอนนี้; .\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17474,10 +17483,6 @@ msgstr "ดัวอักษร"
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6976,6 +6976,17 @@ msgstr "Geçersiz çağrı.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Kaynak şu an kullanılamıyor.\n" msgstr "Kaynak şu an kullanılamıyor.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Sınıf Adı:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -17921,10 +17932,6 @@ msgstr "Yazı Tipleri"
msgid "Small" msgid "Small"
msgstr "Küçük" msgstr "Küçük"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Normal"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Geniş" msgstr "Geniş"

View File

@ -6990,6 +6990,17 @@ msgstr "Невірний запит.\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "Наразі ресурс недоступний.\n" msgstr "Наразі ресурс недоступний.\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "Ім'я класу:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Нормальний"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -17920,10 +17931,6 @@ msgstr "Шрифти"
msgid "Small" msgid "Small"
msgstr "Малий" msgstr "Малий"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "Нормальний"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "Великий" msgstr "Великий"

View File

@ -6971,6 +6971,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "" msgstr ""
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -17315,10 +17324,6 @@ msgstr ""
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6834,6 +6834,15 @@ msgstr ""
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "" msgstr ""
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
msgid "Classic Blue"
msgstr ""
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
msgid "Letter" msgid "Letter"
msgstr "" msgstr ""
@ -16920,10 +16929,6 @@ msgstr ""
msgid "Small" msgid "Small"
msgstr "" msgstr ""
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr ""
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "" msgstr ""

View File

@ -6920,6 +6920,17 @@ msgstr "无效调用。\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "资源当前不可用。\n" msgstr "资源当前不可用。\n"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "类名:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "普通"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -17643,10 +17654,6 @@ msgstr "字体"
msgid "Small" msgid "Small"
msgstr "小号" msgstr "小号"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "普通"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "大号" msgstr "大号"

View File

@ -6992,6 +6992,17 @@ msgstr "無效的層級。\n"
msgid "Resource is not currently available.\n" msgid "Resource is not currently available.\n"
msgstr "沒有可用的說明資訊。" msgstr "沒有可用的說明資訊。"
#: dlls/light.msstyles/light.rc:29 dlls/light.msstyles/light.rc:35
#, fuzzy
#| msgid "Class Name:"
msgid "Classic Blue"
msgstr "類別名稱:"
#: dlls/light.msstyles/light.rc:41 dlls/light.msstyles/light.rc:47
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "中"
#: dlls/localspl/localspl.rc:37 #: dlls/localspl/localspl.rc:37
#, fuzzy #, fuzzy
#| msgctxt "Drive letter" #| msgctxt "Drive letter"
@ -18550,10 +18561,6 @@ msgstr "字型"
msgid "Small" msgid "Small"
msgstr "小" msgstr "小"
#: programs/winhlp32/winhlp32.rc:53 programs/winhlp32/winhlp32.rc:73
msgid "Normal"
msgstr "中"
#: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74 #: programs/winhlp32/winhlp32.rc:54 programs/winhlp32/winhlp32.rc:74
msgid "Large" msgid "Large"
msgstr "大" msgstr "大"