compstui: Add partial CommonPropertySheetUIW implementation.
This commit is contained in:
parent
74dded1154
commit
2989886a13
52 changed files with 1115 additions and 458 deletions
|
@ -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
|
||||
|
|
31
dlls/compstui/compstui.rc
Normal file
31
dlls/compstui/compstui.rc
Normal file
|
@ -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 <windows.h>
|
||||
#include <ddk/compstui.h>
|
||||
|
||||
#pragma makedep po
|
||||
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
||||
|
||||
STRINGTABLE
|
||||
{
|
||||
IDS_CPSUI_PROPERTIES "Properties"
|
||||
IDS_CPSUI_OPTIONS "Options"
|
||||
IDS_CPSUI_DEFAULT "Default"
|
||||
}
|
|
@ -18,19 +18,364 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#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;
|
||||
}
|
||||
|
|
24
po/ar.po
24
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"
|
||||
|
|
25
po/ast.po
25
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"
|
||||
|
|
23
po/bg.po
23
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"
|
||||
|
|
24
po/ca.po
24
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"
|
||||
|
|
24
po/cs.po
24
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"
|
||||
|
|
24
po/da.po
24
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"
|
||||
|
|
24
po/de.po
24
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"
|
||||
|
|
25
po/el.po
25
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"
|
||||
|
|
22
po/en.po
22
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"
|
||||
|
|
22
po/en_US.po
22
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"
|
||||
|
|
24
po/eo.po
24
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"
|
||||
|
|
24
po/es.po
24
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"
|
||||
|
|
25
po/fa.po
25
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"
|
||||
|
|
24
po/fi.po
24
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"
|
||||
|
|
24
po/fr.po
24
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"
|
||||
|
|
23
po/he.po
23
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"
|
||||
|
|
24
po/hi.po
24
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"
|
||||
|
|
24
po/hr.po
24
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"
|
||||
|
|
24
po/hu.po
24
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"
|
||||
|
|
24
po/it.po
24
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"
|
||||
|
|
24
po/ja.po
24
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"
|
||||
|
|
24
po/ko.po
24
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"
|
||||
|
|
24
po/lt.po
24
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"
|
||||
|
|
24
po/ml.po
24
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"
|
||||
|
|
24
po/nb_NO.po
24
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"
|
||||
|
|
24
po/nl.po
24
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"
|
||||
|
|
24
po/or.po
24
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"
|
||||
|
|
24
po/pa.po
24
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"
|
||||
|
|
24
po/pl.po
24
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"
|
||||
|
|
24
po/pt_BR.po
24
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"
|
||||
|
|
24
po/pt_PT.po
24
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"
|
||||
|
|
22
po/rm.po
22
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"
|
||||
|
|
24
po/ro.po
24
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"
|
||||
|
|
24
po/ru.po
24
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"
|
||||
|
|
24
po/si.po
24
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"
|
||||
|
|
34
po/sk.po
34
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"
|
||||
|
|
24
po/sl.po
24
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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
24
po/sv.po
24
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"
|
||||
|
|
22
po/ta.po
22
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"
|
||||
|
|
24
po/te.po
24
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"
|
||||
|
|
25
po/th.po
25
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"
|
||||
|
|
24
po/tr.po
24
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"
|
||||
|
|
24
po/uk.po
24
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"
|
||||
|
|
25
po/wa.po
25
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"
|
||||
|
|
22
po/wine.pot
22
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"
|
||||
|
|
24
po/zh_CN.po
24
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"
|
||||
|
|
24
po/zh_TW.po
24
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"
|
||||
|
|
Loading…
Add table
Reference in a new issue