shell32: Use winvista+ AppData paths.

Katamari Damacy Reroll makes an assumption that the LocalAppData folder
is a sibling of the LocalAppDataLow folder.

Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrew Eikum 2021-05-27 13:37:17 -05:00 committed by Alexandre Julliard
parent 2a52efb7a3
commit 4111801ab3
51 changed files with 601 additions and 1381 deletions

View File

@ -200,12 +200,12 @@ the folder?"
/* shell folder path default values */
/* FIXME: Some will be unused until desktop.ini support is implemented */
IDS_PROGRAMS "Programs"
IDS_PERSONAL "My Documents"
IDS_PERSONAL "Documents"
IDS_FAVORITES "Favorites"
IDS_STARTUP "StartUp"
IDS_STARTMENU "Start Menu"
IDS_MYMUSIC "My Music"
IDS_MYVIDEOS "My Videos"
IDS_MYMUSIC "Music"
IDS_MYVIDEOS "Videos"
IDS_DESKTOPDIRECTORY "#msgctxt#directory#Desktop"
IDS_NETHOOD "NetHood"
IDS_TEMPLATES "Templates"
@ -213,7 +213,7 @@ the folder?"
IDS_HISTORY "History"
IDS_PROGRAM_FILES "Program Files"
IDS_PROGRAM_FILESX86 "Program Files (x86)"
IDS_MYPICTURES "My Pictures"
IDS_MYPICTURES "Pictures"
IDS_COMMON_FILES "Common Files"
IDS_COMMON_DOCUMENTS "Documents"
IDS_ADMINTOOLS "Administrative Tools"

View File

