From 52b03c90e7d0afb6a4821284460cbb20e8734f62 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Wed, 21 Dec 2011 13:51:24 +0100 Subject: [PATCH] ieframe: Improve status updates in BindStatusCallback_OnProgress. --- dlls/ieframe/ieframe.rc | 9 +++++++++ dlls/ieframe/navigate.c | 36 +++++++++++++++++++++++++++++------- dlls/ieframe/resource.h | 8 ++++++++ po/ar.po | 28 +++++++++++++++++++++++----- po/bg.po | 29 ++++++++++++++++++++++++----- po/ca.po | 30 +++++++++++++++++++++++++----- po/cs.po | 28 +++++++++++++++++++++++----- po/da.po | 29 ++++++++++++++++++++++++----- po/de.po | 30 +++++++++++++++++++++++++----- po/el.po | 28 +++++++++++++++++++++++----- po/en.po | 26 +++++++++++++++++++++----- po/en_US.po | 26 +++++++++++++++++++++----- po/eo.po | 28 +++++++++++++++++++++++----- po/es.po | 30 +++++++++++++++++++++++++----- po/fa.po | 28 +++++++++++++++++++++++----- po/fi.po | 29 ++++++++++++++++++++++++----- po/fr.po | 30 +++++++++++++++++++++++++----- po/he.po | 30 +++++++++++++++++++++++++----- po/hi.po | 28 +++++++++++++++++++++++----- po/hu.po | 29 ++++++++++++++++++++++++----- po/it.po | 30 +++++++++++++++++++++++++----- po/ja.po | 30 +++++++++++++++++++++++++----- po/ko.po | 30 +++++++++++++++++++++++++----- po/lt.po | 30 +++++++++++++++++++++++++----- po/ml.po | 28 +++++++++++++++++++++++----- po/nb_NO.po | 29 ++++++++++++++++++++++++----- po/nl.po | 30 +++++++++++++++++++++++++----- po/or.po | 28 +++++++++++++++++++++++----- po/pa.po | 28 +++++++++++++++++++++++----- po/pl.po | 30 +++++++++++++++++++++++++----- po/pt_BR.po | 30 +++++++++++++++++++++++++----- po/pt_PT.po | 30 +++++++++++++++++++++++++----- po/rm.po | 26 +++++++++++++++++++++----- po/ro.po | 29 ++++++++++++++++++++++++----- po/ru.po | 30 +++++++++++++++++++++++++----- po/sk.po | 36 +++++++++++++++++++++++++++++++----- po/sl.po | 30 +++++++++++++++++++++++++----- po/sr_RS@cyrillic.po | 30 +++++++++++++++++++++++++----- po/sr_RS@latin.po | 30 +++++++++++++++++++++++++----- po/sv.po | 30 +++++++++++++++++++++++++----- po/te.po | 28 +++++++++++++++++++++++----- po/th.po | 28 +++++++++++++++++++++++----- po/tr.po | 29 ++++++++++++++++++++++++----- po/uk.po | 30 +++++++++++++++++++++++++----- po/wa.po | 28 +++++++++++++++++++++++----- po/wine.pot | 26 +++++++++++++++++++++----- po/zh_CN.po | 29 ++++++++++++++++++++++++----- po/zh_TW.po | 29 ++++++++++++++++++++++++----- 48 files changed, 1128 insertions(+), 232 deletions(-) diff --git a/dlls/ieframe/ieframe.rc b/dlls/ieframe/ieframe.rc index aca9ff36e21..d14a9eabead 100644 --- a/dlls/ieframe/ieframe.rc +++ b/dlls/ieframe/ieframe.rc @@ -73,6 +73,15 @@ STRINGTABLE IDS_ADDRESS "Address" } +STRINGTABLE +{ + IDS_FINDINGRESOURCE "Searching for %s" + IDS_BEGINDOWNLOADDATA "Start downloading %s" + IDS_ENDDOWNLOADDATA "Downloading %s" + IDS_SENDINGREQUEST "Asking for %s" +} + + IDD_BROWSE_OPEN DIALOG 10, 10, 200, 70 STYLE DS_MODALFRAME | WS_CAPTION CAPTION "Open URL" diff --git a/dlls/ieframe/navigate.c b/dlls/ieframe/navigate.c index 6c0ce41df25..c58ff7f2e5c 100644 --- a/dlls/ieframe/navigate.c +++ b/dlls/ieframe/navigate.c @@ -27,6 +27,7 @@ #include "shlwapi.h" #include "wininet.h" #include "mshtml.h" +#include "resource.h" #include "wine/debug.h" @@ -93,21 +94,36 @@ static void dump_BINDINFO(BINDINFO *bi) ); } -static void set_status_text(BindStatusCallback *This, LPCWSTR str) +static void set_status_text(BindStatusCallback *This, ULONG statuscode, LPCWSTR str) { VARIANTARG arg; DISPPARAMS dispparams = {&arg, NULL, 1, 0}; + WCHAR fmt[IDS_STATUSFMT_MAXLEN]; + WCHAR buffer[IDS_STATUSFMT_MAXLEN + INTERNET_MAX_URL_LENGTH]; if(!This->doc_host) return; + TRACE("(%p, %d, %s)\n", This, statuscode, debugstr_w(str)); + buffer[0] = 0; + if (statuscode && str && *str) { + fmt[0] = 0; + /* the format string must have one "%s" for the str */ + LoadStringW(ieframe_instance, IDS_STATUSFMT_FIRST + statuscode, fmt, IDS_STATUSFMT_MAXLEN); + snprintfW(buffer, sizeof(buffer)/sizeof(WCHAR), fmt, str); + } + V_VT(&arg) = VT_BSTR; - V_BSTR(&arg) = str ? SysAllocString(str) : NULL; + V_BSTR(&arg) = str ? SysAllocString(buffer) : NULL; + TRACE("=> %s\n", debugstr_w(V_BSTR(&arg))); + call_sink(This->doc_host->cps.wbe2, DISPID_STATUSTEXTCHANGE, &dispparams); - VariantClear(&arg); if(This->doc_host->frame) - IOleInPlaceFrame_SetStatusText(This->doc_host->frame, str); + IOleInPlaceFrame_SetStatusText(This->doc_host->frame, buffer); + + VariantClear(&arg); + } HRESULT set_dochost_url(DocHost *This, const WCHAR *url) @@ -251,14 +267,20 @@ static HRESULT WINAPI BindStatusCallback_OnProgress(IBindStatusCallback *iface, case BINDSTATUS_REDIRECTING: return set_dochost_url(This->doc_host, szStatusText); case BINDSTATUS_BEGINDOWNLOADDATA: - set_status_text(This, szStatusText); /* FIXME: "Start downloading from site: %s" */ + set_status_text(This, ulStatusCode, szStatusText); status_code = get_http_status_code(This->binding); if(status_code != HTTP_STATUS_OK) handle_navigation_error(This->doc_host, status_code, This->url, NULL); return S_OK; + + case BINDSTATUS_FINDINGRESOURCE: case BINDSTATUS_ENDDOWNLOADDATA: - set_status_text(This, szStatusText); /* FIXME: "Downloading from site: %s" */ + case BINDSTATUS_SENDINGREQUEST: + set_status_text(This, ulStatusCode, szStatusText); return S_OK; + + case BINDSTATUS_CONNECTING: + case BINDSTATUS_CACHEFILENAMEAVAILABLE: case BINDSTATUS_CLASSIDAVAILABLE: case BINDSTATUS_MIMETYPEAVAILABLE: case BINDSTATUS_BEGINSYNCOPERATION: @@ -323,7 +345,7 @@ static HRESULT WINAPI BindStatusCallback_OnStopBinding(IBindStatusCallback *ifac TRACE("(%p)->(%08x %s)\n", This, hresult, debugstr_w(szError)); - set_status_text(This, emptyW); + set_status_text(This, 0, emptyW); if(!This->doc_host) return S_OK; diff --git a/dlls/ieframe/resource.h b/dlls/ieframe/resource.h index a7d4ad6eebd..33559cca864 100644 --- a/dlls/ieframe/resource.h +++ b/dlls/ieframe/resource.h @@ -57,3 +57,11 @@ #define IDS_TB_PRINT 1105 #define IDS_ADDRESS 1106 + +/* update status text in BINDSTATUS_* callback */ +#define IDS_STATUSFMT_FIRST 4096 +#define IDS_FINDINGRESOURCE (IDS_STATUSFMT_FIRST + 1) +#define IDS_BEGINDOWNLOADDATA (IDS_STATUSFMT_FIRST + 4) +#define IDS_ENDDOWNLOADDATA (IDS_STATUSFMT_FIRST + 6) +#define IDS_SENDINGREQUEST (IDS_STATUSFMT_FIRST + 11) +#define IDS_STATUSFMT_MAXLEN 256 diff --git a/po/ar.po b/po/ar.po index a0e5d2848cb..ae8320ac3e7 100644 --- a/po/ar.po +++ b/po/ar.po @@ -55,7 +55,7 @@ msgstr "معلومات" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -133,7 +133,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3269,16 +3269,16 @@ msgstr "" msgid "&About Internet Explorer" msgstr "&عن لوح الملاحظات" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "ا&فتح...\tCtrl+O" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "ا&فتح...\tCtrl+O" @@ -3297,6 +3297,24 @@ msgstr "ا&طبع...\tCtrl+P" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "اختر ال&كل\tCtrl+A" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "اختر ال&كل\tCtrl+A" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/bg.po b/po/bg.po index 5a478dda12b..92674a1def7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -58,7 +58,7 @@ msgstr "Информация" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -144,7 +144,7 @@ msgstr "Инсталирай" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3283,16 +3283,16 @@ msgstr "&Добави към отметките..." msgid "&About Internet Explorer" msgstr "" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "&Отвори връзката" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "Отвори" @@ -3311,6 +3311,25 @@ msgstr "&Печат" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Свойства" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Изтегляне..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Свойства" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/ca.po b/po/ca.po index 0442e764c29..5f16a98b586 100644 --- a/po/ca.po +++ b/po/ca.po @@ -59,7 +59,7 @@ msgstr "Informació de Suport" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -142,7 +142,7 @@ msgstr "&Instal·la" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3300,15 +3300,15 @@ msgstr "Afegeix a Preferits..." msgid "&About Internet Explorer" msgstr "&Quant a Internet Explorer..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Obre Adreça" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Obre:" @@ -3325,6 +3325,26 @@ msgstr "Imprimeix" msgid "Address" msgstr "Adreça" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Ajustaments de %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Descarregant de %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Descarregant..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Ajustaments de %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Pàgina d'inici " diff --git a/po/cs.po b/po/cs.po index c3913b99caa..98c40701e77 100644 --- a/po/cs.po +++ b/po/cs.po @@ -57,7 +57,7 @@ msgstr "Informace" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -138,7 +138,7 @@ msgstr "Instalovat téma..." #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3323,16 +3323,16 @@ msgstr "Přid&at k oblíbeným..." msgid "&About Internet Explorer" msgstr "&Informace o Winefile..." -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "Otevřít" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "Otevřít" @@ -3352,6 +3352,24 @@ msgstr "Tisk" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "&Vlastnosti" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "&Vlastnosti" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/da.po b/po/da.po index df4ff21d19e..c939d2c63d8 100644 --- a/po/da.po +++ b/po/da.po @@ -59,7 +59,7 @@ msgstr "Support Information" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -141,7 +141,7 @@ msgstr "&Installer" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3347,16 +3347,16 @@ msgstr "Tilføj til f&avoritter..." msgid "&About Internet Explorer" msgstr "" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "Åben &link" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "Åben" @@ -3375,6 +3375,25 @@ msgstr "Udskriv..." msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Egenskaper for %s" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Henter..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Egenskaper for %s" + #: inetcpl.rc:46 #, fuzzy msgid " Home page " diff --git a/po/de.po b/po/de.po index a288cab782f..ffe097c8687 100644 --- a/po/de.po +++ b/po/de.po @@ -59,7 +59,7 @@ msgstr "Support Information" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -143,7 +143,7 @@ msgstr "&Installieren" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3288,15 +3288,15 @@ msgstr "Zu den Favoriten &hinzufügen..." msgid "&About Internet Explorer" msgstr "Über &Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "URL öffnen" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Geben Sie die Url ein, die Sie mit Internet Explorer öffnen möchten" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Öffnen:" @@ -3313,6 +3313,26 @@ msgstr "Drucken..." msgid "Address" msgstr "Adresse" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Einstellungen für %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Herunterladen von %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Lade herunter..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Einstellungen für %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Startseite " diff --git a/po/el.po b/po/el.po index 15a9d50979e..a951a411581 100644 --- a/po/el.po +++ b/po/el.po @@ -54,7 +54,7 @@ msgstr "" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -133,7 +133,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3229,15 +3229,15 @@ msgstr "Α&γαπημένα" msgid "&About Internet Explorer" msgstr "" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "" @@ -3255,6 +3255,24 @@ msgstr "Εκτύπωση" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Επιλογές" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Επιλογές" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/en.po b/po/en.po index ad1a64753ca..76938799272 100644 --- a/po/en.po +++ b/po/en.po @@ -54,7 +54,7 @@ msgstr "Support Information" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -129,7 +129,7 @@ msgstr "&Install" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3184,15 +3184,15 @@ msgstr "&Add to Favourites..." msgid "&About Internet Explorer" msgstr "&About Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Open URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Open:" @@ -3209,6 +3209,22 @@ msgstr "Print..." msgid "Address" msgstr "Address" +#: ieframe.rc:78 +msgid "Searching for %s" +msgstr "Searching for %s" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +msgid "Asking for %s" +msgstr "Asking for %s" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/en_US.po b/po/en_US.po index ba765985d82..a2be57b344e 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -59,7 +59,7 @@ msgstr "Support Information" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -141,7 +141,7 @@ msgstr "&Install" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3286,15 +3286,15 @@ msgstr "&Add to Favorites..." msgid "&About Internet Explorer" msgstr "&About Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Open URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Specify the URL you wish to open in Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Open:" @@ -3311,6 +3311,22 @@ msgstr "Print..." msgid "Address" msgstr "Address" +#: ieframe.rc:78 +msgid "Searching for %s" +msgstr "Searching for %s" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "Start downloading %s" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "Downloading %s" + +#: ieframe.rc:81 +msgid "Asking for %s" +msgstr "Asking for %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Home page " diff --git a/po/eo.po b/po/eo.po index b429f0ffe39..706fdd87c20 100644 --- a/po/eo.po +++ b/po/eo.po @@ -58,7 +58,7 @@ msgstr "Informo pri" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -139,7 +139,7 @@ msgstr "&Notu..." #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3310,16 +3310,16 @@ msgstr "" msgid "&About Internet Explorer" msgstr "Pri Notepad" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "Malfermu" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "Malfermu" @@ -3338,6 +3338,24 @@ msgstr "&Presu" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Ecoj" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Ecoj" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/es.po b/po/es.po index a1c5d2ee33b..dadb19f28b3 100644 --- a/po/es.po +++ b/po/es.po @@ -59,7 +59,7 @@ msgstr "Información de Soporte" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -143,7 +143,7 @@ msgstr "&Instalar" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3338,15 +3338,15 @@ msgstr "" msgid "&About Internet Explorer" msgstr "Acerca &de Internet Explorer..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Abrir URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Especifique la dirección que desea abrir en Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Abrir:" @@ -3365,6 +3365,26 @@ msgstr "Imprimir" msgid "Address" msgstr "Dirección" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Propiedades de %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Descargando desde %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Descargando..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Propiedades de %s" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/fa.po b/po/fa.po index 245416fa8fa..815ad7a943e 100644 --- a/po/fa.po +++ b/po/fa.po @@ -55,7 +55,7 @@ msgstr "اطلاعات" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -133,7 +133,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3269,16 +3269,16 @@ msgstr "" msgid "&About Internet Explorer" msgstr "&درباره نت‌پد" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "&باز‌کردن...\tCtrl+O" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "&باز‌کردن...\tCtrl+O" @@ -3297,6 +3297,24 @@ msgstr "&چاپ‌کردن...\tCtrl+P" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "انتخاب &همه\tCtrl+A" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "انتخاب &همه\tCtrl+A" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/fi.po b/po/fi.po index 90cdfb3b553..ec32010ef17 100644 --- a/po/fi.po +++ b/po/fi.po @@ -61,7 +61,7 @@ msgstr "" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -146,7 +146,7 @@ msgstr "Asenna &teema..." #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3321,16 +3321,16 @@ msgstr "Lis&ää Suosikkeihin..." msgid "&About Internet Explorer" msgstr "" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "&Avaa Linkki" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "Avaa" @@ -3350,6 +3350,25 @@ msgstr "Tulosta" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Ominaisuudet" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Lataukset" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Ominaisuudet" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/fr.po b/po/fr.po index 0d718cfe49c..77ccb2d0097 100644 --- a/po/fr.po +++ b/po/fr.po @@ -59,7 +59,7 @@ msgstr "Informations de support" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -143,7 +143,7 @@ msgstr "&Installer" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3308,15 +3308,15 @@ msgstr "&Ajouter aux favoris..." msgid "&About Internet Explorer" msgstr "À &propos d'Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Open URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Spécifiez l'URL que vous désirez ouvrir dans Internet Explorer :" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Ouvrir :" @@ -3333,6 +3333,26 @@ msgstr "Imprimer..." msgid "Address" msgstr "Adresse" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Propriétés de %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Téléchargement depuis %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Téléchargement..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Propriétés de %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Page d'accueil " diff --git a/po/he.po b/po/he.po index 9ff4bb1449b..0a6b7c4d214 100644 --- a/po/he.po +++ b/po/he.po @@ -60,7 +60,7 @@ msgstr "פרטי תמיכה" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -141,7 +141,7 @@ msgstr "ה&תקנה" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3272,15 +3272,15 @@ msgstr "הו&ספה למועדפים…" msgid "&About Internet Explorer" msgstr "על &אודות Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "פתיחת כתובת" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "נא לציין את הכתובת אותה ברצונך לפתוח באמצעות Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "פתיחה:" @@ -3297,6 +3297,26 @@ msgstr "הדפסה..." msgid "Address" msgstr "כתובת" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "מאפיינים עבור %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "הורדה מהכתובת %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "הורדה..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "מאפיינים עבור %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " דף הבית " diff --git a/po/hi.po b/po/hi.po index e7e10e102c8..acb05b3de34 100644 --- a/po/hi.po +++ b/po/hi.po @@ -54,7 +54,7 @@ msgstr "" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -130,7 +130,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3213,15 +3213,15 @@ msgstr "" msgid "&About Internet Explorer" msgstr "क्लॉक के बारे में (&A)..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "" @@ -3239,6 +3239,24 @@ msgstr "फ़ॉन्ट (&F)..." msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "सूचना (&o)" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "सूचना (&o)" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/hu.po b/po/hu.po index cd7444587dc..55823941481 100644 --- a/po/hu.po +++ b/po/hu.po @@ -59,7 +59,7 @@ msgstr "Támogatási információ" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -143,7 +143,7 @@ msgstr "&Telepítés" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3394,16 +3394,16 @@ msgstr "Hozzá&adás a kedvencekhez..." msgid "&About Internet Explorer" msgstr "Wine Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "&Link megnyitása" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "Megnyitás" @@ -3424,6 +3424,25 @@ msgstr "Nyomtatás" msgid "Address" msgstr "IP cím=" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Tulajdonságok" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Letöltés..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Tulajdonságok" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/it.po b/po/it.po index 7199fd667f8..6b584913282 100644 --- a/po/it.po +++ b/po/it.po @@ -59,7 +59,7 @@ msgstr "Informazioni di supporto" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -143,7 +143,7 @@ msgstr "&Installa" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3301,15 +3301,15 @@ msgstr "&Aggiungi ai Preferiti..." msgid "&About Internet Explorer" msgstr "&Informazioni su Internet Explorer..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Apri URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Specifica l'URL che vuoi aprire in Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Apri:" @@ -3326,6 +3326,26 @@ msgstr "Stampa..." msgid "Address" msgstr "Indirizzo" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Impostazioni di %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Scaricando da %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Scaricamento..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Impostazioni di %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Pagina iniziale " diff --git a/po/ja.po b/po/ja.po index 6861409f235..48acf876657 100644 --- a/po/ja.po +++ b/po/ja.po @@ -59,7 +59,7 @@ msgstr "サポート情報" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -141,7 +141,7 @@ msgstr "インストール(&I)" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3276,15 +3276,15 @@ msgstr "お気に入りに追加(&A)..." msgid "&About Internet Explorer" msgstr "バージョン情報(&A)" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "URLを開く" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Internet Explorerで開きたいURLを入力してください。" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "URL:" @@ -3301,6 +3301,26 @@ msgstr "印刷..." msgid "Address" msgstr "アドレス" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Properties for %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "%s からダウンロード中..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "ダウンロードしています..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Properties for %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " ホーム ページ " diff --git a/po/ko.po b/po/ko.po index 5e1d0d2cb55..de47a92f135 100644 --- a/po/ko.po +++ b/po/ko.po @@ -58,7 +58,7 @@ msgstr "지원 정보" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -140,7 +140,7 @@ msgstr "설치(&I)" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3277,15 +3277,15 @@ msgstr "즐겨찾기 추가(&A)..." msgid "&About Internet Explorer" msgstr "인터넷 익스플로어에 관하여(&A)..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "URL 열기" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "인터넷 익스플로어로 열 URL 지정" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "열기:" @@ -3302,6 +3302,26 @@ msgstr "인쇄..." msgid "Address" msgstr "주소" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "%s 설정" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "%s로부터 다운로드중..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "다운로드중..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "%s 설정" + #: inetcpl.rc:46 msgid " Home page " msgstr " 홈 페이지 " diff --git a/po/lt.po b/po/lt.po index 7c697d154b3..710550e7362 100644 --- a/po/lt.po +++ b/po/lt.po @@ -61,7 +61,7 @@ msgstr "Priežiūros informacija" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -142,7 +142,7 @@ msgstr "&Įdiegti" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3292,15 +3292,15 @@ msgstr "Į&rašyti į adresyną..." msgid "&About Internet Explorer" msgstr "&Apie interneto naršyklę" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Atverti URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Nurodykite URL, kurį norite atverti su interneto naršykle" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Atverti:" @@ -3317,6 +3317,26 @@ msgstr "Spausdinti..." msgid "Address" msgstr "Adresas" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "%s nustatymai" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Atsiunčiama iš %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Atsiunčiama..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "%s nustatymai" + #: inetcpl.rc:46 msgid " Home page " msgstr " Pradžios tinklalapis " diff --git a/po/ml.po b/po/ml.po index 6db0e68f733..09f1f00a8a1 100644 --- a/po/ml.po +++ b/po/ml.po @@ -54,7 +54,7 @@ msgstr "" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -130,7 +130,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3213,15 +3213,15 @@ msgstr "" msgid "&About Internet Explorer" msgstr "ക്ലോക്കിനെപ്പറ്റി _അറിയുക..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "" @@ -3239,6 +3239,24 @@ msgstr "_അക്ഷരസഞ്ചയം..." msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "വി_വരം" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "വി_വരം" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 871a68cbd4f..645148f353c 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -58,7 +58,7 @@ msgstr "Støtteinformasjon" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -140,7 +140,7 @@ msgstr "&Installer" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3419,16 +3419,16 @@ msgstr "Legg til i f&avoritter..." msgid "&About Internet Explorer" msgstr "Wine Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "Åpne k&obling" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "Åpne" @@ -3448,6 +3448,25 @@ msgstr "Skriv ut..." msgid "Address" msgstr "IP-adresse=" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Egenskaper for %s" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Laster ned..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Egenskaper for %s" + #: inetcpl.rc:46 #, fuzzy msgid " Home page " diff --git a/po/nl.po b/po/nl.po index 104311af3dc..b1663a70ea3 100644 --- a/po/nl.po +++ b/po/nl.po @@ -59,7 +59,7 @@ msgstr "Support Informatie" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -142,7 +142,7 @@ msgstr "&Installeren" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3297,15 +3297,15 @@ msgstr "&Toevoegen aan favorieten..." msgid "&About Internet Explorer" msgstr "&Over Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Open URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Specificeer de URL die u wilt openen in Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Open:" @@ -3322,6 +3322,26 @@ msgstr "Afdrukken..." msgid "Address" msgstr "Adres" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Instellingen voor %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Downloaden van %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Bezig met downloaden..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Instellingen voor %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Startpagina " diff --git a/po/or.po b/po/or.po index d84dba75f14..7a199a262f5 100644 --- a/po/or.po +++ b/po/or.po @@ -54,7 +54,7 @@ msgstr "" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -130,7 +130,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3213,15 +3213,15 @@ msgstr "" msgid "&About Internet Explorer" msgstr "ଘଡ଼ି ବିଷୟରେ (&A)..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "" @@ -3239,6 +3239,24 @@ msgstr "ଅକ୍ଷରରୂପ (&F)..." msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "ସୂଚନା (&o)" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "ସୂଚନା (&o)" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/pa.po b/po/pa.po index d07ce881f3a..d0f9290f537 100644 --- a/po/pa.po +++ b/po/pa.po @@ -54,7 +54,7 @@ msgstr "" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -130,7 +130,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3213,15 +3213,15 @@ msgstr "" msgid "&About Internet Explorer" msgstr "ਘੜੀ ਬਾਰੇ(&A)..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "" @@ -3239,6 +3239,24 @@ msgstr "ਫੌਂਟ(&F)..." msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "ਜਾਣਕਾਰੀ(&o)" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "ਜਾਣਕਾਰੀ(&o)" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/pl.po b/po/pl.po index 4ebeaa6a72e..0667b32e5f0 100644 --- a/po/pl.po +++ b/po/pl.po @@ -63,7 +63,7 @@ msgstr "Informacje o wsparciu" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -147,7 +147,7 @@ msgstr "&Zainstaluj" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3303,15 +3303,15 @@ msgstr "&Dodaj do ulubionych..." msgid "&About Internet Explorer" msgstr "Internet Explorer - i&nformacje" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Otwórz URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Podaj adres URL, który chcesz otworzyć w Internet Explorerze" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Otwórz:" @@ -3328,6 +3328,26 @@ msgstr "Drukuj..." msgid "Address" msgstr "Adres" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Ustawienia dla %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Pobieranie od %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Pobieranie..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Ustawienia dla %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Strona domowa " diff --git a/po/pt_BR.po b/po/pt_BR.po index 4867d332980..fe60e58084d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -59,7 +59,7 @@ msgstr "Informação de Suporte" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -142,7 +142,7 @@ msgstr "&Instalar" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3417,15 +3417,15 @@ msgstr "&Adicionar aos Favoritos..." msgid "&About Internet Explorer" msgstr "&Sobre o Internet Explorer..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Abrir URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Especifique a URL que você deseja abrir no Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Abrir:" @@ -3443,6 +3443,26 @@ msgstr "Imprimir..." msgid "Address" msgstr "Endereço" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Propriedades de %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Fazendo o download de %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Fazendo o download..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Propriedades de %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Página inicial " diff --git a/po/pt_PT.po b/po/pt_PT.po index b59e2c5c5c9..67c64dcb95d 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -59,7 +59,7 @@ msgstr "Informação de Suporte" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -142,7 +142,7 @@ msgstr "&Instalar" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3463,16 +3463,16 @@ msgstr "Adicionar aos &Favoritos..." msgid "&About Internet Explorer" msgstr "Explorador de Internet Wine" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "&Abrir Ligação" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "Abrir" @@ -3492,6 +3492,26 @@ msgstr "Imprimir..." msgid "Address" msgstr "Endereço IP=" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Propriedades de %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "A descarregar de %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "A descarregar..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Propriedades de %s" + #: inetcpl.rc:46 #, fuzzy msgid " Home page " diff --git a/po/rm.po b/po/rm.po index b20d23898e5..47cfb97ac04 100644 --- a/po/rm.po +++ b/po/rm.po @@ -58,7 +58,7 @@ msgstr "INFUORMAZIUN" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -135,7 +135,7 @@ msgstr "&Annotaziun..." #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3253,16 +3253,16 @@ msgstr "" msgid "&About Internet Explorer" msgstr "I&nfuormaziuns" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "&Rivir" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "&Rivir" @@ -3281,6 +3281,22 @@ msgstr "&Stampar tema" msgid "Address" msgstr "" +#: ieframe.rc:78 +msgid "Searching for %s" +msgstr "" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +msgid "Asking for %s" +msgstr "" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/ro.po b/po/ro.po index 06498276c54..a602af44c39 100644 --- a/po/ro.po +++ b/po/ro.po @@ -59,7 +59,7 @@ msgstr "Informații de asistență" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -143,7 +143,7 @@ msgstr "&Instalează" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3471,16 +3471,16 @@ msgstr "Adaugă la &favorite..." msgid "&About Internet Explorer" msgstr "Wine Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Deschide URL-ul" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" "Specificați URL-ul pe care doriți să îl deschideți în Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Deschide:" @@ -3499,6 +3499,25 @@ msgstr "Tipărește..." msgid "Address" msgstr "Adresa IP=" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Proprietăți pentru %s" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Descarc..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Proprietăți pentru %s" + #: inetcpl.rc:46 #, fuzzy msgid " Home page " diff --git a/po/ru.po b/po/ru.po index 04c8f373000..f5cf779d376 100644 --- a/po/ru.po +++ b/po/ru.po @@ -59,7 +59,7 @@ msgstr "Сведения о поддержке" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -143,7 +143,7 @@ msgstr "&Установить" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3292,15 +3292,15 @@ msgstr "&Добавить в избранное..." msgid "&About Internet Explorer" msgstr "&О программе Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Ввод адреса" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Укажите адрес ресурса для загрузки в Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Открыть:" @@ -3317,6 +3317,26 @@ msgstr "Печать..." msgid "Address" msgstr "Адрес" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Настройки %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Загрузка с %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Загрузка..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Настройки %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Домашняя страница " diff --git a/po/sk.po b/po/sk.po index 37b2d53ca3a..f35702423c5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -58,7 +58,7 @@ msgstr "Informácie" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -137,7 +137,7 @@ msgstr "&Skomentovať..." #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3239,16 +3239,16 @@ msgstr "" msgid "&About Internet Explorer" msgstr "" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "&Otvoriť..." -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "&Otvoriť..." @@ -3267,6 +3267,32 @@ msgstr "&Tlačiť" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "" +"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" +"&Vlastnosti\n" +"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" +"&Properties" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "" +"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" +"&Vlastnosti\n" +"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" +"&Properties" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/sl.po b/po/sl.po index b176cbe07cc..59e6519b652 100644 --- a/po/sl.po +++ b/po/sl.po @@ -59,7 +59,7 @@ msgstr "Informacije" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -143,7 +143,7 @@ msgstr "&Namesti" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3337,15 +3337,15 @@ msgstr "&Dodaj med priljubljene ..." msgid "&About Internet Explorer" msgstr "&O programu Internet Explorer ..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Open URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Vnesite interneti naslov dokumenta, ki ga bo Internet Explorer odpru." -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Odpri:" @@ -3363,6 +3363,26 @@ msgstr "Natisni ..." msgid "Address" msgstr "Naslov" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Lastnosti %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Prejemanje iz %s ..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Prejemanje ..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Lastnosti %s" + #: inetcpl.rc:46 #, fuzzy msgid " Home page " diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 509bbb31eac..df4978eaaaa 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -58,7 +58,7 @@ msgstr "Подршка" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -140,7 +140,7 @@ msgstr "&Инсталирај" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3302,15 +3302,15 @@ msgstr "&Додај у омиљене..." msgid "&About Internet Explorer" msgstr "&О Internet Explorer-у..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Отварање адресе" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Унесите адресу коју желите да отворите у Internet Explorer-у" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Отвори:" @@ -3329,6 +3329,26 @@ msgstr "Штампај" msgid "Address" msgstr "Адреса" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Својства" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Преузимање из %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Преузимање..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Својства" + #: inetcpl.rc:46 msgid " Home page " msgstr "Почетна страна" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 6a2ed10040c..cfa693f82ca 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -58,7 +58,7 @@ msgstr "Podrška" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -140,7 +140,7 @@ msgstr "&Instaliraj" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3387,15 +3387,15 @@ msgstr "&Dodaj u omiljene..." msgid "&About Internet Explorer" msgstr "&O Internet Explorer-u..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Otvaranje adrese" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Unesite adresu koju želite da otvorite u Internet Explorer-u" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Otvori:" @@ -3413,6 +3413,26 @@ msgstr "Štampaj..." msgid "Address" msgstr "Adresa" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Svojstva" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Preuzimanje iz %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Preuzimanje..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Svojstva" + #: inetcpl.rc:46 msgid " Home page " msgstr "Početna strana" diff --git a/po/sv.po b/po/sv.po index 1240c89fb3e..4d117fb936e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -59,7 +59,7 @@ msgstr "Supportinformation" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -141,7 +141,7 @@ msgstr "&Installera" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3307,15 +3307,15 @@ msgstr "&Lägg till i favoriter..." msgid "&About Internet Explorer" msgstr "&Om Internet Explorer..." -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Öppna webbadress" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Ange webbadressen du vill öppna med Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Öppna:" @@ -3333,6 +3333,26 @@ msgstr "Skriv ut..." msgid "Address" msgstr "Adress" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Egenskaper för %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Hämtar från %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Hämtar..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Egenskaper för %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Startsida " diff --git a/po/te.po b/po/te.po index c5304491ade..5d40b0dd97d 100644 --- a/po/te.po +++ b/po/te.po @@ -54,7 +54,7 @@ msgstr "" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -130,7 +130,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3213,15 +3213,15 @@ msgstr "" msgid "&About Internet Explorer" msgstr "గడియారం గురించి... (&A)" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "" @@ -3239,6 +3239,24 @@ msgstr "ఫాంట్... (&F)" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "సమాచారము (&o)" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "సమాచారము (&o)" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/th.po b/po/th.po index 9e19b271690..901b17867ac 100644 --- a/po/th.po +++ b/po/th.po @@ -55,7 +55,7 @@ msgstr "รายละเอียด" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -134,7 +134,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3244,16 +3244,16 @@ msgstr "" msgid "&About Internet Explorer" msgstr "" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "เปิด...\tCtrl+O" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "เปิด...\tCtrl+O" @@ -3272,6 +3272,24 @@ msgstr "พิมพ์\tCtrl+P" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "ปรับแต่งนาฬิกา" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "ปรับแต่งนาฬิกา" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/tr.po b/po/tr.po index 2a2c05daf6a..dcaf7d36313 100644 --- a/po/tr.po +++ b/po/tr.po @@ -58,7 +58,7 @@ msgstr "Bilgi" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -144,7 +144,7 @@ msgstr "&Kur" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3316,16 +3316,16 @@ msgstr "Sık Kullanılanlara Ekle..." msgid "&About Internet Explorer" msgstr "Winefile hakkında &bilgi..." -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "&Bağlantıyı Aç" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "Aç" @@ -3345,6 +3345,25 @@ msgstr "Yazdır" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "%s Özellikleri" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "İndiriliyor..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "%s Özellikleri" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/uk.po b/po/uk.po index 40a5d7b4521..4b4b9560b21 100644 --- a/po/uk.po +++ b/po/uk.po @@ -58,7 +58,7 @@ msgstr "Дані підтримки" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -140,7 +140,7 @@ msgstr "&Встановити" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3300,15 +3300,15 @@ msgstr "&Додати до Обраного..." msgid "&About Internet Explorer" msgstr "&Про Оглядач Інтернету" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "Відкрити URL" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "Вкажіть URL, що ви хочете відкрити в Internet Explorer" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "Відкрити:" @@ -3325,6 +3325,26 @@ msgstr "Друк..." msgid "Address" msgstr "Адреса" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "Властивості для %s" + +#: ieframe.rc:79 +#, fuzzy +msgid "Start downloading %s" +msgstr "Завантаження з %s..." + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "Завантаження..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "Властивості для %s" + #: inetcpl.rc:46 msgid " Home page " msgstr " Домашня сторінка " diff --git a/po/wa.po b/po/wa.po index 7bef96f4b82..0db185bc129 100644 --- a/po/wa.po +++ b/po/wa.po @@ -58,7 +58,7 @@ msgstr "Informåcion" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -137,7 +137,7 @@ msgstr "&Sicrîre..." #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3258,16 +3258,16 @@ msgstr "" msgid "&About Internet Explorer" msgstr "" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "&Drovî..." -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "&Drovî..." @@ -3286,6 +3286,24 @@ msgstr "&Rexhe" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "&Propietés" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "&Propietés" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/wine.pot b/po/wine.pot index 17c90d72fff..879c6765edd 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -51,7 +51,7 @@ msgstr "" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -126,7 +126,7 @@ msgstr "" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3179,15 +3179,15 @@ msgstr "" msgid "&About Internet Explorer" msgstr "" -#: ieframe.rc:78 +#: ieframe.rc:87 msgid "Open URL" msgstr "" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 msgid "Open:" msgstr "" @@ -3204,6 +3204,22 @@ msgstr "" msgid "Address" msgstr "" +#: ieframe.rc:78 +msgid "Searching for %s" +msgstr "" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +msgid "Downloading %s" +msgstr "" + +#: ieframe.rc:81 +msgid "Asking for %s" +msgstr "" + #: inetcpl.rc:46 msgid " Home page " msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index cdf787b2de9..dbb7b61293a 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -54,7 +54,7 @@ msgstr "技术支持信息" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -133,7 +133,7 @@ msgstr "安装(&I)" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3300,16 +3300,16 @@ msgstr "添加到收藏夹(&A)..." msgid "&About Internet Explorer" msgstr "Wine Internet Explorer" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "打开链接(&O)" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "打开" @@ -3328,6 +3328,25 @@ msgstr "打印..." msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "属性" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "正在下载..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "属性" + #: inetcpl.rc:46 #, fuzzy msgid " Home page " diff --git a/po/zh_TW.po b/po/zh_TW.po index 0668ec9228f..760efededde 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -54,7 +54,7 @@ msgstr "技術支援資訊" #: appwiz.rc:75 avifil32.rc:51 comctl32.rc:52 comdlg32.rc:240 comdlg32.rc:270 #: comdlg32.rc:313 comdlg32.rc:367 comdlg32.rc:406 comdlg32.rc:460 #: credui.rc:49 cryptui.rc:260 cryptui.rc:272 cryptui.rc:362 dinput.rc:43 -#: ieframe.rc:84 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 +#: ieframe.rc:93 localui.rc:41 localui.rc:54 mpr.rc:46 msacm32.rc:50 #: mshtml.rc:45 mshtml.rc:55 msvfw32.rc:33 oledlg.rc:55 oledlg.rc:87 #: serialui.rc:38 setupapi.rc:56 shell32.rc:286 shell32.rc:310 shell32.rc:332 #: shell32.rc:350 shlwapi.rc:41 user32.rc:77 user32.rc:95 wininet.rc:48 @@ -132,7 +132,7 @@ msgstr "安裝(&I)" #: comdlg32.rc:271 comdlg32.rc:314 comdlg32.rc:336 comdlg32.rc:356 #: comdlg32.rc:368 comdlg32.rc:407 comdlg32.rc:461 comdlg32.rc:485 #: comdlg32.rc:503 credui.rc:50 cryptui.rc:261 cryptui.rc:273 cryptui.rc:363 -#: dinput.rc:44 ieframe.rc:85 inetcpl.rc:78 localui.rc:42 localui.rc:55 +#: dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 localui.rc:55 #: mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 msvfw32.rc:34 #: oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 setupapi.rc:57 #: shell32.rc:287 shell32.rc:311 shell32.rc:322 shell32.rc:351 shlwapi.rc:42 @@ -3315,16 +3315,16 @@ msgstr "添加到我的最愛(&A)..." msgid "&About Internet Explorer" msgstr "" -#: ieframe.rc:78 +#: ieframe.rc:87 #, fuzzy msgid "Open URL" msgstr "開啟鏈接(&O)" -#: ieframe.rc:81 +#: ieframe.rc:90 msgid "Specify the URL you wish to open in Internet Explorer" msgstr "" -#: ieframe.rc:82 +#: ieframe.rc:91 #, fuzzy msgid "Open:" msgstr "開啟" @@ -3344,6 +3344,25 @@ msgstr "列印" msgid "Address" msgstr "" +#: ieframe.rc:78 +#, fuzzy +msgid "Searching for %s" +msgstr "屬性(&P)" + +#: ieframe.rc:79 +msgid "Start downloading %s" +msgstr "" + +#: ieframe.rc:80 +#, fuzzy +msgid "Downloading %s" +msgstr "正在下載..." + +#: ieframe.rc:81 +#, fuzzy +msgid "Asking for %s" +msgstr "屬性(&P)" + #: inetcpl.rc:46 #, fuzzy msgid " Home page " -- 2.11.4.GIT