inetcpl: Display description and security level for a zone.
This commit is contained in:
parent
25a1d80725
commit
758e5f76a2
|
@ -77,6 +77,12 @@ BEGIN
|
|||
CONTROL "Listview", IDC_SEC_LISTVIEW, "SysListView32",
|
||||
LVS_ICON | LVS_ALIGNLEFT | LVS_AUTOARRANGE | LVS_SINGLESEL | LVS_SHOWSELALWAYS | WS_BORDER | WS_VSCROLL,
|
||||
4, 4, 312, 58
|
||||
LTEXT "", IDC_SEC_ZONE_INFO, 4, 68, 312, 20
|
||||
GROUPBOX "", IDC_SEC_GROUP, 4, 88, 312, 126
|
||||
CONTROL "trackbar", IDC_SEC_TRACKBAR, "msctls_trackbar32",
|
||||
TBS_VERT | TBS_AUTOTICKS | TBS_BOTH | TBS_REVERSED, 8, 98, 32, 100
|
||||
LTEXT "", IDC_SEC_LEVEL, 48, 102, 180, 12
|
||||
LTEXT "", IDC_SEC_LEVEL_INFO, 48, 114, 260, 80
|
||||
END
|
||||
|
||||
/* "Content" propsheet */
|
||||
|
|
|
@ -58,6 +58,19 @@ static inline BOOL heap_free( void *mem )
|
|||
/* strings */
|
||||
#define IDS_CPL_NAME 1
|
||||
#define IDS_CPL_INFO 2
|
||||
#define IDS_SEC_SETTINGS 0x10
|
||||
#define IDS_SEC_LEVEL0 0x100
|
||||
#define IDS_SEC_LEVEL1 0x101
|
||||
#define IDS_SEC_LEVEL2 0x102
|
||||
#define IDS_SEC_LEVEL3 0x103
|
||||
#define IDS_SEC_LEVEL4 0x104
|
||||
#define IDS_SEC_LEVEL5 0x105
|
||||
#define IDS_SEC_LEVEL0_INFO 0x200
|
||||
#define IDS_SEC_LEVEL1_INFO 0x210
|
||||
#define IDS_SEC_LEVEL2_INFO 0x220
|
||||
#define IDS_SEC_LEVEL3_INFO 0x230
|
||||
#define IDS_SEC_LEVEL4_INFO 0x240
|
||||
#define IDS_SEC_LEVEL5_INFO 0x250
|
||||
|
||||
/* dialogs */
|
||||
#define IDC_STATIC -1
|
||||
|
@ -79,6 +92,11 @@ static inline BOOL heap_free( void *mem )
|
|||
|
||||
#define IDD_SECURITY 2000
|
||||
#define IDC_SEC_LISTVIEW 2001
|
||||
#define IDC_SEC_ZONE_INFO 2002
|
||||
#define IDC_SEC_GROUP 2003
|
||||
#define IDC_SEC_TRACKBAR 2004
|
||||
#define IDC_SEC_LEVEL 2005
|
||||
#define IDC_SEC_LEVEL_INFO 2006
|
||||
|
||||
#define IDD_CONTENT 4000
|
||||
#define IDC_CERT 4100
|
||||
|
|
|
@ -26,7 +26,14 @@ LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
|||
STRINGTABLE DISCARDABLE
|
||||
BEGIN
|
||||
IDS_CPL_NAME "Internet Settings"
|
||||
IDS_CPL_INFO "Configure Wine Internet Browser and related settings"
|
||||
IDS_CPL_INFO "Configure Wine Internet Browser and related settings"
|
||||
IDS_SEC_SETTINGS "Security settings for zone: "
|
||||
IDS_SEC_LEVEL0 "Custom"
|
||||
IDS_SEC_LEVEL1 "Very Low"
|
||||
IDS_SEC_LEVEL2 "Low"
|
||||
IDS_SEC_LEVEL3 "Medium"
|
||||
IDS_SEC_LEVEL4 "Increased"
|
||||
IDS_SEC_LEVEL5 "High"
|
||||
END
|
||||
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
|
|
@ -44,15 +44,112 @@ WINE_DEFAULT_DEBUG_CHANNEL(inetcpl);
|
|||
typedef struct secdlg_data_s {
|
||||
HWND hsec; /* security propsheet */
|
||||
HWND hlv; /* listview */
|
||||
HWND htb; /* trackbar */
|
||||
IInternetSecurityManager *sec_mgr;
|
||||
IInternetZoneManager *zone_mgr;
|
||||
DWORD zone_enumerator;
|
||||
DWORD num_zones;
|
||||
ZONEATTRIBUTES *zone_attr;
|
||||
DWORD *zones;
|
||||
DWORD *levels;
|
||||
HIMAGELIST himages;
|
||||
DWORD last_lv_index;
|
||||
DWORD last_level;
|
||||
} secdlg_data;
|
||||
|
||||
#define NUM_TRACKBAR_POS 5
|
||||
|
||||
static WCHAR spaceW[] = {' ',0};
|
||||
static DWORD url_templates[] = {URLTEMPLATE_CUSTOM,
|
||||
URLTEMPLATE_LOW,
|
||||
URLTEMPLATE_MEDLOW,
|
||||
URLTEMPLATE_MEDIUM,
|
||||
URLTEMPLATE_MEDHIGH,
|
||||
URLTEMPLATE_HIGH};
|
||||
|
||||
/*********************************************************************
|
||||
* index_from_urltemplate [internal]
|
||||
*
|
||||
*/
|
||||
static DWORD index_from_urltemplate(URLTEMPLATE value)
|
||||
{
|
||||
|
||||
DWORD index = sizeof(url_templates) / sizeof(url_templates[0]);
|
||||
|
||||
while((index > 0) && (url_templates[index-1] != value))
|
||||
index--;
|
||||
|
||||
index--; /* table entries are 0 based */
|
||||
if (!index && value)
|
||||
FIXME("URLTEMPLATE 0x%x not supported\n", value);
|
||||
|
||||
TRACE("URLTEMPLATE 0x%08x=> Level %d\n", value, index);
|
||||
return index;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* update_security_level [internal]
|
||||
*
|
||||
*/
|
||||
static void update_security_level(secdlg_data *sd, DWORD lv_index, DWORD tb_index)
|
||||
{
|
||||
WCHAR name[512];
|
||||
DWORD current_index;
|
||||
|
||||
TRACE("(%p, lv_index: %u, tb_index: %u)\n", sd, lv_index, tb_index);
|
||||
|
||||
if ((sd->levels[lv_index] != sd->last_level) || (tb_index > 0)) {
|
||||
/* show or hide the trackbar */
|
||||
if (!sd->levels[lv_index] || !sd->last_level)
|
||||
ShowWindow(sd->htb, sd->levels[lv_index] ? SW_NORMAL : SW_HIDE);
|
||||
|
||||
current_index = (tb_index > 0) ? tb_index : index_from_urltemplate(sd->levels[lv_index]);
|
||||
|
||||
name[0] = 0;
|
||||
LoadStringW(hcpl, IDS_SEC_LEVEL0 + current_index, name, sizeof(name)/sizeof(name[0]));
|
||||
TRACE("new level #%d: %s\n", current_index, debugstr_w(name));
|
||||
SetWindowTextW(GetDlgItem(sd->hsec, IDC_SEC_LEVEL), name);
|
||||
|
||||
name[0] = 0;
|
||||
LoadStringW(hcpl, IDS_SEC_LEVEL0_INFO + (current_index * 0x10), name, sizeof(name)/sizeof(name[0]));
|
||||
TRACE("new level info: %s\n", debugstr_w(name));
|
||||
SetWindowTextW(GetDlgItem(sd->hsec, IDC_SEC_LEVEL_INFO), name);
|
||||
|
||||
if (current_index)
|
||||
SendMessageW(sd->htb, TBM_SETPOS, TRUE, NUM_TRACKBAR_POS - current_index);
|
||||
|
||||
sd->last_level = sd->levels[lv_index];
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* update_zone_info [internal]
|
||||
*
|
||||
*/
|
||||
static void update_zone_info(secdlg_data *sd, DWORD lv_index)
|
||||
{
|
||||
ZONEATTRIBUTES *za = &sd->zone_attr[lv_index];
|
||||
WCHAR name[MAX_PATH];
|
||||
DWORD len;
|
||||
|
||||
SetWindowTextW(GetDlgItem(sd->hsec, IDC_SEC_ZONE_INFO), za->szDescription);
|
||||
|
||||
name[0] = ' ';
|
||||
name[1] = 0;
|
||||
|
||||
LoadStringW(hcpl, IDS_SEC_SETTINGS, &name[1], sizeof(name)/sizeof(name[0]) - 3);
|
||||
len = lstrlenW(name);
|
||||
lstrcpynW(&name[len], za->szDisplayName, sizeof(name)/sizeof(name[0]) - len - 3);
|
||||
lstrcatW(name, spaceW);
|
||||
|
||||
TRACE("new title: %s\n", debugstr_w(name));
|
||||
SetWindowTextW(GetDlgItem(sd->hsec, IDC_SEC_GROUP), name);
|
||||
|
||||
update_security_level(sd, lv_index, 0);
|
||||
sd->last_lv_index = lv_index;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* add_zone_to_listview [internal]
|
||||
*
|
||||
|
@ -87,6 +184,8 @@ static void add_zone_to_listview(secdlg_data *sd, DWORD *pindex, DWORD zone)
|
|||
return;
|
||||
}
|
||||
|
||||
sd->levels[lv_index] = za->dwTemplateCurrentLevel;
|
||||
|
||||
lvitem.mask = LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
|
||||
lvitem.iItem = lv_index;
|
||||
lvitem.iSubItem = 0;
|
||||
|
@ -122,6 +221,8 @@ static void add_zone_to_listview(secdlg_data *sd, DWORD *pindex, DWORD zone)
|
|||
lvitem.state = LVIS_FOCUSED | LVIS_SELECTED;
|
||||
lvitem.stateMask = LVIS_FOCUSED | LVIS_SELECTED;
|
||||
SendMessageW(sd->hlv, LVM_SETITEMSTATE, 0, (LPARAM) &lvitem);
|
||||
sd->last_level = ~0;
|
||||
update_zone_info(sd, lv_index);
|
||||
}
|
||||
(*pindex)++;
|
||||
}
|
||||
|
@ -213,6 +314,14 @@ static INT_PTR security_on_initdialog(HWND hsec)
|
|||
|
||||
sd->hsec = hsec;
|
||||
sd->hlv = GetDlgItem(hsec, IDC_SEC_LISTVIEW);
|
||||
sd->htb = GetDlgItem(hsec, IDC_SEC_TRACKBAR);
|
||||
|
||||
EnableWindow(sd->htb, FALSE); /* not changeable yet */
|
||||
|
||||
TRACE("(%p) (data: %p, listview: %p, trackbar: %p)\n", hsec, sd, sd->hlv, sd->htb);
|
||||
|
||||
SendMessageW(sd->htb, TBM_SETRANGE, FALSE, MAKELONG(0, NUM_TRACKBAR_POS - 1));
|
||||
SendMessageW(sd->htb, TBM_SETTICFREQ, 1, 0 );
|
||||
|
||||
/* Create the image lists for the listview */
|
||||
sd->himages = ImageList_Create(GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON), ILC_COLOR32 | ILC_MASK, 1, 1);
|
||||
|
@ -240,12 +349,13 @@ static INT_PTR security_on_initdialog(HWND hsec)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/* remember zone number for a listview entry */
|
||||
sd->zones = heap_alloc(sizeof(DWORD) * sd->num_zones);
|
||||
/* remember zone number and current security level for a listview entry */
|
||||
sd->zones = heap_alloc((sizeof(DWORD) + sizeof(DWORD)) * sd->num_zones);
|
||||
if (!sd->zones) {
|
||||
security_on_destroy(sd);
|
||||
return FALSE;
|
||||
}
|
||||
sd->levels = &sd->zones[sd->num_zones];
|
||||
|
||||
/* use the same order as visible with native inetcpl.cpl */
|
||||
add_zone_to_listview(sd, &lv_index, URLZONE_INTERNET);
|
||||
|
@ -271,13 +381,21 @@ static INT_PTR security_on_initdialog(HWND hsec)
|
|||
* handle WM_NOTIFY
|
||||
*
|
||||
*/
|
||||
static INT_PTR security_on_notify(WPARAM wparam, LPARAM lparam)
|
||||
static INT_PTR security_on_notify(secdlg_data *sd, WPARAM wparam, LPARAM lparam)
|
||||
{
|
||||
NMLISTVIEW *nm;
|
||||
|
||||
nm = (NMLISTVIEW *) lparam;
|
||||
switch (nm->hdr.code)
|
||||
{
|
||||
case LVN_ITEMCHANGED:
|
||||
TRACE("LVN_ITEMCHANGED (0x%lx, 0x%lx) from %p with code: %d (item: %d, uNewState: %u)\n",
|
||||
wparam, lparam, nm->hdr.hwndFrom, nm->hdr.code, nm->iItem, nm->uNewState);
|
||||
if ((nm->uNewState & LVIS_SELECTED) == LVIS_SELECTED) {
|
||||
update_zone_info(sd, nm->iItem);
|
||||
}
|
||||
break;
|
||||
|
||||
case PSN_APPLY:
|
||||
TRACE("PSN_APPLY (0x%lx, 0x%lx) from %p with code: %d\n", wparam, lparam,
|
||||
nm->hdr.hwndFrom, nm->hdr.code);
|
||||
|
@ -308,7 +426,7 @@ INT_PTR CALLBACK security_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lpa
|
|||
switch (msg)
|
||||
{
|
||||
case WM_NOTIFY:
|
||||
return security_on_notify(wparam, lparam);
|
||||
return security_on_notify(sd, wparam, lparam);
|
||||
|
||||
case WM_NCDESTROY:
|
||||
return security_on_destroy(sd);
|
||||
|
|
28
po/ar.po
28
po/ar.po
|
@ -2133,6 +2133,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
28
po/bg.po
28
po/bg.po
|
@ -2150,6 +2150,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
28
po/ca.po
28
po/ca.po
|
@ -2108,6 +2108,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
34
po/cs.po
34
po/cs.po
|
@ -2201,6 +2201,40 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# cs.po (Wine) #-#-#-#-#\n"
|
||||
"U&ložit nastavení při ukončení\n"
|
||||
"#-#-#-#-# cs.po (Wine) #-#-#-#-#\n"
|
||||
"&Uložit nastavení při vypnutí"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Přizpůsobit"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
36
po/da.po
36
po/da.po
|
@ -2210,6 +2210,42 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# da.po (Wine) #-#-#-#-#\n"
|
||||
"Gem ændringer ved af&slutting\n"
|
||||
"#-#-#-#-# da.po (Wine) #-#-#-#-#\n"
|
||||
"Gem ind&stillinger ved afslutning"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Tilpas"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Lav"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Høj"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Fejl ved konvertering af objekt til primitiv type"
|
||||
|
|
32
po/de.po
32
po/de.po
|
@ -2197,6 +2197,38 @@ msgstr "Internet Einstellungen"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Wine Internet Browser und zugehörige Einstellungen anpassen."
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "&Einstellungen beim Beenden speichern"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Anpassen"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "Nie&drig"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Hoch"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Fehler beim umwandeln des Objektes in einen Grundtyp"
|
||||
|
|
29
po/el.po
29
po/el.po
|
@ -2137,6 +2137,35 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Customize"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
28
po/en.po
28
po/en.po
|
@ -2110,6 +2110,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr "Custom"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Error converting object to primitive type"
|
||||
|
|
28
po/en_US.po
28
po/en_US.po
|
@ -2174,6 +2174,34 @@ msgstr "Internet Settings"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Configure Wine Internet Browser and related settings"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "Security settings for zone: "
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr "Custom"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr "Very Low"
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr "Low"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr "Medium"
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr "Increased"
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr "High"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Error converting object to primitive type"
|
||||
|
|
28
po/eo.po
28
po/eo.po
|
@ -2153,6 +2153,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
34
po/es.po
34
po/es.po
|
@ -2195,6 +2195,40 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# es.po (Wine) #-#-#-#-#\n"
|
||||
"&Guardar configuración al salir\n"
|
||||
"#-#-#-#-# es.po (Wine) #-#-#-#-#\n"
|
||||
"&Guardar opciones al salir"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Personalizar"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Error al convertir objeto a tipo primitivo"
|
||||
|
|
28
po/fa.po
28
po/fa.po
|
@ -2133,6 +2133,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
29
po/fi.po
29
po/fi.po
|
@ -2166,6 +2166,35 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Räätälöi"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
32
po/fr.po
32
po/fr.po
|
@ -2192,6 +2192,38 @@ msgid "Configure Wine Internet Browser and related settings"
|
|||
msgstr ""
|
||||
"Configurer le navigateur internet de Wine et d'autres paramètres associés"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "&Enregistrer la configuration lors de la fermeture"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Personnaliser"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Basse"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Haute"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Erreur lors de la conversion de l'objet vers un type primitif"
|
||||
|
|
32
po/he.po
32
po/he.po
|
@ -2141,6 +2141,38 @@ msgstr "הגדרות אינטרנט"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "הגדרת דפדפן האינטרנט של Wine והגדרות שקשורות בו"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "&שמירת ההגדרות עם היציאה"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "התאמה אישית"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&נמוכה"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&גבוהה"
|
||||
|
||||
#: jscript.rc:25
|
||||
#, fuzzy
|
||||
msgid "Error converting object to primitive type"
|
||||
|
|
28
po/hi.po
28
po/hi.po
|
@ -2113,6 +2113,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
35
po/hu.po
35
po/hu.po
|
@ -2216,6 +2216,41 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# hu.po (Wine) #-#-#-#-#\n"
|
||||
"Beállítások &mentése kilépéskor\n"
|
||||
"#-#-#-#-# hu.po (Wine) #-#-#-#-#\n"
|
||||
"Megszüntetés a tárolás végén"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Testreszabás"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "sor"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Hiba az objektum primitív típusra való konvertálásánál"
|
||||
|
|
36
po/it.po
36
po/it.po
|
@ -2297,6 +2297,42 @@ msgstr "Impostazioni di Internet"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Configura il browser Internet di Wine e le relative impostazioni"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# it.po (Wine) #-#-#-#-#\n"
|
||||
"&Salva impostazioni in uscita\n"
|
||||
"#-#-#-#-# it.po (Wine) #-#-#-#-#\n"
|
||||
"Sa&lva impostazioni all'uscita"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Personalizza"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Bassa"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Alta"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Errore nel convertire un oggetto ad un tipo primitivo"
|
||||
|
|
32
po/ja.po
32
po/ja.po
|
@ -2169,6 +2169,38 @@ msgstr "インターネット設定"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Wine インターネット ブラウザや関連する設定を構成します"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "終了時に設定を保存(&S)"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "カスタマイズ"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "低(&L)"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "高(&H)"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "オブジェクトを基本型に変換できません"
|
||||
|
|
32
po/ko.po
32
po/ko.po
|
@ -2169,6 +2169,38 @@ msgstr "인터넷 설정"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Wine 인터넷 브라우저와 관련 설정 처리"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "나갈때 설정 저장(&S)"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "사용자정의"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "낮음(&L)"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "높음(&H)"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "객페를 기본 형식으로 변환하는 중에 에러 발생"
|
||||
|
|
32
po/lt.po
32
po/lt.po
|
@ -2179,6 +2179,38 @@ msgstr "Interneto nuostatos"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Konfigūruokite Wine interneto naršyklės ir susijusias nuostatas"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "Išsaugoti &nuostatas išeinant"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Adaptuoti"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Mažas"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Didelis"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Klaida keičiant objektą į primityvų tipą"
|
||||
|
|
28
po/ml.po
28
po/ml.po
|
@ -2113,6 +2113,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
36
po/nb_NO.po
36
po/nb_NO.po
|
@ -2274,6 +2274,42 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# nb_NO.po (Wine) #-#-#-#-#\n"
|
||||
"Lagre endringer ved av&slutting\n"
|
||||
"#-#-#-#-# nb_NO.po (Wine) #-#-#-#-#\n"
|
||||
"Lagre inn&stillinger ved avslutting"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Tilpass"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Lav"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Høy"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Klarte ikke konvertere objekt til primitiv type"
|
||||
|
|
32
po/nl.po
32
po/nl.po
|
@ -2183,6 +2183,38 @@ msgstr "Internet-instellingen"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Configureer Wine Internet Browser en gerelateerde instellingen"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "&Instellingen opslaan bij afsluiten"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Aanpassen"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Laag"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Hoog"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Fout bij het omzetten van het object naar een primitief type"
|
||||
|
|
28
po/or.po
28
po/or.po
|
@ -2113,6 +2113,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
28
po/pa.po
28
po/pa.po
|
@ -2113,6 +2113,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
32
po/pl.po
32
po/pl.po
|
@ -2186,6 +2186,38 @@ msgstr ""
|
|||
"Pozwala skonfigurować przeglądarkę internetową Wine i odpowiadające jej "
|
||||
"ustawienia"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "&Zapisz ustawienia przy zakończeniu"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Dostosuj"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "N&iska"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Wysoka"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Błąd przy przekształcaniu obiektu do typu podstawowego"
|
||||
|
|
36
po/pt_BR.po
36
po/pt_BR.po
|
@ -2276,6 +2276,42 @@ msgstr "Configurações da Internet"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Configurar o Wine Internet Browser e opções relacionadas"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# pt_BR.po (Wine) #-#-#-#-#\n"
|
||||
"&Salvar alterações ao sair\n"
|
||||
"#-#-#-#-# pt_BR.po (Wine) #-#-#-#-#\n"
|
||||
"&Salvar configurações ao sair"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Personalizar"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Baixa"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Alta"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Erro ao converter objeto em tipo primitivo"
|
||||
|
|
36
po/pt_PT.po
36
po/pt_PT.po
|
@ -2304,6 +2304,42 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# pt_PT.po (Wine) #-#-#-#-#\n"
|
||||
"&Gravar alterações ao sair\n"
|
||||
"#-#-#-#-# pt_PT.po (Wine) #-#-#-#-#\n"
|
||||
"&Gravar configurações ao sair"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Personalizar"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Baixa"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Alta"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Erro ao converter objecto em tipo primitivo"
|
||||
|
|
28
po/rm.po
28
po/rm.po
|
@ -2129,6 +2129,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
32
po/ro.po
32
po/ro.po
|
@ -2330,6 +2330,38 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "&Salvează configurația la închidere"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Personalizare"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Scăzută"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "Înal&tă"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Eroare la convertirea obiectului la un tip primitiv"
|
||||
|
|
32
po/ru.po
32
po/ru.po
|
@ -2172,6 +2172,38 @@ msgstr "Параметры Интернета"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Настройка браузера Wine и связанных параметров"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "&Сохранять настройки при выходе"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Персонализовать"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Низкая"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Высокая"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Ошибка конвертирования объекта в примитивный тип"
|
||||
|
|
28
po/sk.po
28
po/sk.po
|
@ -2134,6 +2134,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
36
po/sl.po
36
po/sl.po
|
@ -2201,6 +2201,42 @@ msgstr "Internetne možnosti"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Konfiguriraj internetni brskalnik v Wine in sorodne nastavitve"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# sl.po (Wine) #-#-#-#-#\n"
|
||||
"Shrani &nastavitve ob izhodu\n"
|
||||
"#-#-#-#-# sl.po (Wine) #-#-#-#-#\n"
|
||||
"S&hrani nastavitve ob izhodu"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Prilagodi"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Nizka"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Viskoka"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Napaka med spreminjanjem v primitivni tip"
|
||||
|
|
|
@ -2179,6 +2179,36 @@ msgstr "Поставке интернета"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Подеси Wine интернет прегледач и сродне поставке"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Прилагоди"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "ред"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Грешка у претварању објекта у основну врсту"
|
||||
|
|
|
@ -2203,6 +2203,36 @@ msgstr "Postavke interneta"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Podesi Wine internet pregledač i srodne postavke"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Prilagodi"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "red"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Greška u pretvaranju objekta u osnovnu vrstu"
|
||||
|
|
32
po/sv.po
32
po/sv.po
|
@ -2175,6 +2175,38 @@ msgstr "Internetinställningar"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Konfigurera Wines webbläsare och tillhörande inställningar"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "&Spara ändringar vid stängning"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Anpassa"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Låg"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Hög"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Kunde inte konvertera objekt till primitiv typ"
|
||||
|
|
28
po/te.po
28
po/te.po
|
@ -2113,6 +2113,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
28
po/th.po
28
po/th.po
|
@ -2132,6 +2132,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
36
po/tr.po
36
po/tr.po
|
@ -2189,6 +2189,42 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
"#-#-#-#-# tr.po (Wine) #-#-#-#-#\n"
|
||||
"&Çıkışta ayarları sakla\n"
|
||||
"#-#-#-#-# tr.po (Wine) #-#-#-#-#\n"
|
||||
"&Çıkışta ayarları kaydet"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Özelleştir"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Düşük"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Yüksek"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
32
po/uk.po
32
po/uk.po
|
@ -2172,6 +2172,38 @@ msgstr "Налаштування Інтернету"
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr "Налаштувати Wine Internet Browser та пов'язані параметри"
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "Зберегти &налаштування при виході"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "Налаштування"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "&Низька"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "&Висока"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Помилка конвертування об'єкту в примітивний тип"
|
||||
|
|
28
po/wa.po
28
po/wa.po
|
@ -2140,6 +2140,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
28
po/wine.pot
28
po/wine.pot
|
@ -2105,6 +2105,34 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
msgid "Security settings for zone: "
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:31
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
32
po/zh_CN.po
32
po/zh_CN.po
|
@ -2165,6 +2165,38 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "退出时保存设置(&S)"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "个性化"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "慢(&L)"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "快(&H)"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
32
po/zh_TW.po
32
po/zh_TW.po
|
@ -2171,6 +2171,38 @@ msgstr ""
|
|||
msgid "Configure Wine Internet Browser and related settings"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:30
|
||||
#, fuzzy
|
||||
msgid "Security settings for zone: "
|
||||
msgstr "結束時儲存設定(&S)"
|
||||
|
||||
#: inetcpl.rc:31
|
||||
#, fuzzy
|
||||
msgid "Custom"
|
||||
msgstr "個性化"
|
||||
|
||||
#: inetcpl.rc:32
|
||||
msgid "Very Low"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:33
|
||||
#, fuzzy
|
||||
msgid "Low"
|
||||
msgstr "慢(&L)"
|
||||
|
||||
#: inetcpl.rc:34
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:35
|
||||
msgid "Increased"
|
||||
msgstr ""
|
||||
|
||||
#: inetcpl.rc:36
|
||||
#, fuzzy
|
||||
msgid "High"
|
||||
msgstr "快(&H)"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in New Issue