@ -832,9 +832,21 @@ static const WCHAR AppUpdatesFolderW[] = {'A','p','p','U','p','d','a','t','e','s
static const WCHAR Administrative_ToolsW[] = {'A','d','m','i','n','i','s','t','r','a','t','i','v','e',' ','T','o','o','l','s','\0'};
static const WCHAR AppDataW[] = {'A','p','p','D','a','t','a','\0'};
static const WCHAR AppData_RoamingW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\0'};
static const WCHAR AppData_Roaming_Microsoft_Windows_Network_ShortcutsW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','N','e','t','w','o','r','k',' ','S','h','o','r','t','c','u','t','s',0};
static const WCHAR AppData_Roaming_Microsoft_Windows_Printer_ShortcutsW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','P','r','i','n','t','e','r',' ','S','h','o','r','t','c','u','t','s',0};
static const WCHAR AppData_Roaming_Microsoft_Windows_RecentW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','R','e','c','e','n','t',0};
static const WCHAR AppData_Roaming_Microsoft_Windows_SendToW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','S','e','n','d','T','o',0};
static const WCHAR AppData_Roaming_Microsoft_Windows_Start_MenuW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','S','t','a','r','t',' ','M','e','n','u',0};
static const WCHAR AppData_Roaming_Microsoft_Windows_Start_Menu_ProgramsW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s',0};
static const WCHAR AppData_Roaming_Microsoft_Windows_Start_Menu_Programs_StartupW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\\','S','t','a','r','t','u','p',0};
static const WCHAR AppData_Roaming_Microsoft_Windows_Start_Menu_Programs_Administrative_ToolsW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\\','A','d','m','i','n','i','s','t','r','a','t','i','v','e',' ','T','o','o','l','s',0};
static const WCHAR AppData_Roaming_Microsoft_Windows_TemplatesW[] = {'A','p','p','D','a','t','a','\\','R','o','a','m','i','n','g','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','T','e','m','p','l','a','t','e','s',0};
static const WCHAR AppData_LocalLowW[] = {'A','p','p','D','a','t','a','\\','L','o','c','a','l','L','o','w','\0'};
static const WCHAR AppData_LocalW[] = {'A','p','p','D','a','t','a','\\','L','o','c','a','l','\0'};
static const WCHAR Application_DataW[] = {'A','p','p','l','i','c','a','t','i','o','n',' ','D','a','t','a','\0'};
static const WCHAR AppData_Local_Microsoft_Windows_Burn_BurnW[] = {'A','p','p','D','a','t','a','\\','L','o','c','a','l','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','B','u','r','n','\\','B','u','r','n',0};
static const WCHAR AppData_Local_Microsoft_Windows_HistoryW[] = {'A','p','p','D','a','t','a','\\','L','o','c','a','l','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','H','i','s','t','o','r','y',0};
static const WCHAR AppData_Local_Microsoft_Windows_INetCacheW[] = {'A','p','p','D','a','t','a','\\','L','o','c','a','l','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','I','N','e','t','C','a','c','h','e',0};
static const WCHAR AppData_Local_Microsoft_Windows_INetCookiesW[] = {'A','p','p','D','a','t','a','\\','L','o','c','a','l','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','I','N','e','t','C','o','o','k','i','e','s',0};
static const WCHAR CacheW[] = {'C','a','c','h','e','\0'};
static const WCHAR CD_BurningW[] = {'C','D',' ','B','u','r','n','i','n','g','\0'};
static const WCHAR ChangeRemoveProgramsFolderW[] = {'C','h','a','n','g','e','R','e','m','o','v','e','P','r','o','g','r','a','m','s','F','o','l','d','e','r',0};
@ -881,19 +893,16 @@ static const WCHAR InternetFolderW[] = {'I','n','t','e','r','n','e','t','F','o',
static const WCHAR LibrariesW[] = {'L','i','b','r','a','r','i','e','s',0};
static const WCHAR LinksW[] = {'L','i','n','k','s','\0'};
static const WCHAR Local_AppDataW[] = {'L','o','c','a','l',' ','A','p','p','D','a','t','a','\0'};
static const WCHAR Local_Settings_Application_DataW[] = {'L','o','c','a','l',' ','S','e','t','t','i','n','g','s','\\','A','p','p','l','i','c','a','t','i','o','n',' ','D','a','t','a','\0'};
static const WCHAR Local_Settings_CD_BurningW[] = {'L','o','c','a','l',' ','S','e','t','t','i','n','g','s','\\','A','p','p','l','i','c','a','t','i','o','n',' ','D','a','t','a','\\','M','i','c','r','o','s','o','f','t','\\','C','D',' ','B','u','r','n','i','n','g','\0'};
static const WCHAR Local_Settings_HistoryW[] = {'L','o','c','a','l',' ','S','e','t','t','i','n','g','s','\\','H','i','s','t','o','r','y','\0'};
static const WCHAR Local_Settings_Temporary_Internet_FilesW[] = {'L','o','c','a','l',' ','S','e','t','t','i','n','g','s','\\','T','e','m','p','o','r','a','r','y',' ','I','n','t','e','r','n','e','t',' ','F','i','l','e','s','\0'};
static const WCHAR LocalAppDataLowW[] = {'L','o','c','a','l','A','p','p','D','a','t','a','L','o','w',0};
static const WCHAR LocalizedResourcesDirW[] = {'L','o','c','a','l','i','z','e','d','R','e','s','o','u','r','c','e','s','D','i','r',0};
static const WCHAR MAPIFolderW[] = {'M','A','P','I','F','o','l','d','e','r',0};
static const WCHAR Microsoft_Internet_Explorer_Quick_LaunchW[] = {'M','i','c','r','o','s','o','f','t','\\','I','n','t','e','r','n','e','t',' ','E','x','p','l','o','r','e','r','\\','Q','u','i','c','k',' ','L','a','u','n','c','h',0};
static const WCHAR Microsoft_Windows_Burn_BurnW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','B','u','r','n','\\','B','u','r','n',0};
static const WCHAR Microsoft_Windows_CookiesW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','C','o','o','k','i','e','s',0};
static const WCHAR Microsoft_Windows_GameExplorerW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','G','a','m','e','E','x','p','l','o','r','e','r','\0'};
static const WCHAR Microsoft_Windows_DeviceMetadataStoreW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','D','e','v','i','c','e','M','e','t','a','d','a','t','a','S','t','o','r','e',0};
static const WCHAR Microsoft_Windows_HistoryW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','H','i','s','t','o','r','y',0};
static const WCHAR Microsoft_Windows_INetCacheW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','I','N','e','t','C','a','c','h','e',0};
static const WCHAR Microsoft_Windows_INetCookiesW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','I','N','e','t','C','o','o','k','i','e','s',0};
static const WCHAR Microsoft_Windows_LibrariesW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','L','i','b','r','a','r','i','e','s','\0'};
static const WCHAR Microsoft_Windows_Network_ShortcutsW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','N','e','t','w','o','r','k',' ','S','h','o','r','t','c','u','t','s',0};
static const WCHAR Microsoft_Windows_Photo_Gallery_Original_ImagesW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s',' ','P','h','o','t','o',' ','G','a','l','l','e','r','y','\\','O','r','i','g','i','n','a','l',' ','I','m','a','g','e','s',0};
@ -907,7 +916,6 @@ static const WCHAR Microsoft_Windows_Start_Menu_ProgramsW[] = {'M','i','c','r','
static const WCHAR Microsoft_Windows_Start_Menu_Admin_ToolsW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\\','A','d','m','i','n','i','s','t','r','a','t','i','v','e',' ','T','o','o','l','s','\0'};
static const WCHAR Microsoft_Windows_Start_Menu_StartupW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\\','S','t','a','r','t','U','p','\0'};
static const WCHAR Microsoft_Windows_TemplatesW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','T','e','m','p','l','a','t','e','s',0};
static const WCHAR Microsoft_Windows_Temporary_Internet_FilesW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','T','e','m','p','o','r','a','r','y',' ','I','n','t','e','r','n','e','t',' ','F','i','l','e','s',0};
static const WCHAR Microsoft_Windows_ThemesW[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','T','h','e','m','e','s',0};
static const WCHAR MoviesW[] = {'M','o','v','i','e','s','\0'};
static const WCHAR MusicW[] = {'M','u','s','i','c','\0'};
@ -978,9 +986,6 @@ static const WCHAR Slide_ShowsW[] = {'S','l','i','d','e',' ','S','h','o','w','s'
static const WCHAR StartUpW[] = {'S','t','a','r','t','U','p','\0'};
static const WCHAR StartupW[] = {'S','t','a','r','t','u','p','\0'};
static const WCHAR Start_MenuW[] = {'S','t','a','r','t',' ','M','e','n','u','\0'};
static const WCHAR Start_Menu_ProgramsW[] = {'S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\0'};
static const WCHAR Start_Menu_Admin_ToolsW[] = {'S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\\','A','d','m','i','n','i','s','t','r','a','t','i','v','e',' ','T','o','o','l','s','\0'};
static const WCHAR Start_Menu_StartupW[] = {'S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\\','S','t','a','r','t','U','p','\0'};
static const WCHAR SyncCenterFolderW[] = {'S','y','n','c','C','e','n','t','e','r','F','o','l','d','e','r',0};
static const WCHAR SyncResultsFolderW[] = {'S','y','n','c','R','e','s','u','l','t','s','F','o','l','d','e','r',0};
static const WCHAR SyncSetupFolderW[] = {'S','y','n','c','S','e','t','u','p','F','o','l','d','e','r',0};
@ -1264,12 +1269,12 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_Programs,
CSIDL_Type_User,
ProgramsW,
Start_Menu_ProgramsW,
AppData_Roaming_Microsoft_Windows_Start_Menu_ProgramsW,
KF_CATEGORY_PERUSER, /* category */
ProgramsW, /* name */
NULL, /* description */
&GUID_NULL, /* parent */
&FOLDERID_StartMenu, /* parent */
ProgramsW, /* relative path */
NULL, /* parsing */
NULL, /* tooltip */
@ -1329,7 +1334,7 @@ static const CSIDL_DATA CSIDL_Data[] =
KF_CATEGORY_PERUSER, /* category */
PersonalW, /* name */
NULL, /* description */
&GUID_NULL, /* parent */
&FOLDERID_Profile, /* parent */
DocumentsW, /* relative path */
DocumentsParsingNameW, /* parsing */
NULL, /* tooltip */
@ -1364,12 +1369,12 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_Startup,
CSIDL_Type_User,
StartUpW,
Start_Menu_StartupW,
AppData_Roaming_Microsoft_Windows_Start_Menu_Programs_StartupW,
KF_CATEGORY_PERUSER, /* category */
StartupW, /* name */
NULL, /* description */
&GUID_NULL, /* parent */
&FOLDERID_Programs, /* parent */
StartUpW, /* relative path */
NULL, /* parsing */
NULL, /* tooltip */
@ -1384,7 +1389,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_Recent,
CSIDL_Type_User,
RecentW,
RecentW,
AppData_Roaming_Microsoft_Windows_RecentW,
KF_CATEGORY_PERUSER, /* category */
RecentW, /* name */
@ -1404,7 +1409,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_SendTo,
CSIDL_Type_User,
SendToW,
SendToW,
AppData_Roaming_Microsoft_Windows_SendToW,
KF_CATEGORY_PERUSER, /* category */
SendToW, /* name */
@ -1444,7 +1449,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_StartMenu,
CSIDL_Type_User,
Start_MenuW,
Start_MenuW,
AppData_Roaming_Microsoft_Windows_Start_MenuW,
KF_CATEGORY_PERUSER, /* category */
Start_MenuW, /* name */
@ -1576,7 +1581,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_NetHood,
CSIDL_Type_User,
NetHoodW,
NetHoodW,
AppData_Roaming_Microsoft_Windows_Network_ShortcutsW,
KF_CATEGORY_PERUSER, /* category */
NetHoodW, /* name */
@ -1601,7 +1606,7 @@ static const CSIDL_DATA CSIDL_Data[] =
KF_CATEGORY_FIXED, /* category */
FontsW, /* name */
NULL, /* description */
&GUID_NULL, /* parent */
&FOLDERID_Windows, /* parent */
NULL, /* relative path */
NULL, /* parsing */
NULL, /* tooltip */
@ -1616,7 +1621,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_Templates,
CSIDL_Type_User,
TemplatesW,
TemplatesW,
AppData_Roaming_Microsoft_Windows_TemplatesW,
KF_CATEGORY_PERUSER, /* category */
TemplatesW, /* name */
@ -1716,7 +1721,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_RoamingAppData,
CSIDL_Type_User,
AppDataW,
Application_DataW,
AppData_RoamingW,
KF_CATEGORY_PERUSER, /* category */
AppDataW, /* name */
@ -1736,7 +1741,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_PrintHood,
CSIDL_Type_User,
PrintHoodW,
PrintHoodW,
AppData_Roaming_Microsoft_Windows_Printer_ShortcutsW,
KF_CATEGORY_PERUSER, /* category */
PrintHoodW, /* name */
@ -1756,7 +1761,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_LocalAppData,
CSIDL_Type_User,
Local_AppDataW,
Local_Settings_Application_DataW,
AppData_LocalW,
KF_CATEGORY_PERUSER, /* category */
Local_AppDataW, /* name */
@ -1808,13 +1813,13 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_InternetCache,
CSIDL_Type_User,
CacheW,
Local_Settings_Temporary_Internet_FilesW,
AppData_Local_Microsoft_Windows_INetCacheW,
KF_CATEGORY_PERUSER, /* category */
CacheW, /* name */
NULL, /* description */
&FOLDERID_LocalAppData, /* parent */
Microsoft_Windows_Temporary_Internet_FilesW, /* relative path */
Microsoft_Windows_INetCacheW, /* relative path */
NULL, /* parsing */
NULL, /* tooltip */
NULL, /* localized */
@ -1828,13 +1833,13 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_Cookies,
CSIDL_Type_User,
CookiesW,
CookiesW,
AppData_Local_Microsoft_Windows_INetCookiesW,
KF_CATEGORY_PERUSER, /* category */
CookiesW, /* name */
NULL, /* description */
&FOLDERID_RoamingAppData, /* parent */
Microsoft_Windows_CookiesW, /* relative path */
&FOLDERID_LocalAppData, /* parent */
Microsoft_Windows_INetCookiesW, /* relative path */
NULL, /* parsing */
NULL, /* tooltip */
NULL, /* localized */
@ -1848,7 +1853,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_History,
CSIDL_Type_User,
HistoryW,
Local_Settings_HistoryW,
AppData_Local_Microsoft_Windows_HistoryW,
KF_CATEGORY_PERUSER, /* category */
HistoryW, /* name */
@ -2128,7 +2133,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_AdminTools,
CSIDL_Type_User,
Administrative_ToolsW,
Start_Menu_Admin_ToolsW,
AppData_Roaming_Microsoft_Windows_Start_Menu_Programs_Administrative_ToolsW,
KF_CATEGORY_PERUSER, /* category */
Administrative_ToolsW, /* name */
@ -2306,7 +2311,7 @@ static const CSIDL_DATA CSIDL_Data[] =
&FOLDERID_CDBurning,
CSIDL_Type_User,
CD_BurningW,
Local_Settings_CD_BurningW,
AppData_Local_Microsoft_Windows_Burn_BurnW,
KF_CATEGORY_PERUSER, /* category */
CD_BurningW, /* name */

View File

@ -10446,8 +10446,9 @@ msgstr "هل ترغب بإنهاء جلسة واين ؟"
msgid "Programs"
msgstr "البرامج"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "المستندات"
#: dlls/shell32/shell32.rc:205
@ -10462,12 +10463,12 @@ msgstr "بدء التشغيل"
msgid "Start Menu"
msgstr "قائمة ابدأ"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "الصوتيات"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "المرئيات"
#: dlls/shell32/shell32.rc:210
@ -10495,35 +10496,18 @@ msgstr "التأريخ"
msgid "Program Files"
msgstr "ملفات البرامج"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "الصور"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "الشائعات"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "المستندات"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "أدوات الإدارة"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "الصوتيات"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "الصور"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "المرئيات"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "ملفات البرامج 32بت"

View File

@ -10012,9 +10012,10 @@ msgstr ""
msgid "Programs"
msgstr "Programes"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Documentos de mio"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documentos"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10028,13 +10029,13 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Música de mio"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Música"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Vídeos de mio"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vídeos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10061,35 +10062,18 @@ msgstr "Historial"
msgid "Program Files"
msgstr "Ficheros de programes"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Semeyes de mio"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Semeyes"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Ficheros comunes"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documentos"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Ferramientes alministratives"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Música"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Semeyes"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vídeos"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Ficheros de programes (x86)"

View File

@ -10298,9 +10298,10 @@ msgstr "Искате ли да прекратите вашата Wine сесия
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Моите документи"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10314,12 +10315,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -10348,8 +10349,8 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
@ -10357,27 +10358,10 @@ msgstr ""
msgid "Common Files"
msgstr "Копиране на файлове..."
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10110,9 +10110,10 @@ msgstr "Voleu aturar la vostra sessió del Wine?"
msgid "Programs"
msgstr "Programes"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Els meus documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10126,13 +10127,13 @@ msgstr "Inicialització"
msgid "Start Menu"
msgstr "Menú Inicia"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "La meva música"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Música"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Els meus vídeos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vídeos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10162,36 +10163,19 @@ msgstr "Història"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Les meves imatges"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Imatges"
# Not translated in Catalan Windows
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Common Files"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Eines d'administració"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Música"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Imatges"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vídeos"
# Not translated in Catalan Windows
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"

View File

@ -10288,9 +10288,10 @@ msgstr "Přejete si ukončit relaci Wine?"
msgid "Programs"
msgstr "Programy"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Mé dokumenty"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenty"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10304,13 +10305,13 @@ msgstr "Po spuštění"
msgid "Start Menu"
msgstr "Nabídka Start"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Má hudba"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Hudba"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Má videa"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videa"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10337,35 +10338,18 @@ msgstr "Historie"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Mé obrázky"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Obrázky"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Common Files"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenty"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Nástroje pro správu"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Hudba"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Obrázky"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videa"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -10527,9 +10527,10 @@ msgstr "Vil du lukke din Wine session?"
msgid "Programs"
msgstr "Programmer"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Mine dokumenter"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenter"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10543,12 +10544,12 @@ msgstr "Start op"
msgid "Start Menu"
msgstr "Start menu"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Min Musik"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Mine Film"
#: dlls/shell32/shell32.rc:210
@ -10576,35 +10577,18 @@ msgstr "Historie"
msgid "Program Files"
msgstr "Programmer"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Mine Billeder"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Almindelige filer"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenter"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administrative Værktøjer"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Min Musik"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Mine Billeder"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Mine Film"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programmer"

View File

@ -10093,9 +10093,10 @@ msgstr "Möchten Sie die aktuelle Wine-Sitzung beenden?"
msgid "Programs"
msgstr "Programme"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Meine Dokumente"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumente"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10109,13 +10110,13 @@ msgstr "Autostart"
msgid "Start Menu"
msgstr "Startmenü"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Eigene Musik"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musik"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Eigene Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10142,35 +10143,18 @@ msgstr "Verlauf"
msgid "Program Files"
msgstr "Programme"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Eigene Bilder"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Bilder"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Gemeinsame Dateien"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumente"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Verwaltung"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musik"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Bilder"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videos"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programme (x86)"

View File

@ -10089,9 +10089,10 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Τα Έγγραφά μου"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
#, fuzzy
@ -10106,12 +10107,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -10141,8 +10142,8 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
@ -10150,27 +10151,10 @@ msgstr ""
msgid "Common Files"
msgstr "Μη έγγυρος(οι) χαρακτήρας(ες) στο μονοπάτι"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -9974,9 +9974,10 @@ msgstr "Do you want to shutdown your Wine session?"
msgid "Programs"
msgstr "Programs"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -9990,13 +9991,13 @@ msgstr "StartUp"
msgid "Start Menu"
msgstr "Start Menu"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Music"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10023,35 +10024,18 @@ msgstr "History"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Pictures"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Common Files"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administrative Tools"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Music"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Pictures"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videos"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -9974,9 +9974,10 @@ msgstr "Do you want to shutdown your Wine session?"
msgid "Programs"
msgstr "Programs"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -9990,13 +9991,13 @@ msgstr "StartUp"
msgid "Start Menu"
msgstr "Start Menu"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Music"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10023,35 +10024,18 @@ msgstr "History"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Pictures"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Common Files"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administrative Tools"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Music"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Pictures"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videos"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -10145,9 +10145,10 @@ msgstr "Ĉu vi volas adiaŭi Wine?"
msgid "Programs"
msgstr "Programoj"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Miaj Dokumentoj"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumentoj"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10161,13 +10162,13 @@ msgstr "Starto"
msgid "Start Menu"
msgstr "Starta menuo"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Mia Muziko"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muziko"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Miaj Videoj"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videoj"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10194,35 +10195,18 @@ msgstr "Historio"
msgid "Program Files"
msgstr "Programaj Dosieroj"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Miaj Bildoj"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Bildoj"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Komunaj dosieroj"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumentoj"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administriloj"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muziko"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Bildoj"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videoj"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programaj dosieroj (x86)"

View File

@ -10313,9 +10313,10 @@ msgstr "¿Desea cerrar su sesión de Wine?"
msgid "Programs"
msgstr "Programas"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Mis Documentos"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documentos"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10329,13 +10330,13 @@ msgstr "Arranque"
msgid "Start Menu"
msgstr "Menú Inicio"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Mi música"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Música"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Mis vídeos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vídeos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10362,35 +10363,18 @@ msgstr "Historial"
msgid "Program Files"
msgstr "Archivos de programa"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Mis imágenes"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Imágenes"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Archivos comunes"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documentos"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Herramientas administrativas"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Música"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Imágenes"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vídeos"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Archivos de programa (x86)"

View File

@ -10021,8 +10021,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -10037,12 +10038,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -10070,37 +10071,19 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
#, fuzzy
msgid "My Pictures"
msgstr "ذخیره &به نام..."
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
#, fuzzy
msgid "Common Files"
msgstr "&محتویات"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10064,9 +10064,10 @@ msgstr "Haluatko lopettaa Wine-istunnon?"
msgid "Programs"
msgstr "Ohjelmat"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Omat tiedostot"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Tiedostot"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10080,13 +10081,13 @@ msgstr "Käynnistys"
msgid "Start Menu"
msgstr "Käynnistä-valikko"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Omat musiikkitiedostot"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musiikki"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Omat videotiedostot"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videot"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10113,35 +10114,18 @@ msgstr "Historia"
msgid "Program Files"
msgstr "Ohjelmatiedostot"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Omat kuvatiedostot"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Kuvat"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Yhteiset tiedostot"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Tiedostot"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Hallintatyökalut"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musiikki"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Kuvat"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videot"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Ohjelmatiedostot (x86)"

View File

@ -10449,9 +10449,10 @@ msgstr "Voulez-vous clôturer la session Wine ?"
msgid "Programs"
msgstr "Programmes"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Mes documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10465,13 +10466,13 @@ msgstr "Démarrage"
msgid "Start Menu"
msgstr "Menu Démarrer"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Ma musique"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musique"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Mes vidéos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vidéos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10498,35 +10499,18 @@ msgstr "Historique"
msgid "Program Files"
msgstr "Programmes"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Mes images"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Images"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Fichiers communs"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Outils d'administration"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musique"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Images"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vidéos"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programmes (x86)"

View File

@ -10484,9 +10484,10 @@ msgstr "האם ברצונך לכבות את הפעלת ה־Wine שלך?"
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "המסמכים שלי"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "מסמכים"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10500,13 +10501,13 @@ msgstr ""
msgid "Start Menu"
msgstr "תפריט ההתחלה"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "המוזיקה שלי"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "מוזיקה"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "הווידאו שלי"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "וידאו"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10533,37 +10534,20 @@ msgstr "היסטוריה"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "התמונות שלי"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "תמונות"
#: dlls/shell32/shell32.rc:218
#, fuzzy
msgid "Common Files"
msgstr "העתקת קבצים..."
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "מסמכים"
#: dlls/shell32/shell32.rc:220
#, fuzzy
msgid "Administrative Tools"
msgstr "תפריט ההתחלה\\תכניות\\כלי ניהול"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "מוזיקה"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "תמונות"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "וידאו"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -9874,8 +9874,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -9890,12 +9891,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -9923,35 +9924,18 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr ""
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10450,9 +10450,10 @@ msgstr "Želite li ugasiti Wine sjednicu?"
msgid "Programs"
msgstr "Programi"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Moji dokumenti"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenti"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10466,13 +10467,13 @@ msgstr ""
msgid "Start Menu"
msgstr "'Start' izbornik"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Moja glazba"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Glazba"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Moji video"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10499,35 +10500,18 @@ msgstr "Povijest"
msgid "Program Files"
msgstr "Programske datoteke"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Moje slike"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Slike"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Zajedničke datoteke"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenti"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administrativni alati"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Glazba"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Slike"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programske datoteke (x86)"

View File

@ -10488,8 +10488,9 @@ msgstr "Le szeretné állítani a Wine munkamenetét?"
msgid "Programs"
msgstr "Programok"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumentumok"
#: dlls/shell32/shell32.rc:205
@ -10504,12 +10505,12 @@ msgstr "Indítópult"
msgid "Start Menu"
msgstr "Start menü"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Zene"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videók"
#: dlls/shell32/shell32.rc:210
@ -10537,35 +10538,18 @@ msgstr "Előzmény"
msgid "Program Files"
msgstr "Programok"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Képek"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Egyszerű név"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumentumok"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Felügyeleti eszközök"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Zene"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Képek"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videók"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programok (x86)"

View File

@ -10556,8 +10556,9 @@ msgstr "Vuoi terminare la sessione di Wine?"
msgid "Programs"
msgstr "Programmi"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documenti"
#: dlls/shell32/shell32.rc:205
@ -10572,12 +10573,12 @@ msgstr "Esecuzione automatica"
msgid "Start Menu"
msgstr "Menu Start"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musica"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video"
#: dlls/shell32/shell32.rc:210
@ -10605,35 +10606,18 @@ msgstr "Cronologia"
msgid "Program Files"
msgstr "Programmi"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Immagini"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "File Comuni"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documenti"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Strumenti di amministrazione"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musica"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Immagini"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programmi (x86)"

View File

@ -10066,9 +10066,10 @@ msgstr "Wine セッションをシャットダウンしますか?"
msgid "Programs"
msgstr "プログラム"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10082,13 +10083,13 @@ msgstr "StartUp"
msgid "Start Menu"
msgstr "Start Menu"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Music"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10115,35 +10116,18 @@ msgstr "History"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Pictures"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Common Files"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documents"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administrative Tools"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Music"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Pictures"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videos"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -10057,9 +10057,10 @@ msgstr "Wine 세션을 종료하시겠습니까?"
msgid "Programs"
msgstr "프로그램"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "내 문서"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "문서"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10073,13 +10074,13 @@ msgstr "시작 프로그램"
msgid "Start Menu"
msgstr "시작 메뉴"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "음악"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "음악"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "비디오"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "비디오"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10106,35 +10107,18 @@ msgstr "기록"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "그림"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "그림"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Common Files"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "문서"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "관리 도구"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "음악"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "그림"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "비디오"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -9974,8 +9974,9 @@ msgstr "Ar norite sustabdyti šį „Wine“ seansą?"
msgid "Programs"
msgstr "Programos"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumentai"
#: dlls/shell32/shell32.rc:205
@ -9990,12 +9991,12 @@ msgstr "Paleidimas"
msgid "Start Menu"
msgstr "Pradžios meniu"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muzika"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vaizdai"
#: dlls/shell32/shell32.rc:210
@ -10023,35 +10024,18 @@ msgstr "Istorija"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Paveikslai"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Bendrieji failai"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumentai"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administravimo įrankiai"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muzika"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Paveikslai"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vaizdai"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -9873,8 +9873,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -9889,12 +9890,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -9922,35 +9923,18 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr ""
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10235,9 +10235,10 @@ msgstr "Vil du avslutte Wine-økten?"
msgid "Programs"
msgstr "Programmer"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Mine dokumenter"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenter"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10251,13 +10252,13 @@ msgstr "Oppstart"
msgid "Start Menu"
msgstr "Start-meny"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Min musikk"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musikk"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Mine videoklipp"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10284,35 +10285,18 @@ msgstr "Historikk"
msgid "Program Files"
msgstr "Programfiler"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Mine bilder"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Bilder"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Fellesfiler"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenter"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administrative verktøy"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musikk"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Bilder"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programfiler (x86)"

View File

@ -9989,9 +9989,10 @@ msgstr "Wilt u uw Wine sessie afsluiten?"
msgid "Programs"
msgstr "Programma's"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Mijn Documenten"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documenten"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10005,13 +10006,13 @@ msgstr "Opstarten"
msgid "Start Menu"
msgstr "Start Menu"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Mijn Muziek"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muziek"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Mijn Video's"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video's"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10038,35 +10039,18 @@ msgstr "Geschiedenis"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Mijn Afbeeldingen"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Afbeeldingen"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Gemeenschappelijke Bestanden"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documenten"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administratief gereedschap"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muziek"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Afbeeldingen"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video's"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -9859,8 +9859,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -9875,12 +9876,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -9908,35 +9909,18 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr ""
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -9859,8 +9859,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -9875,12 +9876,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -9908,35 +9909,18 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr ""
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10093,9 +10093,10 @@ msgstr "Czy chcesz wyłączyć sesję Wine'a?"
msgid "Programs"
msgstr "Programy"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Moje Dokumenty"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenty"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10109,13 +10110,13 @@ msgstr "Autostart"
msgid "Start Menu"
msgstr "Menu Start"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Moja muzyka"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muzyka"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Moje wideo"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Wideo"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10142,35 +10143,18 @@ msgstr "Historia"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Moje obrazy"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Obrazy"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Common Files"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenty"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Narzędzia administracyjne"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muzyka"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Obrazy"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Wideo"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Pliki programów (x86)"

View File

@ -10094,9 +10094,10 @@ msgstr "Deseja finalizar a sessão do Wine?"
msgid "Programs"
msgstr "Programas"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Meus Documentos"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documentos"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10110,13 +10111,13 @@ msgstr "Inicialização"
msgid "Start Menu"
msgstr "Menu Iniciar"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Minhas Músicas"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Documentos\\Minhas Músicas"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Meus Vídeos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Documentos\\Meus Vídeos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10143,35 +10144,18 @@ msgstr "Histórico"
msgid "Program Files"
msgstr "Arquivos de programas"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Minhas Imagens"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Documentos\\Minhas Imagens"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Arquivos Comuns"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documentos"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Ferramentas Administrativas"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Documentos\\Minhas Músicas"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Documentos\\Minhas Imagens"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Documentos\\Meus Vídeos"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Arquivos de programas (x86)"

View File

@ -10337,9 +10337,10 @@ msgstr "Deseja finalizar esta sessão do Wine?"
msgid "Programs"
msgstr "Programas"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Os Meus Documentos"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documentos"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10353,13 +10354,13 @@ msgstr "Inicialização"
msgid "Start Menu"
msgstr "Menu Iniciar"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "As Minhas Músicas"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Músicas"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Os Meus Vídeos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vídeos"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10386,35 +10387,18 @@ msgstr "Histórico"
msgid "Program Files"
msgstr "Programas"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "As Minhas Imagens"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Imagens"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Ficheiros Comuns"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documentos"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Ferramentas Administrativas"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Músicas"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Imagens"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Vídeos"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programas (x86)"

View File

@ -9934,8 +9934,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -9950,12 +9951,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -9984,35 +9985,18 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr ""
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10428,9 +10428,10 @@ msgstr "Vreți să opriți sesiunea de Wine?"
msgid "Programs"
msgstr "Programe"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Documentele mele"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documente"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10444,12 +10445,14 @@ msgstr ""
msgid "Start Menu"
msgstr "Meniu Start"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
#, fuzzy
msgid "Music"
msgstr "Muzica mea"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
#, fuzzy
msgid "Videos"
msgstr "Filmele mele"
#: dlls/shell32/shell32.rc:210
@ -10477,40 +10480,21 @@ msgstr "Istorie"
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
#, fuzzy
msgid "Pictures"
msgstr "Pozele mele"
#: dlls/shell32/shell32.rc:218
#, fuzzy
msgid "Common Files"
msgstr "Nume uzual"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Documente"
#: dlls/shell32/shell32.rc:220
#, fuzzy
msgid "Administrative Tools"
msgstr "Scule administrative"
#: dlls/shell32/shell32.rc:221
#, fuzzy
msgid "Music"
msgstr "Muzica mea"
#: dlls/shell32/shell32.rc:222
#, fuzzy
msgid "Pictures"
msgstr "Pozele mele"
#: dlls/shell32/shell32.rc:223
#, fuzzy
msgid "Videos"
msgstr "Filmele mele"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10149,9 +10149,10 @@ msgstr "Закончить работу с Wine?"
msgid "Programs"
msgstr "Программы"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Мои документы"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Документы"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10165,13 +10166,13 @@ msgstr "Автозагрузка"
msgid "Start Menu"
msgstr "Главное меню"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Моя музыка"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Музыка"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Мои фильмы"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Видео"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10198,35 +10199,18 @@ msgstr "История"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Мои рисунки"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Рисунки"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Common Files"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Документы"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Администрирование"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Музыка"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Рисунки"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Видео"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -10070,9 +10070,10 @@ msgstr "ඔබගේ Wine සැසිම වසා දමන්න ඕනෙද
msgid "Programs"
msgstr "ක්‍රමලේඛයන්"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "මගේ ලේඛන"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "ලේඛ"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10086,13 +10087,13 @@ msgstr "StartUp"
msgid "Start Menu"
msgstr "ඇරඹුම් මෙනුව"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "මගේ සංගීත"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "සංගීත"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "මගේ වීඩියෝ"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "වීඩියෝ"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10119,35 +10120,18 @@ msgstr "ඉතිහාසය"
msgid "Program Files"
msgstr "ක්‍රමලේඛ ගොනු"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "මගේ පින්තූර"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "පින්තූර"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "පොදු ගොනු"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "ලේඛ"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "පරිපාලක මෙවලම්"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "සංගීත"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "පින්තූර"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "වීඩියෝ"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "ක්‍රමලේඛ ගොනු (x86)"

View File

@ -10287,9 +10287,10 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Moje dokumenty"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10303,12 +10304,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -10338,8 +10339,8 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
@ -10347,27 +10348,10 @@ msgstr ""
msgid "Common Files"
msgstr "Kopírovanie súborov..."
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10544,9 +10544,10 @@ msgstr "Ali želite končati svojo sejo Wine?"
msgid "Programs"
msgstr "Programi"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Moji dokumenti"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenti"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10560,13 +10561,13 @@ msgstr "Zagon"
msgid "Start Menu"
msgstr "Meni Start"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Moja glasba"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Glasba"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Moji videi"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videi"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10593,35 +10594,18 @@ msgstr "Zgodovina"
msgid "Program Files"
msgstr "Programi"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Moje slike"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Slike"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Skupne datoteke"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenti"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Skrbniška orodja"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Glasba"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Slike"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videi"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programi (x86)"

View File

@ -10507,8 +10507,9 @@ msgstr "Желите ли да изгасите Wine сесију?"
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Документи"
#: dlls/shell32/shell32.rc:205
@ -10523,12 +10524,12 @@ msgstr ""
msgid "Start Menu"
msgstr "„Старт“ мени"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Музика"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Видео снимци"
#: dlls/shell32/shell32.rc:210
@ -10557,8 +10558,8 @@ msgstr ""
msgid "Program Files"
msgstr "Програми"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Слике"
#: dlls/shell32/shell32.rc:218
@ -10566,28 +10567,11 @@ msgstr "Слике"
msgid "Common Files"
msgstr "Умножавање датотека..."
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Документи"
#: dlls/shell32/shell32.rc:220
#, fuzzy
msgid "Administrative Tools"
msgstr "„Старт“ мени\\Програми\\Административне алатке"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Музика"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Слике"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Видео снимци"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Програми (x86)"

View File

@ -10641,8 +10641,9 @@ msgstr "Želite li da izgasite Wine sesiju?"
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenti"
#: dlls/shell32/shell32.rc:205
@ -10657,12 +10658,12 @@ msgstr ""
msgid "Start Menu"
msgstr "„Start“ meni"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muzika"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video snimci"
#: dlls/shell32/shell32.rc:210
@ -10691,8 +10692,8 @@ msgstr "Istorija"
msgid "Program Files"
msgstr "Programi"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Slike"
#: dlls/shell32/shell32.rc:218
@ -10700,28 +10701,11 @@ msgstr "Slike"
msgid "Common Files"
msgstr "Umnožavanje datoteka..."
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokumenti"
#: dlls/shell32/shell32.rc:220
#, fuzzy
msgid "Administrative Tools"
msgstr "„Start“ meni\\Programi\\Administrativne alatke"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Muzika"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Slike"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Video snimci"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Programi (x86)"

View File

@ -10298,9 +10298,10 @@ msgstr "Vill du avsluta Wine?"
msgid "Programs"
msgstr "Program"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Mina dokument"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokument"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10314,13 +10315,13 @@ msgstr ""
msgid "Start Menu"
msgstr "Start-meny"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Min musik"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musik"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Mina videoklipp"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videoklipp"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10347,35 +10348,18 @@ msgstr "Historik"
msgid "Program Files"
msgstr "Program"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Mina bilder"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Bilder"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Delade filer"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Dokument"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Administrationsverktyg"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Musik"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Bilder"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videoklipp"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program (x86)"

View File

@ -9797,8 +9797,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -9813,12 +9814,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -9846,35 +9847,18 @@ msgstr ""
msgid "Program Files"
msgstr "நிரல் கோப்புகள்"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr ""
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "நிரல் கோப்புகள் (x86)"

View File

@ -9859,8 +9859,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -9875,12 +9876,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -9908,35 +9909,18 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr ""
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10109,9 +10109,10 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "พื้นที่ส่วนตัว"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10125,12 +10126,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -10159,8 +10160,8 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
@ -10168,27 +10169,10 @@ msgstr ""
msgid "Common Files"
msgstr "เนื้อหา"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10080,9 +10080,10 @@ msgstr "Wine oturumunuzu kapatmak istediğinizden emin misiniz?"
msgid "Programs"
msgstr "Programlar"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Belgelerim"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Belgeler"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10096,13 +10097,13 @@ msgstr "Başlangıç"
msgid "Start Menu"
msgstr "Başlat Menüsü"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Müziğim"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Müzik"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Videolarım"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videolar"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10129,35 +10130,18 @@ msgstr "Geçmiş"
msgid "Program Files"
msgstr "Program Dosyaları"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Resimlerim"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Resimler"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "Ortak Dosyalar"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Belgeler"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "Yönetim Araçları"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Müzik"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Resimler"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Videolar"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Dosyaları (x86)"

View File

@ -10157,9 +10157,10 @@ msgstr "Завершити сесію роботи Wine?"
msgid "Programs"
msgstr "Програми"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "Мої документи"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Документи"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10173,13 +10174,13 @@ msgstr "Автозавантаження"
msgid "Start Menu"
msgstr "Головне меню"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "Моя Музика"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Музика"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "Мої Фільми"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Фільми"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10206,35 +10207,18 @@ msgstr "Історія"
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "Мої Малюнки"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Малюнки"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr ""
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "Документи"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "Музика"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "Малюнки"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "Фільми"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10008,8 +10008,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -10024,12 +10025,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -10058,8 +10059,8 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
@ -10067,27 +10068,10 @@ msgstr ""
msgid "Common Files"
msgstr "Å&dvins"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -9778,8 +9778,9 @@ msgstr ""
msgid "Programs"
msgstr ""
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:205
@ -9794,12 +9795,12 @@ msgstr ""
msgid "Start Menu"
msgstr ""
#: dlls/shell32/shell32.rc:208
msgid "My Music"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:210
@ -9827,35 +9828,18 @@ msgstr ""
msgid "Program Files"
msgstr ""
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr ""
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr ""
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr ""
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr ""
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr ""
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr ""
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr ""

View File

@ -10008,9 +10008,10 @@ msgstr "要关闭 Wine 会话吗?"
msgid "Programs"
msgstr "程序"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "我的文档"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "文档"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10024,13 +10025,13 @@ msgstr "启动"
msgid "Start Menu"
msgstr "开始菜单"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "我的音乐"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "音乐"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "我的视频"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "视频"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10057,35 +10058,18 @@ msgstr "历史"
msgid "Program Files"
msgstr "Program Files"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "我的图片"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "图片"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "公共文件"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "文档"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "管理人员工具"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "音乐"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "图片"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "视频"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "Program Files (x86)"

View File

@ -10410,9 +10410,10 @@ msgstr "您確定要關閉您的 Wine 工作階段嗎?"
msgid "Programs"
msgstr "程式"
#: dlls/shell32/shell32.rc:204
msgid "My Documents"
msgstr "我的文件"
#: dlls/shell32/shell32.rc:204 dlls/shell32/shell32.rc:219
#: dlls/shell32/shell32.rc:150 dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "文件"
#: dlls/shell32/shell32.rc:205
msgid "Favorites"
@ -10426,13 +10427,13 @@ msgstr "啟動"
msgid "Start Menu"
msgstr "開始功能表"
#: dlls/shell32/shell32.rc:208
msgid "My Music"
msgstr "我的音樂"
#: dlls/shell32/shell32.rc:208 dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "音樂"
#: dlls/shell32/shell32.rc:209
msgid "My Videos"
msgstr "我的影片"
#: dlls/shell32/shell32.rc:209 dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "視訊"
#: dlls/shell32/shell32.rc:210
msgctxt "directory"
@ -10459,35 +10460,18 @@ msgstr "歷程"
msgid "Program Files"
msgstr "程式檔案"
#: dlls/shell32/shell32.rc:217
msgid "My Pictures"
msgstr "我的圖片"
#: dlls/shell32/shell32.rc:217 dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "圖片"
#: dlls/shell32/shell32.rc:218
msgid "Common Files"
msgstr "共同檔案"
#: dlls/shell32/shell32.rc:219 dlls/shell32/shell32.rc:150
#: dlls/shell32/shell32.rc:235
msgid "Documents"
msgstr "文件"
#: dlls/shell32/shell32.rc:220
msgid "Administrative Tools"
msgstr "系統管理工具"
#: dlls/shell32/shell32.rc:221
msgid "Music"
msgstr "音樂"
#: dlls/shell32/shell32.rc:222
msgid "Pictures"
msgstr "圖片"
#: dlls/shell32/shell32.rc:223
msgid "Videos"
msgstr "視訊"
#: dlls/shell32/shell32.rc:216
msgid "Program Files (x86)"
msgstr "程式檔案 (x86)"