From 2989886a133641720fae64383c3b724316212531 Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Tue, 16 Aug 2022 18:40:48 +0200 Subject: [PATCH] compstui: Add partial CommonPropertySheetUIW implementation. --- dlls/compstui/Makefile.in | 3 + dlls/compstui/compstui.rc | 31 ++++ dlls/compstui/compstui_main.c | 358 +++++++++++++++++++++++++++++++++++++++++- po/ar.po | 24 +-- po/ast.po | 25 +-- po/bg.po | 23 +-- po/ca.po | 24 +-- po/cs.po | 24 +-- po/da.po | 24 +-- po/de.po | 24 +-- po/el.po | 25 +-- po/en.po | 22 +-- po/en_US.po | 22 +-- po/eo.po | 24 +-- po/es.po | 24 +-- po/fa.po | 25 +-- po/fi.po | 24 +-- po/fr.po | 24 +-- po/he.po | 23 +-- po/hi.po | 24 +-- po/hr.po | 24 +-- po/hu.po | 24 +-- po/it.po | 24 +-- po/ja.po | 24 +-- po/ko.po | 24 +-- po/lt.po | 24 +-- po/ml.po | 24 +-- po/nb_NO.po | 24 +-- po/nl.po | 24 +-- po/or.po | 24 +-- po/pa.po | 24 +-- po/pl.po | 24 +-- po/pt_BR.po | 24 +-- po/pt_PT.po | 24 +-- po/rm.po | 22 +-- po/ro.po | 24 +-- po/ru.po | 24 +-- po/si.po | 24 +-- po/sk.po | 34 ++-- po/sl.po | 24 +-- po/sr_RS@cyrillic.po | 23 +-- po/sr_RS@latin.po | 27 ++-- po/sv.po | 24 +-- po/ta.po | 22 +-- po/te.po | 24 +-- po/th.po | 25 +-- po/tr.po | 24 +-- po/uk.po | 24 +-- po/wa.po | 25 +-- po/wine.pot | 22 +-- po/zh_CN.po | 24 +-- po/zh_TW.po | 24 +-- 52 files changed, 1115 insertions(+), 458 deletions(-) create mode 100644 dlls/compstui/compstui.rc diff --git a/dlls/compstui/Makefile.in b/dlls/compstui/Makefile.in index 5d265611cbe..98ec5cb48e7 100644 --- a/dlls/compstui/Makefile.in +++ b/dlls/compstui/Makefile.in @@ -1,7 +1,10 @@ MODULE = compstui.dll IMPORTLIB = compstui +IMPORTS = comctl32 user32 EXTRADLLFLAGS = -Wb,--prefer-native C_SRCS = \ compstui_main.c + +RC_SRCS = compstui.rc diff --git a/dlls/compstui/compstui.rc b/dlls/compstui/compstui.rc new file mode 100644 index 00000000000..9866d2924a5 --- /dev/null +++ b/dlls/compstui/compstui.rc @@ -0,0 +1,31 @@ +/* + * Copyright 2022 Piotr Caban + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include +#include + +#pragma makedep po + +LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT + +STRINGTABLE +{ + IDS_CPSUI_PROPERTIES "Properties" + IDS_CPSUI_OPTIONS "Options" + IDS_CPSUI_DEFAULT "Default" +} diff --git a/dlls/compstui/compstui_main.c b/dlls/compstui/compstui_main.c index 96ca3343963..b7a08e1c52b 100644 --- a/dlls/compstui/compstui_main.c +++ b/dlls/compstui/compstui_main.c @@ -18,19 +18,364 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ +#include #include +#include +#include #define COBJMACROS #include "windef.h" #include "winbase.h" #include "winuser.h" +#include "prsht.h" #include "ddk/compstui.h" #include "wine/debug.h" WINE_DEFAULT_DEBUG_CHANNEL(compstui); +static HMODULE compstui_hmod; + +typedef struct +{ + WORD size; + WORD flags; + union + { + WCHAR *titleW; + char *titleA; + }; + HWND parent; + HINSTANCE hinst; + union + { + HICON hicon; + ULONG_PTR icon_id; + }; +} PROPSHEETUI_INFO_HEADERAW; + +struct propsheet +{ + int pages_cnt; + HANDLE pages[100]; +}; + +struct propsheetpage +{ + HPROPSHEETPAGE hpsp; +}; + +#define HANDLE_FIRST 0x43440001 +static struct cps_data +{ + enum + { + HANDLE_FREE = 0, + HANDLE_PROPSHEET, + HANDLE_PROPSHEETPAGE + } type; + union + { + void *data; + struct cps_data *next_free; + struct propsheet *ps; + struct propsheetpage *psp; + }; +} handles[0x1000]; +static struct cps_data *first_free_handle = handles; + +static CRITICAL_SECTION handles_cs; +static CRITICAL_SECTION_DEBUG handles_cs_debug = +{ + 0, 0, &handles_cs, + { &handles_cs_debug.ProcessLocksList, &handles_cs_debug.ProcessLocksList }, + 0, 0, { (DWORD_PTR)(__FILE__ ": handles_cs") } +}; +static CRITICAL_SECTION handles_cs = { &handles_cs_debug, -1, 0, 0, 0, 0 }; + +static struct cps_data* get_handle_data(HANDLE handle) +{ + struct cps_data *ret; + + if ((ULONG_PTR)handle < HANDLE_FIRST || (ULONG_PTR)handle >= HANDLE_FIRST + ARRAY_SIZE(handles)) + return NULL; + + ret = &handles[(ULONG_PTR)handle - HANDLE_FIRST]; + return ret->type == HANDLE_FREE ? NULL : ret; +} + +static HANDLE alloc_handle(struct cps_data **cps_data, int type) +{ + void *data = NULL; + + switch(type) + { + case HANDLE_PROPSHEET: + data = calloc(1, sizeof(struct propsheet)); + break; + case HANDLE_PROPSHEETPAGE: + data = calloc(1, sizeof(struct propsheetpage)); + break; + } + + if (!data) + return NULL; + + EnterCriticalSection(&handles_cs); + + if (first_free_handle >= handles + ARRAY_SIZE(handles)) + { + LeaveCriticalSection(&handles_cs); + FIXME("out of handles\n"); + free(data); + return NULL; + } + + *cps_data = first_free_handle; + if ((*cps_data)->next_free) + first_free_handle = (*cps_data)->next_free; + else + first_free_handle = (*cps_data) + 1; + LeaveCriticalSection(&handles_cs); + + (*cps_data)->type = type; + (*cps_data)->data = data; + return (HANDLE)(HANDLE_FIRST + ((*cps_data) - handles)); +} + +static void free_handle(HANDLE handle) +{ + struct cps_data *data = get_handle_data(handle); + + if (!data) + return; + + data->type = HANDLE_FREE; + free(data->data); + + EnterCriticalSection(&handles_cs); + data->next_free = first_free_handle; + first_free_handle = data; + LeaveCriticalSection(&handles_cs); +} + +static HANDLE add_hpropsheetpage(HANDLE hcps, HPROPSHEETPAGE hpsp) +{ + struct cps_data *cps_data = get_handle_data(hcps); + struct cps_data *cpsp_data; + HANDLE ret; + + if (!cps_data || !hpsp) + return 0; + + if (cps_data->type != HANDLE_PROPSHEET) + { + FIXME("unsupported handle type %d\n", cps_data->type); + return 0; + } + + if (cps_data->ps->pages_cnt == ARRAY_SIZE(cps_data->ps->pages)) + return 0; + + ret = alloc_handle(&cpsp_data, HANDLE_PROPSHEETPAGE); + if (!ret) + return 0; + cpsp_data->psp->hpsp = hpsp; + + cps_data->ps->pages[cps_data->ps->pages_cnt++] = ret; + return ret; +} + +static LONG_PTR WINAPI cps_callback(HANDLE hcps, UINT func, LPARAM lparam1, LPARAM lparam2) +{ + TRACE("(%p, %u, %Ix, %Ix\n", hcps, func, lparam1, lparam2); + + switch(func) + { + case CPSFUNC_ADD_HPROPSHEETPAGE: + return (LONG_PTR)add_hpropsheetpage(hcps, (HPROPSHEETPAGE)lparam1); + case CPSFUNC_ADD_PROPSHEETPAGEW: + case CPSFUNC_ADD_PCOMPROPSHEETUIA: + case CPSFUNC_ADD_PCOMPROPSHEETUIW: + case CPSFUNC_ADD_PFNPROPSHEETUIA: + case CPSFUNC_ADD_PFNPROPSHEETUIW: + case CPSFUNC_DELETE_HCOMPROPSHEET: + case CPSFUNC_SET_HSTARTPAGE: + case CPSFUNC_GET_PAGECOUNT: + case CPSFUNC_SET_RESULT: + case CPSFUNC_GET_HPSUIPAGES: + case CPSFUNC_LOAD_CPSUI_STRINGA: + case CPSFUNC_LOAD_CPSUI_STRINGW: + case CPSFUNC_LOAD_CPSUI_ICON: + case CPSFUNC_GET_PFNPROPSHEETUI_ICON: + case CPSFUNC_ADD_PROPSHEETPAGEA: + case CPSFUNC_INSERT_PSUIPAGEA: + case CPSFUNC_INSERT_PSUIPAGEW: + case CPSFUNC_SET_PSUIPAGE_TITLEA: + case CPSFUNC_SET_PSUIPAGE_TITLEW: + case CPSFUNC_SET_PSUIPAGE_ICON: + case CPSFUNC_SET_DATABLOCK: + case CPSFUNC_QUERY_DATABLOCK: + case CPSFUNC_SET_DMPUB_HIDEBITS: + case CPSFUNC_IGNORE_CPSUI_PSN_APPLY: + case CPSFUNC_DO_APPLY_CPSUI: + case CPSFUNC_SET_FUSION_CONTEXT: + FIXME("func not supported %d\n", func); + return 0; + default: + ERR("unknown func: %d\n", func); + return 0; + } +} + +static LONG create_property_sheetW(struct propsheet *ps, PROPSHEETUI_INFO_HEADERAW *header) +{ + HPROPSHEETPAGE hpsp[100]; + PROPSHEETHEADERW psh; + WCHAR title[256]; + LONG_PTR ret; + int i, len; + + if (!ps->pages_cnt) + return ERR_CPSUI_NO_PROPSHEETPAGE; + + memset(&psh, 0, sizeof(psh)); + psh.dwSize = sizeof(psh); + if (header->flags & PSUIHDRF_NOAPPLYNOW) + psh.dwFlags |= PSH_NOAPPLYNOW; + psh.hwndParent = header->parent; + psh.hInstance = header->hinst; + psh.pszCaption = title; + + if (!(header->flags & PSUIHDRF_USEHICON) && !header->icon_id) + header->icon_id = IDI_CPSUI_OPTION; + + if (header->flags & PSUIHDRF_USEHICON) + { + psh.dwFlags |= PSH_USEHICON; + psh.hIcon = header->hicon; + } + else if (header->icon_id >= IDI_CPSUI_ICONID_FIRST && + header->icon_id <= IDI_CPSUI_ICONID_LAST) + { + FIXME("icon not implemented: %Id\n", header->icon_id); + } + else + { + psh.dwFlags |= PSH_USEICONID; + psh.pszIcon = (WCHAR*)header->icon_id; + } + + if (header->titleW) + wcscpy_s(title, ARRAY_SIZE(title), header->titleW); + else + LoadStringW(compstui_hmod, IDS_CPSUI_OPTIONS, title, ARRAY_SIZE(title)); + + if ((header->flags & PSUIHDRF_DEFTITLE) && + (!header->titleW || !(header->flags & PSUIHDRF_EXACT_PTITLE))) + { + len = wcslen(title); + if (len < ARRAY_SIZE(title)) + title[len++] = ' '; + LoadStringW(compstui_hmod, IDS_CPSUI_DEFAULT, title + len, ARRAY_SIZE(title) - len); + } + + if ((header->flags & PSUIHDRF_PROPTITLE) && + (!header->titleW || !(header->flags & PSUIHDRF_EXACT_PTITLE))) + { + len = wcslen(title); + if (len < ARRAY_SIZE(title)) + title[len++] = ' '; + LoadStringW(compstui_hmod, IDS_CPSUI_PROPERTIES, title + len, ARRAY_SIZE(title) - len); + } + + psh.nPages = ps->pages_cnt; + psh.phpage = hpsp; + for (i = 0; i < ps->pages_cnt; i++) + hpsp[i] = get_handle_data(ps->pages[i])->psp->hpsp; + + ret = PropertySheetW(&psh); + + switch(ret) + { + case -1: + return ERR_CPSUI_GETLASTERROR; + case ID_PSREBOOTSYSTEM: + return CPSUI_REBOOTSYSTEM; + case ID_PSRESTARTWINDOWS: + return CPSUI_RESTARTWINDOWS; + default: + return CPSUI_OK; + } +} + +static LONG create_prop_dlg(HWND hwnd, PFNPROPSHEETUI callback, LPARAM lparam, DWORD *res, BOOL unicode) +{ + PROPSHEETUI_INFO info, callback_info; + PROPSHEETUI_INFO_HEADERAW header; + struct cps_data *cps_data; + HANDLE cps_handle; + LONG ret; + int i; + + if (!callback || !(cps_handle = alloc_handle(&cps_data, HANDLE_PROPSHEET))) + { + SetLastError(0); + return ERR_CPSUI_GETLASTERROR; + } + + memset(&info, 0, sizeof(info)); + info.cbSize = sizeof(info); + info.lParamInit = lparam; + callback_info = info; + callback_info.Reason = PROPSHEETUI_REASON_BEFORE_INIT; + callback(&callback_info, lparam); + + info.Version = PROPSHEETUI_INFO_VERSION; + info.Flags = unicode ? PSUIINFO_UNICODE : 0; + info.hComPropSheet = cps_handle; + info.pfnComPropSheet = cps_callback; + callback_info = info; + callback_info.Reason = PROPSHEETUI_REASON_INIT; + ret = callback(&callback_info, lparam); + info.UserData = callback_info.UserData; + info.Result = callback_info.Result; + if (ret <= 0) + { + ret = ERR_CPSUI_GETLASTERROR; + goto destroy; + } + + memset(&header, 0, sizeof(header)); + header.size = sizeof(header); + header.parent = hwnd; + callback_info = info; + callback_info.Reason = PROPSHEETUI_REASON_GET_INFO_HEADER; + ret = callback(&callback_info, (LPARAM)&header); + info.UserData = callback_info.UserData; + info.Result = callback_info.Result; + if (ret <= 0) + { + ret = ERR_CPSUI_GETLASTERROR; + goto destroy; + } + + ret = create_property_sheetW(cps_data->ps, &header); + +destroy: + callback_info = info; + callback_info.Reason = PROPSHEETUI_REASON_DESTROY; + callback(&callback_info, ret < 0 ? 0 : 0x100); + + for (i = 0; i < cps_data->ps->pages_cnt; i++) + free_handle(cps_data->ps->pages[i]); + free_handle(cps_handle); + + if (res) *res = callback_info.Result; + return ret; +} + /****************************************************************** * CommonPropertySheetUIA (COMPSTUI.@) * @@ -45,10 +390,10 @@ LONG WINAPI CommonPropertySheetUIA(HWND hWnd, PFNPROPSHEETUI pfnPropSheetUI, LPA * CommonPropertySheetUIW (COMPSTUI.@) * */ -LONG WINAPI CommonPropertySheetUIW(HWND hWnd, PFNPROPSHEETUI pfnPropSheetUI, LPARAM lparam, LPDWORD pResult) +LONG WINAPI CommonPropertySheetUIW(HWND hwnd, PFNPROPSHEETUI callback, LPARAM lparam, LPDWORD res) { - FIXME("(%p, %p, 0x%Ix, %p)\n", hWnd, pfnPropSheetUI, lparam, pResult); - return CPSUI_CANCEL; + TRACE("(%p, %p, 0x%Ix, %p)\n", hwnd, callback, lparam, res); + return create_prop_dlg(hwnd, callback, lparam, res, TRUE); } /****************************************************************** @@ -70,3 +415,10 @@ BOOL WINAPI SetCPSUIUserData(HWND hDlg, ULONG_PTR UserData ) FIXME("(%p, %08Ix): stub\n", hDlg, UserData); return TRUE; } + +BOOL WINAPI DllMain(HINSTANCE hinst, DWORD reason, void *reserved) +{ + if (reason == DLL_PROCESS_ATTACH) + compstui_hmod = hinst; + return TRUE; +} diff --git a/po/ar.po b/po/ar.po index 51f1764abc2..f5847b9a1e2 100644 --- a/po/ar.po +++ b/po/ar.po @@ -1331,6 +1331,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "مليمتر" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "خصائص" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "الخيارات" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "الافتراضيات" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "ا&سم المستخدم:" @@ -3425,11 +3440,6 @@ msgstr "المنزل" msgid "Sync" msgstr "مزامنة" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "الخيارات" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "الأمام" @@ -10323,10 +10333,6 @@ msgstr "مجلد ج&ديد" msgid "New &Link" msgstr "ا&ختصار جديد" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "خصائص" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/ast.po b/po/ast.po index e4e5756223d..817aea99f5e 100644 --- a/po/ast.po +++ b/po/ast.po @@ -1317,6 +1317,22 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Propiedaes" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Opciones" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgctxt "object state" +#| msgid "default" +msgid "Default" +msgstr "por defeutu" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "" @@ -3333,11 +3349,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Opciones" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Alantre" @@ -9900,10 +9911,6 @@ msgstr "&Carpeta nueva" msgid "New &Link" msgstr "&Enllaz nuevu" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Propiedaes" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/bg.po b/po/bg.po index 261c5623aa4..cbecb9f8617 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1352,6 +1352,20 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "мм" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Свойства" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +msgid "Default" +msgstr "Системен път" + #: dlls/credui/credui.rc:45 #, fuzzy msgid "&User name:" @@ -3437,11 +3451,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -10153,10 +10162,6 @@ msgstr "Нова &папка" msgid "New &Link" msgstr "Нова &връзка" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Свойства" - #: dlls/shell32/shell32.rc:85 #, fuzzy msgctxt "recycle bin" diff --git a/po/ca.po b/po/ca.po index 66da7714ab4..a0938bb86c6 100644 --- a/po/ca.po +++ b/po/ca.po @@ -1326,6 +1326,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Propietats" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Opcions" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Per defecte" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Nom d'usuari:" @@ -3427,11 +3442,6 @@ msgstr "Inici" msgid "Sync" msgstr "Sincronitza" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Opcions" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Endavant" @@ -9877,10 +9887,6 @@ msgstr "&Carpeta nova" msgid "New &Link" msgstr "En&llaç nou" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Propietats" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/cs.po b/po/cs.po index 845c016c668..d927eb5566e 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1337,6 +1337,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "&Vlastnosti" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Volby" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Výchozí nastavení" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Uživatelské jméno:" @@ -3372,11 +3387,6 @@ msgstr "Domů" msgid "Sync" msgstr "Synchronizovat" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Volby" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Vpřed" @@ -10174,10 +10184,6 @@ msgstr "Nová &složka" msgid "New &Link" msgstr "Nový &odkaz" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "&Vlastnosti" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/da.po b/po/da.po index a604337ec14..f96ea0d38ff 100644 --- a/po/da.po +++ b/po/da.po @@ -1347,6 +1347,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Egenskaber" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Indstillinger" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Standarder" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Brugernavn:" @@ -3454,11 +3469,6 @@ msgstr "Hjem" msgid "Sync" msgstr "Synkroniser" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Indstillinger" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Frem" @@ -10403,10 +10413,6 @@ msgstr "&Mappe" msgid "New &Link" msgstr "&Genvej" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Egenskaber" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/de.po b/po/de.po index 7e70fa0c6cb..3a9f13e2425 100644 --- a/po/de.po +++ b/po/de.po @@ -1324,6 +1324,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "&Eigenschaften" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Einstellungen" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Standards" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Benutzername:" @@ -3416,11 +3431,6 @@ msgstr "Übersicht" msgid "Sync" msgstr "Synchronisieren" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Einstellungen" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Vorwärts" @@ -9856,10 +9866,6 @@ msgstr "Neuer &Ordner" msgid "New &Link" msgstr "Neue Ver&knüpfung" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "&Eigenschaften" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/el.po b/po/el.po index 05c02a87e3c..0a33cffd74b 100644 --- a/po/el.po +++ b/po/el.po @@ -1315,6 +1315,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "Επιλογές" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Επιλογές" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +msgid "Default" +msgstr "Προεπιλεγμένος εκτυπωτής; " + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "" @@ -3361,11 +3376,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Επιλογές" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9959,11 +9969,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "Επιλογές" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/en.po b/po/en.po index ed175787d9f..69d5b2f46b3 100644 --- a/po/en.po +++ b/po/en.po @@ -1322,6 +1322,19 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Properties" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Options" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "Default" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&User name:" @@ -3410,11 +3423,6 @@ msgstr "Home" msgid "Sync" msgstr "Sync" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Options" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Forward" @@ -9840,10 +9848,6 @@ msgstr "New &Folder" msgid "New &Link" msgstr "New &Link" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Properties" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/en_US.po b/po/en_US.po index 2d0b1434456..bd05c2824e2 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -1322,6 +1322,19 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Properties" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Options" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "Default" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&User name:" @@ -3410,11 +3423,6 @@ msgstr "Home" msgid "Sync" msgstr "Sync" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Options" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Forward" @@ -9840,10 +9848,6 @@ msgstr "New &Folder" msgid "New &Link" msgstr "New &Link" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Properties" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/eo.po b/po/eo.po index d938d02b0c0..fa147d91ddf 100644 --- a/po/eo.po +++ b/po/eo.po @@ -1329,6 +1329,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Ecoj" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Defaŭltojn" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Salutnomo:" @@ -3353,11 +3368,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -10021,10 +10031,6 @@ msgstr "Nova &Dosierujo" msgid "New &Link" msgstr "Nova &Ligo" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Ecoj" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/es.po b/po/es.po index f31e22c3526..ac59180fd01 100644 --- a/po/es.po +++ b/po/es.po @@ -1326,6 +1326,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Propiedades" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Opciones" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Configuraciones por defecto" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Usuario:" @@ -3428,11 +3443,6 @@ msgstr "Inicio" msgid "Sync" msgstr "Sincronizar" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Opciones" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Adelante" @@ -10127,10 +10137,6 @@ msgstr "Nueva &carpeta" msgid "New &Link" msgstr "Nuevo &acceso directo" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Propiedades" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/fa.po b/po/fa.po index e095dedae34..848cdc312cb 100644 --- a/po/fa.po +++ b/po/fa.po @@ -1336,6 +1336,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "انتخاب &همه\tCtrl+A" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +msgid "Default" +msgstr "صفحه &p" + #: dlls/credui/credui.rc:45 #, fuzzy msgid "&User name:" @@ -3392,11 +3407,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9883,11 +9893,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "انتخاب &همه\tCtrl+A" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/fi.po b/po/fi.po index f1f1e5e87ea..ca7ca5c5b9d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1317,6 +1317,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Ominaisuudet" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Valinnat" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Oletukset" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Käyttäjänimi:" @@ -3404,11 +3419,6 @@ msgstr "Alkuun" msgid "Sync" msgstr "Synkronoi" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Valinnat" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Seuraava" @@ -9831,10 +9841,6 @@ msgstr "Uusi &kansio" msgid "New &Link" msgstr "Uusi &linkki" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Ominaisuudet" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/fr.po b/po/fr.po index 6ee57daba3e..21bd7e3439d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1326,6 +1326,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Propriétés" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Options" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Valeurs par défaut" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Nom d'utilisateur :" @@ -3431,11 +3446,6 @@ msgstr "Sommaire" msgid "Sync" msgstr "Synchroniser" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Options" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Suivant" @@ -9923,10 +9933,6 @@ msgstr "Nouveau d&ossier" msgid "New &Link" msgstr "Nouveau &lien" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Propriétés" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/he.po b/po/he.po index e527d86d0df..a433824f9ad 100644 --- a/po/he.po +++ b/po/he.po @@ -1347,6 +1347,20 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "מ״מ" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "מאפיינים" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "אפשרויות" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +msgid "Default" +msgstr "הגדרת &בררות מחדל" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&שם המשתמש:" @@ -3428,11 +3442,6 @@ msgstr "דף הבית" msgid "Sync" msgstr "סנכרון" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "אפשרויות" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "קדימה" @@ -10346,10 +10355,6 @@ msgstr "&תיקייה חדשה" msgid "New &Link" msgstr "&קישור חדש" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "מאפיינים" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/hi.po b/po/hi.po index 1519ea0ff9c..886952d21c9 100644 --- a/po/hi.po +++ b/po/hi.po @@ -1296,6 +1296,20 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "सूचना (&o)" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "" @@ -3332,11 +3346,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9739,11 +9748,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "सूचना (&o)" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/hr.po b/po/hr.po index dd4f8897b2b..818ccf8498e 100644 --- a/po/hr.po +++ b/po/hr.po @@ -1336,6 +1336,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Svojstva" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Postavke" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Podrazumijevano" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Korisničko ime:" @@ -3428,11 +3443,6 @@ msgstr "Početna" msgid "Sync" msgstr "Uskladi" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Postavke" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Naprijed" @@ -10326,10 +10336,6 @@ msgstr "Nova &mapa" msgid "New &Link" msgstr "Nova &veza" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Svojstva" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/hu.po b/po/hu.po index 4f51d1d3931..ce5efc551c6 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1351,6 +1351,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Tulajdonságok" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Opciók" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Alapértékek" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Felhasználónév:" @@ -3468,11 +3483,6 @@ msgstr "Kezdőlap" msgid "Sync" msgstr "Szink." -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Opciók" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Előre" @@ -10364,10 +10374,6 @@ msgstr "Új ma&ppa" msgid "New &Link" msgstr "Új &link" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Tulajdonságok" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/it.po b/po/it.po index 2c11d2df27c..b52d7d51d73 100644 --- a/po/it.po +++ b/po/it.po @@ -1357,6 +1357,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Proprietà" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Opzioni" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Valori predefiniti" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Nome Utente:" @@ -3478,11 +3493,6 @@ msgstr "Inizio" msgid "Sync" msgstr "Sincronizza" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Opzioni" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Avanti" @@ -10426,10 +10436,6 @@ msgstr "Nuova &cartella" msgid "New &Link" msgstr "Nuovo co&llegamento" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Proprietà" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/ja.po b/po/ja.po index 6d67bc99ce3..e6f9b9f525d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1325,6 +1325,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "プロパティ" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "オプション" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "デフォルト" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "ユーザー名(&U):" @@ -3404,11 +3419,6 @@ msgstr "ホーム" msgid "Sync" msgstr "同期" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "オプション" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "進む" @@ -9855,10 +9865,6 @@ msgstr "新規フォルダー(&F)" msgid "New &Link" msgstr "新規ショートカット(&L)" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "プロパティ" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/ko.po b/po/ko.po index d37e31d7f38..df741c7dfeb 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1320,6 +1320,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "속성" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "옵션" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "기본값" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "사용자 이름(&U):" @@ -3394,11 +3409,6 @@ msgstr "홈" msgid "Sync" msgstr "동기화" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "옵션" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "앞으로" @@ -9815,10 +9825,6 @@ msgstr "새 폴더(&F)" msgid "New &Link" msgstr "새 링크(&L)" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "속성" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/lt.po b/po/lt.po index f724184ba58..e5d694b2b06 100644 --- a/po/lt.po +++ b/po/lt.po @@ -1323,6 +1323,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Savybės" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Parinktys" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Numatytosios reikšmės" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Naudotojo vardas:" @@ -3413,11 +3428,6 @@ msgstr "Į pradžią" msgid "Sync" msgstr "Sinchronizuoti" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Parinktys" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Pirmyn" @@ -9840,10 +9850,6 @@ msgstr "Naujas &aplankas" msgid "New &Link" msgstr "Nauja &nuoroda" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Savybės" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/ml.po b/po/ml.po index aed81750999..d97e27212f0 100644 --- a/po/ml.po +++ b/po/ml.po @@ -1298,6 +1298,20 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "വി_വരം" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "" @@ -3334,11 +3348,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9738,11 +9747,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "വി_വരം" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/nb_NO.po b/po/nb_NO.po index 2895378395b..e35a7292196 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -1321,6 +1321,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Egenskaper" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Alternativer" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Standardverdier" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "Br&ukernavn:" @@ -3415,11 +3430,6 @@ msgstr "Hjem" msgid "Sync" msgstr "Synkroniser" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Alternativer" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Fram" @@ -10083,10 +10093,6 @@ msgstr "Ny &mappe" msgid "New &Link" msgstr "Ny &snarvei" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Egenskaper" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/nl.po b/po/nl.po index da8cc5b1489..839fb642d1a 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1325,6 +1325,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Eigenschappen" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Instellingen" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Multimedia Apparaten" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Gebruikersnaam:" @@ -3423,11 +3438,6 @@ msgstr "Startpagina" msgid "Sync" msgstr "Synchroniseren" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Instellingen" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Vooruit" @@ -9855,10 +9865,6 @@ msgstr "Nieuwe &map" msgid "New &Link" msgstr "Nieuwe sne&lkoppeling" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Eigenschappen" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/or.po b/po/or.po index 066f22b7b26..c4c789a7fe3 100644 --- a/po/or.po +++ b/po/or.po @@ -1296,6 +1296,20 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "ସୂଚନା (&o)" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "" @@ -3332,11 +3346,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9724,11 +9733,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "ସୂଚନା (&o)" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/pa.po b/po/pa.po index 73c49584a18..4fa4eef76d3 100644 --- a/po/pa.po +++ b/po/pa.po @@ -1296,6 +1296,20 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "ਜਾਣਕਾਰੀ(&o)" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "" @@ -3332,11 +3346,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9724,11 +9733,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "ਜਾਣਕਾਰੀ(&o)" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/pl.po b/po/pl.po index 3ebb2e2f87e..64ca79ae4c3 100644 --- a/po/pl.po +++ b/po/pl.po @@ -1328,6 +1328,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Właściwości" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Ustawienia" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Domyślne" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "Nazwa &użytkownika:" @@ -3426,11 +3441,6 @@ msgstr "Strona główna" msgid "Sync" msgstr "Synchronizuj" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Ustawienia" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Dalej" @@ -9877,10 +9887,6 @@ msgstr "Nowy &Katalog" msgid "New &Link" msgstr "&Skrót" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Właściwości" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/pt_BR.po b/po/pt_BR.po index 4471c1e57f9..8db44c337af 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -1325,6 +1325,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Propriedades" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Opções" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Dispositivos Padrões" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Nome de usuário:" @@ -3423,11 +3438,6 @@ msgstr "Início" msgid "Sync" msgstr "Sincronizar" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Opções" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Avançar" @@ -9875,10 +9885,6 @@ msgstr "&Pasta" msgid "New &Link" msgstr "Novo A&talho" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Propriedades" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/pt_PT.po b/po/pt_PT.po index 96eb4b9f3b2..79a6b859fe8 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -1349,6 +1349,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Propriedades" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Opções" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Valores pré-definidos" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "Nome de &Utlizador:" @@ -3454,11 +3469,6 @@ msgstr "Início" msgid "Sync" msgstr "Sincronizar" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Opções" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Avançar" @@ -10209,10 +10219,6 @@ msgstr "&Pasta" msgid "New &Link" msgstr "&Atalho" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Propriedades" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/rm.po b/po/rm.po index eb7ce89cd92..faac89f59c8 100644 --- a/po/rm.po +++ b/po/rm.po @@ -1316,6 +1316,19 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "" + #: dlls/credui/credui.rc:45 #, fuzzy msgid "&User name:" @@ -3359,11 +3372,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9795,10 +9803,6 @@ msgstr "" msgid "New &Link" msgstr "&Rivir" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/ro.po b/po/ro.po index 29d61df0ad6..a43e686cfcd 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1324,6 +1324,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Proprietăți" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Opțiuni" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Implicite" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "Nume &utilizator:" @@ -3423,11 +3438,6 @@ msgstr "Acasă" msgid "Sync" msgstr "Sincronizează" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Opțiuni" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Înainte" @@ -10294,10 +10304,6 @@ msgstr "&Dosar nou" msgid "New &Link" msgstr "&Link nou" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Proprietăți" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/ru.po b/po/ru.po index 420d457ef0c..6938bf6b7e7 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1332,6 +1332,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "мм" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Сво&йства" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Настройки" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "По умолчанию" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "По&льзователь:" @@ -3424,11 +3439,6 @@ msgstr "Начало" msgid "Sync" msgstr "Синхронизировать" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Настройки" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Вперёд" @@ -9912,10 +9922,6 @@ msgstr "&Папка" msgid "New &Link" msgstr "&Ярлык" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Сво&йства" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/si.po b/po/si.po index f3028a21903..1eeca00c97a 100644 --- a/po/si.po +++ b/po/si.po @@ -1334,6 +1334,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "ගුණාංග" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "විකල්ප" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "පෙරනිමි" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "පරිශීලක නම (&U):" @@ -3359,11 +3374,6 @@ msgstr "මුල" msgid "Sync" msgstr "සමමුහුර්ත කරන්න" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "විකල්ප" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "ඉදිරියට" @@ -9961,10 +9971,6 @@ msgstr "අලුත් ෆෝල්ඩරයක් (&F)" msgid "New &Link" msgstr "අලුත් සබැඳියක් (&L)" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "ගුණාංග" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/sk.po b/po/sk.po index 58c638de0f7..7006996870d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1350,6 +1350,26 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "" +"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" +"&Vlastnosti\n" +"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" +"&Properties" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Voľby" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Predvolené" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Užívateľské meno:" @@ -3387,11 +3407,6 @@ msgstr "Domov" msgid "Sync" msgstr "Synchronizovať" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Voľby" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Späť" @@ -10152,15 +10167,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "" -"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" -"&Vlastnosti\n" -"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" -"&Properties" - #: dlls/shell32/shell32.rc:85 #, fuzzy msgctxt "recycle bin" diff --git a/po/sl.po b/po/sl.po index 0786a59a79e..431bd86d123 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1356,6 +1356,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Lastnosti" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Možnosti" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Privzeto" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Uporabniško ime:" @@ -3472,11 +3487,6 @@ msgstr "Domov" msgid "Sync" msgstr "Uskladi" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Možnosti" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Naprej" @@ -10420,10 +10430,6 @@ msgstr "Nova &mapa" msgid "New &Link" msgstr "Nova &povezava" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Lastnosti" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 633df24cf11..5b034f8fe6f 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -1350,6 +1350,20 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "мм" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Својства" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Опције" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +msgid "Default" +msgstr "Подразумевано" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Корисничко име:" @@ -3448,11 +3462,6 @@ msgstr "Почетна" msgid "Sync" msgstr "Усклади" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Опције" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 #, fuzzy msgid "Forward" @@ -10371,10 +10380,6 @@ msgstr "Нова &фасцикла" msgid "New &Link" msgstr "Нова &веза" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Својства" - #: dlls/shell32/shell32.rc:85 #, fuzzy msgctxt "recycle bin" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 0384df8d3d8..db72bec655a 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -1421,6 +1421,24 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Svojstva" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Opcije" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +msgid "Default" +msgstr "" +"#-#-#-#-# sr_RS@latin.po (Wine) #-#-#-#-#\n" +"Podrazumevano\n" +"#-#-#-#-# sr_RS@latin.po (Wine) #-#-#-#-#\n" +"Osnovno" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Korisničko ime:" @@ -3530,11 +3548,6 @@ msgstr "Početna" msgid "Sync" msgstr "Uskladi" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Opcije" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 #, fuzzy msgid "Forward" @@ -10497,10 +10510,6 @@ msgstr "Nova &fascikla" msgid "New &Link" msgstr "Nova &veza" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Svojstva" - #: dlls/shell32/shell32.rc:85 #, fuzzy msgctxt "recycle bin" diff --git a/po/sv.po b/po/sv.po index ebf98bcb03f..d0cc4080df3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1335,6 +1335,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Egenskaper" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Alternativ" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Standardvärden" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "A&nvändarnamn:" @@ -3433,11 +3448,6 @@ msgstr "Startsida" msgid "Sync" msgstr "Synkronisera" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Alternativ" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Framåt" @@ -10176,10 +10186,6 @@ msgstr "Ny &mapp" msgid "New &Link" msgstr "Ny &länk" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Egenskaper" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/ta.po b/po/ta.po index cd01961787a..458c4858fb7 100644 --- a/po/ta.po +++ b/po/ta.po @@ -1289,6 +1289,19 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "" @@ -3305,11 +3318,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9667,10 +9675,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/te.po b/po/te.po index f40ea127656..c31f8f5914f 100644 --- a/po/te.po +++ b/po/te.po @@ -1296,6 +1296,20 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "సమాచారము (&o)" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "" @@ -3332,11 +3346,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9724,11 +9733,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "సమాచారము (&o)" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/th.po b/po/th.po index f015b903530..5350b6c9a08 100644 --- a/po/th.po +++ b/po/th.po @@ -1317,6 +1317,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "มม." +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "ปรับแต่งนาฬิกา" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +msgid "Default" +msgstr "เครื่องพิมพ์ปกติ; " + #: dlls/credui/credui.rc:45 #, fuzzy msgid "&User name:" @@ -3377,11 +3392,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9973,11 +9983,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "ปรับแต่งนาฬิกา" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/tr.po b/po/tr.po index 3494d25ba5d..a2361e498c4 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1329,6 +1329,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "mm" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Özellikler" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Seçenekler" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Varsayılanlar" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Kullanıcı adı:" @@ -3417,11 +3432,6 @@ msgstr "Ev" msgid "Sync" msgstr "Eşitle" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Seçenekler" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "İleri" @@ -9972,10 +9982,6 @@ msgstr "Yeni Kl&asör" msgid "New &Link" msgstr "Yeni &Kısayol" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Özellikler" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/uk.po b/po/uk.po index 4acd5ff8fff..7b69c1c5fab 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1322,6 +1322,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "мм" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "Властивості" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "Параметри" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "Типове" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "&Користувач:" @@ -3414,11 +3429,6 @@ msgstr "Додому" msgid "Sync" msgstr "Синхронізувати" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "Параметри" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "Вперед" @@ -10033,10 +10043,6 @@ msgstr "Нова &Тека" msgid "New &Link" msgstr "Нове &Посилання" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "Властивості" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/wa.po b/po/wa.po index 1d00525a96d..78f6370543d 100644 --- a/po/wa.po +++ b/po/wa.po @@ -1327,6 +1327,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +#, fuzzy +msgid "Properties" +msgstr "&Propietés" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +msgid "Default" +msgstr "Pådje &p" + #: dlls/credui/credui.rc:45 #, fuzzy msgid "&User name:" @@ -3387,11 +3402,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9872,11 +9882,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -#, fuzzy -msgid "Properties" -msgstr "&Propietés" - #: dlls/shell32/shell32.rc:85 #, fuzzy msgctxt "recycle bin" diff --git a/po/wine.pot b/po/wine.pot index d4c2ddc23f1..7d83e60817f 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -1280,6 +1280,19 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "" + +#: dlls/compstui/compstui.rc:31 +msgid "Default" +msgstr "" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "" @@ -3296,11 +3309,6 @@ msgstr "" msgid "Sync" msgstr "" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "" @@ -9646,10 +9654,6 @@ msgstr "" msgid "New &Link" msgstr "" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/zh_CN.po b/po/zh_CN.po index a2e9c90d8f5..2d99dfc26f4 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -1308,6 +1308,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "毫米" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "属性" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "选项" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "默认值" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "用户名(&U):" @@ -3363,11 +3378,6 @@ msgstr "首页" msgid "Sync" msgstr "同步" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "选项" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "向前" @@ -9792,10 +9802,6 @@ msgstr "新建文件夹(&F)" msgid "New &Link" msgstr "新建快捷方式(&L)" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "属性" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" diff --git a/po/zh_TW.po b/po/zh_TW.po index 70a051a0a42..e49da497c00 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1310,6 +1310,21 @@ msgctxt "unit: millimeters" msgid "mm" msgstr "毫米" +#: dlls/compstui/compstui.rc:29 dlls/shell32/shell32.rc:74 +msgid "Properties" +msgstr "內容" + +#: dlls/compstui/compstui.rc:30 dlls/hhctrl.ocx/hhctrl.rc:50 +#: programs/conhost/conhost.rc:51 programs/wordpad/wordpad.rc:166 +msgid "Options" +msgstr "選項" + +#: dlls/compstui/compstui.rc:31 +#, fuzzy +#| msgid "Defaults" +msgid "Default" +msgstr "預設" + #: dlls/credui/credui.rc:45 msgid "&User name:" msgstr "使用者名稱(&U):" @@ -3369,11 +3384,6 @@ msgstr "首頁" msgid "Sync" msgstr "同步" -#: dlls/hhctrl.ocx/hhctrl.rc:50 programs/conhost/conhost.rc:51 -#: programs/wordpad/wordpad.rc:166 -msgid "Options" -msgstr "選項" - #: dlls/hhctrl.ocx/hhctrl.rc:51 dlls/ieframe/ieframe.rc:67 msgid "Forward" msgstr "下一頁" @@ -9778,10 +9788,6 @@ msgstr "新增資料夾(&F)" msgid "New &Link" msgstr "新增連結(&L)" -#: dlls/shell32/shell32.rc:74 -msgid "Properties" -msgstr "內容" - #: dlls/shell32/shell32.rc:85 msgctxt "recycle bin" msgid "&Restore" -- 2.11.4.GIT