From a800d8a1f34e411fc2b7e5bf83bfe812db056a83 Mon Sep 17 00:00:00 2001 From: nowrep Date: Fri, 6 Apr 2012 10:15:17 +0200 Subject: [PATCH] Added possibility to open .xhtml files from Open File dialog. - fixed issue with showing one plugin more than once if you have duplicated plugins in plugin directories - remove obsolete translations from *.ts files --- src/lib/app/qupzilla.cpp | 2 +- src/lib/plugins/plugininterface.h | 2 +- src/lib/plugins/plugins.cpp | 15 +- src/lib/plugins/plugins.h | 3 +- .../MouseGestures/translations/sk_SK.ts | 5 - src/plugins/TestPlugin/translations/cs_CZ.ts | 19 +- src/plugins/TestPlugin/translations/de_DE.ts | 19 +- src/plugins/TestPlugin/translations/el_GR.ts | 19 +- src/plugins/TestPlugin/translations/es_ES.ts | 19 +- src/plugins/TestPlugin/translations/fr_FR.ts | 19 +- src/plugins/TestPlugin/translations/id_ID.ts | 19 +- src/plugins/TestPlugin/translations/it_IT.ts | 19 +- src/plugins/TestPlugin/translations/ja_JP.ts | 19 +- src/plugins/TestPlugin/translations/ka_GE.ts | 19 +- src/plugins/TestPlugin/translations/nl_NL.ts | 19 +- src/plugins/TestPlugin/translations/pt_PT.ts | 19 +- src/plugins/TestPlugin/translations/ro_RO.ts | 19 +- src/plugins/TestPlugin/translations/sk_SK.ts | 19 +- src/plugins/TestPlugin/translations/sr_BA.ts | 19 +- src/plugins/TestPlugin/translations/sr_RS.ts | 19 +- src/plugins/TestPlugin/translations/sv_SE.ts | 19 +- src/plugins/TestPlugin/translations/zh_CN.ts | 19 +- src/plugins/TestPlugin/translations/zh_TW.ts | 19 +- translations/cs_CZ.ts | 959 ++++++++---------- translations/de_DE.ts | 950 ++++++++--------- translations/el_GR.ts | 927 ++++++++--------- translations/empty.ts | 20 - translations/es_ES.ts | 927 ++++++++--------- translations/es_VE.ts | 954 ++++++++--------- translations/fr_FR.ts | 956 ++++++++--------- translations/hu_HU.ts | 64 +- translations/id_ID.ts | 937 ++++++++--------- translations/it_IT.ts | 929 ++++++++--------- translations/ja_JP.ts | 105 -- translations/ka_GE.ts | 94 -- translations/nl_NL.ts | 941 ++++++++--------- translations/pl_PL.ts | 929 ++++++++--------- translations/pt_BR.ts | 122 --- translations/pt_PT.ts | 927 ++++++++--------- translations/ro_RO.ts | 82 -- translations/ru_RU.ts | 927 ++++++++--------- translations/sk_SK.ts | 130 --- translations/sr_BA.ts | 829 ++++++++------- translations/sr_RS.ts | 829 ++++++++------- translations/sv_SE.ts | 939 ++++++++--------- translations/zh_CN.ts | 913 ++++++++--------- translations/zh_TW.ts | 831 ++++++++------- 47 files changed, 7173 insertions(+), 9417 deletions(-) diff --git a/src/lib/app/qupzilla.cpp b/src/lib/app/qupzilla.cpp index 30a050aee..a81b217ba 100644 --- a/src/lib/app/qupzilla.cpp +++ b/src/lib/app/qupzilla.cpp @@ -1387,7 +1387,7 @@ void QupZilla::searchOnPage() void QupZilla::openFile() { - const QString &fileTypes = QString("%1(*.html *.htm *.shtml *.shtm);;" + const QString &fileTypes = QString("%1(*.html *.htm *.shtml *.shtm *.xhtml);;" "%2(*.png *.jpg *.jpeg *.bmp *.gif *.svg *.tiff);;" "%3(*.txt);;" "%4(*.*)").arg(tr("HTML files"), tr("Image files"), tr("Text files"), tr("All files")); diff --git a/src/lib/plugins/plugininterface.h b/src/lib/plugins/plugininterface.h index 52d9cfe05..7963796b2 100644 --- a/src/lib/plugins/plugininterface.h +++ b/src/lib/plugins/plugininterface.h @@ -37,7 +37,7 @@ struct PluginSpec { hasSettings = false; } - bool operator==(const PluginSpec &other) { + bool operator==(const PluginSpec &other) const { return (this->name == other.name && this->info == other.info && this->description == other.description && diff --git a/src/lib/plugins/plugins.cpp b/src/lib/plugins/plugins.cpp index f9e9f10bc..6401191c2 100644 --- a/src/lib/plugins/plugins.cpp +++ b/src/lib/plugins/plugins.cpp @@ -184,7 +184,9 @@ void Plugins::loadAvailablePlugins() loader->unload(); - m_availablePlugins.append(plugin); + if (!alreadySpecInAvailable(plugin.pluginSpec)) { + m_availablePlugins.append(plugin); + } } } } @@ -221,3 +223,14 @@ void Plugins::refreshLoadedPlugins() } } } + +bool Plugins::alreadySpecInAvailable(const PluginSpec &spec) +{ + foreach (const Plugin & plugin, m_availablePlugins) { + if (plugin.pluginSpec == spec) { + return true; + } + } + + return false; +} diff --git a/src/lib/plugins/plugins.h b/src/lib/plugins/plugins.h index 66f063f0c..4ee119088 100644 --- a/src/lib/plugins/plugins.h +++ b/src/lib/plugins/plugins.h @@ -49,7 +49,7 @@ public: return instance; } - bool operator==(const Plugin &other) { + bool operator==(const Plugin &other) const { return (this->fileName == other.fileName && this->fullPath == other.fullPath && this->pluginSpec == other.pluginSpec && @@ -87,6 +87,7 @@ signals: void pluginUnloaded(PluginInterface* plugin); private: + bool alreadySpecInAvailable(const PluginSpec &spec); PluginInterface* initPlugin(PluginInterface* interface, QPluginLoader* loader); void refreshLoadedPlugins(); diff --git a/src/plugins/MouseGestures/translations/sk_SK.ts b/src/plugins/MouseGestures/translations/sk_SK.ts index 1de12ba4a..35e036551 100644 --- a/src/plugins/MouseGestures/translations/sk_SK.ts +++ b/src/plugins/MouseGestures/translations/sk_SK.ts @@ -58,10 +58,5 @@ License Licencia - - - License Viewer - Prehliadač licencií - diff --git a/src/plugins/TestPlugin/translations/cs_CZ.ts b/src/plugins/TestPlugin/translations/cs_CZ.ts index c94f1aece..cf6a55a18 100644 --- a/src/plugins/TestPlugin/translations/cs_CZ.ts +++ b/src/plugins/TestPlugin/translations/cs_CZ.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Zavřít - + Example Plugin Settings Nastavení ukázkového doplňku - + My first plugin action Moje první akce z doplňku - + Hello Ahoj - + First plugin action works :-) První akce funguje :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/de_DE.ts b/src/plugins/TestPlugin/translations/de_DE.ts index 44c27a533..2b67d78df 100644 --- a/src/plugins/TestPlugin/translations/de_DE.ts +++ b/src/plugins/TestPlugin/translations/de_DE.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Schließen - + Example Plugin Settings Einstellungen des Beispiel-Plugins - + My first plugin action Meine erste Aktion - + Hello Hallo - + First plugin action works :-) Meine erste Aktion funktioniert :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/el_GR.ts b/src/plugins/TestPlugin/translations/el_GR.ts index 06b4d23a9..0476f0178 100644 --- a/src/plugins/TestPlugin/translations/el_GR.ts +++ b/src/plugins/TestPlugin/translations/el_GR.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Κλείσιμο - + Example Plugin Settings Ρυθμίσεις παραδειγματικού προσθέτου - + My first plugin action Η ενέργεια του πρώτου μου προσθέτου - + Hello Γεια - + First plugin action works :-) Η ενέργεια του πρώτου προσθέτου δουλεύει :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/es_ES.ts b/src/plugins/TestPlugin/translations/es_ES.ts index 950acec83..0e97a143a 100644 --- a/src/plugins/TestPlugin/translations/es_ES.ts +++ b/src/plugins/TestPlugin/translations/es_ES.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Cerrar - + Example Plugin Settings Preferencias del plugin de ejemplo - + My first plugin action Mi primera acción del plugin - + Hello Hola - + First plugin action works :-) La primera acción del plugin funciona :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/fr_FR.ts b/src/plugins/TestPlugin/translations/fr_FR.ts index 04af47983..eab58e496 100644 --- a/src/plugins/TestPlugin/translations/fr_FR.ts +++ b/src/plugins/TestPlugin/translations/fr_FR.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Fermer - + Example Plugin Settings Exemple de configuration d'un plugin - + My first plugin action Test de mon premier plugin - + Hello Salut - + First plugin action works :-) Mon test fonctionne :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/id_ID.ts b/src/plugins/TestPlugin/translations/id_ID.ts index 1c0a599c4..d0c896bd5 100644 --- a/src/plugins/TestPlugin/translations/id_ID.ts +++ b/src/plugins/TestPlugin/translations/id_ID.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Tutup - + Example Plugin Settings Pengaturan Contoh Pengaya - + My first plugin action Aksi pengaya pertama saya - + Hello Halo - + First plugin action works :-) Aksi pengaya pertama saya bekerja :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/it_IT.ts b/src/plugins/TestPlugin/translations/it_IT.ts index 98a9ef62e..539916c88 100644 --- a/src/plugins/TestPlugin/translations/it_IT.ts +++ b/src/plugins/TestPlugin/translations/it_IT.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Chiudi - + Example Plugin Settings Impostazioni del plugin di esempio - + My first plugin action La mia prima azione - + Hello Ciao - + First plugin action works :-) La mia prima azione funziona :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/ja_JP.ts b/src/plugins/TestPlugin/translations/ja_JP.ts index 89f13f7de..c80e22052 100644 --- a/src/plugins/TestPlugin/translations/ja_JP.ts +++ b/src/plugins/TestPlugin/translations/ja_JP.ts @@ -4,29 +4,38 @@ TestPlugin - + Close 閉じる - + Example Plugin Settings Example Pluginの設定 - + My first plugin action プラグインの動作確認 - + Hello こんにちは - + First plugin action works :-) プラグインは正常に動作しました(^_^) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/ka_GE.ts b/src/plugins/TestPlugin/translations/ka_GE.ts index 612a90856..e8089a573 100644 --- a/src/plugins/TestPlugin/translations/ka_GE.ts +++ b/src/plugins/TestPlugin/translations/ka_GE.ts @@ -4,29 +4,38 @@ TestPlugin - + Close დახურვა - + Example Plugin Settings სამაგალითო მოდულის პარამეტრები - + My first plugin action ჩემი მოდულის პირველი მოქმედება - + Hello გამარჯობა - + First plugin action works :-) მოდულის პირველი მოქმედება მუშაობს :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/nl_NL.ts b/src/plugins/TestPlugin/translations/nl_NL.ts index 90cdea1e1..bc1cd2647 100644 --- a/src/plugins/TestPlugin/translations/nl_NL.ts +++ b/src/plugins/TestPlugin/translations/nl_NL.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Sluit - + Example Plugin Settings Voorbeeldplugin-instellingen - + My first plugin action Mijn eerste plugin-actie - + Hello Hallo - + First plugin action works :-) Eerste plugin-actie werkt :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/pt_PT.ts b/src/plugins/TestPlugin/translations/pt_PT.ts index cdf302e46..46d42a5e8 100755 --- a/src/plugins/TestPlugin/translations/pt_PT.ts +++ b/src/plugins/TestPlugin/translations/pt_PT.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Fechar - + Example Plugin Settings Definições do plugin Exemplo - + My first plugin action Minha primeira ação de plugin - + Hello Olá - + First plugin action works :-) A primeira ação do plugin funciona :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/ro_RO.ts b/src/plugins/TestPlugin/translations/ro_RO.ts index 765f261b4..a33bbf559 100644 --- a/src/plugins/TestPlugin/translations/ro_RO.ts +++ b/src/plugins/TestPlugin/translations/ro_RO.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Închide - + Example Plugin Settings Setările plugin-ului exemplu - + My first plugin action Prima mea acțiune a plugin-ului - + Hello Salut - + First plugin action works :-) Prima acțiune a plugin-ului funcționează :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/sk_SK.ts b/src/plugins/TestPlugin/translations/sk_SK.ts index d64f9f2f9..f21f48b47 100644 --- a/src/plugins/TestPlugin/translations/sk_SK.ts +++ b/src/plugins/TestPlugin/translations/sk_SK.ts @@ -4,29 +4,38 @@ TestPlugin - + Close - + Example Plugin Settings - + My first plugin action Moje první akce z doplnku - + Hello Ahoj - + First plugin action works :-) První doplnek funguje :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/sr_BA.ts b/src/plugins/TestPlugin/translations/sr_BA.ts index 1ac846c1a..6db901289 100644 --- a/src/plugins/TestPlugin/translations/sr_BA.ts +++ b/src/plugins/TestPlugin/translations/sr_BA.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Затвори - + Example Plugin Settings Подешавања пробног прикључка - + My first plugin action Радња мог првог прикључка - + Hello Здраво - + First plugin action works :-) Радња прикључка ради :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/sr_RS.ts b/src/plugins/TestPlugin/translations/sr_RS.ts index 1ac846c1a..6db901289 100644 --- a/src/plugins/TestPlugin/translations/sr_RS.ts +++ b/src/plugins/TestPlugin/translations/sr_RS.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Затвори - + Example Plugin Settings Подешавања пробног прикључка - + My first plugin action Радња мог првог прикључка - + Hello Здраво - + First plugin action works :-) Радња прикључка ради :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/sv_SE.ts b/src/plugins/TestPlugin/translations/sv_SE.ts index b30147622..6350c5221 100644 --- a/src/plugins/TestPlugin/translations/sv_SE.ts +++ b/src/plugins/TestPlugin/translations/sv_SE.ts @@ -4,29 +4,38 @@ TestPlugin - + Close Stäng - + Example Plugin Settings Inställningar för exempelplugin - + My first plugin action Min första pluginfunktion - + Hello Hallå - + First plugin action works :-) Min första pluginfunktion fungerar :-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/zh_CN.ts b/src/plugins/TestPlugin/translations/zh_CN.ts index c66404941..9853390ff 100644 --- a/src/plugins/TestPlugin/translations/zh_CN.ts +++ b/src/plugins/TestPlugin/translations/zh_CN.ts @@ -4,29 +4,38 @@ TestPlugin - + Close 关闭 - + Example Plugin Settings 示范应用扩展设置 - + My first plugin action 我的第一个动作应用扩展 - + Hello 哈啰 - + First plugin action works :-) 我的第一个动作应用扩展运行了:-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/src/plugins/TestPlugin/translations/zh_TW.ts b/src/plugins/TestPlugin/translations/zh_TW.ts index 7adb91001..9c06b19cb 100644 --- a/src/plugins/TestPlugin/translations/zh_TW.ts +++ b/src/plugins/TestPlugin/translations/zh_TW.ts @@ -4,29 +4,38 @@ TestPlugin - + Close 關閉 - + Example Plugin Settings 範例外掛設定 - + My first plugin action 我的第一個動作外掛 - + Hello 哈囉 - + First plugin action works :-) 我的第一個動作外掛運作了:-) + + TestPlugin_Sidebar + + + + Testing Sidebar + + + diff --git a/translations/cs_CZ.ts b/translations/cs_CZ.ts index a12e79230..16ceb6d91 100644 --- a/translations/cs_CZ.ts +++ b/translations/cs_CZ.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>Verze WebKitu %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Všechna práva vyhrazena.<br/> - <small>Build time: %1 </small></p> @@ -491,35 +487,35 @@ Vyberte soubor... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox ukládá své záložky v SQLite databázi <b>places.sqlite</b>. Tento soubor se obvykle nachází v - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome ukládá své záložky v textovém souboru <b>Bookmarks</b>. Tento soubor se obvykle nachází v - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera ukládá své záložky v textovém souboru <b>bookmarks.adr</b>. Tento soubor se obvykle nachází v - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Záložky můžete importovat z kteréhokoliv prohlížeče který podporuje export do HTML. Tento soubor má obvykle tyto přípony - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer ukládá své záložky ve složce <b>Oblíbené</b>. Tato složka se obvykle nachází v - - - - + + + + Please choose this file to begin importing bookmarks. Vyberte prosím tento soubor pro zahájení importu. @@ -530,7 +526,7 @@ Kliknutím na Dokončit uložíte záložky. - + Please choose this folder to begin importing bookmarks. Vyberte prosím tuto složku pro zahájení importu. @@ -603,7 +599,7 @@ Optimalizovat databázi - + Add Subfolder Přidat podsložku @@ -618,22 +614,22 @@ Zvolte jméno pro novou složku: - + Rename folder Přejmenovat složku - + Remove folder Odstranit složku - + <b>Warning: </b>You already have bookmarked this page! <b>Upozornění: </b>Tuto stránku již máte v záložkách! - + Choose name and location of this bookmark. Zvolte jméno a umístění záložky. @@ -653,42 +649,42 @@ Zvolte jméno pro složku: - + Open link in current &tab Otevřít odkaz v &aktuálním panelu - + Open link in &new tab Otevřít odkaz v novém &panelu - + Move bookmark to &folder Přesunout záložku do &složky - + Rename bookmark Přejmenovat záložku - + Remove bookmark Odstranit záložku - + Add New Bookmark Přidat záložku - + Choose folder for bookmarks: Zvolte složku pro záložky: - + Bookmark All Tabs Přidat všechny panely do záložek @@ -696,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Záložky v menu - - + + Bookmarks In ToolBar Panel záložek - - + + Unsorted Bookmarks Nesetříděné záložky @@ -745,106 +741,94 @@ BookmarksToolbar - + &Bookmark Current Page Přidat &stránku do záložek - + Bookmark &All Tabs Přidat &všechny panely do záložek - + &Organize Bookmarks Organizovat &záložky - Hide Most &Visited - Skrýt &Nejnavštěvovanější - - - + Show Most &Visited Zobrazit &Nejnavštěvovanější - + Show Only Icons Zobrazit pouze ikony - + &Hide Toolbar S&krýt panel - + Move right Posunout doprava - + Move left Posunout doleva - + Edit bookmark Upravit záložku - + Remove bookmark Odstranit záložku - + Edit bookmark: Upravit záložku: - + Title: Titulek: - + Url: Url: - + Edit Bookmark Upravit záložku - + Most visited Nejnavštěvovanější - + Sites you visited the most Nejvíce navštěvované stránky - - + + Empty Prázdný BookmarksWidget - - Edit This Bookmark - Upravit tuto záložku - - - Remove Bookmark - Odstranit záložku - Name: @@ -875,27 +859,11 @@ Add to Bookmarks Přidat k záložkám - - Add into Bookmarks - Přidat k záložkám - - - Add into Speed Dial - Přidat do rychlé volby - - - <b>Add Bookmark</b> - <b>Přidat záložku</b> - Edit Bookmark Upravit záložku - - <b>Edit Bookmark</b> - <b>Upravit záložku</b> - @@ -1115,17 +1083,6 @@ Žádné další informace. - - CloseDialog - - There are still open tabs - Stále jsou otevřeny panely - - - Don't ask again - Příště se již nedotazovat - - CookieManager @@ -1171,8 +1128,8 @@ - - + + Server: Server: @@ -1270,12 +1227,12 @@ Opravdu chcete vymazat všechny cookies z počítače? - + Add to whitelist Přidat do bílé listiny - + Add to blacklist Přidat do černé listiny @@ -1452,59 +1409,59 @@ nebyl nalezen! DownloadManager - + Executable: Program: - + Arguments: Argumenty: - + Cannot start external download manager Nepodařilo se spustit externí správce stahování - + Cannot start external download manager! %1 Nepodařilo se spustit externí správce stahování! %1 - + %1% of %2 files (%3) %4 remaining %1% z %2 souborů (%3) %4 zbyvá - + % - Download Manager % - Správce stahování - + Download Finished Stahování dokončeno - + All files have been successfully downloaded. Všechna stahování byla úspěšně dokončena. - + Warning Varování - + Are you sure to quit? All uncompleted downloads will be cancelled! Jste si jistý že chcete skončit? Všechna nedokončená stahování budou zrušena! - - + + Download Manager Správce stahování @@ -1648,30 +1605,30 @@ nebyl nalezen! Kopírovat adresu - - + + Today Dnes - - + + This Week Tento týden - - + + This Month Tento měsíc - + Confirmation Potvrzení - + Are you sure to delete all history? Opravdu chcete vymazat celou historii? @@ -1679,72 +1636,67 @@ nebyl nalezen! HistoryModel - - Failed loading page - Chyba při načítání stránky - - - + No Named Page Bezejmenná stránka - + January Leden - + February Únor - + March Březen - + April Duben - + May Květen - + June Červen - + July Červenec - + August Srpen - + September Září - + October Říjen - + November Listopad - + December Prosinec @@ -1778,19 +1730,19 @@ nebyl nalezen! - + Today Dnes - + This Week Tento týden - + This Month Tento měsíc @@ -1816,17 +1768,17 @@ nebyl nalezen! Zadejte internetovou adresu nebo vyhledávejte na %1 - + Paste And &Go Vložit a přejít &na - + Clear All Vymazat vše - + .co.uk Append domain name on ALT + Enter = Should be different for every country .cz @@ -1837,58 +1789,47 @@ nebyl nalezen! Zobrazit informace o stránce - - MainApplication - - Last session crashed - Poslední relace spadla - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla spadla :-(</b><br/>Oops, poslední relace QupZilly skončila jejím pádem. Velice se omlouváme. Přejete si obnovit uložený stav? - - NavigationBar - + No Named Page Bezejmenná stránka - + Back Zpět - + Forward Vpřed - + Home Domů - + New Tab Nový panel - + Main Menu Hlavní menu - - + + Exit Fullscreen Zrušit celou obrazovku - - + + Clear history Smazat historii @@ -1977,14 +1918,10 @@ nebyl nalezen! Snímek stránky - + Save Page Screen... Uložit snímek stránky... - - screen.png - snimek.png - PluginsList @@ -2003,10 +1940,6 @@ nebyl nalezen! Settings Nastavení - - Load Plugins - Načíst doplňky - WebKit Plugins @@ -2043,39 +1976,25 @@ nebyl nalezen! Povolit Click To Flash - + Add site to whitelist Přidat stránku na bílou listinu - + Server without http:// (ex. youtube.com) Server bez http:// (např. youtube.com) - + Cannot load extension! Nelze načíst doplněk! - %1 (%2) -Author: %3 -%4 -%5 - %1 (%2) -Autor: %3 -%4 -%5 - - - + Error! Chyba! - - Cannot load plugin! - Nelze načíst doplněk! - PopupWindow @@ -2107,10 +2026,6 @@ Autor: %3 Downloads Stahování - - Plugins - Doplňky - Open blank page @@ -2183,7 +2098,7 @@ Autor: %3 Povolit ukládání cache na disk - + <b>Cookies</b> <b>Cookies</b> @@ -2264,7 +2179,7 @@ Autor: %3 - + Note: You cannot delete active profile. Poznámka: Nemůžete smazat aktivní profil. @@ -2299,7 +2214,7 @@ Autor: %3 Povolit DNS Prefetch - + JavaScript can access clipboard Povolit JavaScriptu přístup do schránky @@ -2321,7 +2236,7 @@ Autor: %3 Tisknout pozadí objektů - + Send Do Not Track header to servers Zasílat serverům Do Not Track hlavičku @@ -2444,252 +2359,252 @@ Autor: %3 Lokální úložiště - + Delete now Vymazat nyní - + Proxy Configuration Konfigurace Proxy - + <b>Exceptions</b> <b>Výjimky</b> - + Server: Server: - + Use different proxy for https connection Použít jinou proxy pro https připojení - + <b>Font Families</b> <b>Typy písem</b> - + Standard Standardní - + Fixed Proporcionální - + Serif Serif - + Sans Serif Sans Serif - + Cursive Kurzíva - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Velikosti písem</b> - + Fixed Font Size Proporcionální písmo - + Default Font Size Základní písmo - + Minimum Font Size Minimální velikost - + Minimum Logical Font Size Minimální logická velikost - + <b>Download Location</b> <b>Cíl stahování</b> - + Ask everytime for download location U každého souboru se dotázat kam ho uložit - + Use defined location: Uložit všechny soubory do: - - - + + + ... ... - + <b>Download Options</b> <b>Možnosti stahování</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Použít nativní systémový dialog pro výběr souboru (může ale také nemusí dělat problémy při stahování SSL zabezpečeného obsahu) - + Close download manager when downloading finishes Zavřít správce stahování po skončení stahování - + <b>External download manager</b> <b>Externí správce stahování</b> - + Use external download manager Používat externí správce stahování - + Executable: Program: - + Arguments: Argumenty: - + Filter tracking cookies Filtrovat sledovací cookies - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Upozornění:</b> Možnosti vyžadovat přesnou shodu domény a filtrovat sledovací cookies mohou vést k odmítnutí některých cookies. Pokud máte problémy s cookies, zkuste nejdříve tyto možnosti zakázat! - + <b>SSL Certificates</b> <b>SSL Certifikáty</b> - + Edit CA certificates in SSL Manager Upravit CA certifikáty ve správci certifikátů - - + + <b>Other</b> <b>Ostatní</b> - + Send Referer header to servers Zasílat serverům Referer hlavičku - + Block popup windows Blokovat vyskakovací okna - + <b>Notifications</b> <b>Oznámení</b> - + Use OSD Notifications Používat OSD oznámení - + Use Native System Notifications (Linux only) Používat nativní systémové oznámení (pouze Linux) - + Do not use Notifications Nepoužívat oznámení - + Expiration timeout: Doba: - + seconds sekund - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Poznámka: </b> Můžete změnit pozici OSD oznámení na obrazovce jejím přetažením. - + Change browser identification: Změnit identifikaci prohlížeče: - + StyleSheet automatically loaded with all websites: Styl, automaticky načítán ke všem stránkám: - + Languages Jazyky - + <b>Preferred language for web sites</b> <b>Preferované jazyky pro webové stránky</b> - + System proxy configuration Systémové nastavení proxy - + Do not use proxy Nepoužívat proxy - + Manual configuration Manuální nastavení @@ -2699,45 +2614,45 @@ Autor: %3 Nastavení webu - + Allow local storage of HTML5 web content Povolit HTML5 lokální úložiště - + Delete locally stored HTML5 web content on close Smazat lokální úložiště při zavření prohlížeče - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Port: - - + + Username: Jméno: - - + + Password: Heslo: - + Don't use on: Nepužívat na: @@ -2756,10 +2671,6 @@ Autor: %3 Allow JAVA Povolit JAVA - - Allow Plugins (Flash plugin) - Povolit pluginy (Flash plugin) - Maximum pages in cache: @@ -2771,12 +2682,12 @@ Autor: %3 Správce hesel - + <b>AutoFill options</b> <b>Možnosti doplňování</b> - + Allow saving passwords from sites Povolit ukládání hesel ze stránek @@ -2786,37 +2697,32 @@ Autor: %3 Soukromí - + Allow storing of cookies Povolit přijímání cookies - + Delete cookies on close Vymazat cookies při zavření prohlížeče - + Match domain exactly Vyžadovat přesnou shodu domény - + Cookies Manager Správce cookies - Allow storing web icons - Povolit ukládání ikon - - - Allow saving history Povolit ukládání historie - + Delete history on close Vymazat historii při zavření prohlížeče @@ -2837,7 +2743,7 @@ Autor: %3 Přidat .cz doménu stísknutím ALT klávesy - + SSL Manager Správce certifikátů @@ -2852,68 +2758,68 @@ Autor: %3 Ke změně jazyka je nutný restart prohlížeče. - + OSD Notification OSD Oznámení - + Drag it on the screen to place it where you want. Přetáhněte jej na obrazovce na místo, na kterém jej chcete mít. - + Choose download location... Vyberte složku pro stahování... - + Choose stylesheet location... Vyberte umístění stylu... - + Deleted Smazáno - + Choose executable location... Vyberte cestu k programu... - + New Profile Nový profil - + Enter the new profile's name: Zvolte jméno nového profilu: - - + + Error! Chyba! - + This profile already exists! Tento profil již existuje! - + Cannot create profile directory! Nemohu vytvořit složku profilu! - + Confirmation Potvrzení - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Jste si jisti že chcete permanentně smazat profil "%1"? Tuto akci nelze vzít zpět! @@ -2971,16 +2877,6 @@ Autor: %3 QupZilla - - - Bookmarks - Záložky - - - - History - Historie - Quit @@ -3002,27 +2898,27 @@ Autor: %3 IP Adresa aktuální stránky - + QupZilla QupZilla - + &Tools &Nástroje - + &Help Nápo&věda - + &Bookmarks Zál&ožky - + Hi&story &Historie @@ -3032,12 +2928,12 @@ Autor: %3 &Soubor - + Last session crashed Poslední relace spadla - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla spadla :-(</b><br/>Oops, poslední relace QupZilly skončila jejím pádem. Velice se omlouváme. Přejete si obnovit uložený stav? @@ -3122,86 +3018,82 @@ Autor: %3 Sta&tus bar - + Toolbars Nástrojové lišty - + Sidebars Postranní lišta - + &Page Source Zdrojový &kód stránky - + Recently Visited Nedávno navštívené - + Most Visited Nejnavštěvovanější - + Web In&spector Web In&spektor - + Information about application Informace o aplikaci - + Configuration Information Informace o konfiguraci - + HTML files HTML soubory - + Image files Obrázky - + Text files Textové soubory - + All files Všechny soubory - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Ještě je otevřeno %1 panelů a Vaše relace nebude uložena. Opravdu chcete skončit? - + Don't ask again Příště se již nedotazovat - + There are still open tabs Stále jsou otevřeny panely - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Ještě je otevřeno %1 panelů a Vaše relace nebude uložena. Opravdu chcete skončit? - &Menu Bar @@ -3228,17 +3120,17 @@ Opravdu chcete skončit? Kó&dování znaků - + Zoom &In Zoo&m + - + Zoom &Out Z&oom - - + Reset Původní @@ -3263,32 +3155,27 @@ Opravdu chcete skončit? &Tisk... - + Other Ostatní - - Default - Defaultní - - - + %1 - QupZilla %1 - QupZilla - + Current cookies cannot be accessed. Současné cookies nejsou dostupné. - + Your session is not stored. Vaše relace není uložena. - + Start Private Browsing Spustit soukromé prohlížení @@ -3298,56 +3185,56 @@ Opravdu chcete skončit? Soukromé prohlížení zapnuto - + Restore &Closed Tab Obnovit zavř&ený panel - - - - - + + + + + Empty Prázdný - + Bookmark &This Page Přidat &stránku do záložek - + Bookmark &All Tabs Přidat &všechny panely do záložek - + Organize &Bookmarks Organizovat &záložky - + &Back &Zpět - + &Forward &Vpřed - + &Home &Domů - + Show &All History Zobrazit celou &historii - + Closed Tabs Zavřené panely @@ -3357,22 +3244,22 @@ Opravdu chcete skončit? Uložit snímek stránky - + (Private Browsing) (Soukromé prohlížení) - + Restore All Closed Tabs Obnovit všechny zavřené panely - + Clear list Vyčistit seznam - + About &Qt O &Qt @@ -3382,47 +3269,47 @@ Opravdu chcete skončit? &O QupZille - + Report &Issue Nahlásit &problém - + &Web Search Hledání na &webu - + Page &Info Informace o &stránce - + &Download Manager Správce s&tahování - + &Cookies Manager Správce coo&kies - + &AdBlock &AdBlock - + RSS &Reader &RSS čtečka - + Clear Recent &History Vymazat nedá&vnou historii - + &Private Browsing Soukromé prohlíž&ení @@ -3432,27 +3319,27 @@ Opravdu chcete skončit? Předvo&lby - + Open file... Otevřít soubor... - + Are you sure you want to turn on private browsing? Jste si jistý že chcete zapnout soukromé prohlížení? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Se zapnutým soukromým prohlížením jsou některé akce týkající se soukromí vypnuty: - + Webpages are not added to the history. Stránky nejsou přidávány do historie. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Než zavřete prohlížeč, stále můžete použít tlačítka Zpět a Vpřed k vrácení se na stránky které jste otevřeli. @@ -3528,18 +3415,18 @@ Opravdu chcete skončit? O QupZille - - + + Configuration Information Informace o konfiguraci - + Browser Identification Identifikace prohlížeče - + Paths Cesty @@ -3550,116 +3437,108 @@ Opravdu chcete skončit? - + Version Verze - + WebKit version Verze WebKitu - + Application version Verze aplikace - + Qt version Verze Qt - + Build time Sestaveno - + Platform Platforma - + Profile Profil - + Preferences Předvolby - This page contains information about QupZilla's current configuration, all relevant information for troubleshooting. Please include these information when sending bug reports. - Tato stránka obsahuje informace o aktuální konfiguraci QupZilly, důležité informace k řešení problémů. Přiložte prosím tyto informace k hlášení problémů. - - - + Build Configuration Konfigurace sestavení - + Option Možnost - + Value Hodnota - + Extensions Doplňky - + Name Název - + Author Autor - + Description Popis - + Settings Nastavení - + Saved session Uložené relace - + Pinned tabs Připíchnuté panely - + Data Data - + Themes Témata - Plugins - Doplňky - - - + Translations Překlady @@ -3668,10 +3547,6 @@ Opravdu chcete skončit? Main developer Hlavní vývojář - - If you are experiencing problems with QupZilla, please try to disable all extenions first. <br/>If this does not fix it, then please fill out this form: - Pokud máte problém s používáním QupZilly, zakažte prosím všechny doplňky. <br/> Pokud problém přetrvává, vyplňte tento formulář: - E-mail is optional<br/><b>Note: </b>Please read how to make a bug report <a href=%1>here</a> first. @@ -3688,164 +3563,148 @@ Opravdu chcete skončit? Překladatelé - + Speed Dial Rychlá volba - + Add New Page Přidat novou stránku - + Apply Uložit - + Close Zavřít - + Speed Dial settings Nastavení rychlé volby - + Placement: Umístění: - + Auto Auto - + Cover Krytí - + Fit Přizpůsobit - + Fit Width Přizpůsobit šířce - + Fit Height Přizpůsobit výšce - + Use background image Použít obrázek na pozadí - + Select image Zvolit obrázek - + Maximum pages in a row: Maximum stránek v řadě: - + Change size of pages: Změnit velikost stránek: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Tato stránka obsahuje informace o aktuální konfiguraci QupZilly - důležité informace k řešení problémů. Přiložte prosím tyto informace k hlášení problémů. - + No available extensions. Žádné dostupné doplňky. - This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports. - Tato stránka obsahuje informace o aktuální konfiguraci QupZilly, pluginů, všech důležitých informací k řešení problémů. Přiložte prosím tyto informace k hlášení problémů. - - - - + + Disabled Vypnuto - - - - - + + + + + <b>Enabled</b> <b>Zapnuto</b> - + Debug build Debug sestavení - + WebGL support Podpora WebGL - + Windows 7 API Windows 7 API - + KDE integration KDE integrace - + Portable build Portable sestavení - No available plugins. - Žádné dostupné doplňky. - - - + Load title from page Načíst titulek ze stránky - + Edit Upravit - + Remove Odstranit - - E-mail is optional<br/><b>Note: </b>Please use English language only. - E-mail je nepovinný<br/><b>Poznámka: </b>Používejte prosím pouze anglický jazyk. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Pokud máte problém s používáním QupZilly, zakažte prosím všechny doplňky. <br/> Pokud problém přetrvává, vyplňte tento formulář: - Please fill out all required fields! @@ -3853,27 +3712,27 @@ Opravdu chcete skončit? - + Information about version Informace o verzi - + Reload Načíst znovu - + Url Adresa - + Title Titulek - + New Page Nová stránka @@ -4011,12 +3870,12 @@ Prosím přidejte si nějaký kliknutím na RSS ikonku v navigačním řádku.Přidat RSS kanál z této stránky - + Untitled feed Kanál bez názvu - + Add Přidat @@ -4224,12 +4083,14 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ SideBar - + + Bookmarks Záložky - + + History Historie @@ -4508,10 +4369,6 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Paste Vložit - - Delete - Odstranit - Select All @@ -4633,7 +4490,7 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ SqueezeLabelV2 - + Copy Kopírovat @@ -4764,22 +4621,22 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ TabbedWebView - + Failed loading page Chyba při načítání stránky - + Loading... Načítám... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Zkontrolovat objekt @@ -4806,10 +4663,6 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ License Licence - - License Viewer - Prohlížeč licence - ToolButton @@ -4854,148 +4707,144 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Pro zobrazení této stránky musí QupZilla znovu odeslat požadavek na server (jako např. hledaní při nakupování, které již bylo provedeno.) - + Confirm form resubmission Potvrzení opětovného zaslání formuláře - + Select files to upload... Zvolte soubory k nahrání... - + Server refused the connection Server odmítl spojení - + Server closed the connection Server ukončil spojení - + Server not found Server nenalezen - + Connection timed out Spojení vypršelo - + Untrusted connection Nedůvěryhodné spojení - + Temporary network failure Dočasná chyba sítě - + Proxy connection refused Proxy server odmítl spojení - + Proxy server not found Proxy server nenalezen - + Proxy connection timed out Proxy spojení vypršelo - + Proxy authentication required Vyžadována proxy autorizace - + Content not found Obsah nenalezen - + Unknown network error Neznámá síťová chyba - + AdBlocked Content AdBlock obsah - + Blocked by rule <i>%1</i> Blokováno pravidlem <i>%1</i> - + Content Access Denied Odmítnut přístup k obsahu - + Error code %1 Chybový kód %1 - + Failed loading page Chyba při načítání stránky - + QupZilla can't load page from %1. QupZilla nemůže načíst stránku ze serveru %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Zkontrolujte, zda je adresa napsána správně a neobsahuje chyby jako <b>ww.</b>server.cz místo <b>www</b>.server.cz - + If you are unable to load any pages, check your computer's network connection. Pokud se vám nezobrazují ani ostatní stránky, zkontrolujte síťové připojení svého počítače. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Pokud je váš počítač chráněn firewallem a nebo proxy serverem, zkontrolujte, zda má QupZilla přístup na Internet. - + Try Again Zkusit znovu - + JavaScript alert Výstraha JavaScriptu - + Prevent this page from creating additional dialogs Zabránit stránce ve vytváření dalších dialogů - JavaScript alert - %1 - Výstraha JavaScriptu - %1 - - - + Choose file... Vyberte soubor... @@ -5026,223 +4875,223 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ WebView - + Open link in new &tab Otevřít odkaz v novém &panelu - + Open link in new &window Otevřít odkaz v novém &okně - + B&ookmark link Přidat odkaz do zá&ložek - + &Save link as... &Uložit odkaz jako... - + &Copy link address &Kopírovat adresu odkazu - + Show i&mage Zobrazit &obrázek - + Copy im&age &Kopírovat obrázek - + Copy image ad&dress Kopírovat adr&esu obrázku - + S&top &Zastavit - + Create Search Engine Vytvořit vyhledávač - + This frame Tento rám - + Show &only this frame Zobrazit &pouze tento rám - + Show this frame in new &tab Zobrazit tento rám v &novém panelu - + Print frame Tisknout rám - + Zoom &in Zoo&m + - + &Zoom out Z&oom - - + Reset Původní - + Show so&urce of frame Zobrazit &zdrojový kód rámu - + &Copy page link Kopírovat &adresu stránky - + Send page link... Odeslat adresu stránky... - + &Print page Ti&sknout stránku - + Validate page Zkontrolovat stránku - + Show info ab&out site Zobrazit &informace o stránce - + Search with... Hledat pomocí... - + &Play &Přehrát - + &Pause &Pozastavit - + Un&mute &Zrušit ztlumení - + &Mute &Ztlumit - + &Copy Media Address &Kopírovat adresu média - + &Send Media Address &Odeslat adresu média - + Save Media To &Disk &Uložit médium na disk - + &Save image as... &Uložit obrázek jako... - + &Back &Zpět - + &Forward &Vpřed - - + + &Reload &Obnovit - + Book&mark page Přidat stránku do zá&ložek - + &Save page as... &Uložit stránku jako... - + Select &all Vyb&rat vše - + Show so&urce code Zobrazit zdrojový kó&d - + Send text... Odeslat text... - + Google Translate Google Translate - + Dictionary Slovník - + Go to &web address Přejít na web&ovou adresu - + Search "%1 .." with %2 Hledat "%1 .." s %2 @@ -5252,12 +5101,12 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Bezejmenná stránka - + Send link... Odeslat odkaz... - + Send image... Odeslat obrázek... diff --git a/translations/de_DE.ts b/translations/de_DE.ts index 06600574e..5bb69b496 100644 --- a/translations/de_DE.ts +++ b/translations/de_DE.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>WebKit Version: %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Alle Rechte vorbehalten.<br/> - <small>Build time: %1 </small></p> @@ -492,35 +488,35 @@ Datei wählen... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox speichert die Lesezeichen in der Datei <b>places.sqlite</b>. Diese ist gewöhnlich gespeichert unter - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome speichert die Lesezeichen in der Datei <b>Bookmarks</b>. Diese ist gewöhnlich gespeichert unter - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera speichert die Lesezeichen in der Datei <b>bookmarks.adr</b>. Diese ist gewöhnlich gespeichert unter - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Sie können Lesezeichen von jedem Browser importieren, der den Export von Lesezeichen im HTML Format unterstützt. Diese Exportdatei hat gewöhnlich diese Endungen - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer speichert die Lesezeichen im <b>Favorites</b> Ordner. Dieser Ordner ist gewöhnlich zu finden unter - - - - + + + + Please choose this file to begin importing bookmarks. Bitte wählen Sie diese Datei, um mit dem Import zu beginnen. @@ -531,7 +527,7 @@ Bitte klicken Sie auf <Ende>, um den Importvorgang abzuschließen. - + Please choose this folder to begin importing bookmarks. Bitte wählen Sie diesen Ordner, um mit dem Import zu beginnen. @@ -604,7 +600,7 @@ Datenbank optimieren - + Add Subfolder Unterordner hinzufügen @@ -619,22 +615,22 @@ Namen für neues Lesezeichen angeben: - + Rename folder Ordner umbenennen - + Remove folder Ordner entfernen - + <b>Warning: </b>You already have bookmarked this page! <b>Warnung: </b>Diese Lesezeichen haben Sie bereits hinzugefügt! - + Choose name and location of this bookmark. Namen und Speicherort für Lesezeichen auswählen. @@ -654,42 +650,42 @@ Namen für Ordner auswählen: - + Open link in current &tab Link in &aktuellem Tab öffnen - + Open link in &new tab Link in &neuem Tab öffnen - + Move bookmark to &folder Lesezeichen in &Ordner verschieben - + Rename bookmark Lesezeichen umbenennen - + Remove bookmark Lesezeichen entfernen - + Add New Bookmark Neues Lesezeichen hinzufügen - + Choose folder for bookmarks: Ordner für Lesezeichen auswählen: - + Bookmark All Tabs Lesezeichen für alle geöffneten Tabs hinzufügen @@ -697,20 +693,20 @@ BookmarksModel - - + + Bookmarks In Menu Lesezeichen im Menü - - + + Bookmarks In ToolBar Lesezeichen in Werkzeug-Leiste - - + + Unsorted Bookmarks Unsortierte Lesezeichen @@ -746,106 +742,94 @@ BookmarksToolbar - + &Bookmark Current Page Lesezeichen für &aktuelle Seite hinzufügen - + Bookmark &All Tabs Lesezeichen für alle &geöffneten Tabs hinzufügen - + &Organize Bookmarks Lesezeichen &bearbeiten - Hide Most &Visited - Meistbesuchte &verstecken - - - + Show Most &Visited Meistbesuchte &anzeigen - + Show Only Icons Nur Symbole anzeigen - + &Hide Toolbar &Werkzeugleiste verstecken - + Move right Nach rechts - + Move left Nach links - + Edit bookmark Lesezeichen bearbeiten - + Remove bookmark Lesezeichen entfernen - + Edit bookmark: Lesezeichen bearbeiten: - + Title: Titel: - + Url: Url: - + Edit Bookmark Lesezeichen bearbeiten - + Most visited Meistbesuchte - + Sites you visited the most Meistbesuchte Seiten - - + + Empty Leer BookmarksWidget - - Edit This Bookmark - Dieses Lesezeichen bearbeiten - - - Remove Bookmark - Lesezeichen entfernen - Name: @@ -876,27 +860,11 @@ Add to Bookmarks Zu Lesezeichen hinzufügen - - Add into Bookmarks - Zu Lesezeichen hinzufügen - - - Add into Speed Dial - Zu Speed Dial hinzufügen - - - <b>Add Bookmark</b> - <b>Lesezeichen hinzufügen</b> - Edit Bookmark Lesezeichen bearbeiten - - <b>Edit Bookmark</b> - <b>Lesezeichen bearbeiten</b> - @@ -1116,17 +1084,6 @@ Keine weiteren Informationen verfügbar. - - CloseDialog - - There are still open tabs - Es sind noch Tabs geöffnet - - - Don't ask again - Nicht mehr fragen - - CookieManager @@ -1171,8 +1128,8 @@ - - + + Server: Server: @@ -1270,12 +1227,12 @@ Möchten Sie wirklich alle auf Ihrem Computer gespeicherten Cookies löschen? - + Add to whitelist Zur Whitelist hinzufügen - + Add to blacklist Zur Blacklist hinzufügen @@ -1452,59 +1409,59 @@ DownloadManager - + Executable: Ausführbare Datei: - + Arguments: Parameter: - + Cannot start external download manager Externer Download Manager kann nicht gestartet werden - + Cannot start external download manager! %1 Externer Download Manager kann nicht gestartet werden! %1 - + %1% of %2 files (%3) %4 remaining %1% von %2 Dateien (%3) %4 verbleiben - + % - Download Manager % - Download Manager - + Download Finished Download beendet - + All files have been successfully downloaded. Alle Dateien wurden erfolgreich heruntergeladen. - + Warning Warnung - + Are you sure to quit? All uncompleted downloads will be cancelled! Möchten Sie QupZilla wirklich beenden?Alle nicht beendeten Downloads werden abgebrochen! - - + + Download Manager Download Manager @@ -1648,30 +1605,30 @@ Link-Adresse kopieren - - + + Today Heute - - + + This Week Diese Woche - - + + This Month Dieser Monat - + Confirmation Bestätigung - + Are you sure to delete all history? Möchten Sie wirklich den gesamten Verlauf löschen? @@ -1679,72 +1636,67 @@ HistoryModel - - Failed loading page - Seite konnte nicht geladen werden - - - + No Named Page Leere Seite - + January Januar - + February Februar - + March März - + April April - + May Mai - + June Juni - + July Juli - + August August - + September September - + October Oktober - + November November - + December Dezember @@ -1778,19 +1730,19 @@ - + Today Heute - + This Week Diese Woche - + This Month Dieser Monat @@ -1816,17 +1768,17 @@ URL eingeben oder auf %1 suchen - + Paste And &Go Einfügen und &Los - + Clear All Alle leeren - + .co.uk Append domain name on ALT + Enter = Should be different for every country .de @@ -1837,58 +1789,47 @@ Seiteninformationen anzeigen - - MainApplication - - Last session crashed - Die letzte Sitzung wurde unerwartet beendet - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla ist abgestürzt :-(</b><br/>Hoppla,die letzte Sitzung wurde unerwartet beendet. Verzeihung. Möchten Sie den letzten Status wiederherstellen? - - NavigationBar - + No Named Page Leere Seite - + Back Zurück - + Forward Vorwärts - + Home Startseite - + New Tab Neuer Tab - + Main Menu Hauptmenü - - + + Exit Fullscreen Vollbildmodus beenden - - + + Clear history Verlauf löschen @@ -1977,14 +1918,10 @@ Bildschirmseite - + Save Page Screen... Bildschirmseite speichern... - - screen.png - Bildschirmseite.png - PluginsList @@ -2003,10 +1940,6 @@ Settings Einstellungen - - Load Plugins - Plugins laden - WebKit Plugins @@ -2043,29 +1976,25 @@ Click To Flash erlauben - + Add site to whitelist Aktuelle Seite zur Whitelist hinzufügen - + Server without http:// (ex. youtube.com) Server ohne http:// (z.B. youtube.com) - + Error! Fehler! - + Cannot load extension! Erweiterung kann nicht geladen werden! - - Cannot load plugin! - Plugin kann nicht geladen werden! - PopupWindow @@ -2097,10 +2026,6 @@ Downloads Downloads - - Plugins - Plugins - Open blank page @@ -2193,7 +2118,7 @@ Cache-Speicherung auf lokaler Festplatte erlauben - + <b>Cookies</b> <b>Cookies</b> @@ -2263,19 +2188,19 @@ 50 MB - + Ask everytime for download location Jedes Mal nach Speicherort fragen - + Use defined location: Definierten Speicherort benutzen: - - - + + + ... ... @@ -2294,10 +2219,6 @@ Allow JAVA Java zulassen - - Allow Plugins (Flash plugin) - Plugins erlauben (Flash plugin) - Maximum pages in cache: @@ -2309,12 +2230,12 @@ Passwort Manager - + <b>AutoFill options</b> <b>Autovervollständigen</b> - + Allow saving passwords from sites Speichern von Passwörtern von Seiten erlauben @@ -2330,7 +2251,7 @@ - + Note: You cannot delete active profile. Hinweis: Ein aktives Profil kann nicht gelöscht werden. @@ -2355,7 +2276,7 @@ DNS Prefetch erlauben - + JavaScript can access clipboard JavaScript darf auf die Zwischenablage zugreifen @@ -2377,7 +2298,7 @@ Hintergrund drucken - + Send Do Not Track header to servers Do Not Track Kopfzeile zum Server senden @@ -2476,7 +2397,7 @@ Standardvergrößerung: - + Change browser identification: Browser Identifizierung ändern: @@ -2506,268 +2427,263 @@ Lokaler Speicherplatz - + Delete now Jetzt löschen - + Proxy Configuration Proxy Konfiguration - + <b>Exceptions</b> <b>Ausnahmen</b> - + Server: Server: - + Use different proxy for https connection Einen anderen Proxy für https Verbindungen nutzen - + <b>Font Families</b> <b>Schriftarten</b> - + Standard Standard - + Fixed Feste Breite - + Serif Serif - + Sans Serif Sans Serif - + Cursive Kursiv - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Schriftgrößen</b> - + Fixed Font Size Feste Schriftgröße - + Default Font Size Standard Schriftgröße - + Minimum Font Size Kleinste Schriftgröße - + Minimum Logical Font Size Kleinste logische Schriftgröße - + <b>Download Location</b> <b>Download Verzeichnis</b> - + <b>Download Options</b> <b>Download Optionen</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Nativen System-Dialog verwenden (kann Probleme beim Herunterladen von mittels SSL geschützten Inhalten verursachen) - + Close download manager when downloading finishes Download-Manager schließen, wenn das Herunterladen beendet ist - + Allow storing of cookies Das Speichern von Cookies erlauben - + Delete cookies on close Cookies beim Beenden löschen - + Match domain exactly Genaue Übereinstimmung der Domain - + Cookies Manager Cookie Manager - + <b>SSL Certificates</b> <b>SSL Zertifikate</b> - + Edit CA certificates in SSL Manager CA Zertifikate im SSL Manager bearbeiten - - + + <b>Other</b> <b>Andere</b> - + Send Referer header to servers Den Referrer übermitteln - + Block popup windows PopUp Fenster blockieren - + <b>Notifications</b> <b>Benachrichtigungen</b> - + Use OSD Notifications OSD verwenden - + Use Native System Notifications (Linux only) System-Benachrichtigungen verwenden (nur Linux) - + Do not use Notifications Keine Benachrichtigungen verwenden - + Expiration timeout: Zeit: - + seconds Sekunden - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Hinweis: </b>Sie können die Position des OSD ändern, in dem Sie es auf dem Bildschirm mit der Maus verschieben. - + StyleSheet automatically loaded with all websites: StyleSheet automatisch mit allen Webseiten laden: - + Languages Sprachen - + <b>Preferred language for web sites</b> <b>Bevorzugte Sprache für Webseiten</b> - + System proxy configuration Proxy-Einstellungen des Systems verwenden - + Do not use proxy Keinen Proxy benutzen - + Manual configuration Manuelle Konfiguration - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Port: - - + + Username: Nutzername: - - + + Password: Passwort: - + Don't use on: Ausnahme: - Allow storing web icons - Speichern von Web-Symbolen erlauben - - - Allow saving history Speichern des Verlaufs erlauben - + Delete history on close Verlauf beim Beenden löschen @@ -2788,47 +2704,47 @@ Zum Hinzufügen der .co.uk Domäne drücken Sie bitte die ALT-Taste - + Allow local storage of HTML5 web content Das lokale Speichern von HTML5 Inhalten erlauben - + Delete locally stored HTML5 web content on close Lokale HTML5 Speicherinhalte beim Verlassen löschen - + <b>External download manager</b> <b>Externer Download Manager</b> - + Use external download manager Externen Download Manager benutzen - + Executable: Ausführbare Datei: - + Arguments: Parameter: - + Filter tracking cookies Seitenfremde Cookies verbieten - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Warnung:</b> Das Einschalten der Optionen "Genaue Übereinstimmung" und "Seitenfremde Inhalte" kann dazu führen, dass Cookies von Webseiten zurückgewiesen werden. Tritt dieses Problem auf, deaktivieren Sie bitte zunächst diese Optionen! - + SSL Manager SSL Manager @@ -2843,68 +2759,68 @@ Um die Sprache zu ändern, starten Sie bitte QupZilla neu. - + OSD Notification OSD Benachrichtigung - + Drag it on the screen to place it where you want. Veschieben Sie es auf dem Bildschirm nach Belieben. - + Choose download location... Download-Verzeichnis auswählen... - + Choose stylesheet location... Stylesheet-Verzeichnis wählen... - + Deleted Gelöscht - + Choose executable location... Ausführbare Datei auswählen... - + New Profile Neues Profil - + Enter the new profile's name: Bitte geben Sie den Namen des neuen Profils ein: - - + + Error! Fehler! - + This profile already exists! Dieses Profil existiert bereits! - + Cannot create profile directory! Verzeichnis kann nicht erstellt werden! - + Confirmation Bestätigung - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Möchten Sie wirklich das Profil "%1" dauerhaft entfernen? Diese Aktion kann nicht rückgängig gemacht werden! @@ -2962,16 +2878,6 @@ QupZilla - - - Bookmarks - Lesezeichen - - - - History - Verlauf - Quit @@ -2993,27 +2899,27 @@ IP Adresse der aktuellen Seite - + QupZilla QupZilla - + &Tools &Werkzeuge - + &Help &Hilfe - + &Bookmarks &Lesezeichen - + Hi&story &Verlauf @@ -3023,12 +2929,12 @@ &Datei - + Last session crashed Die letzte Sitzung wurde unerwartet beendet - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla ist abgestürzt :-(</b><br/>Hoppla,die letzte Sitzung wurde unerwartet beendet. Verzeihung. Möchten Sie den letzten Status wiederherstellen? @@ -3113,85 +3019,81 @@ Sta&tus-Leiste - + Toolbars Werkzeugleisten - + Sidebars Seiten-Leiste - + &Page Source Seiten-&Quelltext - + Recently Visited Neulich besucht - + Most Visited Meistbesuchte - + Web In&spector Web In&spector - + Information about application Mehr über QupZilla - + Configuration Information Informationen zur Konfiguration - + HTML files HTML Dateien - + Image files Bild-Dateien - + Text files Text-Dateien - + All files Alle Dateien - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Es sind noch %1 Tabs geöffnet und Ihre Sitzung wird nicht gespeichert. Möchten Sie QupZilla wirklich beenden? - + Don't ask again Nicht mehr fragen - + There are still open tabs Es sind noch Tabs geöffnet - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Es sind noch %1 Tabs geöffnet und Ihre Sitzung wird nicht gespeichert. Möchten Sie QupZilla wirklich beenden? - &Menu Bar @@ -3218,17 +3120,17 @@ Are you sure to quit QupZilla? &Zeichenkodierung - + Zoom &In Ver&größern - + Zoom &Out Ver&kleinern - + Reset Zurücksetzen @@ -3253,32 +3155,27 @@ Are you sure to quit QupZilla? &Drucken... - + Other Andere - - Default - Standard - - - + %1 - QupZilla %1 - QupZilla - + Current cookies cannot be accessed. Auf aktuelle Cookies kann nicht zugegriffen werden. - + Your session is not stored. Ihre Sitzung wird nicht gespeichert. - + Start Private Browsing Privaten Modus starten @@ -3288,56 +3185,56 @@ Are you sure to quit QupZilla? Privater Modus aktiv - + Restore &Closed Tab Geschlossenen Tab &wiederherstellen - - - - - + + + + + Empty Leer - + Bookmark &This Page &Lesezeichen für diese Seite hinzufügen - + Bookmark &All Tabs Lesezeichen für alle &geöffneten Tabs hinzufügen - + Organize &Bookmarks Bookmarks &bearbeiten - + &Back &Zurück - + &Forward &Vor - + &Home &Startseite - + Show &All History &Vollständigen Verlauf anzeigen - + Closed Tabs Geschlossene Tabs @@ -3347,22 +3244,22 @@ Are you sure to quit QupZilla? Bildschirmseite speichern - + (Private Browsing) (Privater Modus) - + Restore All Closed Tabs Alle geschlossenen Tabs wiederherstellen - + Clear list Liste leeren - + About &Qt Üb&er Qt @@ -3372,47 +3269,47 @@ Are you sure to quit QupZilla? Über Qup&Zilla - + Report &Issue &Fehlerbericht senden - + &Web Search Web&suche - + Page &Info S&eiteninformationen anzeigen - + &Download Manager &Download Manager - + &Cookies Manager &Cookie Manager - + &AdBlock &AdBlock - + RSS &Reader RSS &Reader - + Clear Recent &History &Verlauf löschen - + &Private Browsing &Privater Modus @@ -3422,27 +3319,27 @@ Are you sure to quit QupZilla? &Einstellungen - + Open file... Datei öffnen... - + Are you sure you want to turn on private browsing? Möchten Sie wirklich den privaten Modus starten? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Wenn der private Modus aktiv ist, stehen einige Aktionen nicht zur Verfügung: - + Webpages are not added to the history. Webseiten werden nicht zum Verlauf hinzugefügt. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Solange dieses Fenster geöffnet ist, können Sie über die Symbole "Zurück" und "Vor" zu den Webseiten zurückkehren, die Sie geöffnet haben. @@ -3464,11 +3361,6 @@ Are you sure to quit QupZilla? Not Found Nicht gefunden - - If you are experiencing problems with QupZilla, please try to disable all extenions first. <br/>If this does not fix it, then please fill out this form: - /src/lib/network/qupzillaschemehandler.cpp - Wenn Sie bei der Nutzung von QupZilla auf Probleme stoßen, deaktivieren Sie bitte zuerst alle Plugins. <br/> Sollte dies das Problem nicht lösen, füllen Sie bitte dieses Formular aus: - Your E-mail @@ -3517,82 +3409,74 @@ Are you sure to quit QupZilla? Über QupZilla - - + + Configuration Information Informationen zur Konfiguration - This page contains information about QupZilla's current configuration, all relevant information for troubleshooting. Please include these information when sending bug reports. - Diese Seite enthält Informationen über die aktuelle Konfiguration von QupZilla, die für die Ermittlung von Fehlerursachen relevant sind. Bitte fügen Sie diese Ihrem Fehlerbericht bei. - - - + Browser Identification Browser Indentifizierung - + Paths Pfade - + Extensions Erweiterungen - - + + Disabled Deaktiviert - - - - - + + + + + <b>Enabled</b> <b>Aktiviert</b> - + Debug build Debugging - + WebGL support WebGL Unterstützung - + Windows 7 API Windows 7 API - + KDE integration KDE Integration - + Portable build Portable Version - + No available extensions. Keine Erweiterungen verfügbar. - - No available plugins. - Keine Plugins verfügbar. - Copyright @@ -3614,58 +3498,58 @@ Are you sure to quit QupZilla? Übersetzer - + Speed Dial Schnellwahl - + Add New Page Neue Seite hinzufügen - + Apply Anwenden - + Load title from page Titel von der Web-Seite laden - + Edit Bearbeiten - + Remove Entfernen - + Reload Neu laden - + Url Url - + Title Titel - + New Page Neue Seite - + Version Version @@ -3675,14 +3559,6 @@ Are you sure to quit QupZilla? Report Issue Fehlerbericht senden - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Wenn Sie bei der Nutzung von QupZilla auf Probleme stoßen, deaktivieren Sie bitte zuerst alle Plugins. <br/> Sollte dies das Problem nicht lösen, füllen Sie bitte dieses Formular aus: - - - E-mail is optional<br/><b>Note: </b>Please use English language only. - Die Angabe der E-Mail Adresse ist optional.<br/><b>Hinweis: </b>Bitte verfassen Sie die Fehlerberichte ausschließlich in englischer Sprache. - Please fill out all required fields! @@ -3690,121 +3566,113 @@ Are you sure to quit QupZilla? - + Information about version Versionsinformationen - + WebKit version WebKit Version - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Diese Seite enthält Informationen über die aktuelle Konfiguration von QupZilla, die für die Ermittlung von Fehlerursachen relevant sind. Bitte fügen Sie diese Ihrem Fehlerbericht bei. - + Application version QupZilla Version - + Qt version Qt Version - + Build time Kompiliert am - + Platform Plattform - + Profile Profile - This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports. - Diese Seite enthält Informationen über die aktuelle Konfiguration von QupZilla, aktivierte Plugins, usw., die für die Ermittlung von Fehlerursachen relevant sind. Bitte fügen Sie diese Ihrem Fehlerbericht bei. - - - + Build Configuration Compiler Flags - + Preferences Einstellungen - + Option Option - + Value Wert - + Name Name - + Author Autor - + Description Beschreibung - + Settings Einstellungen - + Saved session Gespeicherte Sitzung - + Pinned tabs Angeheftete Tabs - + Data Daten - + Themes Themen - Plugins - Plugins - - - + Translations Übersetzungen - + Speed Dial settings Einstellungen Schnellwahl @@ -3814,57 +3682,57 @@ Are you sure to quit QupZilla? Wenn Sie bei der Nutzung von QupZilla auf Probleme stoßen, deaktivieren Sie bitte zuerst alle Erweiterungen. <br/> Sollte dies das Problem nicht lösen, füllen Sie bitte dieses Formular aus: - + Close Schließen - + Placement: Anordnung: - + Auto Automatisch - + Cover Cover - + Fit Anpassen - + Fit Width Seitenbreite - + Fit Height Seitenhöhe - + Use background image Hintergrundbild verwenden - + Select image Bild auswählen - + Maximum pages in a row: Maximale Anzahl Seiten in einer Reihe: - + Change size of pages: Größe der Seiten ändern: @@ -4002,12 +3870,12 @@ Bitte fügen Sie welche über das RSS Symbol in der Navigationsleiste hinzu.RSS Feed von dieser Seite hinzufügen - + Untitled feed Unbenannter Feed - + Add Hinzufügen @@ -4215,12 +4083,14 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest SideBar - + + Bookmarks Lesezeichen - + + History Verlauf @@ -4498,10 +4368,6 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Paste Einfügen - - Delete - Löschen - Select All @@ -4623,7 +4489,7 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest SqueezeLabelV2 - + Copy Kopieren @@ -4755,22 +4621,22 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest TabbedWebView - + Failed loading page Seite konnte nicht geladen werden - + Loading... Laden... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Element untersuchen @@ -4797,10 +4663,6 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest License Lizenz - - License Viewer - Lizenz anzeigen - ToolButton @@ -4845,148 +4707,144 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Um diese Seite anzeigen zu können, muss QupZilla eine erneute Abfrage an den Server versenden - + Confirm form resubmission Erneute Formular-Übermittlung bestätigen - + Select files to upload... Dateien zum Upload auswählen... - + Server refused the connection Der Server hat den Verbindungsversuch abgelehnt - + Server closed the connection Der Server hat die Verbindung beendet - + Server not found Server nicht gefunden - + Connection timed out Zeitüberschreitung der Anfrage - + Untrusted connection Keine vertrauenswürdige Verbindung - + Temporary network failure Temporärer Netzwerkfehler - + Proxy connection refused Der Proxyserver hat den Verbindungsversuch abgelehnt - + Proxy server not found Proxy nicht gefunden - + Proxy connection timed out Der Proxy-Server hat nicht in angemessener Zeit geantwortet - + Proxy authentication required Authentifizierung am Proxy-Server erforderlich - + Content not found Inhalt konnte nicht gefunden werden - + Unknown network error Unbekannter Netzwerkfehler - + AdBlocked Content Inhalt von AdBlock blockiert - + Blocked by rule <i>%1</i> Blockiert von Regel <i>%1</i> - + Content Access Denied Zugriff auf Inhalt verweigert - + Error code %1 Fehler Code %1 - + Failed loading page Seite konnte nicht geladen werden - + QupZilla can't load page from %1. QupZilla kann Seite von %1 nicht laden. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Bitte überprüfen Sie die Adresse auf Tippfehler wie <b>ww.</b>example.com anstatt <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Falls Sie keine Webseiten laden können, überprüfen Sie bitte Ihre Netzwerkverbindung. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Falls Ihr Computer über eine Firewall oder Proxy mit dem Internet verbunden ist, vergewissern Sie sich, dass QupZilla der Zugriff zum Internet gestattet ist. - + Try Again Erneut versuchen - + JavaScript alert JavaScript Warnmeldung - + Prevent this page from creating additional dialogs Das Ausführen von Skripten auf dieser Seite unterbinden - JavaScript alert - %1 - JavaScript Warnmeldung - %1 - - - + Choose file... Datei wählen... @@ -5017,223 +4875,223 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest WebView - + Open link in new &tab Link in neuem &Tab öffnen - + Open link in new &window Link in neuem &Fenster öffnen - + B&ookmark link &Lesezeichen für diesen Link hinzufügen - + &Save link as... &Ziel speichern unter... - + &Copy link address Lin&k-Adresse kopieren - + Show i&mage G&rafik anzeigen - + Copy im&age Grafik k&opieren - + Copy image ad&dress Grafika&dresse kopieren - + S&top S&topp - + Create Search Engine Suchmaschine erstellen - + This frame Dieser Rahmen - + Show &only this frame Nur diesen Rahmen anzei&gen - + Show this frame in new &tab Diesen Rahmen in einem neuen &Tab anzeigen - + Print frame Rahmen drucken - + Zoom &in Ver&größern - + &Zoom out Ver&kleinern - + Reset Zurücksetzen - + Show so&urce of frame Q&uelltext dieses Rahmens anzeigen - + &Copy page link Link zur Seite &kopieren - + Send page link... Link der Seite versenden... - + &Print page Seite &drucken - + Validate page Seite überprüfen - + Show info ab&out site S&eiteninformationen anzeigen - + Search with... Suche mit... - + &Play &Wiedergabe - + &Pause &Pause - + Un&mute &Ton einschalten - + &Mute &Stumm schalten - + &Copy Media Address Medienadresse &kopieren - + &Send Media Address Medienadresse &versenden - + Save Media To &Disk Multimedia-Datei &speichern - + &Save image as... Grafik speichern &unter... - + &Back &Zurück - + &Forward &Vor - - + + &Reload &Neu laden - + Book&mark page &Lesezeichen für diese Seite hinzufügen - + &Save page as... Seite speichern &unter... - + Select &all Alles au&swählen - + Show so&urce code Seitenquelltext &anzeigen - + Send text... Text senden... - + Google Translate Google Übersetzer - + Dictionary Wörterbuch - + Go to &web address Gehe zu &Web-Adresse - + Search "%1 .." with %2 Suche "%1 .." mit %2 @@ -5243,12 +5101,12 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Leere Seite - + Send link... Link senden... - + Send image... Grafik senden... diff --git a/translations/el_GR.ts b/translations/el_GR.ts index 6c6cc2d37..67d628b70 100644 --- a/translations/el_GR.ts +++ b/translations/el_GR.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>Έκδοση WebKit %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Με την επιφύλαξη παντός δικαιώματος<br/> - <small>Build time: %1 </small></p> @@ -497,40 +493,40 @@ Επιλογή αρχείου... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Ο Mozilla Firefox αποθηκεύει τους σελιδοδείκτες του στην βάση δεδομένων SQLite <b>places.sqlite</b>. Αυτό το αρχείο βρίσκεται συνήθως στο - - - - + + + + Please choose this file to begin importing bookmarks. Παρακαλώ επιλέξτε αυτό το αρχείο για να ξεκινήσετε την εισαγωγή σελιδοδεικτών. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Ο Google Chrome αποθηκεύει τους σελιδοδείκτες του στο αρχείο κειμένου <b>Bookmarks (Σελιδοδείκτες)</b>. Αυτό το αρχείο βρίσκεται συνήθως στο - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Ο Opera αποθηκεύει τους σελιδοδείκτες του στο αρχείο κειμένου <b>bookmarks.adr</b>. Αυτό το αρχείο βρίσκεται συνήθως στο - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Μπορείτε να εισάγετε σελιδοδείκτες από οποιοδήποτε περιηγητή υποστηρίζει εξαγωγή σε HTML. Αυτό το αρχείο έχει συνήθως αυτές τις καταλήξεις - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Ο Internet Explorer αποθηκεύει τους σελιδοδείκτες του στον φάκελο <b>Favorites (Αγαπημένα)</b>. Αυτό το αρχείο βρίσκεται συνήθως στο - + Please choose this folder to begin importing bookmarks. Παρακαλώ επιλέξτε τον φάκελο αυτό για να ξεκινήσετε την εισαγωγή σελιδοδεικτών. @@ -628,67 +624,67 @@ Επιλογή ονομασίας για φάκελο: - + Add Subfolder Προσθήκη υποφακέλου - + Rename folder Μετονομασία φακέλου - + Remove folder Αφαίρεση φακέλου - + Open link in current &tab Ά&νοιγμα συνδέσμου στην τρέχουσα καρτέλα - + Open link in &new tab Άνοιγμα συνδέσμου σε νέα καρ&τέλα - + Move bookmark to &folder Μετακίνηση σελιδοδείκτη σε &φάκελο - + Rename bookmark Μετονομασία σελιδοδείκτη - + Remove bookmark Αφαίρεση σελιδοδείκτη - + <b>Warning: </b>You already have bookmarked this page! <b>Προσοχή: </b> Η σελίδα βρίσκεται ήδη στους σελιδοδείκτες! - + Choose name and location of this bookmark. Επιλογή ονόματος και τοποθεσίας του σελιδοδείκτη. - + Add New Bookmark Προσθήκη νέου σελιδοδείκτη - + Choose folder for bookmarks: Επιλογή φακέλου για σελιδοδείκτες: - + Bookmark All Tabs Όλες οι καρτέλες σε σελιδοδείκτη @@ -696,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Σελιδοδείκτες στο μενού - - + + Bookmarks In ToolBar Σελιδοδείκτες στην εργαλειοθήκη - - + + Unsorted Bookmarks Αταξινόμητοι σελιδοδείκτες @@ -745,106 +741,94 @@ BookmarksToolbar - + &Bookmark Current Page Η &σελίδα ως σελιδοδείκτης - + Bookmark &All Tabs Όλες οι καρ&τέλες σε σελιδοδείκτη - + &Organize Bookmarks &Οργάνωση σελιδοδεικτών - Hide Most &Visited - Απόκρυψη πιο &δημοφιλών - - - + Show Most &Visited Εμφάνιση πιο &δημοφιλών - + Show Only Icons Εμφάνιση μόνο εικονιδίων - + &Hide Toolbar Από&κρυψη εργαλειοθήκης - + Move right Μετακίνηση δεξιά - + Move left Μετακίνηση αριστερά - + Edit bookmark Επεξεργασία σελιδοδείκτη - + Remove bookmark Αφαίρεση σελιδοδείκτη - + Edit bookmark: Επεξεργασία σελιδοδείκτη: - + Title: Τίτλος: - + Url: Url: - + Edit Bookmark Επεξεργασία σελιδοδείκτη - + Most visited Πιο δημοφιλείς - + Sites you visited the most Σελίδες που επισκεφτήκατε περισσότερο - - + + Empty Άδειο BookmarksWidget - - Edit This Bookmark - Επεξεργασία σελιδοδείκτη - - - Remove Bookmark - Αφαίρεση σελιδοδείκτη - Name: @@ -875,27 +859,11 @@ Add to Bookmarks Προσθήκη στους σελιδοδείκτες - - Add into Bookmarks - Προσθήκη στους σελιδοδείκτες - - - Add into Speed Dial - Προσθήκη στην γρήγορη κλήση - - - <b>Add Bookmark</b> - <b>Προσθήκη σελιδοδείκτη</b> - Edit Bookmark Επεξεργασία σελιδοδείκτη - - <b>Edit Bookmark</b> - <b>Επεξεργασία σελιδοδείκτη</b> - @@ -1115,17 +1083,6 @@ Δεν υπάρχουν παραπάνω πληροφορίες. - - CloseDialog - - There are still open tabs - Υπάρχουν ανοιχτές καρτέλες - - - Don't ask again - Μην ρωτήσεις ξανά - - CookieManager @@ -1170,8 +1127,8 @@ - - + + Server: Διακομιστής: @@ -1269,12 +1226,12 @@ Είστε σίγουρος ότι θέλετε να διαγράψετε όλα τα cookies από τον υπολογιστή σας; - + Add to whitelist Προσθήκη στην λευκή λίστα - + Add to blacklist Προσθήκη στην μαύρη λίστα @@ -1453,8 +1410,8 @@ DownloadManager - - + + Download Manager Διαχειριστής λήψεων @@ -1464,52 +1421,52 @@ Εκκαθάριση - + Executable: Εκτελέσιμο: - + Arguments: Παράμετροι: - + Cannot start external download manager Αδυναμία εκκίνησης εξωτερικού διαχειριστή λήψεων - + Cannot start external download manager! %1 Αδυναμία εκκίνησης εξωτερικού διαχειριστή λήψεων! %1 - + %1% of %2 files (%3) %4 remaining %1% από %2 αρχεία (%3) %4 απομένει - + % - Download Manager % - Διαχειριστής λήψεων - + Download Finished Ολοκληρώθηκε η λήψη - + All files have been successfully downloaded. Όλα τα αρχεία λήφθηκαν επιτυχώς. - + Warning Προειδοποίηση - + Are you sure to quit? All uncompleted downloads will be cancelled! Είστε σίγουρος για το κλείσιμο; Όλες οι λήψεις που δεν έχουν τελειώσει θα ακυρωθούν! @@ -1648,30 +1605,30 @@ Αντιγραφή διεύθυνσης - - + + Today Σήμερα - - + + This Week Αυτή τη βδομάδα - - + + This Month Αυτό το μήνα - + Confirmation Επιβεβαίωση - + Are you sure to delete all history? Είστε σίγουροι ότι θέλετε να διαγράψετε όλο το ιστορικό; @@ -1679,72 +1636,67 @@ HistoryModel - - Failed loading page - Αποτυχία φόρτωσης σελίδας - - - + No Named Page Ανώνυμη σελίδα - + January Ιανουάριος - + February Φεβρουάριος - + March Μάρτιος - + April Απρίλιος - + May Μάϊος - + June Ιούνιος - + July Ιούλιος - + August Αύγουστος - + September Σεπτέμβριος - + October Οκτώβριος - + November Νοέμβριος - + December Δεκέμβριος @@ -1778,19 +1730,19 @@ - + Today Σήμερα - + This Week Αυτή τη βδομάδα - + This Month Αυτό το μήνα @@ -1816,17 +1768,17 @@ Εισαγωγή διεύθυνσης URL ή αναζήτηση στο %1 - + Paste And &Go Επικόλληση και &μετάβαση - + Clear All Εκκαθάριση όλων - + .co.uk Append domain name on ALT + Enter = Should be different for every country .gr @@ -1837,58 +1789,47 @@ Εμφάνιση πληροφοριών για αυτή τη σελίδα - - MainApplication - - Last session crashed - Η τελευταία συνεδρία κατέρρευσε - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - Το <b>QupZilla κατέρρευσε :-(</b><br/>Ούπς, η τελευταία συνεδρία του QupZilla διακόπηκε απροσδόκητα. Ζητάμε συγνώμη για αυτό. Θα θέλατε να δοκιμάσετε την επαναφορά στην ποιο πρόσφατα αποθηκευμένη κατάσταση; - - NavigationBar - + No Named Page Ανώνυμη σελίδα - + Back Πίσω - + Forward Μπροστά - + Home Αρχική σελίδα - + New Tab Νέα καρτέλα - + Main Menu Αρχικό μενού - - + + Exit Fullscreen Έξοδος από την λειτουργία πλήρους οθόνης - - + + Clear history Εκκαθάριση ιστορικού @@ -1977,14 +1918,10 @@ Στιγμιότυπο οθόνης - + Save Page Screen... Αποθήκευση στιγμιότυπου οθόνης... - - screen.png - screen.png - PluginsList @@ -2003,10 +1940,6 @@ Settings Ρυθμίσεις - - Load Plugins - Φόρτωση προσθέτων - WebKit Plugins @@ -2043,22 +1976,22 @@ Να επιτρέπεται το Click To Flash - + Add site to whitelist Προσθήκη σελίδας στην whitelist - + Server without http:// (ex. youtube.com) Διακομιστής χωρίς http:// (π.χ. youtube.com) - + Error! Σφάλμα! - + Cannot load extension! Αδυναμία φόρτωσης επέκτασης! @@ -2157,7 +2090,7 @@ - + Note: You cannot delete active profile. Σημείωση: Δεν μπορείτε να διαγράψετε το ενεργό προφίλ. @@ -2262,7 +2195,7 @@ Ενεργοποίηση τελευταίας καρτέλας στο κλείσιμο ενεργής καρτέλας - + Change browser identification: Αλλαγή αναγνωριστικού περιηγητή: @@ -2317,32 +2250,28 @@ Open new tabs after active tab Άνοιγμα νέων καρτελών μετά την τρέχουσα καρτέλα - - Allow Plugins (Flash plugin) - Να επιτρέπονται τα πρόσθετα (πρόσθετο Flash) - Allow DNS Prefetch Να επιτρέπεται η προανάκτηση DNS - + Allow local storage of HTML5 web content Να επιτρέπεται η τοπική αποθήκευση περιεχομένου HTML5 - + Delete locally stored HTML5 web content on close Διαγραφή τοπικά αποθηκευμένου περιεχομένου HTML5 κατά το κλείσιμο - + JavaScript can access clipboard Να έχει πρόσβαση στο πρόχειρο το JavaScript - + Send Do Not Track header to servers Αποστολή κεφαλίδας Do Not Track (Μην εντοπίζεις) στους διακομηστές @@ -2436,319 +2365,314 @@ - Allow storing web icons - Να επιτρέπεται η αποθήκευση εικονιδίων δικτύου - - - Allow saving history Να επιτρέπεται η αποθήκευση ιστορικού - + Delete history on close Διαγραφή ιστορικού στο κλείσιμο - + Delete now Διαγραφή τώρα - + Proxy Configuration Ρυθμίσεις proxy - + HTTP HTTP - + SOCKS5 SOCKSS - - + + Port: Θύρα: - - + + Username: Όνομα χρήστη: - - + + Password: Κωδικός: - + Don't use on: Να μην χρησιμοποιείται σε: - + Manual configuration Χειροκίνητη ρύθμιση - + System proxy configuration Ρύθμιση proxy συστήματος - + Do not use proxy Να μην χρησιμοποιείται proxy - + <b>Exceptions</b> <b>Εξαιρέσεις</b> - + Server: Διακομιστής: - + Use different proxy for https connection Χρήση διαφορετικού μεσολαβητή για σύνδεση https - + <b>Font Families</b> <b>Οικογένειες γραμματοσειρών</b> - + Standard Standard - + Fixed Σταθερό - + Serif Serif - + Sans Serif Sans Serif - + Cursive Cursive - + <b>External download manager</b> <b>Εξωτερικός διαχειριστής λήψεων</b> - + Use external download manager Χρήση εξωτερικού διαχειριστή λήψεων - + Executable: Εκτελέσιμο: - + Arguments: Παράμετροι: - + Filter tracking cookies Φιλτράρισμα των cookies παρακολούθησης - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Προσοχή:</b> Ακριβές ταίριασμα domain και φιλτράρισμα των cookies παρακολούθησης μπορεί να οδηγήσουν κάποια cookies να απορρίπτονται από σελίδες. Αν έχετε προβλήματα με τα cookies, δοκιμάστε να απενεργοποιήσετε αυτή την επιλογή πρώτα! - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Μεγέθη γραμματοσειρών</b> - + Fixed Font Size Σταθερο μέγεθος γραμματοσειράς - + Default Font Size Προεπιλεγμένο μέγεθος γραμματοσειράς - + Minimum Font Size Ελάχιστο μέγεθος γραμματοσειράς - + Minimum Logical Font Size Ελάχιστο λογικό μέγεθος γραμματοσειράς - + <b>Download Location</b> <b>Τοποθεσία λήψεων</b> - + Ask everytime for download location Ερώτηση για τοποθεσία λήψεων κάθε φορά - + Use defined location: Χρήση καθορισμένης τοποθεσίας: - - - + + + ... ... - + <b>Download Options</b> <b>Επιλογές λήψεων</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Χρήση εγγενούς διαλόγου αρχείου συστήματος (μπορεί να ή να μην προκαλέσει προβλήματα με την λήψη ασφαλούς περιεχομένου SSL) - + Close download manager when downloading finishes Κλείσιμο διαχειριστή λήψεων όταν τελειώσουν οι λήψεις - + <b>AutoFill options</b> <b>Επιλογές αυτόματης συμπλήρωσης</b> - + Allow saving passwords from sites Να επιτρέπεται η αποθήκευση κωδικών από σελίδες - + <b>Cookies</b> <b>Cookies</b> - + Allow storing of cookies Να επιτρέπεται η αποθήκευση των cookies - + Delete cookies on close Διαγραφή των cookies στο κλείσιμο - + Match domain exactly Ακριβές ταίριασμα του τομέα διεύθυνσης (domain) - + Cookies Manager Διαχειριστής Cookies - + <b>SSL Certificates</b> <b>Πιστοποιητικά SSL</b> - + SSL Manager Διαχειριστής SSL - + Edit CA certificates in SSL Manager Επεξεργασία αρχών πιστοποίησης CA στον διαχειριστή SSL - - + + <b>Other</b> <b>Άλλο</b> - + Send Referer header to servers Αποστολή κεφαλίδας αναφοράς (referer header) στους διακομιστές - + Block popup windows Φραγή αναδυόμενων παράθυρων - + <b>Notifications</b> <b>Ειδοποιήσεις</b> - + Use OSD Notifications Χρήση ειδοποιήσεων OSD - + Use Native System Notifications (Linux only) Χρήση εγγενών ειδοποιήσεων συστήματος (μόνο σε Linux) - + Do not use Notifications Να μην χρησιμοποιούνται ειδοποιήσεις - + Expiration timeout: Χρονικό όριο λήξης: - + seconds δευτερόλεπτα - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Σημείωση: </b> Μπορείτε να αλλάξετε τη θέση των OSD ενημερώσεων σέρνοντας τo στην οθόνη. @@ -2768,17 +2692,17 @@ Για να αλλάξετε γλώσσα, πρέπει να επανεκκινήσετε τον περιηγητή. - + StyleSheet automatically loaded with all websites: StyleSheet που φορτώνεται αυτόματα με όλες τις σελίδες: - + Languages Γλώσσες - + <b>Preferred language for web sites</b> <b>Προτιμώμενη γλώσσα για ιστοσελίδες</b> @@ -2827,78 +2751,74 @@ Notifications Ειδοποιήσεις - - Plugins - Πρόσθετα - Other Άλλα - + OSD Notification Ειδοποίηση OSD - + Drag it on the screen to place it where you want. Μετακινήστε το στην οθόνη για να το τοποθετήσετε όπου θέλετε. - + Choose download location... Επιλογή τοποθεσίας λήψεων... - + Choose stylesheet location... Επιλογή τοποθεσίας stylesheet... - + Deleted Διαγράφηκε - + Choose executable location... Επιλογή τοποθεσίας εκτελέσιμου... - + New Profile Νέο προφίλ - + Enter the new profile's name: Εισάγετε την ονομασία του νέου προφίλ: - - + + Error! Σφάλμα! - + This profile already exists! Αυτό το προφίλ υπάρχει ήδη! - + Cannot create profile directory! Αδυναμία δημιουργίας καταλόγου προφίλ! - + Confirmation Επιβεβαίωση - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Είστε σίγουροι ότι θέλετε να διαγράψετε μόνιμα το προφίλ "%1"; Η ενέργεια αυτή δεν μπορεί να αναιρεθεί! @@ -2967,22 +2887,22 @@ Διεύθυνση IP της τρέχουσας σελίδας - + &Tools Ερ&γαλεία - + &Help &Βοήθεια - + &Bookmarks &Σελιδοδείκτες - + Hi&story &Ιστορικό @@ -3092,17 +3012,17 @@ Προτι&μήσεις - + QupZilla QupZilla - + Last session crashed Η τελευταία συνεδρία κατέρρευσε - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? Το <b>QupZilla κατέρρευσε :-(</b><br/>Ούπς, η τελευταία συνεδρία του QupZilla διακόπηκε απροσδόκητα. Ζητάμε συγνώμη για αυτό. Θα θέλατε να δοκιμάσετε την επαναφορά στην ποιο πρόσφατα αποθηκευμένη κατάσταση; @@ -3158,162 +3078,152 @@ - Bookmarks - Σελιδοδείκτες - - - - History - Ιστορικό - - - Toolbars Εργαλειοθήκες - + Sidebars Πλευρικές στήλες - + Zoom &In Ε&στίαση - + Zoom &Out Σμίκρ&υνση - + Reset Επαναφορά - + &Page Source Κώδ&ικας σελίδας - + Closed Tabs Κλεισμένες καρτέλες - + Recently Visited Επισκεφτήκατε πρόσφατα - + Most Visited Επισκεφτήκατε περισσότερο - + Web In&spector Επι&θεωρητής διαδικτύου - + Configuration Information Πληροφορίες διαμόρφωσης - + Restore &Closed Tab Επαναφορά κλει&σμένης καρτέλας - + (Private Browsing) (Ιδιωτική περιήγηση) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Υπάρχουν ακόμα %1 ανοιχτές καρτέλες και η συνεδρία σας δεν θα αποθηκευτεί. Είστε σίγουρος ότι θέλετε να κλείσετε το QupZilla; - + Don't ask again Μην ρωτήσεις ξανά - + There are still open tabs Υπάρχουν ανοιχτές καρτέλες - + Bookmark &This Page Προσθήκη &σελίδας στους σελιδοδείκτες - + Bookmark &All Tabs Προσθήκη όλων των &καρτελών στους σελιδοδείκτες - + Organize &Bookmarks &Τακτοποίηση σελιδοδεικτών - - - - - + + + + + Empty Άδειο - + &Back &Πίσω - + &Forward &Μπροστά - + &Home &Αρχική σελίδα - + Show &All History Εμφάνιση &ολόκληρου του ιστορικού - + Restore All Closed Tabs Επαναφορά όλων των κλεισμένων καρτελών - + Clear list Εκκαθάριση λίστας - + About &Qt &Περί Qt - + Information about application Πληροφορίες για την εφαρμογή - + %1 - QupZilla %1 QupZilla @@ -3323,124 +3233,115 @@ Are you sure to quit QupZilla? Πε&ρί QupZilla - + Report &Issue Αναφορά προ&βλήματος - + &Web Search &Αναζήτηση διαδικτύου - + Page &Info &Πληροφορίες σελίδας - + &Download Manager Διαχειριστής &Λήψεων - + &Cookies Manager Δια&χειριστής Cookies - + &AdBlock Ad&Block - + RSS &Reader Α&ναγνώστης RSS - + Clear Recent &History Εκκαθάρ&ιση πρόσφατου ιστορικού - + &Private Browsing Ιδιωτική Περιήγ&ηση - + Other Άλλα - - Default - Προεπιλεγμένο - - - + HTML files Αρχεία HTML - + Image files Αρχεία εικόνων - + Text files Αρχεία κειμένου - + All files Όλα τα αρχεία - + Open file... Άνοιγμα αρχείου... - + Are you sure you want to turn on private browsing? Είστε σίγουροι ότι θέλετε να εκκινήσετε την ιδιωτική περιήγηση; - + When private browsing is turned on, some actions concerning your privacy will be disabled: Όταν η ιδιωτική περιήγηση είναι ενεργή, κάποιες ενέργειες που αφορούν το ιδιωτικό σας απόρρητο θα είναι απενεργοποιημένες: - + Webpages are not added to the history. Οι ιστοσελίδες δεν προστίθενται στο ιστορικό. - + Current cookies cannot be accessed. Δεν υπάρχει πρόσβαση στα τρέχοντα cookies. - + Your session is not stored. Η συνεδρία σας δεν αποθηκεύεται. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Μέχρι να κλείσετε το παράθυρο, μπορείτε ακόμα να κάνετε κλικ στα κουμπιά Πίσω και Μπροστά για να επιστρέψετε στις σελίδες που ανοίξατε. - + Start Private Browsing Έναρξη ιδιωτικής περιήγησης - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Υπάρχουν ακόμα %1 ανοιχτές καρτέλες και η συνεδρία σας δεν θα αποθηκευτεί. Είστε σίγουρος ότι θέλετε να κλείσετε το QupZilla; - You have successfully added RSS feed "%1". @@ -3508,18 +3409,18 @@ Are you sure to quit QupZilla? Περί QupZilla - - + + Configuration Information Πληροφορίες διαμόρφωσης - + Browser Identification Αναγνωριστικό περιηγητή - + Paths Διαδρομές @@ -3530,43 +3431,43 @@ Are you sure to quit QupZilla? - + Version Έκδοση - + WebKit version Έκδοση WebKit - + Application version Έκδοση εφαρμογής - + Qt version Έκδοση Qt - + Build time Χρόνος κατασκευής - + Platform Πλατφόρμα - + Profile Προφίλ - + Preferences Προτιμήσεις @@ -3576,71 +3477,67 @@ Are you sure to quit QupZilla? Αν αντιμετωπίζετε προβλήματα με το QupZilla, παρακαλώ δοκιμάστε να απενεργοποιήσετε όλα τα πρόσθετα πρώτα. <br/>Αν αυτό δεν βοηθήσει, τότε παρακαλώ συμπληρώστε αυτή τη φόρμα: - + Build Configuration Ρυθμίσεις κατασκευής - + Option Επιλογή - + Value Τιμή - + Extensions Επεκτάσεις - + Name Ονομασία - + Author Συγγραφέας - + Description Περιγραφή - + Settings Ρυθμίσεις - + Saved session Αποθηκευμένη συνεδρία - + Pinned tabs Καρφιτσωμένες καρτέλες - + Data Δεδομένα - + Themes Θέματα - Plugins - Πρόσθετα - - - + Translations Μεταφράσεις @@ -3665,156 +3562,148 @@ Are you sure to quit QupZilla? Μεταφραστές - + Speed Dial Γρήγορη κλήση - + Add New Page Προσθήκη νέας σελίδας - + Apply Εφαρμογή - + Close Κλείσιμο - + Speed Dial settings Ρυθμίσεις γρήγορης κλήσης - + Placement: Τοποθέτηση: - + Auto Αυτόματα - + Cover Κάλυψη - + Fit Προσαρμογή - + Fit Width Προσαρμογή στο πλάτος - + Fit Height Προσαρμογή στο Ύψος - + Use background image Χρήση εικόνας παρασκηνίου - + Select image Επιλογή εικόνας - + Maximum pages in a row: Μέγιστες σελίδες στην σειρά: - + Change size of pages: Αλλαγή μεγέθους σελιδών: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Η σελίδα αυτή περιέχει πληροφορίες για την ρύθμιση του τρέχων QupZilla - σχετική για την επίλυση προβλημάτων. Παρακαλώ συμπεριλάβετε τις πληροφορίες αυτές όταν αποστέλλετε αναφορές σφαλμάτων. - + No available extensions. Δεν υπάρχουν διαθέσιμες επεκτάσεις. - - + + Disabled Απενεργοποιημένο - - - - - + + + + + <b>Enabled</b> <b>Ενεργοποιημένο</b> - + Debug build Build αποσφαλμάτωσης - + WebGL support Υποστήριξη WebGL - + Windows 7 API Windows 7 API - + KDE integration Ενσωμάτωση KDE - + Portable build Portable build - + Load title from page Φόρτωση τίτλου από σελίδα - + Edit Επεξεργασία - + Remove Αφαίρεση - - E-mail is optional<br/><b>Note: </b>Please use English language only. - Το e-mail είναι προαιρετικό<br/><b>Σημείωση: </b>Παρακαλώ χρησιμοποιείστε μόνο Αγγλική γλώσσα. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Αν αντιμετωπίζετε προβλήματα με το QupZilla, παρακαλώ δοκιμάστε να απενεργοποιήσετε όλα τα πρόσθετα πρώτα. <br/>Αν αυτό δεν βοηθήσει, τότε παρακαλώ συμπληρώστε αυτή τη φόρμα: - Please fill out all required fields! @@ -3822,27 +3711,27 @@ Are you sure to quit QupZilla? - + Information about version Πληροφορίες έκδοσης - + Reload Ανανέωση - + Url Url - + Title Τίτλος - + New Page Νέα σελίδα @@ -3980,12 +3869,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds.Προσθήκη ροής RSS από αυτή τη σελίδα - + Untitled feed Ροή χωρίς τίτλο - + Add Προσθήκη @@ -4193,12 +4082,14 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SideBar - + + Bookmarks Σελιδοδείκτες - + + History Ιστορικό @@ -4476,10 +4367,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Paste Επικόλληση - - Delete - Διαγραφή - Select All @@ -4601,7 +4488,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SqueezeLabelV2 - + Copy Αντιγραφή @@ -4732,22 +4619,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Αποτυχία φόρτωσης σελίδας - + Loading... Φόρτωση... - + %1 - QupZilla %1 QupZilla - + Inspect Element Επιθεώρηση στοιχείου @@ -4774,10 +4661,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla License Άδεια - - License Viewer - Προβολέας άδειας - ToolButton @@ -4822,148 +4705,144 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Για να εμφανιστεί αυτή η σελίδα, το QupZilla πρέπει να ξαναστείλει ένα αίτημα που το ξανακάνει (όπως την αναζήτηση για μία αγορά, η οποία έχει ξαναγίνει.) - + Confirm form resubmission Επιβεβαίωση νέας υποβολής φόρμας - + Select files to upload... Επιλογή αρχείων για μεταφόρτωση... - + Server refused the connection Ο διακομιστής αρνήθηκε την σύνδεση - + Server closed the connection Ο διακομιστής έκλεισε την σύνδεση - + Server not found Δεν βρέθηκε ο διακομιστής - + Connection timed out Έληξε η σύνδεση - + Untrusted connection Μη έμπιστη σύνδεση - + Temporary network failure Προσωρινή αποτυχία δικτύου - + Proxy connection refused Αρνήθηκε η σύνδεση με τον μεσολαβητή - + Proxy server not found Δεν βρέθηκε διακομιστής διαμεσολάβησης - + Proxy connection timed out Έληξε η σύνδεση με τον μεσολαβητή - + Proxy authentication required Απαιτειται εξουσιοδότηση μεσολαβητή - + Content not found Το περιεχόμενο δεν βρέθηκε - + Unknown network error Άγνωστο σφάλμα δικτύου - + AdBlocked Content Φραγμένο περιεχόμενο Adblock - + Blocked by rule <i>%1</i> Φράχτηκε από τον κανόνα <i>%1</i> - + Content Access Denied Απορρίφτηκε η πρόσβαση περιεχομένου - + Error code %1 Σφάλμα κώδικα %1 - + Failed loading page Αποτυχία φόρτωσης σελίδας - + QupZilla can't load page from %1. Το QupZilla δεν μπορεί να φορτώσει την σελίδα από %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Ελέγξτε την διεύθυνση για τυπογραφικά λάθη όπως <b>ww.</b>example.com αντί για <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Αν δεν μπορείτε να φορτώσετε καμία σελίδα, ελέγξτε την σύνδεση του υπολογιστή σας με το δίκτυο. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Αν ο υπολογιστής σας ή το δίκτυο σας προστατεύεται από ένα τείχος προστασίας (firewall) ή proxy, βεβαιωθείτε ότι το QupZilla επιτρέπεται να έχει πρόσβαση στο διαδίκτυο. - + Try Again Δοκιμάστε ξανά - + JavaScript alert Ειδοποίηση JavaScript - + Prevent this page from creating additional dialogs Να εμποδιστεί αυτή η σελίδα να δημιουργεί επιπλέον διαλόγους - JavaScript alert - %1 - Ειδοποίηση JavaScript - %1 - - - + Choose file... Επιλογή αρχείου... @@ -4994,233 +4873,233 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebView - + Open link in new &tab Άνοιγμα συνδέσμου σε νέα καρ&τέλα - + Open link in new &window Άνοιγμα συνδέσμου σε νέο &παράθυρο - + B&ookmark link Ο σύνδεσμος ως σελιδο&δείκτης - + &Save link as... Απο&θήκευση συνδέσμου ως... - + Send link... Αποστολή συνδέσμου... - + &Copy link address Α&ντιγραφή διεύθυνσης συνδέσμου - + Show i&mage Εμφάνιση &εικόνας - + Copy im&age Αντιγραφή ει&κόνας - + Copy image ad&dress Αντιγραφή διεύ&θυνσης εικόνας - + &Save image as... Απο&θήκευση εικόνας ως... - + Send image... Αποστολή εικόνας... - + &Back &Πίσω - + Create Search Engine Δημιουργία μηχανής αναζήτησης - + &Forward &Μπροστά - - + + &Reload &Ανανέωση - + S&top &Διακοπή - + This frame Αυτό το πλαίσιο - + Show &only this frame Εμφάνιση &μόνο αυτού του πλαισίου - + Show this frame in new &tab Εμφάνιση αυτού του πλαισίου σε νέα &καρτέλα - + Print frame Εκτύπωση πλαισίου - + Zoom &in Ε&στίαση - + &Zoom out Σμίκρ&υνση - + Reset Επαναφορά - + Show so&urce of frame Εμφάνιση πη&γαίου του πλαισίου - + Book&mark page Η σελίδα ως &σελιδοδείκτης - + &Save page as... Αποθήκευση σε&λίδας ως... - + &Copy page link Α&ντιγραφή συνδέσμου σελίδας - + Send page link... Αποστολή συνδέσμου σελίδας... - + &Print page Ε&κτύπωση σελίδας - + Send text... Αποστολή κειμένου... - + Google Translate Μετάφραση Google - + Dictionary Λεξικό - + Go to &web address Μετάβαση στην διεύθυνση &διαδικτύου - + Search with... Αναζήτηση με... - + &Play &Αναπαραγωγή - + &Pause &Πάυση - + Un&mute Ά&ρση σίγασης - + &Mute &Σίγαση - + &Copy Media Address Α&ντιγραφή διεύθυνσης πολυμέσου - + &Send Media Address Α&ποστολή διεύθυνσης πολυμέσων - + Save Media To &Disk Αποθήκευση πολυμέσου στον &δίσκο - + Select &all Επι&λογή όλων - + Validate page Επικύρωση σελίδας - + Show so&urce code Εμφάνιση πη&γαίου κώδικα - + Show info ab&out site Εμφάνιση πληρο&φοριών για την σελίδα - + Search "%1 .." with %2 Αναζήτηση "%1" με %2 diff --git a/translations/empty.ts b/translations/empty.ts index e3d904ae0..261d95b97 100644 --- a/translations/empty.ts +++ b/translations/empty.ts @@ -1275,10 +1275,6 @@ HistoryModel - - Failed loading page - - No Named Page @@ -1878,10 +1874,6 @@ 50 MB - - Allow storing web icons - - Allow saving history @@ -2408,14 +2400,6 @@ Character &Encoding - - Bookmarks - - - - History - - Toolbars @@ -2572,10 +2556,6 @@ Other - - Default - - %1 - QupZilla diff --git a/translations/es_ES.ts b/translations/es_ES.ts index 8854c8ea0..826ae888b 100644 --- a/translations/es_ES.ts +++ b/translations/es_ES.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>Versión WebKit %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Todos los derechos reservados.<br/> - <small>Build time: %1 </small></p> @@ -497,40 +493,40 @@ Elegir archivo... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox almacena sus marcadores en <b>places.sqlite</b> SQLite database. Este archivo suele encontrarse en - - - - + + + + Please choose this file to begin importing bookmarks. Elegir este archivo para empezar a importar marcadores. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome almacena sus marcadores en el archivo de texto <b>Bookmarks</b>. Este archivo suele encontrarse en - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera almacena sus marcadores en el archivo de texto <b>bookmarks.adr</b>. Este archivo suele encontrarse en - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Puede importar marcadores desde cualquier navegador que soporte la exportación en HTML. El archivo suele tener estos sufijos - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer almacena sus marcadores en la carpeta<b>Favoritos</b>. Esta carpeta suele encontrarse en - + Please choose this folder to begin importing bookmarks. Elegir esta carpeta para empezar a importar marcadores. @@ -598,7 +594,7 @@ Importar marcadores - + Add Subfolder Añadir subcarpeta @@ -633,62 +629,62 @@ Elegir nombre para la carpeta: - + <b>Warning: </b>You already have bookmarked this page! <b>Aviso: </b>¡Ya ha añadido esta página a los marcadores! - + Choose name and location of this bookmark. Elegir nombre y localización del marcador. - + Rename folder Renombrar carpeta - + Remove folder Eliminar carpeta - + Open link in current &tab Abrir enlace en la &pestaña actual - + Open link in &new tab Abrir enlace en una &nueva pestaña - + Move bookmark to &folder Mover marcador a &carpeta - + Rename bookmark Renombrar marcador - + Remove bookmark Eliminar marcador - + Add New Bookmark Añadir nuevo marcador - + Choose folder for bookmarks: Elegir carpeta para marcadores: - + Bookmark All Tabs Añadir todas las pestañas a marcadores @@ -696,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Marcadores en el menú - - + + Bookmarks In ToolBar Barra de herramientas de marcadores - - + + Unsorted Bookmarks Marcadores sin clasificar @@ -745,106 +741,94 @@ BookmarksToolbar - + &Bookmark Current Page &Añadir esta página a marcadores - + Bookmark &All Tabs Añadir &todas las pestañas a marcadores - + &Organize Bookmarks &Organizar marcadores - Hide Most &Visited - Ocultar los más &visitados - - - + Show Most &Visited Ver los más &visitados - + Show Only Icons Mostrar solo iconos - + &Hide Toolbar &Ocultar barra de herramientas - + Move right Mover a la derecha - + Move left Mover a la izquierda - + Edit bookmark Editar marcador - + Remove bookmark Eliminar marcador - + Edit bookmark: Editar marcador: - + Title: Nombre: - + Url: Dirección: - + Edit Bookmark Editar marcador - + Most visited Más visitados - + Sites you visited the most Sitios más visitados - - + + Empty Vacío BookmarksWidget - - Edit This Bookmark - Editar este marcador - - - Remove Bookmark - Eliminar marcador - Name: @@ -875,27 +859,11 @@ Add to Bookmarks Añadir a marcadores - - Add into Bookmarks - Añadir en marcadores - - - Add into Speed Dial - Añadir en marcación rápida - - - <b>Add Bookmark</b> - <b>Añadir marcador</b> - Edit Bookmark Editar marcador - - <b>Edit Bookmark</b> - <b>Editar marcador</b> - @@ -1115,17 +1083,6 @@ No hay más información disponible. - - CloseDialog - - There are still open tabs - Confirmar cierre - - - Don't ask again - No volver a preguntar - - CookieManager @@ -1170,8 +1127,8 @@ - - + + Server: Servidor: @@ -1269,12 +1226,12 @@ ¿Está seguro de eliminar todas las cookies de su ordenador? - + Add to whitelist Añadir a la lista blanca - + Add to blacklist Añadir a la lista negra @@ -1452,8 +1409,8 @@ DownloadManager - - + + Download Manager Gestor de descargas @@ -1463,52 +1420,52 @@ Limpiar - + Executable: Ejecutable: - + Arguments: Argumentos: - + Cannot start external download manager No se puede iniciar el gestor de descargas externo - + Cannot start external download manager! %1 ¡No se puede iniciar el gestor de descargas externo! %1 - + %1% of %2 files (%3) %4 remaining %1% de %2 archivos (%3) %4 restantes - + % - Download Manager % - Gestor de descargas - + Download Finished Descarga finalizada - + All files have been successfully downloaded. Todos los archivos se han descargado satisfactoriamente. - + Warning Aviso - + Are you sure to quit? All uncompleted downloads will be cancelled! ¿Está seguro de salir? ¡Todas las descargas incompletas serán canceladas! @@ -1647,30 +1604,30 @@ Copiar dirección - - + + Today Hoy - - + + This Week Esta semana - - + + This Month Este mes - + Confirmation Confirmación - + Are you sure to delete all history? ¿Está seguro de eliminar todo el historial? @@ -1678,72 +1635,67 @@ HistoryModel - - Failed loading page - Falló la carga de la página - - - + No Named Page Página sin nombre - + January Enero - + February Febrero - + March Marzo - + April Abril - + May Mayo - + June Junio - + July Julio - + August Agosto - + September Septiembre - + October Octubre - + November Noviembre - + December Diciembre @@ -1777,19 +1729,19 @@ - + Today Hoy - + This Week Esta semana - + This Month Este mes @@ -1815,17 +1767,17 @@ Introducir la dirección URL o buscar en %1 - + Paste And &Go Pegar e &ir - + Clear All Limpiar todo - + .co.uk Append domain name on ALT + Enter = Should be different for every country .co.uk @@ -1836,58 +1788,47 @@ Ver información de la página - - MainApplication - - Last session crashed - La última sesión se cerró inesperadamente - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla se cerró inesperadamente :-(</b><br/>Lo sentimos, la última sesión de QupZilla terminó inesperadamente. ¿Le gustaría intentar restaurar la última sesión? - - NavigationBar - + No Named Page Página sin nombre - + Back Anterior - + Forward Siguiente - + Home Inicio - + New Tab Nueva pestaña - + Main Menu Menú principal - - + + Exit Fullscreen Salir de pantalla completa - - + + Clear history Limpiar historial @@ -1976,14 +1917,10 @@ Pantallazo de la página - + Save Page Screen... Guardar pantallazo de la página... - - screen.png - pantallazo.png - PluginsList @@ -2002,10 +1939,6 @@ Settings Preferencias - - Load Plugins - Cargar plugins - WebKit Plugins @@ -2042,22 +1975,22 @@ Permitir Click To Flash - + Add site to whitelist Añadir sitio a la lista blanca - + Server without http:// (ex. youtube.com) Servidor sin http:// (ej. youtube.com) - + Error! ¡Error! - + Cannot load extension! ¡No se puede cargar la extensión! @@ -2117,10 +2050,6 @@ Notifications Notificaciones - - Plugins - Plugins - Other @@ -2199,7 +2128,7 @@ - + Note: You cannot delete active profile. Nota: no puede eliminar el perfil activo. @@ -2318,32 +2247,28 @@ Allow JavaScript Permitir JavaScript - - Allow Plugins (Flash plugin) - Permitir plugins (Flash plugin) - Allow DNS Prefetch Permitir DNS Prefetch - + Allow local storage of HTML5 web content Permitir el almacenamiento local de contenido de red HTML5 - + Delete locally stored HTML5 web content on close Borrar el contenido de red HTML5 almacenado localmente al cerrar - + JavaScript can access clipboard JavaScript puede acceder al portapapeles - + Send Do Not Track header to servers Decir a los sitios web que no quiero ser rastreado @@ -2479,324 +2404,319 @@ - Allow storing web icons - Almacenar iconos de sitios web - - - Allow saving history Guardar el historial - + Delete history on close Eliminar el historial al cerrar - + Delete now Eliminar ahora - + Proxy Configuration Configuración proxy - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Puerto: - - + + Username: Nombre de usuario: - - + + Password: Contraseña: - + Don't use on: No utilizar en: - + Manual configuration Configuración manual - + System proxy configuration Configuración proxy del sistema - + Do not use proxy No utilizar proxy - + <b>Exceptions</b> <b>Excepciones</b> - + Server: Servidor: - + Use different proxy for https connection Usar un proxy diferente para la conexión https - + <b>Font Families</b> <b>Familias de fuentes</b> - + Standard Standard - + Fixed Fijo - + Serif Serif - + Sans Serif Sans Serif - + Cursive Cursiva - + <b>External download manager</b> <b>Gestor de descargas externo</b> - + Use external download manager Utilizar un gestor de descargas externo - + Executable: Ejecutable: - + Arguments: Argumentos: - + Filter tracking cookies Filtrar cookies de rastreo - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Aviso:</b> Las opciones Coincidir con el dominio exacto y Filtrar cookies de rastreo pueden ocasionar que se denieguen algunas cookies de los sitios. ¡Si tiene problemas con las cookies, intente deshabilitar estas opciones primero! - + Change browser identification: Cambiar la identificación del navegador: - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Tamaño de las fuentes</b> - + Fixed Font Size Tamaño de la fuente fija - + Default Font Size Tamaño de la fuente predeterminada - + Minimum Font Size Tamaño mínimo de la fuente - + Minimum Logical Font Size Tamaño mínimo de la fuente lógica - + <b>Download Location</b> <b>Ubicación de la descarga</b> - + Ask everytime for download location Preguntar siempre dónde descargar los archivos - + Use defined location: Utilizar una ubicación predefinida: - - - + + + ... ... - + <b>Download Options</b> <b>Opciones de descarga</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Utilizar diálogo nativo del sistema de archivos (podría causar problemas al descargar contenido seguro SSL) - + Close download manager when downloading finishes Cerrar el gestor de descargas cuando las descargas finalicen - + <b>AutoFill options</b> <b>Opciones de autocompletado</b> - + Allow saving passwords from sites Permitir guardar contraseñas de los sitios - + <b>Cookies</b> <b>Cookies</b> - + Allow storing of cookies Permitir almacenar cookies - + Delete cookies on close Eliminar cookies al cerrar - + Match domain exactly Coincidir con el dominio exacto - + Cookies Manager Gestor de cookies - + <b>SSL Certificates</b> <b>Certificados SSL</b> - + SSL Manager Gestor de SSL - + Edit CA certificates in SSL Manager Editar los certificados CA en el gestor de SSL - - + + <b>Other</b> <b>Otros</b> - + Send Referer header to servers Enviar el encabezado del referente a los servidores - + Block popup windows Bloquear ventanas emergentes - + <b>Notifications</b> <b>Notificaciones</b> - + Use OSD Notifications Utilizar notificaciones OSD - + Use Native System Notifications (Linux only) Utilizar sistema de notificaciones nativo (sólo Linux) - + Do not use Notifications No utilizar notificaciones - + Expiration timeout: Duración: - + seconds segundos - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Nota: </b>Puede cambiar la posición de la notificación OSD arrastrándola por la pantalla. @@ -2816,17 +2736,17 @@ Para aplicar el cambio de idioma, debe reiniciar el navegador. - + StyleSheet automatically loaded with all websites: Hoja de estilos cargada automáticamente en todos los sitios web: - + Languages Idiomas - + <b>Preferred language for web sites</b> <b>Idioma preferido para mostrar las páginas web</b> @@ -2836,68 +2756,68 @@ Apariencia - + OSD Notification Notificación OSD - + Drag it on the screen to place it where you want. Arrástrela por la pantalla para situarla donde quiera. - + Choose download location... Seleccione la ubicación de la descarga... - + Choose stylesheet location... Seleccione la ubicación de la hoja de estilos... - + Deleted Eliminado - + Choose executable location... Seleccione la ubicación del ejecutable... - + New Profile Nuevo perfil - + Enter the new profile's name: Introduzca el nombre del nuevo perfil: - - + + Error! ¡Error! - + This profile already exists! ¡Este perfil ya existe! - + Cannot create profile directory! ¡No se puede crear el directorio del perfil! - + Confirmation Confirmación - + Are you sure to permanently delete "%1" profile? This action cannot be undone! ¿Está seguro de eliminar permanentemente el perfil "%1"? ¡Esta acción no puede deshacerse! @@ -2966,22 +2886,22 @@ Dirección IP de la página actual - + &Tools He&rramientas - + &Help A&yuda - + &Bookmarks &Marcadores - + Hi&story &Historial @@ -3046,17 +2966,17 @@ Salir - + QupZilla QupZilla - + Last session crashed La última sesión se cerró inesperadamente - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla se cerró inesperadamente :-(</b><br/>Lo sentimos, la última sesión de QupZilla terminó inesperadamente. ¿Le gustaría intentar restaurar el último estado guardado? @@ -3152,156 +3072,146 @@ - Bookmarks - Marcadores - - - - History - Historial - - - Toolbars Barras de herramientas - + Sidebars Panel lateral - + Zoom &In &Aumentar tamaño - + Zoom &Out &Reducir tamaño - + Reset Reiniciar tamaño - + &Page Source Código &fuente de la página - + Closed Tabs Pestañas cerradas recientemente - + Recently Visited Visitadas recientemente - + Most Visited Las más visitadas - + Web In&spector Inspect&or Web - + Configuration Information Información de la configuración - + Restore &Closed Tab &Restaurar pestaña cerrada - + (Private Browsing) (Navegación privada) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Hay %1 pestañas abiertas y su sesión no será guardada ¿Está seguro de salir de QupZilla? - + Don't ask again No volver a preguntar - + There are still open tabs Aún hay pestañas abiertas - + Bookmark &This Page &Añadir esta página a marcadores - + Bookmark &All Tabs Añadir &todas las pestañas a marcadores - + Organize &Bookmarks &Organizar marcadores - - - - - + + + + + Empty Vacío - + &Back &Anterior - + &Forward &Siguiente - + &Home &Inicio - + Show &All History &Mostrar todo el historial - + Restore All Closed Tabs Restaurar todas las pestañas cerradas - + Clear list Limpiar lista - + About &Qt Acerca de &Qt - + %1 - QupZilla %1 - QupZilla @@ -3311,131 +3221,122 @@ Are you sure to quit QupZilla? &Acerca de QupZilla - + Report &Issue &Informar de un fallo - + &Web Search &Caja de búsqueda - + Page &Info &Información de la página - + &Download Manager Gestor de &descargas - + &Cookies Manager Gestor de &cookies - + &AdBlock &Bloqueador de publicidad - + RSS &Reader Lector &RSS - + Clear Recent &History &Limpiar historial reciente - + &Private Browsing &Navegación privada - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Está a punto de cerrar %1 pestañas. ¿Está seguro de continuar? - Pr&eferences &Preferencias - + Information about application Información acerca de la aplicación - + Other Otros - - Default - Predeterminado - - - + HTML files Archivos HTML - + Image files Archivos de imágen - + Text files Archivos de texto - + All files Todos los archivos - + Open file... Abrir archivo... - + Are you sure you want to turn on private browsing? ¿Está seguro que desea habilitar la navegación privada? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Cuando la navegación privada está habilitada, algunas opciones relacionadas con su privacidad estarán deshabilitadas: - + Webpages are not added to the history. Las páginas web no se añaden al historial. - + Current cookies cannot be accessed. Las cookies actuales no pueden ser accedidas. - + Your session is not stored. La sesión no será guardada. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Hasta que cierre la ventana, puede hacer click en los botones Anterior y Siguiente para regresar a las páginas web que haya abierto. - + Start Private Browsing Comenzar la navegación privada @@ -3511,18 +3412,18 @@ Are you sure to quit QupZilla? Acerca de QupZilla - - + + Configuration Information Información de la configuración - + Browser Identification Identificación del navegador - + Paths Rutas @@ -3533,112 +3434,108 @@ Are you sure to quit QupZilla? - + Version Versión - + WebKit version Versión WebKit - + Application version Versión de la aplicación - + Qt version Versión Qt - + Build time Fecha de compilación - + Platform Plataforma - + Profile Perfil - + Preferences Preferencias - + Build Configuration Configuración de la compilación - + Option Opción - + Value Valor - + Extensions Extensiones - + Name Nombre - + Author Autor - + Description Descripción - + Settings Preferencias - + Saved session Sesión guardada - + Pinned tabs Pestañas fijas - + Data Datos - + Themes Temas - Plugins - Plugins - - - + Translations Traducciones @@ -3663,156 +3560,148 @@ Are you sure to quit QupZilla? Traductores - + Speed Dial Marcación rápida - + Add New Page Añadir página nueva - + Apply Aplicar - + Close Cerrar - + Speed Dial settings Configuración de la marcación rápida - + Placement: Ubicación: - + Auto Auto - + Cover Cubierta - + Fit Ajustar - + Fit Width Ajustar horizontalmente - + Fit Height Ajustar verticalmente - + Use background image Usar imágen de fondo - + Select image Seleccionar imágen - + Maximum pages in a row: Páginas máximas por fila: - + Change size of pages: Cambiar el tamaño de las páginas: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Esta página contiene información acerca de la configuración actual de QupZilla relevante para resolver problemas. Por favor incluya esta información cuando envíe informes de error. - + No available extensions. No hay extensiones disponibles. - - + + Disabled Deshabilitado - - - - - + + + + + <b>Enabled</b> <b>Habilitado</b> - + Debug build Depurar construcción - + WebGL support Soporte WebGL - + Windows 7 API API Windows 7 - + KDE integration Integración KDE - + Portable build Construcción portable - + Load title from page Cargar título desde la página - + Edit Editar - + Remove Eliminar - - E-mail is optional<br/><b>Note: </b>Please use English language only. - El correo electrónico es opcional<br/><b>Nota: </b>Por favor, usen únicamente el inglés. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Si experimenta problemas con QupZilla, por favor intente deshabilitar todos los plugins. <br/>Si esto no ayuda, entonces rellene este formulario: - Please fill out all required fields! @@ -3820,27 +3709,27 @@ Are you sure to quit QupZilla? - + Information about version Información acerca de la versión - + Reload Recargar - + Url Dirección - + Title Nombre - + New Page Página nueva @@ -3978,12 +3867,12 @@ Por favor, añada alguno con el icono RSS de la barra de navegación en sitios q Añadir canales RSS desde este sitio - + Untitled feed Canal sin título - + Add Añadir @@ -4191,12 +4080,14 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup SideBar - + + Bookmarks Marcadores - + + History Historial @@ -4474,10 +4365,6 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Paste Pegar - - Delete - Eliminar - Select All @@ -4599,7 +4486,7 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup SqueezeLabelV2 - + Copy Copiar @@ -4730,22 +4617,22 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup TabbedWebView - + Failed loading page Falló la carga de la página - + Loading... Cargando... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspeccionar elemento @@ -4772,10 +4659,6 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup License Licencia - - License Viewer - Visor de licencia - ToolButton @@ -4820,148 +4703,144 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Para mostrar esta página, QupZilla necesita enviar información que repetirá cualquier acción (como una búsqueda o una confirmación de compra) realizada anteriormente - + Confirm form resubmission Confirmar el reenvío del formulario - + Select files to upload... Seleccionar archivos para subir... - + Server refused the connection El servidor rechazó la conexión - + Server closed the connection El servidor cerró la conexión - + Server not found Servidor no encontrado - + Connection timed out La conexión expiró - + Untrusted connection Conexión no fiable - + Temporary network failure Fallo de la red temporal - + Proxy connection refused Conexión proxy rechazada - + Proxy server not found Servidor proxy no encontrado - + Proxy connection timed out Expiró el tiempo de conexión al proxy - + Proxy authentication required Autentificación proxy requerida - + Content not found Contenido no encontrado - + Unknown network error Error de red desconocido - + AdBlocked Content Contenido publicitario bloqueado - + Blocked by rule <i>%1</i> Bloqueado por regla <i>%1</i> - + Content Access Denied Denegado el acceso al contenido - + Error code %1 Código de error %1 - + Failed loading page Falló la carga de la página - + QupZilla can't load page from %1. QupZilla no puede cargar la página de %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Compruebe errores de escritura en la dirección como <b>ww.</b>ejemplo.com en lugar de <b>www.</b>ejemplo.com - + If you are unable to load any pages, check your computer's network connection. Si no puede cargar ninguna página, compruebe la conexión a la red de su ordenador. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Si su ordenador o red están protegidos por un cortafuegos o proxy, asegúrese de que QupZilla tiene permitido el acceso a la red. - + Try Again Volver a intentar - + JavaScript alert Alerta JavaScript - + Prevent this page from creating additional dialogs Prevenir que esta página cree diálogos adicionales - JavaScript alert - %1 - Alerta JavaScript - %1 - - - + Choose file... Elegir archivo... @@ -4992,233 +4871,233 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup WebView - + &Copy page link Cop&iar el enlace de la página - + Send page link... Enviar enlace de la página... - + &Print page &Imprimir página - + Validate page Validar página - + Send text... Enviar texto... - + Google Translate Traductor de Google - + Dictionary Diccionario - + Go to &web address Ir a &dirección web - + Open link in new &tab Abrir enlace en una nueva &pestaña - + Open link in new &window Abrir enlace en una nueva &ventana - + B&ookmark link Añadir enlace a &marcadores - + &Save link as... &Guardar enlace como... - + Send link... Enviar enlace... - + &Copy link address Copi&ar la ruta del enlace - + Show i&mage Mostrar &imágen - + Copy im&age Co&piar imágen - + Copy image ad&dress C&opiar la ruta de la imágen - + &Save image as... &Guardar imágen como... - + Send image... Enviar imágen... - + &Back &Anterior - + Create Search Engine Crear motor de búsqueda - + &Forward &Siguiente - - + + &Reload &Recargar - + S&top &Detener - + This frame Este marco - + Show &only this frame M&ostrar solamente este marco - + Show this frame in new &tab Mostrar este marco en una nueva &pestaña - + Print frame Imprimir marco - + Zoom &in &Aumentar tamaño - + &Zoom out &Reducir tamaño - + Reset Reiniciar tamaño - + Show so&urce of frame Mostrar código f&uente del marco - + Book&mark page Añadir esta página a &marcadores - + &Save page as... &Guardar como... - + Search with... Buscar con... - + &Play &Reproducir - + &Pause &Pausa - + Un&mute &Activar sonido - + &Mute &Desactivar sonido - + &Copy Media Address Copi&ar la ruta del contenido media - + &Send Media Address &Enviar la ruta del contenido media - + Save Media To &Disk Guardar el contenido media al &disco - + Select &all Seleccionar &todo - + Show so&urce code Ver código &fuente de la página - + Show info ab&out site Ver &información de la página - + Search "%1 .." with %2 Buscar "%1 .." con %2 diff --git a/translations/es_VE.ts b/translations/es_VE.ts index 669f968cb..035cdc20c 100644 --- a/translations/es_VE.ts +++ b/translations/es_VE.ts @@ -1,10 +1,6 @@ - 2012-03-26 :58+0430 - MIME-Version,Content-Type,X-Language,Last-Translator,PO-Revision-Date,Language-Team - Spanish <mckaygerhard@gmail.com> - PICCORO Lenz McKAY <mckaygerhard@gmail.com> AboutDialog @@ -40,10 +36,6 @@ <b>WebKit version %1</b></p> <b>Versión de WebKit %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Todos los derechos reservados.<br/> - <small>Build time: %1 </small></p> @@ -503,40 +495,40 @@ Elegir archivo... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox almacena sus favoritos en <b>places.sqlite</b> SQLite database. Este archivo suele encontrarse en - - - - + + + + Please choose this file to begin importing bookmarks. Elegir este archivo para empezar a importar favoritos. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome almacena sus favoritos en el archivo de texto <b>Bookmarks</b>. Este archivo suele encontrarse en - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera almacena sus favoritos en el archivo de texto <b>bookmarks.adr</b>. Este archivo suele encontrarse en - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Puede importar favoritos desde cualquier navegador que soporte la exportación en HTML. El archivo suele tener estos sufijos - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in - + Please choose this folder to begin importing bookmarks. Elegir este directorio para empezar a importar favoritos. @@ -604,7 +596,7 @@ Importar favoritos - + Add Subfolder Añadir subdirectorio @@ -639,62 +631,62 @@ Elegir nombre para el directorio: - + <b>Warning: </b>You already have bookmarked this page! <b>Aviso: </b>¡Ya ha añadido esta página a los favoritos! - + Choose name and location of this bookmark. Elegir nombre y localización del favorito marcado. - + Rename folder Renombrar directorio - + Remove folder Eliminar directorio - + Open link in current &tab Abrir enlace en la &pestaña actual - + Open link in &new tab Abrir enlace en una &nueva pestaña - + Move bookmark to &folder Mover marcador a &directorio - + Rename bookmark Renombrar marcador - + Remove bookmark Eliminar marcador - + Add New Bookmark Añadir nuevo marcador - + Choose folder for bookmarks: Elegir directorio para favoritos: - + Bookmark All Tabs Añadir todas las pestañas a favoritos @@ -702,20 +694,20 @@ BookmarksModel - - + + Bookmarks In Menu Favoritos en el menú - - + + Bookmarks In ToolBar Barra de herramientas de favoritos - - + + Unsorted Bookmarks Favoritos sin clasificar @@ -751,106 +743,94 @@ BookmarksToolbar - + &Bookmark Current Page &Añadir esta página a favoritos - + Bookmark &All Tabs Añadir &todas las pestañas a favoritos - + &Organize Bookmarks &Organizar favoritos - Hide Most &Visited - Ocultar los más &visitados - - - + Show Most &Visited Ver los más &visitados - + Show Only Icons Mostrar solo Iconos - + &Hide Toolbar &Ocultar barra de herramientas - + Move right Mover a la derecha - + Move left Mover a la izquierda - + Edit bookmark Editar marcador - + Remove bookmark Eliminar marcador - + Edit bookmark: Editar marcador: - + Title: Nombre: - + Url: Dirección: - + Edit Bookmark Editar marcador - + Most visited Más visitados - + Sites you visited the most Sitios más visitados - - + + Empty Vacío BookmarksWidget - - Edit This Bookmark - Editar este marcador - - - Remove Bookmark - Eliminar marcador - Name: @@ -881,27 +861,11 @@ Add to Bookmarks Agregar a favoritos - - Add into Bookmarks - Añadir en favoritos - - - Add into Speed Dial - Añadir en marcación rápida - - - <b>Add Bookmark</b> - <b>Añadir marcador</b> - Edit Bookmark Editar marcador - - <b>Edit Bookmark</b> - <b>Editar marcador</b> - @@ -1121,17 +1085,6 @@ No hay más información disponible. - - CloseDialog - - There are still open tabs - Confirmar cierre - - - Don't ask again - No volver a preguntar - - CookieManager @@ -1176,8 +1129,8 @@ - - + + Server: Servidor: @@ -1275,12 +1228,12 @@ ¿Está seguro de eliminar todas las cookies de su ordenador? - + Add to whitelist Agregar a confiados - + Add to blacklist Agregar a negados @@ -1436,12 +1389,10 @@ - Sorry, the file - %1 + Sorry, the file + %1 was not found! - ¡Disculpe, el archivo - %1 - no ha sido encontrado! + @@ -1458,8 +1409,8 @@ DownloadManager - - + + Download Manager Gestor de descargas @@ -1469,52 +1420,52 @@ Limpiar - + Executable: Ejecutable: - + Arguments: Argumentos: - + Cannot start external download manager No se puede iniciar el gestor de descargas externo - + Cannot start external download manager! %1 ¡No se puede iniciar el gestor de descargas externo! %1 - + %1% of %2 files (%3) %4 remaining %1% de %2 archivos (%3) %4 restantes - + % - Download Manager % - Gestor de descargas - + Download Finished Descarga finalizada - + All files have been successfully downloaded. Todos los archivos se han descargado satisfactoriamente. - + Warning Aviso - + Are you sure to quit? All uncompleted downloads will be cancelled! ¿Está seguro de salir? ¡Todas las descargas incompletas serán canceladas! @@ -1653,30 +1604,30 @@ Copiar dirección - - + + Today Hoy - - + + This Week Esta semana - - + + This Month Este mes - + Confirmation Confirmación - + Are you sure to delete all history? ¿Está seguro de eliminar todo el historial? @@ -1684,72 +1635,67 @@ HistoryModel - - Failed loading page - Falló la carga de la página - - - + No Named Page Página sin nombre - + January Enero - + February Febrero - + March Marzo - + April Abril - + May Mayo - + June Junio - + July Julio - + August Agosto - + September Septiembre - + October Octubre - + November Noviembre - + December Diciembre @@ -1783,19 +1729,19 @@ - + Today Hoy - + This Week Esta semana - + This Month Este mes @@ -1821,17 +1767,17 @@ Introducir la dirección URL o buscar en %1 - + Paste And &Go Pegar e &ir - + Clear All Limpiar todo - + .co.uk Append domain name on ALT + Enter = Should be different for every country .co.uk @@ -1842,58 +1788,47 @@ Ver información de la página - - MainApplication - - Last session crashed - La última sesión se cerró inesperadamente - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla se cerró inesperadamente :-(</b><br/>Lo sentimos, la última sesión de QupZilla terminó inesperadamente. ¿Le gustaría intentar restaurar la última sesión? - - NavigationBar - + No Named Page Página sin nombre - + Back Anterior - + Forward Siguiente - + Home Inicio - + New Tab Nueva pestaña - + Main Menu Menú principal - - + + Exit Fullscreen Salir de pantalla completa - - + + Clear history Limpiar historial @@ -1982,14 +1917,10 @@ Pantallazo de la página - + Save Page Screen... Guardar pantallazo de la página... - - screen.png - pantallazo.png - PluginsList @@ -2008,10 +1939,6 @@ Settings Preferencias - - Load Plugins - Cargar plugins - WebKit Plugins @@ -2048,22 +1975,22 @@ Permitir Click To Flash - + Add site to whitelist Añadir sitio a la lista blanca - + Server without http:// (ex. youtube.com) Servidor sin http:// (ej. youtube.com) - + Error! Error! - + Cannot load extension! No se pudo cargar extension! @@ -2123,10 +2050,6 @@ Notifications Notificaciones - - Plugins - Plugins - Other @@ -2205,7 +2128,7 @@ - + Note: You cannot delete active profile. Nota: no puede eliminar el perfil activo. @@ -2324,32 +2247,28 @@ Allow JavaScript Permitir JavaScript - - Allow Plugins (Flash plugin) - Permitir plugins (Flash plugin) - Allow DNS Prefetch Permitir DNS Prefetch - + Allow local storage of HTML5 web content Permitir el almacenamiento local de contenido de red HTML5 - + Delete locally stored HTML5 web content on close Borrar el contenido de red HTML5 almacenado localmente al cerrar - + JavaScript can access clipboard JavaScript puede acceder al portapapeles - + Send Do Not Track header to servers Decir a los sitios web que no quiero ser rastreado @@ -2485,324 +2404,319 @@ - Allow storing web icons - Almacenar iconos de sitios web - - - Allow saving history Guardar el historial - + Delete history on close Eliminar el historial al cerrar - + Delete now Eliminar ahora - + Proxy Configuration Configuración proxy - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Puerto: - - + + Username: Nombre de usuario: - - + + Password: Contraseña: - + Don't use on: No utilizar en: - + Manual configuration Configuración manual - + System proxy configuration Configuración proxy del sistema - + Do not use proxy No utilizar proxy - + <b>Exceptions</b> <b>Exepciones</b> - + Server: Servidor: - + Use different proxy for https connection Usar un proxy distinto para protocolo tipo https - + <b>Font Families</b> <b>Familias de fuentes</b> - + Standard Standard - + Fixed Fijo - + Serif Serif - + Sans Serif Sans Serif - + Cursive Cursiva - + <b>External download manager</b> <b>Gestor de descargas externo</b> - + Use external download manager Utilizar un gestor de descargas externo - + Executable: Ejecutable: - + Arguments: Argumentos: - + Filter tracking cookies Filtrar cookies de rastreo - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Aviso:</b> Las opciones Coincidir con el dominio exacto y Filtrar cookies de rastreo pueden ocasionar que se denieguen algunas cookies de los sitios. ¡Si tiene problemas con las cookies, intente deshabilitar estas opciones primero! - + Change browser identification: Cambiar la identificación del navegador: - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Tamaño de las fuentes</b> - + Fixed Font Size Tamaño de la fuente fija - + Default Font Size Tamaño de la fuente predeterminada - + Minimum Font Size Tamaño mínimo de la fuente - + Minimum Logical Font Size Tamaño mínimo de la fuente lógica - + <b>Download Location</b> <b>Ubicación de la descarga</b> - + Ask everytime for download location Preguntar siempre dónde descargar los archivos - + Use defined location: Utilizar una ubicación predefinida: - - - + + + ... ... - + <b>Download Options</b> <b>Opciones de descarga</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Utilizar diálogo nativo del sistema de archivos (podría causar problemas al descargar contenido seguro SSL) - + Close download manager when downloading finishes Cerrar el gestor de descargas cuando las descargas finalicen - + <b>AutoFill options</b> <b>Opciones de autocompletado</b> - + Allow saving passwords from sites Permitir guardar contraseñas de los sitios - + <b>Cookies</b> <b>Cookies</b> - + Allow storing of cookies Permitir almacenar cookies - + Delete cookies on close Eliminar cookies al cerrar - + Match domain exactly Coincidir con el dominio exacto - + Cookies Manager Gestor de cookies - + <b>SSL Certificates</b> <b>Certificados SSL</b> - + SSL Manager Gestor de SSL - + Edit CA certificates in SSL Manager Editar los certificados CA en el gestor de SSL - - + + <b>Other</b> <b>Otros</b> - + Send Referer header to servers Enviar el encabezado del referente a los servidores - + Block popup windows Bloquear ventanas emergentes - + <b>Notifications</b> <b>Notificaciones</b> - + Use OSD Notifications Utilizar notificaciones OSD - + Use Native System Notifications (Linux only) Utilizar sistema de notificaciones nativo (sólo Linux) - + Do not use Notifications No utilizar notificaciones - + Expiration timeout: Duración: - + seconds segundos - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Nota: </b>Puede cambiar la posición de la notificación OSD arrastrándola por la pantalla. @@ -2822,17 +2736,17 @@ Para aplicar el cambio de idioma, debe reiniciar el navegador. - + StyleSheet automatically loaded with all websites: Hoja de estilos cargada automáticamente en todos los sitios web: - + Languages Idiomas - + <b>Preferred language for web sites</b> <b>Idioma preferido para mostrar las páginas web</b> @@ -2842,68 +2756,68 @@ Apariencia - + OSD Notification Notificación OSD - + Drag it on the screen to place it where you want. Arrástrela por la pantalla para situarla donde quiera. - + Choose download location... Seleccione la ubicación de la descarga... - + Choose stylesheet location... Seleccione la ubicación de la hoja de estilos... - + Deleted Eliminado - + Choose executable location... Seleccione la ubicación del ejecutable... - + New Profile Nuevo perfil - + Enter the new profile's name: Introduzca el nombre del nuevo perfil: - - + + Error! ¡Error! - + This profile already exists! ¡Este perfil ya existe! - + Cannot create profile directory! ¡No se puede crear el directorio del perfil! - + Confirmation Confirmación - + Are you sure to permanently delete "%1" profile? This action cannot be undone! ¿Está seguro de eliminar permanentemente el perfil "%1"? ¡Esta acción no puede deshacerse! @@ -2972,22 +2886,22 @@ Dirección IP de la página actual - + &Tools He&rramientas - + &Help A&yuda - + &Bookmarks &Favoritos - + Hi&story &Historial @@ -3052,17 +2966,17 @@ Salir - + QupZilla QupZilla - + Last session crashed La última sesión cerró inesperadamente - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla se cerró inesperadamente :-(</b><br/>Lo sentimos, la última sesión de QupZilla terminó inesperadamente. ¿Le gustaría intentar restaurar la última sesión? @@ -3156,159 +3070,148 @@ Character &Encoding &Codificación de caracteres + + + There are still %1 open tabs and your session won't be stored. +Are you sure to quit QupZilla? + + - Bookmarks - Favoritos - - - - History - Historial - - - Toolbars Barras de herramientas - + Sidebars Panel lateral - + Zoom &In &Aumentar tamaño - + Zoom &Out &Reducir tamaño - + Reset Reiniciar tamaño - + &Page Source Código &fuente de la página - + Closed Tabs Pestañas cerradas recientemente - + Recently Visited Visitadas recientemente - + Most Visited Las más visitadas - + Web In&spector Inspect&or Web - + Configuration Information Informacion de configuraciones - + Restore &Closed Tab &Restaurar pestaña cerrada - + (Private Browsing) (Navegación privada) - - There are still %1 open tabs and your session won't be stored. -Are you sure to quit QupZilla? - Todavia hay %1 pestañas abiertas que no has guardado. -Seguro deseas terminar QupZilla? - - - + Don't ask again No volver a preguntar - + There are still open tabs Confirmar cierre - + Bookmark &This Page &Añadir esta página a favoritos - + Bookmark &All Tabs Añadir &todas las pestañas a favoritos - + Organize &Bookmarks &Organizar favoritos - - - - - + + + + + Empty Vacío - + &Back &Anterior - + &Forward &Siguiente - + &Home &Inicio - + Show &All History &Mostrar todo el historial - + Restore All Closed Tabs Restaurar todas las pestañas cerradas - + Clear list Limpiar lista - + About &Qt Acerca de &Qt - + %1 - QupZilla %1 - QupZilla @@ -3318,131 +3221,122 @@ Seguro deseas terminar QupZilla? &Acerca de QupZilla - + Report &Issue &Informar de un fallo - + &Web Search &Caja de búsqueda - + Page &Info &Información de la página - + &Download Manager Gestor de &descargas - + &Cookies Manager Gestor de &cookies - + &AdBlock &Bloqueador de publicidad - + RSS &Reader Lector &RSS - + Clear Recent &History &Limpiar historial reciente - + &Private Browsing &Navegación privada - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Está a punto de cerrar %1 pestañas. ¿Está seguro de continuar? - Pr&eferences &Preferencias - + Information about application Información acerca de la aplicación - + Other Otros - - Default - Predeterminado - - - + HTML files Archivos HTML - + Image files Archivos de imagenes - + Text files Archivos de texto - + All files Todos - + Open file... Abrir archivo... - + Are you sure you want to turn on private browsing? ¿Está seguro que desea habilitar la navegación privada? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Cuando la navegación privada está habilitada, algunas opciones relacionadas con su privacidad estarán deshabilitadas: - + Webpages are not added to the history. Las páginas web no se añaden al historial. - + Current cookies cannot be accessed. Las cookies actuales no pueden ser accedidas. - + Your session is not stored. La sesión no será guardada. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Hasta que cierre la ventana, puede hacer click en los botones Anterior y Siguiente para regresar a las páginas web que haya abierto. - + Start Private Browsing Comenzar la navegación privada @@ -3518,18 +3412,18 @@ Seguro deseas terminar QupZilla? Acerca de QupZilla - - + + Configuration Information - + Browser Identification Identificación del navegador - + Paths Rutas @@ -3540,112 +3434,108 @@ Seguro deseas terminar QupZilla? - + Version Versión - + WebKit version Versión WebKit - + Application version - + Qt version Version de Qt - + Build time Fecha de compilación - + Platform Plataforma - + Profile Perfil - + Preferences Preferencias - + Build Configuration - + Option Opcion - + Value Valor - + Extensions Extensiones - + Name Nombre - + Author Autor - + Description Descripcion - + Settings Preferencias - + Saved session Sesión guardada - + Pinned tabs Pestañas fijas - + Data Datos - + Themes Temas - Plugins - Plugins - - - + Translations Traducciones @@ -3670,156 +3560,148 @@ Seguro deseas terminar QupZilla? Traductores - + Speed Dial Marcación rápida - + Add New Page Añadir página nueva - + Apply Aplicar - + Close Cerrar - + Speed Dial settings Configuración de la marcación rápida - + Placement: Ubicación: - + Auto Auto - + Cover Cubierta - + Fit Ajustar - + Fit Width Ajustar horizontalmente - + Fit Height Ajustar verticalmente - + Use background image Usar imágen de fondo - + Select image Seleccionar imágen - + Maximum pages in a row: Páginas máximas por fila: - + Change size of pages: Cambiar el tamaño de las páginas: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. - + No available extensions. - - + + Disabled Deshabilitado - - - - - + + + + + <b>Enabled</b> Habilitado - + Debug build Compilacion de depurado - + WebGL support Soporte WebGL - + Windows 7 API Giundate 7 API - + KDE integration Integracion KDE - + Portable build - + Load title from page Cargar título desde la página - + Edit Editar - + Remove Eliminar - - E-mail is optional<br/><b>Note: </b>Please use English language only. - El correo electrónico es opcional<br/><b>Nota: </b>Por favor, usen únicamente el inglés. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Si experimenta problemas con QupZilla, por favor intente deshabilitar todos los plugins. <br/>Si esto no ayuda, entonces rellene este formulario: - Please fill out all required fields! @@ -3827,27 +3709,27 @@ Seguro deseas terminar QupZilla? - + Information about version Información acerca de la versión - + Reload Recargar - + Url Dirección - + Title Nombre - + New Page Página nueva @@ -3985,12 +3867,12 @@ Por favor, añada alguno con el icono RSS de la barra de navegación en sitios q Añadir canales RSS desde este sitio - + Untitled feed Canal sin título - + Add Añadir @@ -4198,12 +4080,14 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup SideBar - + + Bookmarks Favoritos - + + History Historial @@ -4481,10 +4365,6 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Paste Pegar - - Delete - Eliminar - Select All @@ -4606,7 +4486,7 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup SqueezeLabelV2 - + Copy Copiar @@ -4737,22 +4617,22 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup TabbedWebView - + Failed loading page Falló la carga de la página - + Loading... Cargando... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspeccionar elemento @@ -4779,10 +4659,6 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup License Licencia - - License Viewer - Visor de licencia - ToolButton @@ -4827,147 +4703,143 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup WebPage - To show this page, QupZilla must resend request which do it again + + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) - Para mostrar esta página, QupZilla necesita enviar información que repetirá cualquier acción -(como una búsqueda o una confirmación de compra) realizada anteriormente + - + Confirm form resubmission Confirmar el reenvío del formulario - + Select files to upload... Seleccionar archivos para subir... - + Server refused the connection El servidor rechazó la conexión - + Server closed the connection El servidor cerró la conexión - + Server not found Servidor no encontrado - + Connection timed out La conexión expiró - + Untrusted connection Conexión no fiable - + Temporary network failure Fallo de la red temporal - + Proxy connection refused Conexión proxy rechazada - + Proxy server not found Servidor proxy no encontrado - + Proxy connection timed out Expiró el tiempo de conexión al proxy - + Proxy authentication required Autentificación proxy requerida - + Content not found Contenido no encontrado - + Unknown network error Error desconocido desde la red - + AdBlocked Content Contenido publicitario bloqueado - + Blocked by rule <i>%1</i> Bloqueado por regla <i>%1</i> - + Content Access Denied Denegado el acceso al contenido - + Error code %1 Código de error %1 - + Failed loading page Falló la carga de la página - + QupZilla can't load page from %1. QupZilla no puede cargar la página de %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Compruebe errores de escritura en la dirección como <b>ww.</b>ejemplo.com en lugar de <b>www.</b>ejemplo.com - + If you are unable to load any pages, check your computer's network connection. Si no puede cargar ninguna página, compruebe la conexión a la red de su ordenador. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Si su ordenador o red están protegidos por un cortafuegos o proxy, asegúrese de que QupZilla tiene permitido el acceso a la red. - + Try Again Volver a intentar - + JavaScript alert Alerta JavaScript - + Prevent this page from creating additional dialogs Prevenir que esta página cree diálogos adicionales - JavaScript alert - %1 - Alerta JavaScript - %1 - - - + Choose file... Elegir archivo... @@ -4998,233 +4870,233 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup WebView - + &Copy page link Cop&iar el enlace de la página - + Send page link... Enviar enlace de la página... - + &Print page &Imprimir página - + Validate page Validar página - + Send text... Enviar texto... - + Google Translate Traductor de Google - + Dictionary Diccionario - + Go to &web address Ir a &dirección web - + Open link in new &tab Abrir enlace en una nueva &pestaña - + Open link in new &window Abrir enlace en una nueva &ventana - + B&ookmark link Añadir enlace a &favoritos - + &Save link as... &Guardar enlace como... - + Send link... Enviar enlace... - + &Copy link address Copi&ar la ruta del enlace - + Show i&mage Mostrar &imágen - + Copy im&age Co&piar imágen - + Copy image ad&dress C&opiar la ruta de la imágen - + &Save image as... &Guardar imágen como... - + Send image... Enviar imágen... - + &Back &Anterior - + Create Search Engine Crear manejador de busqueda - + &Forward &Siguiente - - + + &Reload &Recargar - + S&top &Detener - + This frame Este marco - + Show &only this frame M&ostrar solamente este marco - + Show this frame in new &tab Mostrar este marco en una nueva &pestaña - + Print frame Imprimir marco - + Zoom &in &Aumentar tamaño - + &Zoom out &Reducir tamaño - + Reset Reiniciar tamaño - + Show so&urce of frame Mostrar código f&uente del marco - + Book&mark page Añadir esta página a &favoritos - + &Save page as... &Guardar como... - + Search with... Buscar con... - + &Play &Reproducir - + &Pause &Pausa - + Un&mute &Activar sonido - + &Mute &Desactivar sonido - + &Copy Media Address Copi&ar la ruta del contenido media - + &Send Media Address &Enviar la ruta del contenido media - + Save Media To &Disk Guardar el contenido media al &disco - + Select &all Seleccionar &todo - + Show so&urce code Ver código &fuente de la página - + Show info ab&out site Ver &información de la página - + Search "%1 .." with %2 Buscar "%1 .." con %2 diff --git a/translations/fr_FR.ts b/translations/fr_FR.ts index bb3569910..9f03dcfcd 100644 --- a/translations/fr_FR.ts +++ b/translations/fr_FR.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b> Version de Webkit %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Tous droits réservés.<br/> - <small>Build time: %1 </small></p> @@ -498,40 +494,40 @@ Choisir un fichier... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox stocke ses marque-pages dans la base de données SQL <b>>places.sqlite</b>. Ce fichier est généralement situé dans - - - - + + + + Please choose this file to begin importing bookmarks. Choisir le fichier pour commencer l'importation des marque-pages. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome stocke ses marque-pages dans le fichier texte <b>Bookmarks</b>. Ce fichier est généralement situé dans - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera stocke ses marque-pages dans le dossier <b>bookmarks.adr</b>. Ce fichier est généralement situé dans - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Vous pouvez importer des marque-pages de n'importe quel navigateur qui supporte l'exportation HTML. Ce fichier a généralement ces extensions - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Exploreur stocke ses marque-pages dans le dossier <b>Favoris</b>. Ce fichier est généralement situé dans - + Please choose this folder to begin importing bookmarks. Choisir ce dossier pour commencer l'importation des marque-pages. @@ -629,67 +625,67 @@ Choisir le nom du dossier: - + Add Subfolder Ajouter un sous-dossier - + Rename folder Renommer le dossier - + Remove folder Supprimer le dossier - + Open link in &new tab Ouvrir le lien dans un &Nouvel onglet - + Move bookmark to &folder Déplacer le marque-page dans le &Dossier - + <b>Warning: </b>You already have bookmarked this page! <b>Attention: </b>Vous avez déjà marqué cette page! - + Choose name and location of this bookmark. Choisir le nom et l'emplacement du marque-page. - + Rename bookmark Renommer le marque-page - + Open link in current &tab Ouvrir ce lien dans la page &courante - + Remove bookmark Supprimer le marque-page - + Add New Bookmark Ajouter un nouveau marque-page - + Choose folder for bookmarks: Choisissez un dossier pour les marque-pages: - + Bookmark All Tabs Marquer tous les onglets @@ -697,20 +693,20 @@ BookmarksModel - - + + Bookmarks In Menu Menu Marque-pages - - + + Bookmarks In ToolBar Barre d'outils marque-pages - - + + Unsorted Bookmarks Marque-pages non classés @@ -746,106 +742,94 @@ BookmarksToolbar - + &Bookmark Current Page &Marquer la page actuelle - + Bookmark &All Tabs M&arquer tous les onglets - + &Organize Bookmarks &Organiser les marque-pages - Hide Most &Visited - Cacher les plus &visités - - - + Show Most &Visited Montrer les plus &visités - + Show Only Icons Monter uniquement les icones - + &Hide Toolbar &Cacher la barre d'outils - + Move right Déplacer vers la droite - + Move left Déplacer vers la gauche - + Edit bookmark Modifier le marque-page - + Remove bookmark Supprimer le marque-page - + Edit bookmark: Modifier le marque-page: - + Title: Titre: - + Url: URL: - + Edit Bookmark Modifier le marque-page - + Most visited Plus visités - + Sites you visited the most Sites les plus visités - - + + Empty Vide BookmarksWidget - - Edit This Bookmark - Editer ce marque-page - - - Remove Bookmark - Supprimer le marque-page - Name: @@ -876,27 +860,11 @@ Add to Bookmarks Ajouter aux Marque-pages - - Add into Bookmarks - Ajouter aux marque-pages - - - Add into Speed Dial - Ajouter à Speed Dial - - - <b>Add Bookmark</b> - <b>Ajouter un marque-page</b> - Edit Bookmark Modifier le marque-page - - <b>Edit Bookmark</b> - <b>Modifier le marque-page</b> - @@ -1116,17 +1084,6 @@ Aucune information supplémentaire disponible. - - CloseDialog - - There are still open tabs - Il y a encore des onglets ouverts - - - Don't ask again - Ne plus afficher ce message - - CookieManager @@ -1171,8 +1128,8 @@ - - + + Server: Serveur: @@ -1270,12 +1227,12 @@ Etes-vous sûr de vouloir supprimer tous les cookies de votre ordinateur? - + Add to whitelist Ajouter aux cookies autorisés - + Add to blacklist Ajouter aux cookies bloqués @@ -1426,17 +1383,15 @@ - Sorry, the file - %1 - was not found! - Désolé, le fichier -%1 -n'a pas été trouvé! + Not found + Non trouvé - Not found - Non trouvé + Sorry, the file + %1 + was not found! + @@ -1453,8 +1408,8 @@ n'a pas été trouvé! DownloadManager - - + + Download Manager Gestionnaire de téléchargement @@ -1464,52 +1419,52 @@ n'a pas été trouvé! Nettoyer - + Executable: Application: - + Arguments: Options: - + Cannot start external download manager Impossible d'ouvrir un gestionnaire de téléchargement externe - + Cannot start external download manager! %1 Impossible d'ouvrir un gestionnaire de téléchargement externe! %1 - + %1% of %2 files (%3) %4 remaining %1% de %2 fichiers (%3) %4 restant - + % - Download Manager % - Gestionnaire de téléchargement - + Download Finished Téléchargement terminé - + All files have been successfully downloaded. Tous les fichiers ont été téléchargés avec succès. - + Warning Attention - + Are you sure to quit? All uncompleted downloads will be cancelled! Etes-vous sûr de vouloir quitter? Tous les téléchargements incomplets seront annulés! @@ -1648,30 +1603,30 @@ n'a pas été trouvé! Copier l'adresse - - + + Today Aujourd'hui - - + + This Week Cette semaine - - + + This Month Ce mois-ci - + Confirmation Confirmer - + Are you sure to delete all history? Etes-vous sûr de vouloir supprimer tout l'historique? @@ -1679,72 +1634,67 @@ n'a pas été trouvé! HistoryModel - - Failed loading page - Erreur lors du chargement de la page - - - + No Named Page Page sans nom - + January Janvier - + February Février - + March Mars - + April Avril - + May Mai - + June Juin - + July Juillet - + August Août - + September Septembre - + October Octobre - + November Novembre - + December Décembre @@ -1778,19 +1728,19 @@ n'a pas été trouvé! - + Today Aujourd'hui - + This Week Cette semaine - + This Month Ce mois-ci @@ -1816,17 +1766,17 @@ n'a pas été trouvé! Entrer une adresse URL ou chercher sur %1 - + Paste And &Go Coller et &lancer - + Clear All Effacer tout - + .co.uk Append domain name on ALT + Enter = Should be different for every country .fr @@ -1837,58 +1787,47 @@ n'a pas été trouvé! Montrer plus d'informations sur cette page - - MainApplication - - Last session crashed - La dernière session a planté - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla a planté :-(</b><br/>Oops, la dernière session de QupZilla s'est terminée par un incident. Nous sommes vraiment désolé. Voulez-vous essayer de restaurer la dernière session? - - NavigationBar - + No Named Page Page non nommée - + Back Retour - + Forward Précédent - + Home Accueil - + New Tab Nouvel onglet - + Main Menu Menu principal - - + + Exit Fullscreen Sortir du plein écran - - + + Clear history Supprimer l'historique @@ -1977,14 +1916,10 @@ n'a pas été trouvé! Impression d'écran - + Save Page Screen... Enregister l'impression d'écran... - - screen.png - screen.png - PluginsList @@ -2003,10 +1938,6 @@ n'a pas été trouvé! Settings Paramètres - - Load Plugins - Charger les extensions - WebKit Plugins @@ -2043,22 +1974,22 @@ n'a pas été trouvé! Autoriser ClickToFlash - + Add site to whitelist Ajouter un site à la liste blanche - + Server without http:// (ex. youtube.com) Adresse sans http:// (ex.youtube.com) - + Error! Erreur ! - + Cannot load extension! Chargement de l'extension impossible ! @@ -2157,7 +2088,7 @@ n'a pas été trouvé! - + Note: You cannot delete active profile. Note: Vous ne pouvez pas effacer le profil actif. @@ -2312,32 +2243,28 @@ n'a pas été trouvé! Open new tabs after active tab Ouvrir les nouveaux onglets après l'onglet actuel - - Allow Plugins (Flash plugin) - Autoriser les extensions (Flash) - Allow DNS Prefetch Autoriser l'indexation de DNS - + Allow local storage of HTML5 web content Autoriser le stockage local du contenu HTML5 - + Delete locally stored HTML5 web content on close Supprimer à la fermeture le contenu HTML5 stocké localement - + JavaScript can access clipboard JavaScript peut accéder au presse-papier - + Send Do Not Track header to servers Envoyer les entêtes Do Not Track aux serveurs @@ -2431,324 +2358,319 @@ n'a pas été trouvé! - Allow storing web icons - Autoriser le stockage des icônes web - - - Allow saving history Autoriser la sauvegarde de l'historique - + Delete history on close Effacer l'historique à la fermeture - + Delete now Effacer maintenant - + Proxy Configuration Configuration du proxy - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Port: - - + + Username: Nom d'utilisateur: - - + + Password: Mot de passe: - + Don't use on: Ne pas utiliser pour: - + Manual configuration Configuration manuelle - + System proxy configuration Utiliser les paramètres proxy du système - + Do not use proxy Ne pas utiliser de proxy - + <b>Exceptions</b> <b>Exceptions</b> - + Server: Serveur: - + Use different proxy for https connection Utiliser un autre proxy pour les connexions HTTPS - + <b>Font Families</b> <b>Polices</b> - + Standard Standard - + Fixed Largeur fixe - + Serif Serif - + Sans Serif Sans serif - + Cursive Cursive - + <b>External download manager</b> <b>Gestionnaire de téléchargement externe</b> - + Use external download manager Utiliser un gestionnaire de téléchargement externe - + Executable: Application: - + Arguments: Options: - + Filter tracking cookies Filtrer le traçage par cookies - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Attention:</b> N'accepter les cookies que des domaines identifiés et Filtrer le traçage par cookies peut conduire au mauvais fonctionnement de certains sites. Si vous avez des problèmes avec les cookies, essayez de désactiver ces options en premier! - + Change browser identification: Changer l'identité du navigateur: - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Taille des polices</b> - + Fixed Font Size Taille fixe - + Default Font Size Taille de police par défaut - + Minimum Font Size Taille de police minimum - + Minimum Logical Font Size Hauteur logique minimale de police - + <b>Download Location</b> <b>Emplacement des téléchargements</b> - + Ask everytime for download location Demander à chaque fois l'emplacement des téléchargements - + Use defined location: Utiliser l'emplacement défini: - - - + + + ... ... - + <b>Download Options</b> <b>Options de téléchargement</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Utiliser le navigateur de fichier du système (peut causer des problèmes avec le téléchargement de contenus sécurisés SSL) - + Close download manager when downloading finishes Fermer le gestionnaire de téléchargement quand celui-ci est terminé - + <b>AutoFill options</b> <b>Options de saisie automatique</b> - + Allow saving passwords from sites Autoriser la sauvegarde des mots de passe des sites - + <b>Cookies</b> <b>Cookies</b> - + Allow storing of cookies Autoriser le stockage des cookies - + Delete cookies on close Supprimer les cookies à la fermeture - + Match domain exactly N'accepter les cookies que des domaines identifiés - + Cookies Manager Gestionnaire de cookies - + <b>SSL Certificates</b> <b>Certificats SSL</b> - + SSL Manager Gestionnaire SSL - + Edit CA certificates in SSL Manager Modifier les certificats CA dans le gestionnaire SSL - - + + <b>Other</b> <b>Autre</b> - + Send Referer header to servers Envoyer les entêtes referer aux serveurs - + Block popup windows Bloquer les popups - + <b>Notifications</b> <b>Notifications</b> - + Use OSD Notifications Utiliser les notifications OSD - + Use Native System Notifications (Linux only) Utiliser les notifications du système (seulement sur Linux) - + Do not use Notifications Ne pas utiliser les notifications - + Expiration timeout: Temps d'expiration: - + seconds secondes - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Note: </b>Vous pouvez changer la position des notifications OSD par glisser déposer sur l'écran. @@ -2768,17 +2690,17 @@ n'a pas été trouvé! Pour changer de langue, Vous devez redémarrer le navigateur. - + StyleSheet automatically loaded with all websites: Feuilles de style chargées automatiquement avec tous les sites web: - + Languages Langues - + <b>Preferred language for web sites</b> <b>Langue préférée pour les sites web</b> @@ -2827,78 +2749,74 @@ n'a pas été trouvé! Notifications Notifications - - Plugins - Extensions - Other Autre - + OSD Notification Notification OSD - + Drag it on the screen to place it where you want. Faites-le glisser sur l'écran pour le placer où vous voulez. - + Choose download location... Choisissez l'emplacement de téléchargement ... - + Choose stylesheet location... Choisissez l'emplacement des feuilles de style... - + Deleted Effacé - + Choose executable location... Choisir l'emplacement de l'application... - + New Profile Nouveau profil - + Enter the new profile's name: Entrer le nom du nouveau profil: - - + + Error! Erreur! - + This profile already exists! Ce profil existe déjà! - + Cannot create profile directory! Impossible de créer le répertoire du profil! - + Confirmation Confirmation - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Supprimer le profil%1 de façon définitive? Cette action est irréversible! @@ -2967,22 +2885,22 @@ n'a pas été trouvé! Adresse IP de la page actuelle - + &Tools &Outils - + &Help &Aide - + &Bookmarks &Marque-pages - + Hi&story &Historique @@ -3092,17 +3010,17 @@ n'a pas été trouvé! Préfér&ences - + QupZilla QupZilla - + Last session crashed La dernière session a planté - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla a planté :-(</b><br/>Oops, la dernière session de QupZilla s'est terminée par un incident. Nous sommes vraiment désolé. Voulez-vous essayer de restaurer la dernière session? @@ -3156,162 +3074,148 @@ n'a pas été trouvé! Character &Encoding Enc&odage + + + There are still %1 open tabs and your session won't be stored. +Are you sure to quit QupZilla? + + - Bookmarks - Marque-pages - - - - History - Historique - - - Toolbars Barre d'outils - + Sidebars Barres latérales - + Zoom &In Zoom &plus - + Zoom &Out Zoom &moins - + Reset Réinitialiser - + &Page Source Code &source de la page - + Closed Tabs Onglets récemment fermés - + Recently Visited Sites récemment visités - + Most Visited Sites les plus visités - + Web In&spector Web In&spector - + Configuration Information Informations de configuration - + Restore &Closed Tab Restaurer l'onglet &fermé - + (Private Browsing) (Navigation Privée) - - There are still %1 open tabs and your session won't be stored. -Are you sure to quit QupZilla? - Il y a toujours %1 onglets d'ouverts et votre session ne sera pas sauvegardée. Etes-vous sûr de vouloir quitter QupZilla? - - - + Don't ask again Ne plus afficher ce message - + There are still open tabs Il y a encore des onglets ouverts - + Bookmark &This Page Marquer cette &page - + Bookmark &All Tabs M&arquer tous les onglets - + Organize &Bookmarks &Organiser les marque-pages - + Information about application Informations à propos de l'application - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Il y a toujours %1 onglets d'ouverts et votre session ne sera pas sauvegardée. Etes-vous sûr de vouloir quitter QupZilla? - - - - - - - + + + + + Empty Vide - + &Back &Retour - + &Forward &Précédent - + &Home &Accueil - + Show &All History Montrer tout l'&historique - + Restore All Closed Tabs Restaurer tous les onglets fermés - + Clear list Vider la liste - + About &Qt A propos de &Qt @@ -3321,122 +3225,117 @@ Are you sure to quit QupZilla? A propos de Qup&Zilla - + Report &Issue Reporter un &dysfonctionnement - + &Web Search Recherche &web - + Page &Info &Information sur la page - + &Download Manager Gestionnaire de &téléchargement - + &Cookies Manager Gestionnaire de &cookies - + &AdBlock &AdBlock - + RSS &Reader Lecteur de &flux RSS - + Clear Recent &History Supprimer l'&historique récent - + &Private Browsing Navigation &privée - + Other Autre - - Default - Défaut - - - + %1 - QupZilla %1 - QupZilla - + HTML files Fichiers HTML - + Image files Fichiers image - + Text files Fichiers texte - + All files Tous les fichiers - + Open file... Ouvrir un fichier... - + Are you sure you want to turn on private browsing? Voulez-vous démarrer une session en navigation privée? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Quand vous lancez la navigation privée, certains paramètres concernant votre vie privée seront désactivés: - + Webpages are not added to the history. Les pages visitées ne sont pas ajoutées à l'historique. - + Current cookies cannot be accessed. Impossible d'accéder aux cookies en cours d'utilisation. - + Your session is not stored. Votre session n'est pas enregistrée. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Jusqu'à ce que vous fermiez la fenêtre, vous pourrez toujours cliquer sur les boutons Précédent et Suivant pour retourner sur la page que vous avez ouvert. - + Start Private Browsing Commencer la navigation privée @@ -3507,18 +3406,18 @@ Are you sure to quit QupZilla? A propos de QupZilla - - + + Configuration Information Informations de configuration - + Browser Identification Identification du navigateur - + Paths Emplacements @@ -3529,43 +3428,43 @@ Are you sure to quit QupZilla? - + Version Version - + WebKit version Version de WebKit - + Application version Version de l'application - + Qt version Version de Qt - + Build time Date de compilation - + Platform Plateforme - + Profile Profil - + Preferences Préférences @@ -3575,71 +3474,67 @@ Are you sure to quit QupZilla? Si vous avez rencontré des problèmes avec QupZilla, essayez en premier lieu de désactiver les extensions. <br/> Si cela ne vous aide pas, merci de remplir ce formulaire: - + Build Configuration Configuration de compilation - + Option Options - + Value Valeur - + Extensions Extensions - + Name Nom - + Author Auteur - + Description Description - + Settings Paramètres - + Saved session Session sauvegardée - + Pinned tabs Onglets épinglés - + Data Données - + Themes Thèmes - Plugins - Extensions - - - + Translations Traductions @@ -3664,157 +3559,149 @@ Are you sure to quit QupZilla? Traducteurs - + Speed Dial Speed Dial - + Add New Page Ajouter une nouvelle page - + Apply Appliquer - + Close Fermer - + Speed Dial settings Paramètrage de Speed Dial - + Placement: Emplacement: - + Auto Auto - + Cover Couverture - + Fit Ajuster - + Fit Width Ajuster la largeur - + Fit Height Ajuster la hauteur - + Use background image Utiliser une image en arrière plan - + Select image Sélectionner l'image - + Maximum pages in a row: Nombre de pages au maximum par ligne: - + Change size of pages: Changer la taille des pages: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Cette page contient les informations sur la configuration actuelle de QupZilla - utile pour le dépannage. Merci d'inclure ces informations lors des reports de bug. - + No available extensions. Pas d'extensions disponibles. - - + + Disabled Désactivé - - - - - + + + + + <b>Enabled</b> <b>Désactivé</b> - + Debug build Version de debug - + WebGL support Support WebGL - + Windows 7 API API WIndows 7 - + KDE integration Intégration KDE - + Portable build Version mobile - + Load title from page ??? Charger le titre de la page - + Edit Modifier - + Remove Supprimer - - E-mail is optional<br/><b>Note: </b>Please use English language only. - L'E-mail est facultatif<br/><b>Remarque: </b>Veuillez n'utiliser que l'anglais. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Si vous avez rencontré des problèmes avec QupZilla, essayez en premier lieu de désactiver les extensions. <br/> Si cela ne vous aide pas, merci de remplir ce formulaire: - Please fill out all required fields! @@ -3822,27 +3709,27 @@ Are you sure to quit QupZilla? - + Information about version Informations à propos de cette version - + Reload Actualiser - + Url URL - + Title Titre - + New Page Nouvelle Page @@ -3980,12 +3867,12 @@ Vous pouvez en ajouter grâce à l'icône RSS dans la barre de navigation s Ajouter un flux RSS depuis ce site - + Untitled feed Flux sans titre - + Add Ajouter @@ -4193,12 +4080,14 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer SideBar - + + Bookmarks Marque-pages - + + History Historique @@ -4476,10 +4365,6 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Paste Coller - - Delete - Supprimer - Select All @@ -4601,7 +4486,7 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer SqueezeLabelV2 - + Copy Copier @@ -4733,22 +4618,22 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer TabbedWebView - + Failed loading page Echec de l'actualisation de la page - + Loading... Chargement... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspecter cet élément @@ -4775,10 +4660,6 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer License License - - License Viewer - Lecteur de licence - ToolButton @@ -4823,148 +4704,143 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer WebPage - - To show this page, QupZilla must resend request which do it again + + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) - Pour afficher cette page, QupZilla doit à nouveau envoyer une requette -(Comme chercher à faire un achat qui a déjà été réalisé.) + - + Confirm form resubmission Confirmer le renvoi du formulaire - + Select files to upload... Sélectionner les fichiers à charger... - + Server refused the connection Le serveur refuse la connexion - + Server closed the connection Le serveur a coupé la connexion - + Server not found Le serveur n'a pas été trouvé - + Connection timed out Temps de réponse de la connexion dépassé - + Untrusted connection Connexion non fiable - + Temporary network failure Problème temporaire de réseau - + Proxy connection refused Connexion au le proxy refusé - + Proxy server not found Le serveur proxy n'a pas été trouvé - + Proxy connection timed out Délai de connection au le proxy expiré - + Proxy authentication required Authentification du proxy requis - + Content not found Contenu non trouvé - + Unknown network error Erreur serveur inconnu - + AdBlocked Content Contenu bloqué - + Blocked by rule <i>%1</i> Bloqué par la règle <i>%1</i> - + Content Access Denied Accès au contenu refusé - + Error code %1 Code erreur %1 - + Failed loading page Echec lors du chargement de la page - + QupZilla can't load page from %1. QupZilla ne peut pas charger la page depuis %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Vérifiez que l'adresse ne contient pas d'erreur comme <b>ww.</b>example.com à la place de <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Si vous ne pouvez charger aucune page, vérifiez la connexion réseau de votre ordinateur. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Si votre ordinateur ou votre réseau est protégé par un pare-feu ou un proxy, assurez-vous que QupZilla est autorisé à accéder à Internet. - + Try Again Essayer à nouveau - + JavaScript alert Alerte JavaScript - + Prevent this page from creating additional dialogs Empêcher cette page de créer des dialogues supplémentaires - JavaScript alert - %1 - Alerte JavaScript - %1 - - - + Choose file... Choisir un fichier... @@ -4995,233 +4871,233 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer WebView - + Open link in new &tab Ouvrir le lien dans un nouvel &onglet - + Open link in new &window Ouvrir le lien dans une nouvelle &fenêtre - + B&ookmark link Lien du marque-&page - + &Save link as... &Enregistrer le lien sous... - + Send link... Envoyer le lien... - + &Copy link address Copier l'&adresse du lien - + Show i&mage Montrer l'i&mage - + Copy im&age Copier l'ima&ge - + Copy image ad&dress Copier l'a&dresse de l'image - + &Save image as... &Enregistrer l'image sous... - + Send image... Envoyer l'image... - + &Back &Retour - + Create Search Engine Créer un moteur de recherche - + &Forward &Suivant - - + + &Reload &Actualiser - + S&top &Stop - + This frame Ce cadre - + Show &only this frame Montrer uniquement ce &cadre - + Show this frame in new &tab Montrer ce cadre dans un nouvel &onglet - + Print frame Imprimer le cadre - + Zoom &in Zoom &plus - + &Zoom out Zoom &moins - + Reset Réinitialiser - + Show so&urce of frame Montrer le code so&urce du cadre - + Book&mark page &Marquer cette page - + &Save page as... &Enregistrer la page sous... - + &Copy page link Copier le lien de la &page - + Send page link... Envoyer le lien de la page... - + &Print page &Imprimer la page - + Send text... Envoyer le texte... - + Google Translate Google traduction - + Dictionary Dictionnaire - + Go to &web address Suivre le &lien - + Search with... Chercher avec... - + &Play &Lecture - + &Pause &Pause - + Un&mute Non &muet - + &Mute &Muet - + &Copy Media Address Copier l'adresse du &média - + &Send Media Address &Envoyer l'adresse du média - + Save Media To &Disk Enregistrer le &média - + Select &all T&out Sélectionner - + Validate page Valider le code de la page - + Show so&urce code Montrer le &code source - + Show info ab&out site Informations à prop&os du site - + Search "%1 .." with %2 Recherche de %1.."avec %2 diff --git a/translations/hu_HU.ts b/translations/hu_HU.ts index 2845099e3..6118430e7 100644 --- a/translations/hu_HU.ts +++ b/translations/hu_HU.ts @@ -83,7 +83,7 @@ Search... - + Keresés... Rule @@ -499,11 +499,11 @@ Open link in current &tab - + Hivatkozás megnyitása a jelenlegi &fülön Open link in &new tab - + Hivatkozás megnyitása &új fülön Move bookmark to &folder @@ -632,7 +632,7 @@ Edit Bookmark - + Könyvjelző szerkesztése Most visited @@ -768,7 +768,7 @@ Clear history - + Előzmények törlése Clear cookies @@ -878,7 +878,7 @@ Name: - + Név: Value: @@ -886,7 +886,7 @@ Server: - + Szerver: Path: @@ -1244,27 +1244,27 @@ Open link in current tab - + Hivatkozás megnyitása a jelenlegi fülön Open link in new tab - + Hivatkozás megnyitása új fülön Copy address - + A cím másolása Today - + Ma This Week - + Ezen a héten This Month - + Ebben a hónapban Confirmation @@ -1277,13 +1277,9 @@ HistoryModel - - Failed loading page - - No Named Page - + Névtelen lap January @@ -1880,10 +1876,6 @@ 50 MB 50 MB - - Allow storing web icons - Honlapikonok tárolásának engedélyezése - Allow saving history Előzmények tárolásának engedélyezése @@ -2411,14 +2403,6 @@ Character &Encoding Karakter&kódolás - - Bookmarks - Könyvjelzők - - - History - Előzmények - Toolbars Eszköztárak @@ -2575,10 +2559,6 @@ Other Egyéb - - Default - Alapértelmezett - %1 - QupZilla %1 - QupZilla @@ -2993,7 +2973,7 @@ Biztosan ki szeretne lépni a böngészőből? Loading... - + Betöltés... You don't have any RSS Feeds.<br/> @@ -3030,11 +3010,11 @@ Please add some with RSS icon in navigation bar on site which offers feeds. Open link in current tab - + Hivatkozás megnyitása a jelenlegi fülön Open link in new tab - + Hivatkozás megnyitása új fülön Error in fetching feed @@ -3306,7 +3286,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla <not set in certificate> - + <nincs beállítva a tanúsítványban> <b>Connection is Encrypted.</b> @@ -3366,7 +3346,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Name: - + Név: Path: @@ -3452,7 +3432,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Copy - + Másolás Paste @@ -3806,7 +3786,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Failed loading page - + Nem sikerült betölteni az oldalt QupZilla can't load page from %1. @@ -3830,7 +3810,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Prevent this page from creating additional dialogs - + Ne jelenjenek meg további párbeszédablakok ezen az oldalon Choose file... diff --git a/translations/id_ID.ts b/translations/id_ID.ts index 6bccd6860..0f2545735 100644 --- a/translations/id_ID.ts +++ b/translations/id_ID.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>Versi Webkit %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Hak cipta dilindungi.<br/> - <small>Build time: %1 </small></p> @@ -497,40 +493,40 @@ Pilih berkas... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox menyimpan bookmarknya di database SQLite <b>places.sqlite</b>. Berkas ini biasanya berada di - - - - + + + + Please choose this file to begin importing bookmarks. Silakan pilih berkas ini untuk memulai mengimpor bookmark. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome menyimpan bookmarknya di berkas teks <b>Bookmarks</b>. Berkas ini biasanya berada di - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera menyimpan bookmarknya di berkas teks <b>bookmarks.adr</b>. Berkas ini biasanya berada di - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Anda dapat mengimpor bookmark dari berbagai peramban yang mendukung pengeksporan HTML. Berkas ini biasanya memiliki akhiran ini - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer menyimpan bookmarknya di map <b>Favorites</b>. Map ini biasanya berada di - + Please choose this folder to begin importing bookmarks. Silakan pilih map ini untuk memulai mengimpor bookmark. @@ -628,67 +624,67 @@ Pilih nama untuk map: - + Add Subfolder Tambah Submap - + Rename folder Ganti nama map - + Remove folder Hapus map - + Open link in current &tab Buka tautan di &tab ini - + Open link in &new tab Buka tautan di &tab baru - + Move bookmark to &folder Pindahkan bookmark ke &map - + Rename bookmark Ganti nama bookmark - + Remove bookmark Hapus bookmark - + <b>Warning: </b>You already have bookmarked this page! <b>Peringatan: </b>Anda sudah membookmark halaman ini! - + Choose name and location of this bookmark. Pilih nama dan lokasi dari bookmark ini. - + Add New Bookmark Tambah Bookmark Baru - + Choose folder for bookmarks: Pilih folder untuk bookmark: - + Bookmark All Tabs Bookmark Seluruh Tab @@ -696,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Bookmark di Menu - - + + Bookmarks In ToolBar Bookmark di ToolBar - - + + Unsorted Bookmarks Still needs an exact phrase for unsorted Unsorted Bookmark @@ -746,88 +742,88 @@ BookmarksToolbar - + &Bookmark Current Page &Bookmark Halaman Ini - + Bookmark &All Tabs Bookmark &Seluruh Tab - + &Organize Bookmarks &Organisir Bookmark - + Show Most &Visited Tampilkan Yang &Dikunjungi Terbanyak - + Show Only Icons Hanya Tampilkan Icon - + &Hide Toolbar &Sembunyikan Toolbar - + Move right Pindahkan ke kanan - + Move left Pindahkan ke kiri - + Edit bookmark Sunting bookmark - + Remove bookmark Hapus bookmark - + Edit bookmark: Sunting bookmark: - + Title: Judul: - + Url: Url: - + Edit Bookmark Sunting Bookmark - + Most visited Dikunjungi terbanyak - + Sites you visited the most Situs yang anda kunjungi terbanyak - - + + Empty Kosong @@ -864,14 +860,6 @@ Add to Bookmarks Tambahkan ke Bookmark - - Add into Bookmarks - Tambahkan ke Bookmark - - - Add into Speed Dial - Tambahkan ke Panggilan Cepat - Edit Bookmark @@ -1096,17 +1084,6 @@ Tiada informasi tambahan tersedia. - - CloseDialog - - There are still open tabs - Masih ada tab yang terbuka - - - Don't ask again - Jangan tanya lagi - - CookieManager @@ -1151,8 +1128,8 @@ - - + + Server: Server: @@ -1250,12 +1227,12 @@ Anda yakin untuk menghapus seluruh cookie di komputer anda? - + Add to whitelist Tambahkan ke daftar putih - + Add to blacklist Tambahkan ke daftar hitam @@ -1416,14 +1393,6 @@ was not found! Maaf, berkas %1 - tidak ditemukan! - - - Sorry, the file - %1 - was not found! - Maaf, berkas - %1 tidak ditemukan! @@ -1441,8 +1410,8 @@ DownloadManager - - + + Download Manager Manajer Pengunduhan @@ -1452,52 +1421,52 @@ Bersihkan - + Executable: Eksekutor: - + Arguments: Argumen: - + Cannot start external download manager Tidak dapat menjalankan manajer pengunduhan eksternal - + Cannot start external download manager! %1 Tidak dapat menjalankan manajer pengunduhan eksternal! %1 - + %1% of %2 files (%3) %4 remaining %1% dari %2 berkas (%3) %4 tersisa - + % - Download Manager % - Manajer Pengunduhan - + Download Finished Pengunduhan Selesai - + All files have been successfully downloaded. Seluruh berkas telah berhasil diunduh. - + Warning Peringatan - + Are you sure to quit? All uncompleted downloads will be cancelled! Anda yakin untuk berhenti? Seluruh pengunduhan yang belum selesai akan dibatalkan! @@ -1636,30 +1605,30 @@ Salin alamat - - + + Today Hari Ini - - + + This Week Minggu Ini - - + + This Month Bulan Ini - + Confirmation Konfirmasi - + Are you sure to delete all history? Anda yakin untuk menghapus seluruh sejarah? @@ -1667,72 +1636,67 @@ HistoryModel - - Failed loading page - Gagal memuat halaman - - - + No Named Page Halaman Tanpa Nama - + January Januari - + February Februari - + March Maret - + April April - + May Mei - + June Juni - + July Juli - + August Agustus - + September September - + October Oktober - + November November - + December Desember @@ -1766,19 +1730,19 @@ - + Today Hari ini - + This Week Minggu Ini - + This Month Bulan Ini @@ -1804,17 +1768,17 @@ Masukkan URL alamat atau cari di %1 - + Paste And &Go Tempel dan &Tuju - + Clear All Bersihkan Semua - + .co.uk Append domain name on ALT + Enter = Should be different for every country .co.id @@ -1825,58 +1789,47 @@ Tampilkan informasi tentang halaman ini - - MainApplication - - Last session crashed - Sesi terakhir rusak - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>Qupzilla rusak :-(</b><br/>Ups, sesi terakhir dari QupZilla telah diinterupsi secara mendadak. Kami minta maaf untuk hal ini. Apakah anda ingin mengembalikan kondisi terakhir yang tersimpan? - - NavigationBar - + No Named Page Halaman Tanpa Nama - + Back Mundur - + Forward Maju - + Home Rumah - + New Tab Tab Baru - + Main Menu Menu Utama - - + + Exit Fullscreen Keluar Layar Penuh - - + + Clear history Bersihkan Sejarah @@ -1965,14 +1918,10 @@ Halaman Layar - + Save Page Screen... Simpan Halaman Layar.... - - screen.png - layar.png - PluginsList @@ -1991,10 +1940,6 @@ Settings Pengaturan - - Load Plugins - Muat Pengaya - WebKit Plugins @@ -2031,29 +1976,25 @@ Ijinkan Klik Untuk Flash - + Add site to whitelist Tambahkan situs ke daftar putiih - + Server without http:// (ex. youtube.com) Server tanpa http:// (youtube.com) - + Error! Kesalahan! - + Cannot load extension! Tidak dapat memuat ekstensi! - - Cannot load plugin! - Tidak dapat memuat pengaya! - PopupWindow @@ -2149,7 +2090,7 @@ - + Note: You cannot delete active profile. Catatan: Anda tidak dapat menghapus profil aktif. @@ -2304,22 +2245,18 @@ Open new tabs after active tab Buka tab baru setelah tab aktif - - Allow Plugins (Flash plugin) - Ijinkan pengaya (pengaya Flash) - Allow DNS Prefetch Ijinkan Prapengambilan DNS - + JavaScript can access clipboard JavaScript dapat mengakses clipboard - + Send Do Not Track header to servers Kirimkan kepala Do Not Track ke server @@ -2416,334 +2353,329 @@ - Allow storing web icons - Ijinkan menyimpan icon web - - - Allow saving history Ijinkan menyimpan sejarah - + Delete history on close Hapus sejarah saat berhenti - + Delete now Hapus sekarang - + Proxy Configuration Konfigurasi Proxy - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Port: - - + + Username: Nama User: - - + + Password: Sandi: - + Don't use on: Jangan gunakan di: - + Manual configuration Konfigurasi Manual - + System proxy configuration Konfigurasi proxy sistem - + Do not use proxy Jangan gunakan proxy - + <b>Exceptions</b> <b>Pengecualian</b> - + Server: Server: - + Use different proxy for https connection Gunakan proxy berbeda untuk koneksi https - + <b>Font Families</b> <b>Famili Huruf</b> - + Standard Standar - + Fixed Fixed - + Serif Serif - + Sans Serif Sans-Serif - + Cursive Cursive - + Fantasy Fantasi - + <b>Font Sizes</b> <b>Ukuran Huruf</b> - + Fixed Font Size Ukuran Huruf Fixed - + Default Font Size Ukuran Huruf Default - + Minimum Font Size Ukuran Huruf Minimum - + Minimum Logical Font Size Ukuran Logis Minimal Huruf - + <b>Download Location</b> <b>Lokasi Unduhan</b> - + Ask everytime for download location Konfirmasi lokasi tiap kali mengunduh - + Use defined location: Gunakan lokasi tetap: - - - + + + ... ... - + <b>Download Options</b> <b>Opsi Pengunduhan</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Gunakan dialog berkas asli sistem (dapat menimbulkan masalah pada pengunduhan yang menggunakan SSL) - + Close download manager when downloading finishes Tutup manajer pengunduhan setelah pengunduhan selesai - + <b>External download manager</b> <b>Manajer pengunduhan eksternal</b> - + Use external download manager Gunakan manajer pengunduhan eksternal - + Executable: Eksekutor: - + Arguments: Argumen: - + <b>AutoFill options</b> <b>Opsi pengisian otomatis</b> - + Allow saving passwords from sites Ijinkan menyimpan sandi dari situs - + <b>Cookies</b> <b>Cookie</b> - + Filter tracking cookies Saring cookie penelusuran - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Peringatan</b> Opsi kecocokan domain dan penyaringan cookie penelusuran dapat menyebabkan ditolaknya cookie dari beberapa situs. Jika anda mendapatkan masalah dengan cookie, coba nonaktifkan opsi ini dahulu! - + Change browser identification: Ganti identitas peramban: - + Allow storing of cookies Ijinkan untuk menyimpan cookie - + Allow local storage of HTML5 web content Ijinkan untuk menyimpan secara lokal isi web HTML5 - + Delete locally stored HTML5 web content on close Hapus isi web HTML5 yang disimpan secara lokal saat berhenti - + Delete cookies on close Hapus cookie saat berhenti - + Match domain exactly Cocokkan domain - + Cookies Manager Manajer Cookie - + <b>SSL Certificates</b> <b>Sertifikat SSL</b> - + SSL Manager Manajer SSL - + Edit CA certificates in SSL Manager Sunting sertifikat CA di Manajer SSL - - + + <b>Other</b> <b>Lainnya</b> - + Send Referer header to servers Kirimkan kepala Acuan ke server - + Block popup windows Blokir jendela popup - + <b>Notifications</b> <b>Notifikasi</b> - + Use OSD Notifications Gunakan Notifikasi OSD - + Use Native System Notifications (Linux only) Gunakan Notifikasi Asli Sistem (hanya Linux) - + Do not use Notifications Jangan gunakan Notifikasi - + Expiration timeout: Batas waktu notifikasi: - + seconds detik - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Catatan: </b>Anda dapat mengubah posisi OSD Notifikasi dengan menggeretnya di layar. @@ -2763,17 +2695,17 @@ Untuk mengganti bahasa, peramban harus direstart. - + StyleSheet automatically loaded with all websites: StyleSheet yang otomatis dimuat untuk semua website: - + Languages Bahasa - + <b>Preferred language for web sites</b> <b>Bahasa utama untuk situs web</b> @@ -2822,78 +2754,74 @@ Notifications Notifikasi - - Plugins - Pengaya - Other Lainnya - + OSD Notification OSD Notifikasi - + Drag it on the screen to place it where you want. Geret OSD di layar untuk memposisikannya. - + Choose download location... Pilih lokasi unduhan... - + Choose stylesheet location... Pilih lokasi stylesheet... - + Deleted Terhapus - + Choose executable location... Pilih lokasi eksekutor... - + New Profile Profil Baru - + Enter the new profile's name: Masukkan nama profil baru: - - + + Error! - + This profile already exists! Profil tersebut sudah ada! - + Cannot create profile directory! Tidak dapat membuat direktori profil! - + Confirmation Konfirmasi - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Anda yakin untuk menghapus secara permanen profil "%1"? Profil yang terhapus tidak dapat dikembalikan! @@ -2962,22 +2890,22 @@ Alamat IP halaman ini - + &Tools &Peralatan - + &Help Bant&uan - + &Bookmarks &Bookmark - + Hi&story &Sejarah @@ -3087,17 +3015,17 @@ Pr&eferensi - + QupZilla QupZilla - + Last session crashed Sesi terakhir rusak - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>Qupzilla rusak :-(</b><br/>Ups, sesi terakhir dari QupZilla telah diinterupsi secara mendadak. Kami minta maaf untuk hal ini. Apakah anda ingin mengembalikan kondisi terakhir yang tersimpan? @@ -3153,168 +3081,152 @@ - Bookmarks - Bookmark - - - - History - Sejarah - - - Toolbars Toolbar - + Sidebars Sidebar - + Zoom &In Zoom &In - + Zoom &Out Zoom &Out - + Reset Reset - + &Page Source &Page Source - + Closed Tabs Tab Tertutup - + Recently Visited Kunjungan Terakhir - + Most Visited Terbanyak Dikunjungi - + Web In&spector In&spektur Web - + Configuration Information Konfirmasi Informasi - + Restore &Closed Tab Restore &Closed Tab - + (Private Browsing) (Perambahan Privat) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Masih ada %1 tab yang terbuka dan sesi anda tidak akan disimpan. Anda yakin untuk berhenti dari QupZilla? - There are still %1 open tabs and your session won't be stored. -Are you sure to quit QupZilla? - Masih ada %1 tab terbuka dan sesi anda tidak akan disimpan. -Anda yakin untuk menutup QupZilla? - - - + Don't ask again Jangan tanya lagi - + There are still open tabs Masih ada tab yang terbuka - + Bookmark &This Page Bookmark &Halaman Ini - + Bookmark &All Tabs Bookmark Selur&uh Tab - + Organize &Bookmarks Organisir &Bookmark - - - - - + + + + + Empty Kosong - + &Back &Mundur - + &Forward &Maju - + &Home Ruma&h - + Show &All History Tampilkan Selur&uh Sejarah - + Restore All Closed Tabs Kembalikan Seluruh Tab Yang Ditutup - + Clear list Bersihkan daftar - + About &Qt Tentang &Qt - + Information about application Informasi tentang aplikasi - + %1 - QupZilla %1 - QupZilla @@ -3324,124 +3236,115 @@ Anda yakin untuk menutup QupZilla? Tent&ang QupZilla - + Report &Issue Laporkan &Isu - + &Web Search Pencarian &Web - + Page &Info &Info Halaman - + &Download Manager Manajer &Pengun&duhan - + &Cookies Manager Manajer &Cookie - + &AdBlock &AdBlock - + RSS &Reader Pembaca &RSS - + Clear Recent &History Bersihkan Sejara&h Terkini - + &Private Browsing Perambahan &Privat - + Other Lainnya - - Default - Default - - - + HTML files Berkas HTML - + Image files Berkas gambar - + Text files Berkas teks - + All files Semua berkas - + Open file... Buka berkas... - + Are you sure you want to turn on private browsing? Anda yakin untuk menjalankan perambahan privat? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Saat perambahan privat aktif, beberapa aksi yang terkait dengan privasi anda akan dinonaktifkan: - + Webpages are not added to the history. Laman web tidak ditambahkan ke sejarah. - + Current cookies cannot be accessed. Cookie saat ini tidak dapat diakses. - + Your session is not stored. Sesi anda tidak disimpan. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Anda masih dapat mengklik tombol Maju dan Mundur untuk kembali ke laman web yang sudah dibuka, hingga jendela ditutup. - + Start Private Browsing Memulai Perambahan Privat - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Masih ada %1 tab terbuka dan sesi anda tidak akan disimpan. Yakin akan berhenti dari QupZilla? - You have successfully added RSS feed "%1". @@ -3509,22 +3412,18 @@ Anda yakin untuk menutup QupZilla? Tentang QupZilla - - + + Configuration Information Informasi Konfigurasi - This page contains information about QupZilla's current configuration, all relevant information for troubleshooting. Please include these information when sending bug reports. - Halaman ini memuat informasi tentang konfigurasi terakhir Qupzilla yang relevan untuk perbaikan. Harap mengikutsertakan informasi ini saat mengirimkan laporan kerusakan. - - - + Browser Identification Indentitas Peramban - + Paths Lokasi @@ -3535,43 +3434,43 @@ Anda yakin untuk menutup QupZilla? - + Version Versi - + WebKit version Versi WebKit - + Application version Versi Aplikasi - + Qt version Versi Qt - + Build time Waktu pembangunan - + Platform Platform - + Profile Profil - + Preferences Preferensi @@ -3581,71 +3480,67 @@ Anda yakin untuk menutup QupZilla? Jika anda mengalami permasalahan dengan QupZilla, mohon nonaktifkan dahulu semua ekstensi. <br/>Jika hal ini tidak dapat membantu, silakan isi form berikut ini: - + Build Configuration Konfigurasi Pembangunan - + Option Opsi - + Value Nilai - + Extensions Ekstensi - + Name Nama - + Author Penulis - + Description Deskripsi - + Settings Pengaturan - + Saved session Sesi tersimpan - + Pinned tabs Tab dipinkan - + Data Data - + Themes Tema - Plugins - Pengaya - - - + Translations Terjemahan @@ -3654,10 +3549,6 @@ Anda yakin untuk menutup QupZilla? Main developer Pengembang Utama - - If you are experiencing problems with QupZilla, please try to disable all extenions first. <br/>If this does not fix it, then please fill out this form: - Jika anda mengalami permasalahan dengan QupZilla, nonaktifkan dahulu semua ekstensi. <br/>Jika hal ini tidak dapat membantu, silakan isi form berikut ini: - E-mail is optional<br/><b>Note: </b>Please read how to make a bug report <a href=%1>here</a> first. @@ -3674,160 +3565,148 @@ Anda yakin untuk menutup QupZilla? Translator - + Speed Dial Panggilan Cepat - + Add New Page Tambah Halaman Baru - + Apply Terapkan - + Close Tutup - + Speed Dial settings Pengaturan Panggilan Cepat - + Placement: Peletakan: - + Auto Oto - + Cover Penutup - + Fit Pas - + Fit Width Pas Lebar - + Fit Height Pas Tinggi - + Use background image Gunakan gambar latar - + Select image Pilih gambar - + Maximum pages in a row: Maksimum halaman dalam satu baris: - + Change size of pages: Ubah ukuran halaman: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Halaman ini memuat informasi tentang konfigurasi terakhir Qupzilla yang relevan untuk perbaikan. Harap mengikutsertakan informasi ini saat mengirimkan laporan kerusakan. - + No available extensions. Ekstensi tidak tersedia. - This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports. - Halaman ini berisi informasi tentang Konfigurasi QupZilla saat ini, pengaya, dsb, yang terkait dengan informasi perbaikan. Mohon untuk mengikutsertakannya saat mengirimkan laporan bug. - - - - + + Disabled Dinonaktifkan - - - - - + + + + + <b>Enabled</b> <b>Aktifkan</b> - + Debug build Pembangunan debug - + WebGL support Dukungan WebGL - + Windows 7 API API Windows 7 - + KDE integration Integrasi KDE - + Portable build Pembangunan portabel - No available plugins. - Pengaya tidak tersedia. - - - + Load title from page Muat judul dari halaman - + Edit Sunting - + Remove Hapus - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Jika anda menemui permasalahan dengan QupZilla, coba nonaktifkan semua pengaya terlebih dahulu.<br/>Jika hal ini tidak membantu, silakan isi formulir berikut: - Please fill out all required fields! @@ -3835,27 +3714,27 @@ Anda yakin untuk menutup QupZilla? - + Information about version Informasi tentang versi - + Reload Muat Ulang - + Url Url - + Title Judul - + New Page Halaman Baru @@ -3993,12 +3872,12 @@ Silakan tambahi dengan menggunakan icon RSS di bilah navigasi bilamana situs men Tambahkan RSS Feed dari situs ini - + Untitled feed Feed tanpa judul - + Add Tambahkan @@ -4206,12 +4085,14 @@ Setelah menambahi atau menghapus lokasi sertifikat, QupZilla harus direstart aga SideBar - + + Bookmarks Bookmark - + + History Sejarah @@ -4489,10 +4370,6 @@ Setelah menambahi atau menghapus lokasi sertifikat, QupZilla harus direstart aga Paste Tempel - - Delete - Hapus - Select All @@ -4614,7 +4491,7 @@ Setelah menambahi atau menghapus lokasi sertifikat, QupZilla harus direstart aga SqueezeLabelV2 - + Copy Salin @@ -4745,22 +4622,22 @@ Setelah menambahi atau menghapus lokasi sertifikat, QupZilla harus direstart aga TabbedWebView - + Failed loading page Gagal memuat halaman - + Loading... Memuat... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspeksi Elemen @@ -4787,10 +4664,6 @@ Setelah menambahi atau menghapus lokasi sertifikat, QupZilla harus direstart aga License Lisensi - - License Viewer - Penayang Lisensi - ToolButton @@ -4835,148 +4708,144 @@ Setelah menambahi atau menghapus lokasi sertifikat, QupZilla harus direstart aga WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Untuk menampilkan halaman ini, QupZilla harus mengirim ulang permintaan yang melakukannya lagi (seperti pencarian saat belanja, yang sudah dilakukan sebelumnya.) - + Confirm form resubmission Konfirmasi pengiriman ulang formulir - + Select files to upload... Pilih berkas untuk diunggah... - + Server refused the connection Server menolak koneksi - + Server closed the connection Server menutup koneksi - + Server not found Server tidak ditemukan - + Connection timed out Batas waktu koneksi habis - + Untrusted connection Koneksi tidak dapat dipercaya - + Temporary network failure Kegagalan jaringan sementara - + Proxy connection refused Koneksi ke proxy ditolak - + Proxy server not found Server proxy tidak ditemukan - + Proxy connection timed out Batas waktu koneksi ke proxy habis - + Proxy authentication required Otentikasi proxy dibutuhkan - + Content not found Isi tidak ditemukan - + Unknown network error Kesalahan jaringan tidak diketahui - + AdBlocked Content Isi yang diblokir AdBlok - + Blocked by rule <i>%1</i> Diblokir oleh aturan <i>%1</i> - + Content Access Denied Akses Terhadap Isi Ditolak - + Error code %1 Kode kesalahan %1 - + Failed loading page Halaman gagal dimuat - + QupZilla can't load page from %1. QupZilla tidak dapat memuat halaman dari %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Periksa ejaan alamat dari kesalahan pengetikan seperti <b>ww.</b>contoh.com dari yang seharusnya <b>www.</b>contoh.com - + If you are unable to load any pages, check your computer's network connection. Jika anda tidak dapat memuat halaman apapun, periksa koneksi jaringan komputer. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Jika komputer atau jaringan dilindungi firewall atau proxy, pastikan bahwa QupZilla diperbolehkan untuk mengakses Web. - + Try Again Coba Lagi - + JavaScript alert Peringatan JavaScript - + Prevent this page from creating additional dialogs Halangi halaman ini untuk membuat dialog tambahan - JavaScript alert - %1 - Peringatan javascript - %1 - - - + Choose file... Pilih berkas... @@ -5012,233 +4881,233 @@ Setelah menambahi atau menghapus lokasi sertifikat, QupZilla harus direstart aga Halaman Tanpa Nama - + Create Search Engine Buat Mesin Pencari - + &Back &Mundur - + &Forward &Maju - - + + &Reload &Muat Ulang - + S&top Ber&henti - + This frame Bingkai ini - + Show &only this frame Hanya &tampilkan bingkai ini - + Show this frame in new &tab Tampilkan bingkai ini di &tab baru - + Print frame Cetak bingkai - + Zoom &in Zoom &in - + &Zoom out Zoom &out - + Reset Reset - + Show so&urce of frame Tampilkan su&mber dari bingkai - + Book&mark page Book&mark halaman - + &Save page as... &Simpan halaman sebagai... - + &Copy page link &Salin tautan halaman - + Send page link... Kirimkan tautan halaman... - + &Print page Cetak &halaman - + Select &all PIlih semu&a - + Validate page Validasi halaman - + Show so&urce code Tampilkan kode su&mber - + Show info ab&out site Tampilkan inf&o tentang situs - + Open link in new &tab Buka tautan di &tab baru - + Open link in new &window Buka tautan di &jendela baru - + B&ookmark link B&ookmark tautan - + &Save link as... &Simpan tautan sebagai... - + Send link... Kirimkan tautan... - + &Copy link address &Salin alamat tautan - + Show i&mage Tampilkan &gambar - + Copy im&age Salin g&ambar - + Copy image ad&dress Salin a&lamat gambar - + &Save image as... &Simpan gambar sebagai... - + Send image... Kirimkan gambar... - + Send text... Kirimkan teks... - + Google Translate Terjemahan Google - + Dictionary Kamus - + Go to &web address Buka alamat &web - + Search "%1 .." with %2 Cari "%1.." dengan %2 - + Search with... Cari dengan... - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address &Salin Alamat Media - + &Send Media Address &Kirimkan Alamat Media - + Save Media To &Disk Simpan Media ke &Disk diff --git a/translations/it_IT.ts b/translations/it_IT.ts index 3c85f0c4e..b64e9f3b5 100644 --- a/translations/it_IT.ts +++ b/translations/it_IT.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>Versione di WebKit %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Tutti i diritti riservati.<br/> - <small>Build time: %1 </small></p> @@ -497,40 +493,40 @@ Scegli file... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox archivia i segnalibri nel database SQLite <b>places.sqlite</b>. Questo file di solito si trova in - - - - + + + + Please choose this file to begin importing bookmarks. Per favore, scegli questo file per iniziare ad importare i segnalibri. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome archivia i segnalibri nel file di testo <b>Bookmarks</b>. Questo file di solito si trova in - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera archivia i segnalibri in nel file di testo <b>bookmarks.adr</b>. Questo file di solito si trova in - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes E' possibile importare segnalibri da qualsiasi browser che supporti l'esportazione in HTML. Questo file solitamente ha questi suffissi - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer archivia i segnalibri nella cartella <b>Favorites</b>. Questa cartella di solito si trova in - + Please choose this folder to begin importing bookmarks. Per favore, scegli questa cartella per iniziare ad importare i segnalibri. @@ -588,7 +584,7 @@ Importa segnalibri - + Add Subfolder Aggiungi sottocartella @@ -633,62 +629,62 @@ Scegli un nome per la cartella: - + Open link in &new tab Apri link in una &nuova scheda - + Move bookmark to &folder Sposta segnalibro nella &cartella - + <b>Warning: </b>You already have bookmarked this page! <b>Attenzione: </b>Hai già aggiunto questa pagina ai segnalibri! - + Choose name and location of this bookmark. Scegli nome e posizione di questo segnalibro. - + Rename folder Rinomina cartella - + Remove folder Rimuovi cartella - + Open link in current &tab Apri il link nella &scheda attuale - + Rename bookmark Rinomina segnalibro - + Remove bookmark Rimuovi segnalibro - + Add New Bookmark Aggiungi nuovo segnalibro - + Choose folder for bookmarks: Scegli la cartella per i segnalibri: - + Bookmark All Tabs Aggiungi tutte le schede ai segnalibri @@ -696,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Segnalibri nel menu - - + + Bookmarks In ToolBar Segnalibri nella barra - - + + Unsorted Bookmarks Segnalibri non catalogati @@ -745,106 +741,94 @@ BookmarksToolbar - + &Bookmark Current Page Aggiungi la pagina corrente ai &segnalibri - + Bookmark &All Tabs Aggiungi &tutte le schede ai segnalibri - + &Organize Bookmarks &Organizza i segnalibri - Hide Most &Visited - Nascondi i più &visitati - - - + Show Most &Visited Mostra i più &visitati - + Show Only Icons Mostra solo le icone - + &Hide Toolbar &Nascondi barra - + Move right Sposta a destra - + Move left Sposta a sinistra - + Edit bookmark Modifica segnalibro - + Remove bookmark Rimuovi segnalibro - + Edit bookmark: Modifica segnalibro: - + Title: Titolo: - + Url: Indirizzo: - + Edit Bookmark Modifica segnalibro - + Most visited Più visitati - + Sites you visited the most Siti che visiti più spesso - - + + Empty Vuoto BookmarksWidget - - Edit This Bookmark - Modifica questo segnalibro - - - Remove Bookmark - Elimina segnalibro - Name: @@ -875,27 +859,11 @@ Add to Bookmarks Aggiungi ai segnalibri - - Add into Bookmarks - Aggiungi ai segnalibri - - - Add into Speed Dial - Aggiungi a Speed Dial - - - <b>Add Bookmark</b> - <b>Aggiungi segnalibro</b> - Edit Bookmark Modifica segnalibro - - <b>Edit Bookmark</b> - <b>Modifica segnalibro</b> - @@ -1115,17 +1083,6 @@ Nessuna ulteriore informazione disponibile. - - CloseDialog - - There are still open tabs - Ci sono delle schede ancora aperte - - - Don't ask again - Non chiedere più - - CookieManager @@ -1170,8 +1127,8 @@ - - + + Server: Server: @@ -1269,12 +1226,12 @@ Sei sicuro di voler cancellare tutti i cookies dal tuo computer? - + Add to whitelist Aggiungi ai consentiti - + Add to blacklist Aggiungi ai bloccati @@ -1452,8 +1409,8 @@ DownloadManager - - + + Download Manager Gestore download @@ -1463,52 +1420,52 @@ Pulisci - + Executable: Eseguibile: - + Arguments: Argomenti: - + Cannot start external download manager Impossibile avviare il gestore dei download esterno - + Cannot start external download manager! %1 Impossibile avviare il gestore dei download esterno ! %1 - + %1% of %2 files (%3) %4 remaining %1% di %2 file (%3) %4 rimanenti - + % - Download Manager % - Gestore Download - + Download Finished Download completato - + All files have been successfully downloaded. Tutti i file sono stati scaricati con successo. - + Warning Attenzione - + Are you sure to quit? All uncompleted downloads will be cancelled! Sei sicuro di voler uscire? Tutti i download incompleti saranno cancellati! @@ -1647,30 +1604,30 @@ Copia indirizzo - - + + Today Oggi - - + + This Week Questa Settimana - - + + This Month Questo Mese - + Confirmation Conferma - + Are you sure to delete all history? Sei sicuro di voler cancellare tutta la cronologia? @@ -1678,72 +1635,67 @@ HistoryModel - - Failed loading page - Impossibile caricare la pagina - - - + No Named Page Pagina senza nome - + January Gennaio - + February Febbraio - + March Marzo - + April Aprile - + May Maggio - + June Giugno - + July Luglio - + August Agosto - + September Settembre - + October Otobre - + November Novembre - + December Dicembre @@ -1777,19 +1729,19 @@ - + Today Oggi - + This Week Questa settimana - + This Month Questo mese @@ -1815,17 +1767,17 @@ Inserisci URL o cerca con %1 - + Paste And &Go Incolla e &vai a - + Clear All Pulisci tutto - + .co.uk Append domain name on ALT + Enter = Should be different for every country .it @@ -1836,58 +1788,47 @@ Mostra maggiori informazioni su questa pagina - - MainApplication - - Last session crashed - Ultima sessione chiusa - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla si è chiuso inaspettatamente :-(</b><br/>Oops, l'ultima sessione di QupZilla si è chiusa inaspettatamente. Ci dispiace molto. Vuoi provare a ripristinare l'ultima sessione salvata? - - NavigationBar - + No Named Page Pagina senza nome - + Back Indietro - + Forward Avanti - + Home Home - + New Tab Nuova scheda - + Main Menu Menu principale - - + + Exit Fullscreen Chiudi schermo intero - - + + Clear history Elimina la cronologia @@ -1976,14 +1917,10 @@ Cattura schermata - + Save Page Screen... Salva schermata della pagina... - - screen.png - schermata.png - PluginsList @@ -2004,10 +1941,6 @@ Settings Impostazioni - - Load Plugins - Carica plugins - WebKit Plugins @@ -2044,22 +1977,22 @@ Abilita Click To Flash - + Add site to whitelist Aggiungi sito alla lista bianca - + Server without http:// (ex. youtube.com) Server senza http:// (es. youtube.com) - + Error! Errore! - + Cannot load extension! Impossibile caricare l'estensione! @@ -2119,10 +2052,6 @@ Notifications Notifiche - - Plugins - Plugins - Other @@ -2201,7 +2130,7 @@ - + Note: You cannot delete active profile. Nota: Non puoi cancellare un profilo attivo. @@ -2320,32 +2249,28 @@ Allow JavaScript Abilita JavaScript - - Allow Plugins (Flash plugin) - Abilita plugins (Flash plugin) - Allow DNS Prefetch Consenti Prefetch DNS - + Allow local storage of HTML5 web content Consenti il salvataggio in locale del contenuto HTML5 - + Delete locally stored HTML5 web content on close Cancella i contenuti HTML5 salvati in locale alla chiusura - + JavaScript can access clipboard JavaScript può accedere agli appunti - + Send Do Not Track header to servers Non inviare traccia di intestazione ai server @@ -2481,324 +2406,319 @@ - Allow storing web icons - Abilita il salvataggio delle icone web - - - Allow saving history Abilita salvataggio della cronologia - + Delete history on close Cancella cronologia alla chiusura - + Delete now Cancella adesso - + Proxy Configuration Configurazione proxy - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Porta: - - + + Username: Nome Utente: - - + + Password: Password: - + Don't use on: Non utilizzare su: - + Manual configuration Configurazione manuale - + System proxy configuration Configurazione proxy di sistema - + Do not use proxy Non usare proxy - + <b>Exceptions</b> <b>Eccezioni</b> - + Server: Server: - + Use different proxy for https connection Usa un server proxy differente per la connessione https - + <b>Font Families</b> <b>Famiglie di Font</b> - + Standard Standard - + Fixed Fixed - + Serif Serif - + Sans Serif Sans Serif - + Cursive Cursive - + <b>External download manager</b> <b>Gestore dei download esterno</b> - + Use external download manager Usa un gestore dei download esterno - + Executable: Eseguibile: - + Arguments: Argomenti: - + Filter tracking cookies Filtra i cookie traccia - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Attenzione:</b> La corrispondenza esatta del dominio ed il fitraggio dei cookie traccia possono portare al rifiuto di alcuni cookie da certi siti. Se hai problemi con i cookie, prova a disattivare questa opzione! - + Change browser identification: Cambia l'identificazione del browser: - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Dimensioni carattere</b> - + Fixed Font Size Dimensione font fissa - + Default Font Size Dimensione font predefinita - + Minimum Font Size Dimensione font minima - + Minimum Logical Font Size Dimensione minima del carattere logico - + <b>Download Location</b> <b>Percorso file Scaricati</b> - + Ask everytime for download location Chiedi sempre dove salvare - + Use defined location: Usa posizione definita: - - - + + + ... ... - + <b>Download Options</b> <b>Opzioni scaricamento</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Usa file di dialogo nativo di sistema (può o non può causare problemi con il download di contenuti protetti SSL) - + Close download manager when downloading finishes Chiudi il gestore dei download quando termina lo scaricamento - + <b>AutoFill options</b> <b>Opzioni AutoCompletamento</b> - + Allow saving passwords from sites Consenti salvataggio password dai siti - + <b>Cookies</b> <b>Cookie</b> - + Allow storing of cookies Abilita la memorizzazione dei cookie - + Delete cookies on close Cancella cookie alla chiusura - + Match domain exactly Associa il dominio esatto - + Cookies Manager Gestore Cookie - + <b>SSL Certificates</b> <b>Certificati SSl</b> - + SSL Manager Gestore SSL - + Edit CA certificates in SSL Manager Modifica i certificati CA nel gestore SSL - - + + <b>Other</b> <b>Altro</b> - + Send Referer header to servers Invia traccia di intestazione ai server - + Block popup windows Blocca i popup - + <b>Notifications</b> <b>Notifiche</b> - + Use OSD Notifications Usa notifiche OSD - + Use Native System Notifications (Linux only) Utilizza le notifiche native di sistema (solo Linux) - + Do not use Notifications Non usare notifiche - + Expiration timeout: Scadenza timeout: - + seconds secondi - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Nota:</b>È possibile modificare la posizione di notifica OSD trascinandola sullo schermo. @@ -2818,17 +2738,17 @@ Per cambiare lingua, è necessario riavviare il browser. - + StyleSheet automatically loaded with all websites: Foglio di Stile caricato automaticamente con tutti i siti web: - + Languages Lingue - + <b>Preferred language for web sites</b> <b>Lingua preferita per i siti web</b> @@ -2838,68 +2758,68 @@ Aspetto - + OSD Notification Notifica OSD - + Drag it on the screen to place it where you want. Trascina sullo schermo per posizionarlo dove vuoi. - + Choose download location... Scegli percorso dello scaricamento... - + Choose stylesheet location... Scegli la posizione del foglio di stile... - + Deleted Cancellati - + Choose executable location... Scegli la posizione dell'eseguibile... - + New Profile Nuovo Profilo - + Enter the new profile's name: Inserisci il nuovo nome profilo: - - + + Error! Errore! - + This profile already exists! Questo profilo esiste già! - + Cannot create profile directory! Impossibile creare la directory del profilo! - + Confirmation Conferma - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Sei sicuro di voler cancellare definitivamente "%1" il profilo? Questa azione non può essere annullata! @@ -2967,16 +2887,6 @@ IP Address of current page Indirizzo IP della pagina corrente - - - Bookmarks - Segnalibri - - - - History - Cronologia - &New Window @@ -3068,28 +2978,28 @@ C&erca - + &Tools accelerator on S is already used by the Bookmarks translation (Segnalibri) S&trumenti - + QupZilla QupZilla - + &Help &Aiuto - + &Bookmarks &Segnalibri - + Hi&story &Cronologia @@ -3099,12 +3009,12 @@ &File - + Last session crashed Ultima sessione chiusa inaspettatamente - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla si è chiuso inaspettatamente :-(</b><br/>Oops, l'ultima sessione di QupZilla si è chiusa inaspettatamente. Ci dispiace molto. Vuoi provare a ripristinare l'ultima sessione salvata? @@ -3164,152 +3074,148 @@ Codifica &carattere - + Toolbars Barre degli strumenti - + Sidebars Barre laterali - + Zoom &In &Ingrandisci - + Zoom &Out &Riduci - + Reset Ripristina - + &Page Source &Sorgente pagina - + Closed Tabs Chiudi schede - + Recently Visited Visitati di recente - + Most Visited Più visitati - + Web In&spector Is&pettore web - + Configuration Information Informazioni sulla configurazione - + Restore &Closed Tab Ripristina &scheda chiusa - + (Private Browsing) (Navigazione Anonima) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Sono ancora presenti %1 schede aperte e la sessione non verrà salvata. Sei sicuro di voler chiudere QupZilla? - + Don't ask again Non chiedere più - + There are still open tabs Ci sono delle schede ancora aperte - + Bookmark &This Page Aggiungi pagina ai &segnalibri - + Bookmark &All Tabs Aggiungi ai segnalibri &tutte le schede - + Organize &Bookmarks Organizza &segnalibri - + Information about application Informazione sull'applicazione - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Ci sono ancora %1 delle schede aperte e la sessione non sarà salvata. Sei sicuro di voler uscire da QupZilla? - - - - - - - + + + + + Empty Vuoto - + &Back &Indietro - + &Forward &Avanti - + &Home &Home - + Show &All History Visualizza &tutta la cronologia - + Restore All Closed Tabs Ripristina tutte le schede chiuse - + Clear list Pulisci lista - + About &Qt Informazioni su &QT @@ -3319,47 +3225,47 @@ Sei sicuro di voler chiudere QupZilla? &Informazioni su QupZilla - + Report &Issue Riporta &problema - + &Web Search &Ricerca Web - + Page &Info Informazioni &pagina - + &Download Manager &Gestione scaricamenti - + &Cookies Manager &Gestione cookie - + &AdBlock &AdBlock - + RSS &Reader Lettore &RSS - + Clear Recent &History Cancella cronologia &recente - + &Private Browsing &Navigazione anonima @@ -3369,77 +3275,72 @@ Sei sicuro di voler chiudere QupZilla? Pr&eferenze - + Other Altro - - Default - Predefinito - - - + %1 - QupZilla %1 - QupZilla - + HTML files File HTML - + Image files Immagini - + Text files File di testo - + All files Tutti i file - + Open file... Apri file... - + Are you sure you want to turn on private browsing? Sei sicuro di voler avviare la navigazione anonima? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Quando la navigazione anonima è attiva, alcune azioni riguardanti la tua privacy potrebbero essere disabilitate: - + Webpages are not added to the history. Le pagine web non vengono aggiunte alla cronologia. - + Current cookies cannot be accessed. Non si può accedere ai cookie correnti. - + Your session is not stored. La Sessione non è memorizzata. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Fino alla chiusura della finestra è sempre possibile fare clic sui pulsanti Avanti e Indietro per tornare alla pagine web che hai aperto. - + Start Private Browsing Avvia navigazione anonima @@ -3515,18 +3416,18 @@ Sei sicuro di voler chiudere QupZilla? Informazioni su QupZilla - - + + Configuration Information Informazione sulla configurazione - + Browser Identification Identificazione Browser - + Paths Percorsi @@ -3537,112 +3438,108 @@ Sei sicuro di voler chiudere QupZilla? - + Version Versione - + WebKit version Versione WebKit - + Application version Versione dell'applicazione - + Qt version Versione di Qt - + Build time Rilascio versione - + Platform Piattaforma - + Profile Profilo - + Preferences Preferenze - + Build Configuration Configurazione della build - + Option Opzione - + Value Valore - + Extensions Estensioni - + Name Nome - + Author Autore - + Description Descrizione - + Settings Impostazioni - + Saved session Salva sessione - + Pinned tabs Segna scheda - + Data Dati - + Themes Temi - Plugins - Plugins - - - + Translations Traduzioni @@ -3667,156 +3564,148 @@ Sei sicuro di voler chiudere QupZilla? Traduttori - + Speed Dial Speed dial - + Add New Page Aggiungi nuova pagina - + Apply Applica - + Close Chiudi - + Speed Dial settings Impostazioni di Speed Dial - + Placement: Posizione: - + Auto Automatico - + Cover Cover - + Fit Adatta - + Fit Width Adatta alla larghezza - + Fit Height Adatta all'altezza - + Use background image Utilizza immagine di sfondo - + Select image Seleziona immagine - + Maximum pages in a row: Numero massimo di pagine in una riga: - + Change size of pages: Cambia la dimesione delle pagine: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Questa pagina contiene informazioni sull'attuale configurazione di QupZilla - importante per risolvere i problemi. Per favore, includi queste informazioni quando invii dei bug report. - + No available extensions. Nessuna estensione disponibile. - - + + Disabled Disabilitata - - - - - + + + + + <b>Enabled</b> <b>Abilitata</> - + Debug build Debug build - + WebGL support Supporto WebGL - + Windows 7 API API di Windows 7 - + KDE integration Integrazione in KDE - + Portable build Build portatile - + Load title from page Carica titolo dalla pagina - + Edit Modifica - + Remove Rimuovi - - E-mail is optional<br/><b>Note: </b>Please use English language only. - L'e-mail è facoltativa<br/><b>Nota:</b>Per favore, scrivi solo in Inglese. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Se si verificano problemi con QupZilla, prova per prima cosa a disabilitare tutti i plugin. <br/>Se non ti aiuta puoi compilare questo modulo: - Please fill out all required fields! @@ -3824,27 +3713,27 @@ Sei sicuro di voler chiudere QupZilla? - + Information about version Informazioni sulla versione - + Reload Ricarica - + Url Url - + Title Titolo - + New Page Nuova pagina @@ -3982,12 +3871,12 @@ Si prega di aggiungere l'icona RSS nella barra di navigazione su un sito ch Aggiungi fonte RSS da questo sito - + Untitled feed Fonte senza titolo - + Add Aggiungi @@ -4195,12 +4084,14 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari SideBar - + + Bookmarks Segnalibri - + + History Cronologia @@ -4478,10 +4369,6 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Paste Incolla - - Delete - Cancella - Select All @@ -4603,7 +4490,7 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari SqueezeLabelV2 - + Copy Copia @@ -4734,22 +4621,22 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari TabbedWebView - + Failed loading page Caricamento pagina fallito - + Loading... Caricamento... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Ispeziona elemento @@ -4776,10 +4663,6 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari License Licenza - - License Viewer - Visualizza licenza - ToolButton @@ -4824,7 +4707,7 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) I don't know what you mean for "shoping" @@ -4832,141 +4715,137 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari (come fare una ricerca sul fare shopping, che è stata già fatta.) - + Confirm form resubmission Conferma per la ritrasmissione - + Select files to upload... Seleziona i file da caricare... - + Server refused the connection Il Server ha rifiutato la connessione - + Server closed the connection Il Server ha chiuso la connessione - + Server not found Server non trovato - + Connection timed out Connessione scaduta - + Untrusted connection Connessione non attendibile - + Temporary network failure Problema di rete temporaneo - + Proxy connection refused Connessione al proxy rifiutata - + Proxy server not found Server proxy non trovato - + Proxy connection timed out Connessione con il proxy scaduta - + Proxy authentication required Il proxy richiede l'autenticazione - + Content not found Cntenuto non trovato - + Unknown network error Errore di rete sconosciuto - + AdBlocked Content Contenuto bloccato (AdBlock) - + Blocked by rule <i>%1</i> Bloccato dalla regola <i>%1</i> - + Content Access Denied Accesso al contenuto negato - + Error code %1 Errore codice %1 - + Failed loading page Caricamento pagina fallito - + QupZilla can't load page from %1. QupZilla non può caricare la pagina da %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Controllare l'indirizzo per errori di battitura come <b>ww.</b>esempio.com invece di <b>www.</b>esempio.com - + If you are unable to load any pages, check your computer's network connection. Se non si riesce a caricare nessuna pagina, controllare la connessione di rete del compiuter. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Se il tuo computer o la rete sono protetti da un firewall o un proxy, assicurati che QupZilla sia autorizzato ad accedere al Web. - + Try Again Prova di nuovo - + JavaScript alert Avviso JavaScript - + Prevent this page from creating additional dialogs Evita che questa pagina crei finestre di dialogo aggiuntive - JavaScript alert - %1 - Avviso JavaScript - %1 - - - + Choose file... Scegli il file... @@ -4997,233 +4876,233 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari WebView - + Open link in new &tab Apri il link in una &nuova scheda - + Open link in new &window Apri il link in una nuova &finestra - + B&ookmark link Aggi&ungi il link ai segnalibri - + &Save link as... &Salva il link come... - + Send link... Invia link... - + &Copy link address Copia indiri&zzo link - + Show i&mage Mostra imma&gine - + Copy im&age Copia im&magine - + Copy image ad&dress Copia in&dirizzo immagine - + &Save image as... Sa&lva immagine come... - + Send image... Invia immagine... - + &Back &Indietro - + Create Search Engine Crea motore di ricerca - + &Forward &Avanti - - + + &Reload &Ricarica - + S&top S&top - + This frame Questa cornice - + Show &only this frame Mostra s&olo questa cornice - + Show this frame in new &tab Mostra questa cornice in una nuova &scheda - + Print frame Stampa cornice - + Zoom &in &Ingrandisci - + &Zoom out &Riduci - + Reset Ripristina - + Show so&urce of frame Mostra sor&gente della cornice - + Book&mark page Aggi&ungi la pagina ai Segnalibri - + &Save page as... Sa&lva pagina come... - + &Copy page link &Copia indirizzo pagina - + Send page link... Invia l'indirizzo della pagina... - + &Print page S&tampa pagina - + Send text... Invia testo... - + Google Translate Google Traduttore - + Dictionary Dizionario - + Go to &web address Vai all'indirizzo &web - + Search with... Cerca con... - + &Play &Play - + &Pause &Pausa - + Un&mute Volu&me attivato - + &Mute &Muto - + &Copy Media Address &Copia indirizzo media - + &Send Media Address &Invia indirizzo media - + Save Media To &Disk Salva media su &disco - + Select &all Seleziona &tutto - + Validate page Convalida la pagina - + Show so&urce code Mostra codice so&rgente - + Show info ab&out site Mostra info su&l sito - + Search "%1 .." with %2 Cerca "%1 .." con %2 diff --git a/translations/ja_JP.ts b/translations/ja_JP.ts index b4da84365..d2f29e6b3 100644 --- a/translations/ja_JP.ts +++ b/translations/ja_JP.ts @@ -27,11 +27,6 @@ <b>WebKit version %1</b></p> <b>WebKitのバージョン情報 %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - そのまま - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <small>Build time: %1 </small></p> <small>このソフトウェアは以下の日時でビルドされました: %1 </small></p> @@ -868,18 +863,6 @@ これ以上の情報は取得できません。 - - CloseDialog - - There are still open tabs - 保留 - まだ開いているタブがあります - - - Don't ask again - 次回からは表示しない - - CookieManager @@ -1317,10 +1300,6 @@ HistoryModel - - Failed loading page - ページの読み込みに失敗しました - No Named Page 無題 @@ -1446,17 +1425,6 @@ このページの情報を表示 - - MainApplication - - Last session crashed - 前回のセッションがクラッシュしました - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZillaがクラッシュしてしまいました(/_;)</b>><br/>前回のQupZillaのセッションは予期せず終了されました。申し訳ありません、前回のセッションを復元しますか? - - NavigationBar @@ -1562,10 +1530,6 @@ Save Page Screen... ページのスクリーンショットを保存... - - screen.png - スクリーンショット.png - PluginsList @@ -1623,10 +1587,6 @@ Error! エラーが発生しました! - - Cannot load plugin! - プラグインが読み込めません! - Cannot load extension! 保留 @@ -1687,11 +1647,6 @@ Notifications 通知 - - Plugins - 拡張機能の方がいいかプラグインの方がいいか。要再考 - 拡張機能 - Other その他 @@ -1889,10 +1844,6 @@ Web Configuration Web設定 - - Allow Plugins (Flash plugin) - プラグインを有効にする - Allow JavaScript Javascriptを有効にする @@ -1966,10 +1917,6 @@ 50 MB 50 MB - - Allow storing web icons - アイコンの保存を有効にする - Allow saving history 履歴の保存を有効にする @@ -2507,14 +2454,6 @@ Character &Encoding 文字コードエンコーディング(&E) - - Bookmarks - ブックマーク - - - History - 履歴 - Toolbars ツールバー @@ -2674,11 +2613,6 @@ Other その他 - - Default - 保留 - 既定 - %1 - QupZilla %1 - QupZilla @@ -2717,11 +2651,6 @@ Start Private Browsing プライベートブラウジングを開始する - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - 意訳。保留。 - %1個のタブが開いています。セッションは保存されませんがQupZillaを終了しますか? - You have successfully added RSS feed "%1". RSSフィード"%1"の追加に成功しました。 @@ -2779,10 +2708,6 @@ Are you sure to quit QupZilla? Report Issue 問題を報告する - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - QupZillaを使用中に問題が発生した場合はまずプラグインを無効にしてみてください。<br/>それでも問題が解決されない場合以下のフォームに書き込んでください: - Your E-mail E-mailアドレス @@ -2942,11 +2867,6 @@ Are you sure to quit QupZilla? Configuration Information 設定情報 - - This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports. - 意訳 - このページはQupZillaの現在の設定について表示しています。これらの情報はトラブルシューティングに非常に有用ですので、バグレポート送信の際にはこれらの情報を一緒に送信してください。 - Browser Identification 意訳 @@ -2970,10 +2890,6 @@ Are you sure to quit QupZilla? Value - - Plugins - プラグイン - Name 名前 @@ -3031,10 +2947,6 @@ Are you sure to quit QupZilla? Platform プラットフォーム - - No available plugins. - 表示可能なプラグインはありません。 - Build Configuration ビルド設定 @@ -3067,14 +2979,6 @@ Are you sure to quit QupZilla? Portable build Portable build - - If you are experiencing problems with QupZilla, please try to disable all extenions first. <br/>If this does not fix it, then please fill out this form: - QupZillaを使用中に問題が発生した場合はまずエクステンションを無効にしてみてください。<br/>それでも問題が解決されない場合以下のフォームに書き込んでください: - - - This page contains information about QupZilla's current configuration, all relevant information for troubleshooting. Please include these information when sending bug reports. - このページはQupZillaの現在の設定について表示しています。これらの情報はトラブルシューティングに非常に有用ですので、バグレポート送信の際にはこれらの情報を一緒に送信してください。 - Extensions エクステンション @@ -3610,10 +3514,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Paste 貼り付け - - Delete - 削除 - Select All @@ -4003,11 +3903,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Prevent this page from creating additional dialogs このページでこれ以上ダイアログを表示させない - - JavaScript alert - %1 - javascript alertで出てくる奴→警告、要再考。 - 警告- %1 - Choose file... ファイルの選択... diff --git a/translations/ka_GE.ts b/translations/ka_GE.ts index 90263623e..760676346 100644 --- a/translations/ka_GE.ts +++ b/translations/ka_GE.ts @@ -27,10 +27,6 @@ <b>WebKit version %1</b></p> <b>WebKit-ის ვერსია %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>ყველა უფლება დაცულია.<br/> - <small>Build time: %1 </small></p> <small>აწყობის დრო: %1 </small></p> @@ -854,17 +850,6 @@ მეტი ინფორმაცია არ არის ხელმისაწვდომი. - - CloseDialog - - There are still open tabs - რამდენიმე ჩანართი კვლავ გახსნილია - - - Don't ask again - მეტი აღარ შემეკითხო - - CookieManager @@ -1292,10 +1277,6 @@ HistoryModel - - Failed loading page - გვერდის ჩატვირთვა ჩაიშალა - No Named Page უსათაურო გვერდი @@ -1419,17 +1400,6 @@ ინფორმაციის ჩვენება ამ გვერდის შესახებ - - MainApplication - - Last session crashed - ბოლო სესია ავარიულად დაიხურა - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla ავარიუალად დაიხურა :-(</b><br/>უი, QupZilla-ს ბოლო სესია მოულოდნელად შეწყდა. ბოდიშს გიხდით ამისათვის. გსურთ ბოლო შენახული მდგომარებოის აღდგენა ვცადოთ? - - NavigationBar @@ -1534,10 +1504,6 @@ Save Page Screen... გვერდის ასლის შენახვა... - - screen.png - screen.png - PluginsList @@ -1593,10 +1559,6 @@ Error! შეცდომა! - - Cannot load plugin! - მოდულის ჩატვირთვა ვერ მოხერხდა! - Cannot load extension! გაფართოების ჩატვირთვა ვერ მოხერხდა! @@ -1655,10 +1617,6 @@ Notifications შეტყობინებები - - Plugins - მოდულები - Other სხვა @@ -1847,10 +1805,6 @@ Web Configuration ვებ კონფიგურაცია - - Allow Plugins (Flash plugin) - მოდულების დაშვება (Flash მოდული) - Allow JavaScript JavaScript-ის დაშვება @@ -1922,10 +1876,6 @@ 50 MB 50 მბ - - Allow storing web icons - ვებ ხატუილების შენახვის დაშვება - Allow saving history ისტორიის შენახვის დაშვება @@ -2453,14 +2403,6 @@ Character &Encoding სიმბოლოების &კოდირება - - Bookmarks - სანიშნები - - - History - ისტორია - Toolbars ხელსაწყოთა ზოლები @@ -2617,10 +2559,6 @@ Other სხვა - - Default - ნაგულისხმევი - %1 - QupZilla %1 - QupZilla @@ -2657,10 +2595,6 @@ Start Private Browsing პირადი ბრაუზინგის დაწყება - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - თქვენ კვლავ გაქვთ %1 გახსნილი ჩანართი და თქვენი სესია არ შეინახება. დარწმუნებული ხართ რომ QupZilla-დან გამოსვლა გსურთ? - You have successfully added RSS feed "%1". თქვენ წარმატებით დაამატეთ RSS არხი "%1". @@ -2718,10 +2652,6 @@ Are you sure to quit QupZilla? Report Issue შეცდომის შეტყობინება - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - თუ QupZilla-ს გამოყენებისას პრობლემები გაქვთ, გთხოვთ პირველ რიგში ყველა მოდულის გამორთვა ცადეთ. <br/>თუ ეს ვერ მოაგვარებს თქვენს პრობლემას, გთხოვთ შეავსეთ ეს ფორმა: - Your E-mail თქვენი ელ-ფოსტა @@ -2878,10 +2808,6 @@ Are you sure to quit QupZilla? Configuration Information კონფიგურაციის ინფორმაცია - - This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports. - ეს გვერდი შეიცავს ინფორმაციას QupZilla-ს მიმდინარე კონფიგურაციის, მოდულების, ა.შ, და ყველა საჭირო ინფორმაციას პრობლემის აღმოფხვრის შესახებ. გთხოვთ მოაყოლეთ ეს ინფორმაცია შეცდომის გამოგზავნის დროს. - Browser Identification ბრაუზერის იდენტიფიკაცია @@ -2902,10 +2828,6 @@ Are you sure to quit QupZilla? Value მნიშვნელობა - - Plugins - მოდულები - Name სახელი @@ -2962,10 +2884,6 @@ Are you sure to quit QupZilla? Platform პლატფორმა - - No available plugins. - ხელმისაწვდომი მოდულები არ არის. - Build Configuration აწყობის კონფიგურაცია @@ -3521,10 +3439,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Paste ჩასმა - - Delete - წაშლა - Select All ყველას არჩევა @@ -3762,10 +3676,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla License ლიცენზია - - License Viewer - ლიცენზიის მნახველი - ToolButton @@ -3904,10 +3814,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Prevent this page from creating additional dialogs ამ გვერდისთვის დამატებითი დიალოგების აკრძალვა - - JavaScript alert - %1 - JavaScript გაფრთხილება - %1 - Choose file... ფაილის არჩევა... diff --git a/translations/nl_NL.ts b/translations/nl_NL.ts index bab40a9ab..bdc5d0bb3 100644 --- a/translations/nl_NL.ts +++ b/translations/nl_NL.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>WebKit-versie %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Alle rechten voorbehouden.<br/> - <small>Build time: %1 </small></p> @@ -491,35 +487,35 @@ Kies bestand... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox bewaart haar bladwijzers in <b>places.sqlite</b> SQLite-datebase. Dit bestand is normaal gezien te vinden in - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome bewaart haar bladwijzers in <b>Bookmarks</b>-tekstbestand. Dit bestand is normaal gezien te vinden in - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera bewaart haar bladwijzers in <b>bookmarks.adr</b>-tekstbestand. Dit bestand is normaal gezien te vinden in - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes U kunt bladwijzers importeren uit elke browser die HTML-exportering ondersteund. Het bestand heeft doorgaans deze extensies - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer bewaart haar bladwijzers in <b>Favorieten</b>-map. Dit bestand is normaal gezien te vinden in - - - - + + + + Please choose this file to begin importing bookmarks. Kies alstublieft dit bestand om het importeren te starten. @@ -530,7 +526,7 @@ Klik alstublieft op Afronden om het import-proces te voltooiien. - + Please choose this folder to begin importing bookmarks. Kies alstublieft deze map om het importeren te starten. @@ -603,7 +599,7 @@ Optimaliseer database - + Add Subfolder Voeg submap toe @@ -618,22 +614,22 @@ Kies naam voor nieuwe bladwijzermap: - + Rename folder Hernoem map - + Remove folder Verwijder map - + <b>Warning: </b>You already have bookmarked this page! <b>Waarschuwing: </b>U heeft deze pagina al gebladwijzerd! - + Choose name and location of this bookmark. Kies naam en locatie van deze bladwijzer. @@ -653,42 +649,42 @@ Kies naam voor map: - + Open link in current &tab Open link in huidige &tab - + Open link in &new tab Open link in &nieuw tabblad - + Move bookmark to &folder Verplaats bladwijzer naar &map - + Rename bookmark Hernoem bladwijzer - + Remove bookmark Verwijder bladwijzer - + Add New Bookmark Voeg nieuwe bladwijzer toe - + Choose folder for bookmarks: Kies map voor bladwijzers: - + Bookmark All Tabs Bladwijzer alle tabbladen @@ -696,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Bladwijzers in menu - - + + Bookmarks In ToolBar Bladwijzers op werkbalk - - + + Unsorted Bookmarks Ongesorteerde bladwijzers @@ -745,106 +741,94 @@ BookmarksToolbar - + &Bookmark Current Page &Bladwijzer huidige pagina - + Bookmark &All Tabs Bladwijzer &alle tabbladen - + &Organize Bookmarks &Sorteer bladwijzers - Hide Most &Visited - Verberg meest &bezocht - - - + Show Most &Visited Toon meest &bezocht - + Show Only Icons Toon alleen pictogrammen - + &Hide Toolbar &Verberg werkbalk - + Move right Verplaats naar rechts - + Move left Verplaats naar links - + Edit bookmark Bewerk bladwijzer - + Remove bookmark Verwijder bladwijzer - + Edit bookmark: Bewerk bladwijzer: - + Title: Titel: - + Url: Url: - + Edit Bookmark Bewerk bladwijzer - + Most visited Meest bezocht - + Sites you visited the most Websites die u het meest bezocht heeft - - + + Empty Leeg BookmarksWidget - - Edit This Bookmark - Bewerk deze bladwijzer - - - Remove Bookmark - Verwijder bladwijzer - Name: @@ -875,27 +859,11 @@ Add to Bookmarks Voeg toe aan Bladwijzers - - Add into Bookmarks - Voeg aan Bladwijzers toe - - - Add into Speed Dial - Voeg aan Snelkiezer toe - - - <b>Add Bookmark</b> - <b>Voeg bladwijzer toe</b> - Edit Bookmark Bewerk bladwijzer - - <b>Edit Bookmark</b> - <b>Bewerk bladwijzer</b> - @@ -1115,17 +1083,6 @@ Geen verdere informatie beschikbaar. - - CloseDialog - - There are still open tabs - Er zijn nog geopende tabbladen - - - Don't ask again - Nooit meer vragen - - CookieManager @@ -1171,8 +1128,8 @@ - - + + Server: Server: @@ -1270,12 +1227,12 @@ Weet u zeker dat alle cookies op uw computer wilt verwijderen? - + Add to whitelist Voeg toe aan witte lijst - + Add to blacklist Voeg toe aan zwarte lijst @@ -1452,59 +1409,59 @@ werd niet gevonden! DownloadManager - + Executable: Uitvoerbaar: - + Arguments: Argumenten: - + Cannot start external download manager Kan externe downloadmanager niet starten - + Cannot start external download manager! %1 Kan externe downloadmanager niet starten! %1 - + %1% of %2 files (%3) %4 remaining %1% van %2 bestanden (%3) %4 resterend - + % - Download Manager % - Download-manager - + Download Finished Download voltooid - + All files have been successfully downloaded. Alle bestanden zijn met succes gedownload. - + Warning Waarschuwing - + Are you sure to quit? All uncompleted downloads will be cancelled! Weet u zeker dat u wilt afsluiten? Alle onvoltooide downloads zullen geannuleerd worden! - - + + Download Manager Download-manager @@ -1648,30 +1605,30 @@ werd niet gevonden! Kopieer adres - - + + Today Vandaag - - + + This Week Deze week - - + + This Month Deze maand - + Confirmation Bevestiging - + Are you sure to delete all history? Weet u zeker dat u alle geschiedenis wilt verwijderen? @@ -1679,72 +1636,67 @@ werd niet gevonden! HistoryModel - - Failed loading page - Mislukt om pagina te laden - - - + No Named Page Niet-benoemde pagina - + January Januari - + February Februari - + March Maart - + April April - + May Mei - + June Juni - + July Juli - + August Augustus - + September September - + October Oktober - + November November - + December December @@ -1778,19 +1730,19 @@ werd niet gevonden! - + Today Vandaag - + This Week Deze week - + This Month Deze maand @@ -1816,17 +1768,17 @@ werd niet gevonden! Voer URL-adres in of zoek op %1 - + Paste And &Go Plak en &ga - + Clear All Wis alles - + .co.uk Append domain name on ALT + Enter = Should be different for every country .nl @@ -1837,58 +1789,47 @@ werd niet gevonden! Toon informatie over deze pagina - - MainApplication - - Last session crashed - Laatste sessie gecrashed - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla crashte :-(</b><br/>Oeps, de laatste sessie van QupZilla eindigde met een crash. We verontschuldigen ons. Wilt u proberen om de opgeslagen status te herstellen? - - NavigationBar - + No Named Page Niet-benoemde pagina - + Back Terug - + Forward Vooruit - + Home Startpagina - + New Tab Nieuw tabblad - + Main Menu Hoofdmenu - - + + Exit Fullscreen Verlaat volledig scherm - - + + Clear history Verwijder geschiedenis @@ -1977,14 +1918,10 @@ werd niet gevonden! Schermafbeelding - + Save Page Screen... Sla schermafbeelding op... - - screen.png - scherm.png - PluginsList @@ -2003,10 +1940,6 @@ werd niet gevonden! Settings Instellingen - - Load Plugins - Laad Plugins - WebKit Plugins @@ -2043,29 +1976,25 @@ werd niet gevonden! Sta Klik Voor Flash toe - + Add site to whitelist Voeg site toe aan witte lijst - + Server without http:// (ex. youtube.com) Server zonder http:// (bijv. youtube.com) - + Error! Fout! - + Cannot load extension! Kan extensie niet laden! - - Cannot load plugin! - Kan plugin niet laden! - PopupWindow @@ -2097,10 +2026,6 @@ werd niet gevonden! Downloads Downloads - - Plugins - Plugins - Open blank page @@ -2173,7 +2098,7 @@ werd niet gevonden! Sta toe dat netwerkcache op schijf wordt opgeslagen - + <b>Cookies</b> <b>Cookies</b> @@ -2254,7 +2179,7 @@ werd niet gevonden! - + Note: You cannot delete active profile. Noot: U kunt het actieve profiel niet verwijderen. @@ -2289,7 +2214,7 @@ werd niet gevonden! Sta DNS-prefetch toe - + JavaScript can access clipboard JavaScript kan klembord raadplegen @@ -2311,7 +2236,7 @@ werd niet gevonden! Print element-achtergrond - + Send Do Not Track header to servers Stuur Track Me Niet-header naar servers @@ -2434,252 +2359,252 @@ werd niet gevonden! Lokale opslag - + Delete now Verwijder nu - + Proxy Configuration Proxy-instellingen - + <b>Exceptions</b> <b>Uitzonderingen</b> - + Server: Server: - + Use different proxy for https connection Gebruik andere proxy voor https-verbinding - + <b>Font Families</b> <b>Lettertype-families</b> - + Standard Standaard - + Fixed Vast - + Serif Serif - + Sans Serif Sans Serif - + Cursive Cursief - + Fantasy Fantasie - + <b>Font Sizes</b> <b>Lettertype-groottes</b> - + Fixed Font Size Vastgezette lettergrootte - + Default Font Size Standaard lettergrootte - + Minimum Font Size Minimale lettergrootte - + Minimum Logical Font Size Minimale logische lettergrootte - + <b>Download Location</b> <b>Downloadlocatie</b> - + Ask everytime for download location Vraag elke keer om downloadlocatie - + Use defined location: Gebruik de volgende locatie: - - - + + + ... ... - + <b>Download Options</b> <b>Download-instellingen</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Gebruik systeem bestands-dialoogvenster (kan wellicht problemen veroorzaken met het downloaden van SSL-beveiligde inhoud) - + Close download manager when downloading finishes Sluit downloadbeheerder wanneer downloaden voltooid is - + <b>External download manager</b> <b>Externe downloadmanager</b> - + Use external download manager Gebruik externe downloadmanager - + Executable: Uitvoerbaar: - + Arguments: Argumenten: - + Filter tracking cookies Filter opsporingscookies - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Waarschuwing:</b> Exact overeenkomen met domein en filter opsporingscookies kan leiden tot weigering van cookies door sites. Indien u problemen heeft met cookies, probeer dan deze opties eerst uit te schakelen! - + <b>SSL Certificates</b> <b>SSL-certificaten</b> - + Edit CA certificates in SSL Manager Bewerk CA-certificaten in SSL-beheerder - - + + <b>Other</b> <b>Overig</b> - + Send Referer header to servers Verstuur refereerkop naar servers - + Block popup windows Blokkeer popup-vensters - + <b>Notifications</b> <b>Meldingen</b> - + Use OSD Notifications Gebruik OSD-meldingen - + Use Native System Notifications (Linux only) Gebruik systeemmeldingen (geldt alleen voor Linux) - + Do not use Notifications Gebruik geen meldingen - + Expiration timeout: Vervaltijd-timeout: - + seconds seconden - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Noot: </b> U kunt de positie van OSD-meldingen veranderen door te verslepen op het scherm. - + Change browser identification: Verander browser-indentificatie: - + StyleSheet automatically loaded with all websites: Stylesheet welke automatisch geladen wordt met alle websites: - + Languages Talen - + <b>Preferred language for web sites</b> <b>Voorkeurstalen voor websites</b> - + System proxy configuration Systeemproxy-instellingen - + Do not use proxy Gebruik geen proxy - + Manual configuration Handmatige instellingen @@ -2689,45 +2614,45 @@ werd niet gevonden! Web-instellingen - + Allow local storage of HTML5 web content Sta lokale opslag van HTML5-webinhoud toe - + Delete locally stored HTML5 web content on close Verwijder lokaal opgeslagen HTML5-webinhoud na afsluiten - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Poort: - - + + Username: Gebruikersnaam: - - + + Password: Wachtwoord: - + Don't use on: Gebruik niet op: @@ -2746,10 +2671,6 @@ werd niet gevonden! Allow JAVA Sta JAVA toe - - Allow Plugins (Flash plugin) - Sta plugins toe (Flash-plugin) - Maximum pages in cache: @@ -2761,12 +2682,12 @@ werd niet gevonden! Wachtwoordbeheerder - + <b>AutoFill options</b> <b>AutoAanvullen-instellingen</b> - + Allow saving passwords from sites Sta opslaan van wachtwoorden van sites toe @@ -2776,37 +2697,32 @@ werd niet gevonden! Privacy - + Allow storing of cookies Sta opslag van cookies toe - + Delete cookies on close Verwijder cookies bij afsluiten - + Match domain exactly Exact overeenkomen domein - + Cookies Manager Cookies-beheerder - Allow storing web icons - Sta opslag van web-pictogrammen toe - - - Allow saving history Sta opslag van geschiedenis toe - + Delete history on close Verwijder geschiedenis bij afsluiten @@ -2827,7 +2743,7 @@ werd niet gevonden! Voeg .nl-domein toe door de ALT-toets in te drukken - + SSL Manager SSL-beheerder @@ -2842,68 +2758,68 @@ werd niet gevonden! Om de gekozen taal toe te passen, moet u de browser herstarten. - + OSD Notification OSD-melding - + Drag it on the screen to place it where you want. Versleep het op het scherm en plaats het waar U wilt. - + Choose download location... Kies downloadlocatie... - + Choose stylesheet location... Kies stylesheet-locatie... - + Deleted Verwijderd - + Choose executable location... Kies uitvoerbaar bestands-locatie... - + New Profile Nieuw profiel - + Enter the new profile's name: Voer de nieuw profielnaam in: - - + + Error! Fout! - + This profile already exists! Dit profiel bestaat reeds! - + Cannot create profile directory! Kan profielmap niet aanmaken! - + Confirmation Bevestiging - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Weet u zeker dat u profiel "%1"wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt! @@ -2961,16 +2877,6 @@ werd niet gevonden! QupZilla - - - Bookmarks - Bladwijzers - - - - History - Geschiedenis - Quit @@ -2992,27 +2898,27 @@ werd niet gevonden! IP-adres van huidige pagina - + QupZilla QupZilla - + &Tools Hulp&middelen - + &Help &Help - + &Bookmarks &Bladwijzers - + Hi&story &Geschiedenis @@ -3022,12 +2928,12 @@ werd niet gevonden! &Bestand - + Last session crashed Laatste sessie crashte - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla crashte :-(</b><br/>Oeps, de laatste sessie van QupZilla eindigde met een crash. We verontschuldigen ons. Wilt u proberen om de laatst opgeslagen status te herstellen? @@ -3112,86 +3018,82 @@ werd niet gevonden! Sta&tusbalk - + Toolbars Werkbalken - + Sidebars Zijpanelen - + &Page Source &Pagina-broncode - + Recently Visited Onlangs bezocht - + Most Visited Meest bezocht - + Web In&spector Web-in&specteur - + Information about application Informatie over programma - + Configuration Information Informatie over configuratie - + HTML files HTML-bestanden - + Image files Afbeeldingsbestanden - + Text files Tekstbestanden - + All files Alle bestanden - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Er zijn nog steeds %1 openstaande tabbladen en uw sessie wordt niet opgeslagen. Weet u zeker dat u QupZIlla wilt afsluiten? - + Don't ask again Vraag nooit meer - + There are still open tabs Er zijn nog openstaande tabbladen - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - U heeft nog steeds %1 geopende tabs en uw sessie zal niet worden opgeslagen. Weet u zeker dat u wilt afsluiten? - &Menu Bar @@ -3218,17 +3120,17 @@ Weet u zeker dat u QupZIlla wilt afsluiten? &Karakter-tekenset - + Zoom &In Zoo&m in - + Zoom &Out Z&oom uit - + Reset Herstart @@ -3253,32 +3155,27 @@ Weet u zeker dat u QupZIlla wilt afsluiten? &Print... - + Other Overig - - Default - Standaard - - - + %1 - QupZilla %1 - QupZilla - + Current cookies cannot be accessed. Huidige cookies kunnen niet worden benaderd. - + Your session is not stored. Uw sessie is niet bewaard. - + Start Private Browsing Start incognito browsen @@ -3288,56 +3185,56 @@ Weet u zeker dat u QupZIlla wilt afsluiten? Incognito browsen ingeschakeld - + Restore &Closed Tab Herstel &gesloten tabblad - - - - - + + + + + Empty Leeg - + Bookmark &This Page Bladwijzer &deze pagina - + Bookmark &All Tabs Bladwijzer &alle tabbladen - + Organize &Bookmarks Organiseer &bladwijzers - + &Back &Terug - + &Forward &Vooruit - + &Home &Startpagina - + Show &All History Toon &alle geschiedenis - + Closed Tabs Gesloten tabbladen @@ -3347,22 +3244,22 @@ Weet u zeker dat u QupZIlla wilt afsluiten? Sla schermafbeelding op - + (Private Browsing) (Incognito browsen) - + Restore All Closed Tabs Herstel alle gesloten tabbladen - + Clear list Wis lijst - + About &Qt Over &Qt @@ -3372,47 +3269,47 @@ Weet u zeker dat u QupZIlla wilt afsluiten? &Over QupZilla - + Report &Issue Rapporteer &probleem - + &Web Search &Webzoeken - + Page &Info Pagina-&info - + &Download Manager &Downloadbeheerder - + &Cookies Manager &Cookies-beheerder - + &AdBlock &AdBlock - + RSS &Reader &RSS-lezer - + Clear Recent &History Wis recente &geschiedenis - + &Private Browsing &Incognito browsen @@ -3422,27 +3319,27 @@ Weet u zeker dat u QupZIlla wilt afsluiten? &Instellingen - + Open file... Open bestand... - + Are you sure you want to turn on private browsing? Weet u zeker dat u incognito browsen wilt inschakelen? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Wanneer incognito browsen is ingeschakeld, zullen sommige acties aangaande uw privacy uitgeschakeld worden: - + Webpages are not added to the history. Webpagina's worden niet toegevoegd aan uw geschiedenis. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Totdat u dit venster afsluit, kunt nog steeds op de Terug en Vooruit-knoppen klikken om terug naar de webpagina's te gaan die u hebt geopend. @@ -3518,18 +3415,18 @@ Weet u zeker dat u QupZIlla wilt afsluiten? Over QupZilla - - + + Configuration Information Informatie over configuratie - + Browser Identification Browser-identificatie - + Paths Paden @@ -3540,112 +3437,108 @@ Weet u zeker dat u QupZIlla wilt afsluiten? - + Version Versie - + WebKit version WebKit-versie - + Application version Programma-versie - + Qt version Qt-versie - + Build time Bouwtijd - + Platform Platform - + Profile Profiel - + Preferences Instellingen - + Build Configuration Bouwconfiguratie - + Option Optie - + Value Waarde - + Extensions Extensies - + Name Naam - + Author Auteur - + Description Beschrijving - + Settings Instellingen - + Saved session Opgeslagen sessie - + Pinned tabs Vastgepinde tabbladen - + Data Data - + Themes Thema's - Plugins - Plugins - - - + Translations Vertalingen @@ -3670,164 +3563,148 @@ Weet u zeker dat u QupZIlla wilt afsluiten? Vertalers - + Speed Dial Speed Dial - + Add New Page Voeg nieuwe pagina toe - + Apply Pas toe - + Close Sluit - + Speed Dial settings Snelkiezer-instellingen - + Placement: Plaatsing: - + Auto Auto - + Cover Overlappend - + Fit Passend - + Fit Width Pas in breedte - + Fit Height Pas in hoogte - + Use background image Gebruik achtergrondafbeelding - + Select image Selecteer afbeelding - + Maximum pages in a row: Maximaal pagina´s in een rij: - + Change size of pages: Verander grootte van pagina´s: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Deze pagina bevat informatie over QupZilla's huidige configuratie - nuttig voor probleemoplossing. Verstuur deze informatie mee bij het verzenden van bug-rapporten. - + No available extensions. Geen beschikbare extensies. - This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports. - Deze pagina bevast informatie over QupZilla's huidige configuratie, plugins, etc, alle relevante informatie voor probleemoplossing. Vermeld deze alstublieft bij het verzenden van bugrapportages. - - - - + + Disabled Uitgeschakeld - - - - - + + + + + <b>Enabled</b> <b>Ingeschakeld</b> - + Debug build Debugbare bouw - + WebGL support WebGL-ondersteuning - + Windows 7 API Windows 7-API - + KDE integration KDE-integratie - + Portable build Meeneembare bouw - No available plugins. - Geen beschikbare plugins. - - - + Load title from page Laad titel van pagina - + Edit Bewerk - + Remove Verwijder - - E-mail is optional<br/><b>Note: </b>Please use English language only. - E-mailadres is optioneel<br/><b>Noot:</b>Gebruik alstublieft alleen Engels. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Indien u problemen ervaart met QupZilla, probeer dan eerst alle plugins uit te schakelen. <br/>Mocht dit het niet oplossen, vul dan dit formulier in: - Please fill out all required fields! @@ -3835,27 +3712,27 @@ Weet u zeker dat u QupZIlla wilt afsluiten? - + Information about version Informatie over versie - + Reload Herlaad - + Url URL - + Title Titel - + New Page Nieuwe pagina @@ -3993,12 +3870,12 @@ Voeg enkele toe via het RSS-icoon op de navigatiewerkbalk op een site die feeds Voeg RSS-feeds toe van deze site - + Untitled feed Ongetitelde feed - + Add Voeg toe @@ -4206,12 +4083,14 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te SideBar - + + Bookmarks Záložky - + + History Historie @@ -4490,10 +4369,6 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Paste Plakken - - Delete - Verwijder - Select All @@ -4615,7 +4490,7 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te SqueezeLabelV2 - + Copy Kopieer @@ -4746,22 +4621,22 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te TabbedWebView - + Failed loading page Mislukt om pagina te laden - + Loading... Aan het laden... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspecteer element @@ -4788,10 +4663,6 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te License Licentie - - License Viewer - Liecentie-toner - ToolButton @@ -4836,148 +4707,144 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Om deze pagina te tonen, moet QupZulla het verzoek opnieuw versturen (zoals zoeken op het maken van een shoping, welke al gedaan is.) - + Confirm form resubmission Bevestig herindiening forumlier - + Select files to upload... Selecteer bestanden om te uploaden... - + Server refused the connection Server weigerde de verbinding - + Server closed the connection Server sloot de verbinding - + Server not found Server niet gevonden - + Connection timed out Verbinding onderbroken - + Untrusted connection Onbeveiligde verbinding - + Temporary network failure Tijdelijke netwerkfout - + Proxy connection refused Proxy-verbinding geweigerd - + Proxy server not found Proxy-server niet gevonden - + Proxy connection timed out Proxy-verbinding tijdsonderbreking - + Proxy authentication required Proxy-authenticatie benodigd - + Content not found Inhoud niet gevonden - + Unknown network error Onbekende netwerkfout - + AdBlocked Content Door AdBlock geblokkeerde inhoud - + Blocked by rule <i>%1</i> Geblokkeerd door regel <i>%1</i> - + Content Access Denied Inhoudstoegang geweigerd - + Error code %1 Foutcode %1 - + Failed loading page Mislukt om pagina te laden - + QupZilla can't load page from %1. QupZilla kan de pagina niet laden van %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Controleer het adres op typfouten zoals <b>ww.</b>voorbeeld.nl in plaats van <b>www.</b>voorbeeld.nl - + If you are unable to load any pages, check your computer's network connection. Indien u niet in staat bent om eender welke pagina te laden, controleer dan uw netwerkverbinding. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Indien uw computer of netwerk beveiligd is door een firewall of proxy, zorg dan dat QupZilla toestemming heeft om het web te benaderen. - + Try Again Probeer nogmaals - + JavaScript alert JavaScript-waarschuwing - + Prevent this page from creating additional dialogs Voorkom dat deze pagina extra dialoogvensters aanmaakt - JavaScript alert - %1 - JavaScript-waarschuwing - %1 - - - + Choose file... Kies bestand... @@ -5008,223 +4875,223 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te WebView - + Open link in new &tab Open link in nieuw &tabblad - + Open link in new &window Open link in nieuw &venster - + B&ookmark link B&ladwijzer link - + &Save link as... &Sla link op als... - + &Copy link address &Kopieer linkadres - + Show i&mage Toon af&beelding - + Copy im&age &Kopieer afbeelding - + Copy image ad&dress Kopieer af&beeldingsadres - + S&top &Stop - + Create Search Engine Creeer zoekmachine - + This frame Dit frame - + Show &only this frame Toon &alleen dit frame - + Show this frame in new &tab Toon dit frame in nieuw &tabblad - + Print frame Druk frame af - + Zoom &in Zoom &in - + &Zoom out &Zoom uit - + Reset Zet terug - + Show so&urce of frame Toon &bron van frame - + &Copy page link &Kopieer paginalink - + Send page link... Verstuur paginalink... - + &Print page &Print pagina - + Validate page Valideer pagina - + Show info ab&out site Toon info &over site - + Search with... Zoek met... - + &Play &Speel af - + &Pause &Pauzeer - + Un&mute Ont&demp - + &Mute &Demp - + &Copy Media Address &Kopieer media-adres - + &Send Media Address &Verstuur media-adres - + Save Media To &Disk Sla media op naar &schijf - + &Save image as... &Sla afbeelding op als... - + &Back &Terug - + &Forward &Vooruit - - + + &Reload &Herlaad - + Book&mark page &Bladwijzer pagina - + &Save page as... &Sla pagina op als... - + Select &all &Selecteer alles - + Show so&urce code &Toon broncode - + Send text... Verstuur tekst... - + Google Translate Google Vertalen - + Dictionary Woordenboek - + Go to &web address Ga naar &webadres - + Search "%1 .." with %2 Zoek "%1 .." met %2 @@ -5234,12 +5101,12 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Niet benoemde pagina - + Send link... Verstuur link... - + Send image... Verstuur afbeelding... diff --git a/translations/pl_PL.ts b/translations/pl_PL.ts index beeb8648d..6eef34153 100644 --- a/translations/pl_PL.ts +++ b/translations/pl_PL.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>Wersja WebKit %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Wszelkie prawa zastrzeżone.<br/> - <small>Build time: %1 </small></p> @@ -498,40 +494,40 @@ Wybierz plik... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox przechowuje swoje zakładki w bazie SQLite <b>places.sqlite</b>. Ten plik znajduję się zazwyczaj w - - - - + + + + Please choose this file to begin importing bookmarks. Proszę wybrać ten plik, aby rozpocząć importowanie zakładek. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome przechowuj swoje zakładki w pliku tekstowym <b>Zakładki</b>. Ten plik znajduję sie zazwyczaj w - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera przechowuje swoje zakładki w pliku tekstowym <b>bookmarks.adr</b>. Ten plik znajduję się w - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Można zaimportować zakładki z dowolnej przeglądarki, która do pozwala na ich eksport do pliku HTML. Plik ten ma zwykle rozszerzenie - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer przechowuje zakładki w katalogu <b>Ulubione</b>. Katalog ten znajduję się w - + Please choose this folder to begin importing bookmarks. Proszę wybrać ten katalog aby rozpocząć import zakładek. @@ -629,67 +625,67 @@ Wybierz nazwę dla katalogu: - + Add Subfolder Dodaj podkatalog - + Rename folder Zmień nazwę katalogu - + Remove folder Usuń katalog - + Open link in current &tab Otwórz odnośnik w bieżącej &karcie - + Open link in &new tab Otwórz odnośnik w &nowej karcie - + Move bookmark to &folder Przenieś zakładkę do &katalogu - + Rename bookmark Zmien nazwę zakładki - + Remove bookmark Usuń zakładkę - + <b>Warning: </b>You already have bookmarked this page! <b>Uwaga: </b> Stona znajduję się już w zakładkach! - + Choose name and location of this bookmark. Wybierz nazwę i położenie dla zakładki. - + Add New Bookmark Dodaj zakładkę - + Choose folder for bookmarks: Wybierz katalog dla zakładek: - + Bookmark All Tabs Dodaj wszystkie karty do zakładek @@ -697,20 +693,20 @@ BookmarksModel - - + + Bookmarks In Menu Zakładki w menu - - + + Bookmarks In ToolBar Pasek zakładek - - + + Unsorted Bookmarks Nieposortowane zakładki @@ -746,106 +742,94 @@ BookmarksToolbar - + &Bookmark Current Page Dodaj &do zakładek - + Bookmark &All Tabs Dodaj &wszystkie karty do zakładek - + &Organize Bookmarks &Zarządzaj zakładkami - Hide Most &Visited - Ukryj &najczęściej odwiedzane - - - + Show Most &Visited Zobacz &najczęściej odwiedzane - + Show Only Icons Pokaż tylko Ikony - + &Hide Toolbar Ukry&j pasek - + Move right Przesuń w prawo - + Move left Przesuń w lewo - + Edit bookmark Edytuj zakładkę - + Remove bookmark Usuń zakładkę - + Edit bookmark: Edytuj zakładkę: - + Title: Tytuł: - + Url: Adres: - + Edit Bookmark Edytuj zakładkę - + Most visited Najczęściej odwiedzane - + Sites you visited the most Strony które często odwiedzasz - - + + Empty Pusto BookmarksWidget - - Edit This Bookmark - Edytuj tą zakładkę - - - Remove Bookmark - Usuń zakładkę - Name: @@ -876,27 +860,11 @@ Add to Bookmarks Dodaj do zakładek - - Add into Bookmarks - Dodaj do zakładek - - - Add into Speed Dial - Dodaj do szybkiego wybierania - - - <b>Add Bookmark</b> - <b>Dodaj zakładkę</b> - Edit Bookmark Edytuj zakładkę - - <b>Edit Bookmark</b> - <b>Edycja zakładki</b> - @@ -1117,17 +1085,6 @@ Nie ma więcej dostępnych informacji. - - CloseDialog - - There are still open tabs - Nadal są otwarte karty - - - Don't ask again - Nie pytaj ponownie - - CookieManager @@ -1172,8 +1129,8 @@ - - + + Server: Serwer: @@ -1271,12 +1228,12 @@ Czy na pewno usunąć wszystkie ciasteczka z komputera? - + Add to whitelist Dodaj do białej listy - + Add to blacklist Dodaj do czarnej listy @@ -1453,59 +1410,59 @@ DownloadManager - + Executable: Program: - + Arguments: Argumenty: - + Cannot start external download manager Nie można uruchomić zewnętrznego menedżera pobierania - + Cannot start external download manager! %1 Nie można uruchomić zewnętrznego menedżera pobierania! %1 - + %1% of %2 files (%3) %4 remaining %1% z %2 plików (%3) %4 pozostało - + % - Download Manager % - Menedżer pobierania - + Download Finished Pobieranie ukończone - + All files have been successfully downloaded. Wszystkie pliki pobrano prawidłowo. - + Warning Uwaga - + Are you sure to quit? All uncompleted downloads will be cancelled! Czy na pewno chcesz zamknąć? Wszystkie pobierane pliki będą anulowane! - - + + Download Manager Menedżer pobierania @@ -1649,30 +1606,30 @@ Kopiuj adres - - + + Today Dziś - - + + This Week W tym tygodniu - - + + This Month W tym miesiącu - + Confirmation Potwierdź - + Are you sure to delete all history? Czy na pewno chcesz usunąć całą historię? @@ -1680,72 +1637,67 @@ HistoryModel - - Failed loading page - Błąd ładowania strony - - - + No Named Page Strona bez nazwy - + January Styczeń - + February Luty - + March Marzec - + April Kwiecień - + May Maj - + June Czerwiec - + July Lipiec - + August Sierpień - + September Wrzesień - + October Październik - + November Listopad - + December Grudzień @@ -1779,19 +1731,19 @@ - + Today Dzisiaj - + This Week W tym tygodniu - + This Month W tym miesiącu @@ -1818,17 +1770,17 @@ Wpisz adres URL lub szukaj na %1 - + Paste And &Go Wklej i &przejdź - + Clear All Wyczyść wszystko - + .co.uk Append domain name on ALT + Enter = Should be different for every country .pl @@ -1839,58 +1791,47 @@ Pokaż informacje o stronie - - MainApplication - - Last session crashed - Ostatnia sesja uległa awarii - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla uległa awarii :-(</b><br/>Oops, ostatnia sesja QupZilli niespodziewanie zakończyła się błędem. Przepraszamy za to. Czy przywrócić ostatnia sesję? - - NavigationBar - + No Named Page Strona bez nazwy - + Back Wstecz - + Forward Dalej - + Home Strona startowa - + New Tab Nowa karta - + Main Menu Menu główne - - + + Exit Fullscreen Zamknij pełny ekran - - + + Clear history Usuń historię @@ -1980,14 +1921,10 @@ Obrazek strony - + Save Page Screen... Zapisz obraz strony... - - screen.png - ekran.png - PluginsList @@ -2006,10 +1943,6 @@ Settings Ustawienia - - Load Plugins - Ładuj wtyczki - WebKit Plugins @@ -2046,22 +1979,22 @@ Pozwól na Click To Flash - + Add site to whitelist Dodaj stronę do białej listy - + Server without http:// (ex. youtube.com) Serwer bez http:// (np. youtube.com) - + Error! Błąd! - + Cannot load extension! Nie ładuj rozszerzeń ! @@ -2096,10 +2029,6 @@ Downloads Pobieranie - - Plugins - Wtyczki - Open blank page @@ -2208,7 +2137,7 @@ Włącz pamięć podręczną dysku - + <b>Cookies</b> <b>Ciasteczka</b> @@ -2278,106 +2207,106 @@ 50 MB - + Allow local storage of HTML5 web content Włącz magazym lokalny dla zawartości HTML5 - + Delete locally stored HTML5 web content on close FIXME Wyczyść magazym lokalny z zawartością HTML5 przy zamykaniu - + Delete now Wyczyść teraz - + Ask everytime for download location Zawsze pytaj gdzie zapisać pobierane - + Use defined location: Użyj określonej lokalizacji: - - - + + + ... ... - + <b>External download manager</b> <b>Zewnętrzny menedżer pobierania</b> - + Use external download manager Używaj zewnętrznego menedżera pobierania - + Executable: Program: - + Arguments: Argumenty: - + Filter tracking cookies Filtruj śledźące ciasteczka - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Uwaga:</b> Włączenie opcji dokładnego dopasowania domeny i filtrowania śledzącego ciasteczka może doprowadzić do blokowania niektórych ciasteczek. Jeśli wystąpią z nimi problemy, spróbuj wyłączyć te opcje! - + <b>SSL Certificates</b> <b>Certyfikaty SSL</b> - + Edit CA certificates in SSL Manager Edytuj certyfikaty CA w menedżerze SSL - - + + <b>Other</b> <b>Inne</b> - + Send Referer header to servers Wysyłaj nagłówek odsyłający do serwerów - + Block popup windows Blokuj wyskakujące okna - + Languages Języki - + <b>Preferred language for web sites</b> <b>Język preferowany dla stron</b> - + Change browser identification: Zmień identyfikację przeglądarki: @@ -2396,10 +2325,6 @@ Allow JAVA Pozwól uruchamiać JAVA - - Allow Plugins (Flash plugin) - Uruchamiaj wtyczki (Flash plugin) - Maximum pages in cache: @@ -2411,12 +2336,12 @@ Menedżer haseł - + <b>AutoFill options</b> <b>Opcje autouzupełniania</b> - + Allow saving passwords from sites Pozwól na zapisywanie haseł dla stron @@ -2432,7 +2357,7 @@ - + Note: You cannot delete active profile. Notka: Nie można usunąć aktywnego profilu. @@ -2457,7 +2382,7 @@ Włącz DNS Prefetch - + JavaScript can access clipboard JavaScript może uzyskać dostęp do schowka @@ -2479,7 +2404,7 @@ Drukuj element tła - + Send Do Not Track header to servers Wysyłaj serwerom nagłówek Do Not Track @@ -2586,227 +2511,222 @@ Lokalna przestrzeń dyskowa - + Proxy Configuration Ustawienia proxy - + System proxy configuration Ustawienia systemowe - + <b>Exceptions</b> <b>Rozszerzenia</b> - + Server: Serwer: - + Use different proxy for https connection Użyj innego proxy dla połączeń https - + <b>Font Families</b> <b>Rodzaje czcionek</b> - + Standard Standardowa - + Fixed Proporcjonalna - + Serif Szeryfowa - + Sans Serif Bezszeryfowa - + Cursive Kursywa - + Fantasy Fantazyjna - + <b>Font Sizes</b> <b>Rozmiary czcionek</b> - + Fixed Font Size Rozmiar czcionki proporcjonalnej - + Default Font Size Rozmiar czcionki domyślnej - + Minimum Font Size Minimalny rozmiar czcionki - + Minimum Logical Font Size Minimalny logiczny rozmiar czcionki - + <b>Download Location</b> <b>Lokalizacja dla pobierania</b> - + <b>Download Options</b> <b>Opcje pobierania</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Użyj systemowych okien dialogowych (może powodować problemy z pobieraniem treści zabezpieczonych protokołem SSL) - + Close download manager when downloading finishes Zamknij menedżer pobierania po ukończeniu pobierania - + Allow storing of cookies Pozwól na zapisywanie ciasteczek - + Delete cookies on close Usuń ciasteczka przy zamykaniu przeglądarki - + Match domain exactly Dokładnie dopasowuj domeny - + Cookies Manager Menedżer ciasteczek - + <b>Notifications</b> <b>Powiadomienia</b> - + Use OSD Notifications Użyj powiadomień OSD - + Use Native System Notifications (Linux only) Użyj natywnych powiadomień systemowych (tylko Linux) - + Do not use Notifications Nie pokazuj powiadomień - + Expiration timeout: Czas do wygaśnięcia: - + seconds sekund - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Uwaga: </b>Możesz zmienić położenie powiadomień OSD, przenosząc je po ekranie. - + StyleSheet automatically loaded with all websites: Styl automatycznie ładowany z wszystkimi stronami: - + Do not use proxy Nie używaj proxy - + Manual configuration Konfiguracja ręczna - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Port: - - + + Username: Nazwa użytkownika: - - + + Password: Hasło: - + Don't use on: Nie używaj dla: - Allow storing web icons - Pozwól przechowywać ikony witryn - - - Allow saving history Pozwól zapisywać historię - + Delete history on close Usuń historię przy zamykaniu przeglądarki @@ -2827,7 +2747,7 @@ Dodaj domenę .pl po naciśnięciu klawisza ALT - + SSL Manager Menedżer SSL @@ -2842,68 +2762,68 @@ Aby zmienić język należy uruchomić ponownie przeglądarke. - + OSD Notification Powiadomienia OSD - + Drag it on the screen to place it where you want. Przenieś to w miejsce które chcesz. - + Choose download location... Wybierz miejsce pobierania... - + Choose stylesheet location... Wybierz położenie stylu... - + Deleted Wyczyszczono - + Choose executable location... Wybierz program... - + New Profile Nowy profil - + Enter the new profile's name: Wpisz nową nazwe profilu: - - + + Error! Błąd! - + This profile already exists! Taki profil już istnieje! - + Cannot create profile directory! Nie można utworzyć katalogu profilu! - + Confirmation Potwierdzenie - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Czy jesteś pewny że chcesz usunąć profil "%1"? Akcji ten nie będzie można cofnąć! @@ -2961,16 +2881,6 @@ QupZilla - - - Bookmarks - Zakładki - - - - History - Historia - Quit @@ -2992,27 +2902,27 @@ Adres IP aktualnej strony - + QupZilla QupZilla - + &Tools &Narzędzia - + &Help &Pomoc - + &Bookmarks &Zakładki - + Hi&story Hi&storia @@ -3022,12 +2932,12 @@ &Plik - + Last session crashed Ostatnia sesja uległa awarii - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla uległa awarii :-(</b><br/>Oops, ostatnia sesja QupZilli niespodziewanie zakończyła się błędem. Przepraszamy za to. Czy przywrócić ostatnia sesję? @@ -3112,61 +3022,57 @@ Pasek &statusu - + Toolbars Paski narzędzi - + Sidebars Pasek boczny - + &Page Source Źródło &strony - + Recently Visited Ostatnio odwiedzone - + Most Visited Najczęściej odwiedzane - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Nadal jest otwarta %1 liczba kart które nie zostaną zapisane. Czy na pewno chcesz zamknąć QupZille? - + Don't ask again Nie pytaj ponownie - + There are still open tabs Nadal są otwarte karty - + &Home &Strona startowa - + Information about application Informacje o aplikacji - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Nadal jest otwarte %1 kart a twoja sesja nie zostanie zapisana. Czy napewno chcesz wyłączyć QupZillę? - &Menu Bar @@ -3193,17 +3099,17 @@ Czy na pewno chcesz zamknąć QupZille? Kodo&wanie znaków - + Zoom &In Po&większ - + Zoom &Out Po&mniejsz - + Reset Resetuj @@ -3228,62 +3134,57 @@ Czy na pewno chcesz zamknąć QupZille? &Drukuj... - + Web In&spector Web In&spektor - + Configuration Information Informacje o konfiguracji - + Other Inne - - Default - Domyślne - - - + %1 - QupZilla %1 - QupZilla - + HTML files Pliki HTML - + Image files Obrazki - + Text files Pliki tekstowe - + All files Wszystkie pliki - + Current cookies cannot be accessed. Aktualne ciasteczka nie są dostępne. - + Your session is not stored. Twoja sesja nie jest przechowywana. - + Start Private Browsing Uruchom tryb prywatny @@ -3293,51 +3194,51 @@ Czy na pewno chcesz zamknąć QupZille? Przeglądanie w trybie prywatnym jest włączone - + Restore &Closed Tab Przywróć zamknięte &karty - - - - - + + + + + Empty Pusty - + Bookmark &This Page Dodaj &stronę do zakładek - + Bookmark &All Tabs Dodaj &wszystkie karty do zakładek - + Organize &Bookmarks &Zarządzaj zakładkami - + &Back &Wstecz - + &Forward &Dalej - + Show &All History Pokaż całą &historię - + Closed Tabs Zamknięte karty @@ -3347,22 +3248,22 @@ Czy na pewno chcesz zamknąć QupZille? Zapisz obraz strony - + (Private Browsing) (Tryb prywatny) - + Restore All Closed Tabs Przywróć wszystkie zamknięte karty - + Clear list Wyczyść listę - + About &Qt O &Qt @@ -3372,47 +3273,47 @@ Czy na pewno chcesz zamknąć QupZille? &O QupZilli - + Report &Issue Zgłoś &błąd - + &Web Search Szukaj w &sieci - + Page &Info &Informacje o stronie - + &Download Manager Menedżer &pobierania - + &Cookies Manager Menedżer &ciasteczek - + &AdBlock &AdBlock - + RSS &Reader &Czytnik RSS - + Clear Recent &History Wyczyść &historię - + &Private Browsing Tryb &prywatny @@ -3422,27 +3323,27 @@ Czy na pewno chcesz zamknąć QupZille? Us&tawienia - + Open file... Otwórz plik... - + Are you sure you want to turn on private browsing? Czy na pewno chcesz włączyć tryb prywatny? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Kiedy tryb prywatny jest włączony, niektóre działania naruszające twoją prywatność będą wyłączone: - + Webpages are not added to the history. Strony internetowe nie są dodawane do historii. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Do zamknięcia okna, możesz używać Wstecz i Dalej aby powrócić do stron jakie miałeś otwarte. @@ -3518,18 +3419,18 @@ Czy na pewno chcesz zamknąć QupZille? O QupZilli - - + + Configuration Information Informacje Konfiguracji - + Browser Identification Identyfikator przeglądarki - + Paths Ścieżki @@ -3540,112 +3441,108 @@ Czy na pewno chcesz zamknąć QupZille? - + Version Wersja - + WebKit version Wersja WebKit - + Application version Wersja programu - + Qt version Wersja Qt - + Build time Zbudowana - + Platform Platforma - + Profile Profil - + Preferences Ustawienia - + Build Configuration Build Configuration - + Option Opcje - + Value Wartość - + Extensions Rozszerzenia - + Name Imię - + Author Autor - + Description Opis - + Settings Ustawienia - + Saved session Zapisana sesja - + Pinned tabs Przypięte karty - + Data Data - + Themes Motywy - Plugins - Wtyczki - - - + Translations Tłumaczenia @@ -3670,156 +3567,148 @@ Czy na pewno chcesz zamknąć QupZille? Tłumacze - + Speed Dial Speed Dial - + Add New Page Dodaj Nową Stronę - + Apply Potwierdź - + Close Zamknij - + Speed Dial settings Ustawienia szybkiego wybierania - + Placement: Położenie: - + Auto Auto - + Cover Zmieść - + Fit Dopasuj - + Fit Width Dopasuj szerokość - + Fit Height Dopasuj wysokość - + Use background image Użyj obrazu tła - + Select image Wybierz obraz - + Maximum pages in a row: Maksymalna ilość stron w wierszu: - + Change size of pages: Zmień rozmiar miniatur: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Strona zawiera informacje o bieżącej konfiguracji QupZilli - przydatne podczas rozwiązywania problemów. Należy dołączyć je do wysyłanego raportu z opisem błędu. - + No available extensions. Brak dostępnych rozszerzeń. - - + + Disabled Wyłącz - - - - - + + + + + <b>Enabled</b> <b>Włącz</b> - + Debug build Debug build - + WebGL support Działanie WebGL - + Windows 7 API Windows 7 API - + KDE integration Integracja z KDE - + Portable build Portable - + Load title from page Pobierz tytuł ze strony - + Edit Edytuj - + Remove Usuń - - E-mail is optional<br/><b>Note: </b>Please use English language only. - E-mail jest opcjonalny<br/><b>Notka: </b>Proszę używać jedynie języka angielskiego. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Jeśli doświadczasz problemów z QupZilla spróbuj najpierw wyłączyć wszystkie wtyczki. <br />Jeśli problem nadal występuje, zgłoś go przy użyciu poniższego formularza: - Please fill out all required fields! @@ -3827,27 +3716,27 @@ Czy na pewno chcesz zamknąć QupZille? - + Information about version Informacje o wersji - + Reload Odśwież - + Url Adres - + Title Tytuł - + New Page Nowa strona @@ -3985,12 +3874,12 @@ Dodawaj kanały klikając na ikonę RSS pasku nawigacyjnym. Dodaj kanał RSS z tej strony - + Untitled feed Kanał bez tytułu - + Add Dodaj @@ -4198,12 +4087,14 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi SideBar - + + Bookmarks Zakładki - + + History Historia @@ -4482,10 +4373,6 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Paste Wklej - - Delete - Usuń - Select All @@ -4607,7 +4494,7 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi SqueezeLabelV2 - + Copy Kopiuj @@ -4738,22 +4625,22 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi TabbedWebView - + Failed loading page Błąd wczytywania strony - + Loading... Wczytywanie... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Zbadaj element @@ -4780,10 +4667,6 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi License Licencja - - License Viewer - Podgląd licencji - ToolButton @@ -4828,148 +4711,144 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Aby wyświetlić tę stronę, QupZilla musi wysłać ponownie żądanie do serwera (jak wyszukiwanie czy kupowanie czegoś, co zostało już zrobione.) - + Confirm form resubmission Potwierdź ponowne przesłanie formularza - + Select files to upload... Wybierz pliki do wysłania... - + Server refused the connection Serwer odrzucił połączenie - + Server closed the connection Serwer przerwał połączenie - + Server not found Serwer nie znaleziony - + Connection timed out Przekroczono limit czasu połączenia - + Untrusted connection Niezaufane połączenie - + Temporary network failure Chwilowy błąd sieci - + Proxy connection refused Połączenie proxy przerwane - + Proxy server not found Nie znaleziono serwera proxy - + Proxy connection timed out Przekroczono limit czasu połączenia proxy - + Proxy authentication required Wymagana aututentykacja proxy - + Content not found Zawartość nie znaleziona - + Unknown network error Nieznany błąd połączenia - + AdBlocked Content AdBlock zablokował - + Blocked by rule <i>%1</i> Zablokowano regułą <i>%1</i> - + Content Access Denied Dostęp zablokowany - + Error code %1 Kod błędu %1 - + Failed loading page Błąd ładowania strony - + QupZilla can't load page from %1. QupZilla nie może załadować strony z serwera %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Sprawdź czy adres został wpisnay poprawnie, gdzie zamiast np. <b>ww.</b>serwer.pl powinno być <b>www.</b>serwer.pl - + If you are unable to load any pages, check your computer's network connection. Jeśli nie możesz otworzyć żadnej strony, sprawdź swoje połączenie z internetem. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Jeśli twój komputer lub sieć jest zabezpieczona za pomocą firewalla lub proxy, upewnij się że QupZilla ma zezwolenie na dostęp do sieci. - + Try Again Spróbuj ponownie - + JavaScript alert Alarm JavaScript - + Prevent this page from creating additional dialogs Zapobiegaj otwieraniu dodatkowych okien dialogowych na tej stronie - JavaScript alert - %1 - Ostrzeżenie JavaScript - %1 - - - + Choose file... Wybierz plik... @@ -5000,223 +4879,223 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi WebView - + Open link in new &tab O&twórz odnośnik w nowej karcie - + Open link in new &window Ot&wórz odnośnik w nowym oknie - + B&ookmark link D&odaj odnośnik do zakładek - + &Save link as... &Zapisz odnośnik jako... - + &Copy link address &Kopiuj adres odnośnika - + Show i&mage Pokaż o&brazek - + Copy im&age Kopiuj ob&razek - + Copy image ad&dress Kopiuj adres obr&azka - + S&top Za&trzymaj - + Create Search Engine Utwórz Silnik wyszukiwania - + This frame Ta ramka - + Show &only this frame P&okaż tylko tą ramkę - + Show this frame in new &tab Pokaż &tą ramkę w nowej karcie - + Print frame Drukuj ramkę - + Zoom &in Po&większ - + &Zoom out Po&mniejsz - + Reset Resetuj - + Show so&urce of frame Pokaż &źródło ramki - + &Copy page link &Kopiuj odnośnik strony - + Send page link... Wyślij odnośnik strony... - + &Print page &Drukuj stronę - + Validate page Sprawdź poprawność strony - + Show info ab&out site Pokaż &informacje o stronie - + Search with... Szukaj z... - + &Play O&dtwarzaj - + &Pause &Pauza - + Un&mute Włącz &dźwięk - + &Mute &Wycisz - + &Copy Media Address &Kopiuj adres filmu wideo - + &Send Media Address &Wyślij adres filmu wideo - + Save Media To &Disk &Zapisz film wideo na dysk - + &Save image as... &Zapisz obrazek jako... - + &Back &Wstecz - + &Forward &Dalej - - + + &Reload &Odśwież - + Book&mark page Dodaj &stronę do zakładek - + &Save page as... &Zapisz stronę jako... - + Select &all Zaznacz &wszystko - + Show so&urce code Pokaż &kod źródłowy - + Send text... Wyślij tekst... - + Google Translate Tłumacz Google - + Dictionary Słownik - + Go to &web address Przejdź do adresu &www - + Search "%1 .." with %2 Szukaj "%1 .." z %2 @@ -5226,12 +5105,12 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Strona bez nazwy - + Send link... Wyślij odnośnik... - + Send image... Wyślij obrazek... diff --git a/translations/pt_BR.ts b/translations/pt_BR.ts index 778a7d2c1..6e2c30a7c 100644 --- a/translations/pt_BR.ts +++ b/translations/pt_BR.ts @@ -27,10 +27,6 @@ Authors Autores - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Todos os direitos reservados.<br/> - <small>Build time: %1 </small></p> <small>Compilado em: %1 </small></p> @@ -602,10 +598,6 @@ Edit bookmark: Editar favorito: - - Hide Most &Visited - Ocultar mais &visitados - Move right Mover para a direita @@ -673,38 +665,14 @@ Name: Nome: - - Remove Bookmark - Remover Favorito - - - Add into Speed Dial - Adicionar ao acesso rápido - - - Add into Bookmarks - Adicionar aos favoritos - Remove from Speed Dial Remover do acesso rápido - - <b>Edit Bookmark</b> - <b>Editar favoritos</b> - - - Edit This Bookmark - Editar este favorito - Folder: Pasta: - - <b>Add Bookmark</b> - <b>Adicionar favorito</b> - Edit Bookmark Editar Favorito @@ -882,17 +850,6 @@ Apagar objeto - - CloseDialog - - There are still open tabs - Você ainda possui guias abertas - - - Don't ask again - Não perguntar novamente - - CookieManager @@ -1372,10 +1329,6 @@ não foi encontrado! No Named Page Página sem nome - - Failed loading page - Falha ao carregar a página - HistorySideBar @@ -1429,10 +1382,6 @@ não foi encontrado! Add RSS from this page... Adicionar RSS desta página... - - .co.uk - .com.br - Enter URL address or search on %1 Digite aqui o URL, ou então o que você deseja pesquisar no %1 @@ -1451,17 +1400,6 @@ não foi encontrado! .com.br - - MainApplication - - Last session crashed - O navegador foi fechado de forma incorreta - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla travou :/</b><br/>Oops, parece que a última sessão do QupZilla não foi fechada como o planejado. Pedimos mil desculpas por isso. Você deseja que nós tentassemos abrir a última sessão que você estava? - - NavigationBar @@ -1566,10 +1504,6 @@ não foi encontrado! Save Page Screen... Salvar Page Screen... - - screen.png - screen.png - PluginsList @@ -1593,10 +1527,6 @@ não foi encontrado! Allow Application Extensions to be loaded Permitir carregar extensões - - Load Plugins - Carregar plugins - Application Extensions Extensões @@ -1784,10 +1714,6 @@ não foi encontrado! Use external download manager Usar gerenciador de downloads externos - - Allow storing web icons - Permitir armazenar icons da web - Allow saving passwords from sites Permitir salvar senha das páginas @@ -1932,10 +1858,6 @@ não foi encontrado! lines on page linhas na página - - Plugins - Plugins - Minimum Logical Font Size Tamanho mínimo da fonte @@ -2248,10 +2170,6 @@ não foi encontrado! Show Bookmarks ToolBar on start Mostrar barra de favoritos ao iniciar - - Allow Plugins (Flash plugin) - Permitir plugins (Flash) - Select all text by clicking in address bar Selecionar todo o texto ao clicar na barra de endereço @@ -2501,10 +2419,6 @@ não foi encontrado! &Bookmarks &Favoritos - - Bookmarks - Favoritos - Webpages are not added to the history. As páginas web não são adicionadas ao histórico. @@ -2593,10 +2507,6 @@ não foi encontrado! Report &Issue Reportar pro&blema - - Default - Padrão - &Navigation Toolbar Barra de &navegação @@ -2677,18 +2587,10 @@ não foi encontrado! Start Private Browsing Iniciar navegação privada - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Ainda existem %1 guias abertas e a sessão não será gravada. Tem a certeza que deseja sair? - Bookmark &All Tabs M&arcar todos os favoritos - - History - Histórico - Sidebars Barra lateral @@ -2802,10 +2704,6 @@ Você tem certeza que deseja sair do QupZilla? Information about version Informações da versão - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Caso esteja com problemas no QupZilla, tente desativar os plugins. <br/>Se os erros persistirem, preencha este formulário: - Report Issue Reportar problema @@ -2858,10 +2756,6 @@ Você tem certeza que deseja sair do QupZilla? Translations Traduções - - Plugins - Plugins - Profile Perfil @@ -2882,10 +2776,6 @@ Você tem certeza que deseja sair do QupZilla? Start Page Página inicial - - E-mail is optional<br/><b>Note: </b>Please use English language only. - O email é opcional.<br/><b>Observação: </b>Por favor, escreva em Inglês. - Translators Tradutores @@ -3558,10 +3448,6 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici Editable changed Editável alterado - - Delete - Apagar - Error! Erro! @@ -3787,10 +3673,6 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici <b>Name:</b> <b>Nome:</b> - - License Viewer - Visualizador de licença - <b>Description:</b> <b>Descrição:</b> @@ -3847,10 +3729,6 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici Proxy connection refused Conexão de proxy recusada - - JavaScript alert - %1 - Alerta JavaScript - %1 - Confirm form resubmission Confirmar envio de formulário diff --git a/translations/pt_PT.ts b/translations/pt_PT.ts index 347761fde..1d8ea8c7d 100755 --- a/translations/pt_PT.ts +++ b/translations/pt_PT.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>Versão WebKit: %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Todos os direitos reservados.<br/> - <small>Build time: %1 </small></p> @@ -497,40 +493,40 @@ Escolha o ficheiro... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in O Mozilla Firefox guarda os marcadores numa base de dados SQLite em <b>places.sqlite</b>. Este ficheiro costuma estar em - - - - + + + + Please choose this file to begin importing bookmarks. Escolha o ficheiro para iniciar a importação de marcadores. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in O Google Chrome guarda os marcadores no ficheiro de texto <b>Bookmarks</b>. Este ficheiro costuma estar em - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in O Opera guarda os marcadores no ficheiro de texto <b>bookmarks.adr</b>. Este ficheiro costuma estar em - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Pode importar os marcadores de qualquer navegador com suporte a exportação em HTML. Estes ficheiros costumam ter os sufixos - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in O Internet Explorer guarda os marcadores na pasta de <b>Favoritos</b>. Esta pasta costuma estar em - + Please choose this folder to begin importing bookmarks. Escolha esta pasta para iniciar a importação de marcadores. @@ -628,67 +624,67 @@ Escolha o nome da pasta: - + Add Subfolder Adicionar subpasta - + Rename folder Mudar nome da pasta - + Remove folder Remover pasta - + Open link in current &tab Abrir ligação no separador a&tual - + Open link in &new tab Abrir ligação em &novo separador - + Move bookmark to &folder &Mover marcador para a pasta - + Rename bookmark Mudar nome do marcador - + Remove bookmark Remover marcador - + <b>Warning: </b>You already have bookmarked this page! <b>Aviso: </b>esta página já existe nos marcadores! - + Choose name and location of this bookmark. Escolha o nome e a localização deste marcador. - + Add New Bookmark Adicionar novo marcador - + Choose folder for bookmarks: Escolha a pasta dos marcadores: - + Bookmark All Tabs Marcar todos os separadores @@ -696,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Marcadores no menu - - + + Bookmarks In ToolBar Marcadores na barra de ferramentas - - + + Unsorted Bookmarks Marcadores não organizados @@ -745,106 +741,94 @@ BookmarksToolbar - + &Bookmark Current Page &Marcar a página atual - + Bookmark &All Tabs M&arcar todos os separadores - + &Organize Bookmarks &Organizar marcadores - Hide Most &Visited - Ocultar mais &visitados - - - + Show Most &Visited Mostrar mais &visitados - + Show Only Icons Só ícones - + &Hide Toolbar O&cultar barra de ferramentas - + Move right Mover para a direita - + Move left Mover para a esquerda - + Edit bookmark Editar marcador - + Remove bookmark Remover marcador - + Edit bookmark: Editar marcador: - + Title: Título: - + Url: Url: - + Edit Bookmark Editar marcador - + Most visited Mais visitados - + Sites you visited the most As páginas mais visitadas - - + + Empty Vazio BookmarksWidget - - Edit This Bookmark - Editar este marcador - - - Remove Bookmark - Remover marcador - Name: @@ -875,27 +859,11 @@ Add to Bookmarks Adicionar aos marcadores - - Add into Bookmarks - Adicionar aos marcadores - - - Add into Speed Dial - Adicionar à ligação rápida - - - <b>Add Bookmark</b> - <b>Adicionar marcador</b> - Edit Bookmark Editar marcador - - <b>Edit Bookmark</b> - <b>Editar marcador</b> - @@ -1115,17 +1083,6 @@ Não existem mais informações. - - CloseDialog - - There are still open tabs - Ainda existem separadores abertos - - - Don't ask again - Não perguntar novamente - - CookieManager @@ -1170,8 +1127,8 @@ - - + + Server: Servidor: @@ -1269,12 +1226,12 @@ Tem a certeza que pretende remover todos os cookies? - + Add to whitelist Adicionar à lista de permissões - + Add to blacklist Adicionar à lista de rejeições @@ -1452,8 +1409,8 @@ não foi encontrado! DownloadManager - - + + Download Manager Gestor de transferências @@ -1463,52 +1420,52 @@ não foi encontrado! Apagar - + Executable: Executável: - + Arguments: Argumentos: - + Cannot start external download manager Incapaz de iniciar o gestor de transferências externo - + Cannot start external download manager! %1 Incapaz de iniciar o gestor de transferências externo! %1 - + %1% of %2 files (%3) %4 remaining %1% de %2 ficheiros - restam (%3) %4 - + % - Download Manager %s - Gestor de transferências - + Download Finished Transferência concluída - + All files have been successfully downloaded. Todos os ficheiros foram transferidos com sucesso. - + Warning Aviso - + Are you sure to quit? All uncompleted downloads will be cancelled! Tem a certeza que pretende sair? As transferência não concluídas serão canceladas! @@ -1647,30 +1604,30 @@ não foi encontrado! Copiar endereço - - + + Today Hoje - - + + This Week Esta semana - - + + This Month Este mês - + Confirmation Confirmação - + Are you sure to delete all history? Tem a certeza que pretende eliminar o histórico? @@ -1678,72 +1635,67 @@ não foi encontrado! HistoryModel - - Failed loading page - Falha ao carregar a página - - - + No Named Page Página sem nome - + January janeiro - + February fevereiro - + March março - + April abril - + May maio - + June junho - + July julho - + August agosto - + September setembro - + October outubro - + November novembro - + December dezembro @@ -1777,19 +1729,19 @@ não foi encontrado! - + Today Hoje - + This Week Esta semana - + This Month Este mês @@ -1815,17 +1767,17 @@ não foi encontrado! Indique o URL ou procure em %1 - + Paste And &Go Colar e &ir - + Clear All Apagar tudo - + .co.uk Append domain name on ALT + Enter = Should be different for every country .pt @@ -1836,58 +1788,47 @@ não foi encontrado! Mostrar informações desta página - - MainApplication - - Last session crashed - A última sessão terminou abruptamente - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>A última sessão do QupZilla terminou abruptamente :-(</b><br/> Pedimos desculpa pelo ocorrido. Pretende que o QupZilla tente restaurar a última sessão? - - NavigationBar - + No Named Page Página sem nome - + Back Recuar - + Forward Avançar - + Home Página inicial - + New Tab Novo separador - + Main Menu Menu principal - - + + Exit Fullscreen Sair de ecrã completo - - + + Clear history Apagar histórico @@ -1976,14 +1917,10 @@ não foi encontrado! Ecrã da página - + Save Page Screen... Gravar ecrã da página... - - screen.png - screen.png - PluginsList @@ -2002,10 +1939,6 @@ não foi encontrado! Settings Definições - - Load Plugins - Carregar plugins - WebKit Plugins @@ -2042,22 +1975,22 @@ não foi encontrado! Permitir ClickToFlash - + Add site to whitelist Adicionar página à lista de permissões - + Server without http:// (ex. youtube.com) Servidor sem http:// (ex. youtube.com) - + Error! Erro! - + Cannot load extension! Incapaz de carregar extensão! @@ -2156,7 +2089,7 @@ não foi encontrado! - + Note: You cannot delete active profile. Nota: não pode eliminar o perfil ativo. @@ -2261,7 +2194,7 @@ não foi encontrado! Ativar o último separador ao fechar o separador ativo - + Change browser identification: Alterar identificação do navegador: @@ -2316,32 +2249,28 @@ não foi encontrado! Open new tabs after active tab Abrir separadores após o atual - - Allow Plugins (Flash plugin) - Permitir plugins (Flash) - Allow DNS Prefetch Permitir obtenção prévia de DNS - + Allow local storage of HTML5 web content Permitir armazenamento local de conteúdo HTML5 - + Delete locally stored HTML5 web content on close Eliminar conteúdo HTML5 ao fechar o navegador - + JavaScript can access clipboard Os JavaScripts podem aceder à área de transferência - + Send Do Not Track header to servers Enviar aos servidores uma notificação de não monitorização @@ -2435,319 +2364,314 @@ não foi encontrado! - Allow storing web icons - Permitir armazenamento dos ícones web - - - Allow saving history Permitir gravação do histórico - + Delete history on close Eliminar histórico ao fechar - + Delete now Eliminar agora - + Proxy Configuration Configuração de proxy - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Porta: - - + + Username: Utilizador: - - + + Password: Senha: - + Don't use on: Não utilizar em: - + Manual configuration Configuração manual - + System proxy configuration Proxy do sistema - + Do not use proxy Não utilizar proxy - + <b>Exceptions</b> <b>Exceções</b> - + Server: Servidor: - + Use different proxy for https connection Utilizar proxy distinta para ligações https - + <b>Font Families</b> <b>Famílias de letras</b> - + Standard Padrão - + Fixed Fixa - + Serif Serif - + Sans Serif Sans Serif - + Cursive Cursiva - + <b>External download manager</b> <b>Gestor de transferências externo</b> - + Use external download manager Utilizar gestor de transferências externo - + Executable: Executável: - + Arguments: Argumentos: - + Filter tracking cookies Filtrar cookies de rastreio - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Aviso:</b> as opções Coincidente com domínio e Filtrar cookies de rastreio podem recusar alguns cookies das páginas visitadas. Se ocorrem problemas, tente desativar estas opções! - + Fantasy Fantasia - + <b>Font Sizes</b> <b>Tamanho do tipo de letra</b> - + Fixed Font Size Tamanho das letras fixas - + Default Font Size Tamanho padrão das letras - + Minimum Font Size Tamanho mínimo das letras - + Minimum Logical Font Size Tamanho mínimo lógico das letras - + <b>Download Location</b> <b>Localização das transferências</b> - + Ask everytime for download location Perguntar sempre - + Use defined location: Utilizar esta localização: - - - + + + ... ... - + <b>Download Options</b> <b>Opções de transferências</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Utilizar caixa de diálogo do sistema (pode interferir na transferência de conteúdo seguro SSL) - + Close download manager when downloading finishes Fechar gestor de transferências ao terminar - + <b>AutoFill options</b> <b>Preenchimento automático</b> - + Allow saving passwords from sites Permitir gravação de senhas das páginas - + <b>Cookies</b> <b>Cookies</b> - + Allow storing of cookies Permitir armazenamento de cookies - + Delete cookies on close Eliminar cookies ao fechar - + Match domain exactly Coincidente com domínio - + Cookies Manager Gestor de cookies - + <b>SSL Certificates</b> <b>Certificados SSL</b> - + SSL Manager Gestor SSL - + Edit CA certificates in SSL Manager Editar certificados no gestor SSL - - + + <b>Other</b> <b>Outros</b> - + Send Referer header to servers Enviar endereço para os servidores - + Block popup windows Bloquear janelas emergentes - + <b>Notifications</b> <b>Notificações</b> - + Use OSD Notifications Utilizar notificações - + Use Native System Notifications (Linux only) Utilizar notificações do sistema (só para Linux) - + Do not use Notifications Não utilizar notificações - + Expiration timeout: Terminam em: - + seconds segundos - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Nota: </b>pode alterar a posição da notificação arrastando-a pelo ecrã. @@ -2767,17 +2691,17 @@ não foi encontrado! Para utilizar o idioma, tem que reiniciar o navegador. - + StyleSheet automatically loaded with all websites: A stylesheet a carregar automaticamente nas páginas web: - + Languages Idiomas - + <b>Preferred language for web sites</b> <b>Idioma preferencial para páginas web</b> @@ -2826,78 +2750,74 @@ não foi encontrado! Notifications Notificações - - Plugins - Plugins - Other Outras - + OSD Notification Notificação - + Drag it on the screen to place it where you want. Arraste a notificação no ecrã para a posicionar. - + Choose download location... Escolha a localização das transferências... - + Choose stylesheet location... Escolha a localização da stylesheet... - + Deleted Eliminado - + Choose executable location... Escolha a localização do executável... - + New Profile Novo perfil - + Enter the new profile's name: Indique o nome do novo perfil: - - + + Error! Erro! - + This profile already exists! Este perfil já existe! - + Cannot create profile directory! Incapaz de criar o diretório do perfil! - + Confirmation Confirmação - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Tem a certeza que pretende eliminar o perfil "%1" permanentemente? Esta ação não pode ser anulada! @@ -2966,22 +2886,22 @@ não foi encontrado! Endereço IP da página atual - + &Tools Ferramen&tas - + &Help Aj&uda - + &Bookmarks &Marcadores - + Hi&story Hi&stórico @@ -3091,17 +3011,17 @@ não foi encontrado! Pr&eferências - + QupZilla QupZilla - + Last session crashed A última sessão terminou abruptamente - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>A última sessão do QupZilla terminou abruptamente :-(</b><br/> Pedimos desculpa pelo ocorrido. Pretende restaurar a última sessão? @@ -3157,162 +3077,152 @@ não foi encontrado! - Bookmarks - Marcadores - - - - History - Histórico - - - Toolbars Barras de ferramentas - + Sidebars Barra lateral - + Zoom &In Ampl&iar - + Zoom &Out Red&uzir - + Reset Restaurar - + &Page Source Código fonte da &página - + Closed Tabs Separadores fechados - + Recently Visited Recentes - + Most Visited Mais visitados - + Web In&spector In&spetor web - + Configuration Information Informações da configuração - + Restore &Closed Tab Restaurar separador fe&chado - + (Private Browsing) (Navegação privada) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Ainda existem %1 separadores abertos e a sessão não será gravada. Tem a certeza que pretende sair? - + Don't ask again Não perguntar novamente - + There are still open tabs Ainda existem separadores abertos - + Bookmark &This Page Marcar es&ta página - + Bookmark &All Tabs M&arcar todos os separadores - + Organize &Bookmarks Organizar &marcadores - - - - - + + + + + Empty Vazio - + &Back &Recuar - + &Forward &Avançar - + &Home Pági&na inicial - + Show &All History Mostr&ar todo o histórico - + Restore All Closed Tabs Restaurar todos os separadores fechados - + Clear list Apagar lista - + About &Qt Sobre &Qt - + Information about application Informações da aplicação - + %1 - QupZilla %1 - QupZilla @@ -3322,124 +3232,115 @@ Are you sure to quit QupZilla? Sobre QupZill&a - + Report &Issue Reportar pro&blema - + &Web Search Procura &web - + Page &Info &Informações da página - + &Download Manager Gestor &de transferências - + &Cookies Manager Gestor de &cookies - + &AdBlock &Adblock - + RSS &Reader Leitor &RSS - + Clear Recent &History Apagar &histórico recente - + &Private Browsing Navegação &privada - + Other Outras - - Default - Padrão - - - + HTML files Ficheiros HTML - + Image files Imagens - + Text files Ficheiros de texto - + All files Todos os ficheiros - + Open file... Abrir ficheiro... - + Are you sure you want to turn on private browsing? Tem a certeza que pretende ativar a navegação privada? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Se a navegação privada estiver ativa, alguns elementos de privacidade estarão inativos: - + Webpages are not added to the history. As páginas web não são adicionadas ao histórico. - + Current cookies cannot be accessed. Os cookies atuais não estarão acessíveis. - + Your session is not stored. A sua sessão não pode ser gravada. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. No entanto, enquanto não fechar a janela pode utilizar os botões Recuar e Avançar para voltar às páginas abertas anteriormente. - + Start Private Browsing Iniciar navegação privada - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Ainda existem %1 separadores abertos e a sessão não será gravada. Tem a certeza que pretende sair? - You have successfully added RSS feed "%1". @@ -3512,23 +3413,23 @@ Are you sure to quit QupZilla? Sobre QupZilla - - + + Configuration Information Informações da configuração - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Esta página contém as informações sobre a atual configuração do Qupzilla (úteis para resolução de problemas). Inclua estas informações nos seus relatórios de erros. - + Browser Identification Identificação do navegador - + Paths Caminhos @@ -3539,107 +3440,103 @@ Are you sure to quit QupZilla? - + Version Versão - + WebKit version Versão WebKit - + Application version Versão da aplicação - + Qt version Versão Qt - + Build time Compilado - + Platform Plataforma - + Profile Perfil - + Preferences Preferências - + Build Configuration Configuração da compilação - + Option Opção - + Value Valor - + Name Nome - + Author Autor - + Description Descrição - + Settings Definições - + Saved session Sessão gravada - + Pinned tabs Separadores fixos - + Data Dados - + Themes Temas - Plugins - Plugins - - - + Translations Traduções @@ -3664,156 +3561,148 @@ Are you sure to quit QupZilla? Tradutores - + Speed Dial Ligação rápida - + Add New Page Adicionar nova página - + Apply Aplicar - + Close Fechar - + Speed Dial settings Definições da ligação rápida - + Placement: Posicionamento: - + Auto Automático - + Cover - + Fit Ajustar - + Fit Width Ajustar à largura - + Fit Height Ajustar à altura - + Use background image Utilizar imagem de fundo - + Select image Selecione a imagem - + Maximum pages in a row: Máximo de páginas por linha: - + Change size of pages: Alterar tamanho das páginas: - + Extensions Extras - - + + Disabled Inativas - - - - - + + + + + <b>Enabled</b> <b>Ativas</b> - + Debug build Compilação de depuração - + WebGL support Suporte WebGL - + Windows 7 API API Windows 7 - + KDE integration Integração KDE - + Portable build Compilação portátil - + No available extensions. Sem extras disponíveis. - + Load title from page Carregar título da página - + Edit Editar - + Remove Remover - - E-mail is optional<br/><b>Note: </b>Please use English language only. - O endereço eletrónico é opcional.<br/><b>Nota: </b>tem que escrever a mensagem em inglês. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Se estiverem a ocorrer problemas no QupZilla, experimente desativar os plugins. <br/>Se os erros persistirem, preencha este formulário: - Please fill out all required fields! @@ -3821,27 +3710,27 @@ Are you sure to quit QupZilla? - + Information about version Informações da versão - + Reload Recarregar - + Url Url - + Title Título - + New Page Nova página @@ -3979,12 +3868,12 @@ Adicione as fontes com o ícone RSS existente na barra de navegação, nas pági Adicionar fontes RSS desta página - + Untitled feed Fonte sem título - + Add Adicionar @@ -4192,12 +4081,14 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup SideBar - + + Bookmarks Marcadores - + + History Histórico @@ -4475,10 +4366,6 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Paste Colar - - Delete - Eliminar - Select All @@ -4600,7 +4487,7 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup SqueezeLabelV2 - + Copy Copiar @@ -4731,22 +4618,22 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup TabbedWebView - + Failed loading page Falha ao carregar a página - + Loading... A carregar... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspecionar elemento @@ -4773,10 +4660,6 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup License Licença - - License Viewer - Visualizador de licença - ToolButton @@ -4821,148 +4704,144 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Para mostrar esta página, o QupZilla tem que reenviar o pedido solicitado. (tal como fazer algo que já foi feito.) - + Confirm form resubmission Confirmar novo envio de formulário - + Select files to upload... Selecione os ficheiros a enviar... - + Server refused the connection O servidor recusou a ligação - + Server closed the connection O servidor fechou a ligação - + Server not found Servidor não encontrado - + Connection timed out A ligação expirou - + Untrusted connection Ligação não confiável - + Temporary network failure Falha temporária de rede - + Proxy connection refused Ligação de proxy recusada - + Proxy server not found Servidor proxy não encontrado - + Proxy connection timed out A ligação proxy expirou - + Proxy authentication required Requer autorização de proxy - + Content not found Conteúdo não encontrado - + Unknown network error Erro desconhecido - + AdBlocked Content Conteúdo bloqueado - + Blocked by rule <i>%1</i> Bloqueado pela regra <i>%1</i> - + Content Access Denied Negado o acesso ao conteúdo - + Error code %1 Código de erro %1 - + Failed loading page Falha ao carregar a página - + QupZilla can't load page from %1. O Qupzilla não conseguiu carregar a página %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Verifique se existem erros de inserção como <b>ww.</b>exemplo.com em vez de <b>www.</b>exemplo.com - + If you are unable to load any pages, check your computer's network connection. Se não consegue carregar quaisquer páginas, verifique a ligação de rede. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Se o computador estiver protegido por uma firewall ou proxy, certifique-se que o QupZilla pode aceder à Internet. - + Try Again Tente novamente - + JavaScript alert Alerta JavaScript - + Prevent this page from creating additional dialogs Impedir que esta página crie mais caixas de diálogo - JavaScript alert - %1 - Alerta JavaScript - %1 - - - + Choose file... Escolha o ficheiro... @@ -4993,233 +4872,233 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup WebView - + &Copy page link &Copiar ligação da página - + Send page link... Enviar ligação da página... - + &Print page Im&primir página - + Validate page Validar página - + Send text... Enviar texto... - + Google Translate Google Translate - + Dictionary Dicionário - + Go to &web address Ir para endereço &web - + Open link in new &tab Abrir ligação em novo &separador - + Open link in new &window Abrir ligação em nova &janela - + B&ookmark link Marcar ligaçã&o - + &Save link as... &Gravar ligação como... - + Send link... Enviar ligação... - + &Copy link address &Copiar endereço da ligação - + Show i&mage &Mostrar imagem - + Copy im&age Copi&ar imagem - + Copy image ad&dress Copiar en&dereço da imagem - + &Save image as... &Gravar imagem como... - + Send image... Enviar imagem... - + &Back &Recuar - + Create Search Engine Criar motor de procura - + &Forward &Avançar - - + + &Reload &Recarregar - + S&top Pa&rar - + This frame Esta moldura - + Show &only this frame M&ostrar apenas esta moldura - + Show this frame in new &tab Mostrar es&ta moldura em novo separador - + Print frame Imprimir moldura - + Zoom &in Ampl&iar - + &Zoom out Redu&zir - + Reset Restaurar - + Show so&urce of frame Mostrar código fonte da mold&ura - + Book&mark page &Marcar esta página - + &Save page as... &Gravar página como... - + Search with... Procurar com... - + &Play Re&produzir - + &Pause &Pausa - + Un&mute Co&m som - + &Mute Se&m som - + &Copy Media Address &Copiar endereço multimédia - + &Send Media Address &Enviar endereço multimédia - + Save Media To &Disk Gravar multimédia no &disco - + Select &all Selecion&ar tudo - + Show so&urce code Mos&trar código fonte - + Show info ab&out site Mostrar inf&ormações da página - + Search "%1 .." with %2 Procurar "%1 ..." no %2 diff --git a/translations/ro_RO.ts b/translations/ro_RO.ts index 056fe7af4..e90b445ed 100644 --- a/translations/ro_RO.ts +++ b/translations/ro_RO.ts @@ -27,10 +27,6 @@ <b>WebKit version %1</b></p> <b>Versiune WebKit %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Toate drepturile rezervate.<br/> - <small>Build time: %1 </small></p> <small>Versiune compilată: %1 </small></p> @@ -854,17 +850,6 @@ Nu sunt disponibile alte informații. - - CloseDialog - - There are still open tabs - Încă sunt taburi deschise - - - Don't ask again - Nu întreba din nou - - CookieManager @@ -1292,10 +1277,6 @@ nu a putut fi găsit! HistoryModel - - Failed loading page - Încarcarea paginii a eșuat - No Named Page Pagină fără nume @@ -1419,17 +1400,6 @@ nu a putut fi găsit! Afișează informații desprea această pagină - - MainApplication - - Last session crashed - Ultima sesiune a eșuat - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla a eșuat:-(</b><br/>Oops, ultima sesiune a QupZilla a fost întreruptă in mod neașteptat. Ne cerem scuze pentru asta. Ați dori să incercați să restaurați ultima sesiune? - - NavigationBar @@ -1589,10 +1559,6 @@ nu a putut fi găsit! Error! Eroare! - - Cannot load plugin! - Plugin-ul nu poate fi încărcat! - Cannot load extension! Extensia nu a putut fi încărcată! @@ -1651,10 +1617,6 @@ nu a putut fi găsit! Notifications Notificări - - Plugins - Plugin-uri - Other Altele @@ -1916,10 +1878,6 @@ nu a putut fi găsit! 50 MB 50 MB - - Allow storing web icons - Permite stocarea iconițelor web - Allow saving history Permite stocarea istoricului @@ -2447,14 +2405,6 @@ nu a putut fi găsit! Character &Encoding &Encodarea caracterelor - - Bookmarks - Semne de carte - - - History - Istoric - Toolbars Bare de unelte @@ -2611,10 +2561,6 @@ nu a putut fi găsit! Other Altele - - Default - Implicit - %1 - QupZilla %1 - QupZilla @@ -2651,10 +2597,6 @@ nu a putut fi găsit! Start Private Browsing Pornește navigarea privată - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Mai sunt %1 tab-uri deschise și sesiunea dvs. nu va fi stocată. Sunteți sigur că doriți să închideți QupZilla? - You have successfully added RSS feed "%1". Ați adăugat cu succes feed-ul RSS "%1". @@ -2712,10 +2654,6 @@ Sunteți sigur că doriți să închideți QupZilla? Report Issue Raportează problemă - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Dacă întâmpinați probleme cu QupZilla, vă rugăm încercați să dezactivați toate plugin-urile. <br/>Dacă asta nu remediază problema, vă rugăm cumpletați următorul formular: - Your E-mail E-mail personal @@ -2872,10 +2810,6 @@ Sunteți sigur că doriți să închideți QupZilla? Configuration Information Informații despre configurare - - This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports. - Această pagină contine informații despre configurarea curentă a QupZilla, plugin-uri, etc. toate informațiile relevante pentru remedierea problemelor. Vă rugăm să includeți aceste informații la trimiterea raport-urilor despre bug-uri. - Browser Identification Identificarea browser-ului @@ -2896,10 +2830,6 @@ Sunteți sigur că doriți să închideți QupZilla? Value Valoare - - Plugins - Plugin-uri - Name Nume @@ -2956,10 +2886,6 @@ Sunteți sigur că doriți să închideți QupZilla? Platform Platforma - - No available plugins. - Nu sunt plugin-uri disponibile. - Build Configuration Configurarea compilării @@ -3515,10 +3441,6 @@ După adăugarea sau ștergerea de căi pentru certificate, este necesar să res Paste Lipește - - Delete - Șterge - Select All Selectează tot @@ -3893,10 +3815,6 @@ După adăugarea sau ștergerea de căi pentru certificate, este necesar să res Prevent this page from creating additional dialogs Interzice acestei pagini să deschidă dialoguri noi - - JavaScript alert - %1 - Alertă JavaScript - %1 - Choose file... Alege fișier... diff --git a/translations/ru_RU.ts b/translations/ru_RU.ts index fd8512c57..135342edb 100644 --- a/translations/ru_RU.ts +++ b/translations/ru_RU.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>Версия Webkit %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Все права защищены.<br/> - <small>Build time: %1 </small></p> @@ -499,41 +495,41 @@ Выберите файл... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox хранит закладки в базе данных SQLite <b>places.sqlite</b>. Этот файл обычно расположен в - - - - + + + + Please choose this file to begin importing bookmarks. ? Пожалуйста, укажите расположение этого файла, чтобы начать импорт. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome хранит закладки в текстовом файле <b>Bookmarks</b>. Этот файл обычно расположен в - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera хранит свои закладки в файле <b>bookmarks.adr</b>. Этот файл обычно расположен в - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Вы можете импортировать закладки из любого браузера, который поддерживает HTML экспорт.Этот файл обычно использует это расширение - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer хранит закладки в папке <b>Избранное</b>. Эта папка обычно расположена в - + Please choose this folder to begin importing bookmarks. Пожалуйста, выберите эту папку, чтобы начать импорт. @@ -631,67 +627,67 @@ Введите имя для папки: - + Add Subfolder Добавить вложенную папку - + Rename folder Переименовать папку - + Remove folder Удалить папку - + Open link in current &tab Открыть ссылку в &текущей вкладке - + Open link in &new tab Открыть ссылку в &новой вкладке - + Move bookmark to &folder Переместить закладку в &папку - + Rename bookmark Переименовать закладку - + Remove bookmark Удалить закладку - + <b>Warning: </b>You already have bookmarked this page! <b>Внимание: </b>Вы уже добавили эту страницу в закладки! - + Choose name and location of this bookmark. Выберите имя и папку для этой закладки. - + Add New Bookmark Добавить закладку - + Choose folder for bookmarks: Выберите папку для закладок: - + Bookmark All Tabs Закладки для всех открытых страниц @@ -699,20 +695,20 @@ BookmarksModel - - + + Bookmarks In Menu Закладки в меню - - + + Bookmarks In ToolBar Закладки на панели инструментов - - + + Unsorted Bookmarks Неупроядоченные закладки @@ -748,106 +744,94 @@ BookmarksToolbar - + &Bookmark Current Page &Добавить страницу в закладки - + Bookmark &All Tabs Закладки для &всех открытых страниц - + &Organize Bookmarks &Управление закладками - Hide Most &Visited - Скрыть самые &посещаемые - - - + Show Most &Visited Показать самые п&осещаемые - + Show Only Icons Показывать только иконки - + &Hide Toolbar &Скрыть панель инструментов - + Move right Вперед - + Move left Назад - + Edit bookmark Редактировать закладку - + Remove bookmark Удалить закладку - + Edit bookmark: Редактировать закладку: - + Title: Заголовок: - + Url: Ссылка: - + Edit Bookmark Редактировать закладку - + Most visited Самые посещаемые - + Sites you visited the most Самые посещаемые вами сайты - - + + Empty Пусто BookmarksWidget - - Edit This Bookmark - Редактировать эту закладку - - - Remove Bookmark - Удалить закладку - Name: @@ -878,27 +862,11 @@ Add to Bookmarks Добавить в Закладки - - Add into Bookmarks - Добавить в Закладки - - - Add into Speed Dial - Добавить в страницу быстрого доступа - - - <b>Add Bookmark</b> - <b>Добавить закладку</b> - Edit Bookmark Редактировать закладку - - <b>Edit Bookmark</b> - <b>Редактировать закладку</b> - @@ -1119,17 +1087,6 @@ Больше нет доступной информации. - - CloseDialog - - There are still open tabs - Некоторые вкладки не закрыты - - - Don't ask again - Не спрашивать снова - - CookieManager @@ -1174,8 +1131,8 @@ - - + + Server: Сервер: @@ -1273,12 +1230,12 @@ Вы точно хотите удалить все cookies? - + Add to whitelist Добавить в список разрешенных - + Add to blacklist Добавить в список запрещенных @@ -1458,8 +1415,8 @@ DownloadManager - - + + Download Manager Менеджер загрузок @@ -1469,52 +1426,52 @@ Очистить - + Executable: Активные: - + Arguments: Аргументы: - + Cannot start external download manager Не удается запустить внешний менеджер закачек - + Cannot start external download manager! %1 Не удается запустить внешний менеджер закачек! %1 - + %1% of %2 files (%3) %4 remaining %1% из %2 файлов (%3) %4 осталось - + % - Download Manager % - Менеджер загрузок - + Download Finished Загузка закончена - + All files have been successfully downloaded. Все файлы были успешно загружены. - + Warning Внимание - + Are you sure to quit? All uncompleted downloads will be cancelled! Вы точно хотите выйти? Все незавершенные загрузки будут отменены! @@ -1653,30 +1610,30 @@ Копировать адрес - - + + Today Сегодня - - + + This Week На этой неделе - - + + This Month В этом месяце - + Confirmation Подтверждение - + Are you sure to delete all history? Вы точно хотите стереть всю историю? @@ -1684,72 +1641,67 @@ HistoryModel - - Failed loading page - Невозможно загрузить страницу - - - + No Named Page Безымянная страница - + January Январь - + February Февраль - + March Март - + April Апрель - + May Май - + June Июнь - + July Июль - + August Август - + September Сентябрь - + October Октябрь - + November Ноябрь - + December Декабрь @@ -1783,19 +1735,19 @@ - + Today Сегодня - + This Week На этой неделе - + This Month В этом месяце @@ -1821,17 +1773,17 @@ Введите адрес или используйте поиск в %1 - + Paste And &Go Вставить и &Перейти - + Clear All Очистить все - + .co.uk Append domain name on ALT + Enter = Should be different for every country .ru @@ -1842,58 +1794,47 @@ Показать информацию о текущей странице - - MainApplication - - Last session crashed - Последняя сессия завершилась неудачно - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla упал :-(</b><br/>К сожалению, последняя сессия QupZilla была завершена неудачно. Вы хотите попробовать восстановить её? - - NavigationBar - + No Named Page Безымянная страница - + Back Назад - + Forward Вперед - + Home Домашняя страница - + New Tab Новая вкладка - + Main Menu Главное меню - - + + Exit Fullscreen Выйти из полноэкранного режима - - + + Clear history Стереть историю @@ -1982,14 +1923,10 @@ Снимок страницы - + Save Page Screen... Сохранить снимок страницы... - - screen.png - screen.png - PluginsList @@ -2009,10 +1946,6 @@ Settings Настройки - - Load Plugins - Загрузить расширения - WebKit Plugins @@ -2049,22 +1982,22 @@ Использовать Click To Flash - + Add site to whitelist Добавить сайт в Белый список - + Server without http:// (ex. youtube.com) Сервер (без http://) - + Error! Ошибка! - + Cannot load extension! Не могу загрузить расширение! @@ -2163,7 +2096,7 @@ - + Note: You cannot delete active profile. Примечание: Нельзя удалить активный профиль. @@ -2318,32 +2251,28 @@ Open new tabs after active tab Открыть новую вкладку после текущей - - Allow Plugins (Flash plugin) - Использовать Плагины (плагин Flash) - Allow DNS Prefetch Позволять предварительное получение DNS - + Allow local storage of HTML5 web content Разрешить локальное хранение HTML5 контента - + Delete locally stored HTML5 web content on close Удалять локальные данные HTML5 при закрытии - + JavaScript can access clipboard JavaScript может получить доступ к буферу обмена - + Send Do Not Track header to servers Просить сервер не отслежевать вас @@ -2438,326 +2367,321 @@ - Allow storing web icons - Сохранять иконки - - - Allow saving history Сохранять историю - + Delete history on close Очищать истроию после закрытия - + Delete now Удалить сейчас - + Proxy Configuration Настройки Proxy - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Порт: - - + + Username: Имя пользователя: - - + + Password: Пароль: - + Don't use on: Не использовать на: - + Manual configuration Ручные настройки - + System proxy configuration Системные натройки прокси - + Do not use proxy Не использовать прокси - + <b>Exceptions</b> <b>Исключения</b> - + Server: Сервер: - + Use different proxy for https connection Использовать другой proxy для соединения https - + <b>Font Families</b> <b>Семейства шрфтов</b> - + Standard Стандарт - + Fixed Фиксированный - + Serif Serif - + Sans Serif Sans Serif - + Cursive Курсив - + <b>External download manager</b> <b>Внешний менеджер загрузки</b> - + Use external download manager Использовать внешний менеджер загрузки - + Executable: Активные: - + Arguments: Аргументы: - + Filter tracking cookies Фильтрация шпионских Cookies - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Внимание:</b> Опции "Требовать точное соответствие домена" и "фильтрация шпионских cookies" могут привести к запрещению некторых cookies. Если у вас проблемы с cookies, то попробуйте отключить эти опции! - + Change browser identification: Изменить идентификатор браузера: - + Fantasy ??? Fantasy - + <b>Font Sizes</b> <b>Размеры шрифтов</b> - + Fixed Font Size Изменить размер шрифта - + Default Font Size Размер шрифта по-умолчанию - + Minimum Font Size Минимальный размер шрифта - + Minimum Logical Font Size Минимальный логический размер шрифта - + <b>Download Location</b> <b>Расположение загружаемых файлов</b> - + Ask everytime for download location Каждый раз спрашивать путь для загрузки - + Use defined location: ??? Использовать определенное место: - - - + + + ... ... - + <b>Download Options</b> <b>Параметры загрузки</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Использовать системный диалог для файловых операций. (Могут возникнуть проблемы с закачкой файлов защищенных SSL) - + Close download manager when downloading finishes Закрыть менеджер загрузок после завершения всех загрузок - + <b>AutoFill options</b> <b>Автозаполнение</b> - + Allow saving passwords from sites Сохранять пароли - + <b>Cookies</b> <B>Cookies</b> - + Allow storing of cookies Сохранять cookies - + Delete cookies on close Удалить cookies после закрытия - + Match domain exactly Требовать точное соответствие домена - + Cookies Manager Менеджер Cookies - + <b>SSL Certificates</b> <b>SSL Сертификаты</b> - + SSL Manager Менеджер SSL - + Edit CA certificates in SSL Manager Редактировать CA сертификаты в SSL Менеджере - - + + <b>Other</b> <b>Остальное</b> - + Send Referer header to servers Отправить Referer заголовок к серверам - + Block popup windows Блокировать всплывающие окна - + <b>Notifications</b> <b>Уведомления</b> - + Use OSD Notifications Использовать экранные уведомления - + Use Native System Notifications (Linux only) Использовать системные уведомления ( только для Linux) - + Do not use Notifications Не использовать уведомления - + Expiration timeout: Время действия: - + seconds секунд - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Примечание: </b>Вы можете изменить расположение экранных уведомлений перетаскивая их по экрану. @@ -2777,17 +2701,17 @@ Чтобы изменить язык, вы должны перезапустить браузер. - + StyleSheet automatically loaded with all websites: Выберите таблицу стилей для всех сайтов: - + Languages Языки - + <b>Preferred language for web sites</b> <b>Предпочитаемый язык для веб сайтов</b> @@ -2836,78 +2760,74 @@ Notifications Уведомления - - Plugins - Плагины - Other Прочее - + OSD Notification Экранные уведомления - + Drag it on the screen to place it where you want. Перетащите уведомление, в место где вы хотите его разместить. - + Choose download location... Выберите папку для загрузок... - + Choose stylesheet location... Укажите местоположение таблицы стилей... - + Deleted Удален - + Choose executable location... Выберите место для выполнения... - + New Profile Новый профиль - + Enter the new profile's name: Введите имя профиля: - - + + Error! Ошибка! - + This profile already exists! Такой профиль уже существует! - + Cannot create profile directory! Невозможно создать папку для профиля! - + Confirmation Подтверждение - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Вы точно хотите удалить профиль "%1"? Это действие необратимо! @@ -2977,22 +2897,22 @@ IP адрес текущей страницы - + &Tools &Инструменты - + &Help &Справка - + &Bookmarks &Закладки - + Hi&story Ис&тория @@ -3102,17 +3022,17 @@ Н&астройки - + QupZilla QupZilla - + Last session crashed Последняя сессия завершилась неудачно - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla упал :-(</b><br/>К сожалению, последняя сессия QupZilla была завершена неудачно. Вы хотите попробовать восстановить её? @@ -3168,161 +3088,151 @@ - Bookmarks - Закладки - - - - History - История - - - Toolbars Панели инструментов - + Sidebars Боковые панели - + Zoom &In У&величить - + Zoom &Out У&меньшить - + Reset Восстановить - + &Page Source &Исходый код страницы - + Closed Tabs Закрытые вкладки - + Recently Visited Недавно посещенные - + Most Visited Самые посещаемые - + Web In&spector Веб Ин&спектор - + Configuration Information Информация о конфигурации - + Restore &Closed Tab Открыть &закрытую вкладку - + (Private Browsing) (Режим приватного просмотра) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? У вас открыто %1 вкладок и ваша сессия не сохранится. Вы точно хотите выйти из QupZilla? - + Don't ask again Не спрашивать снова - + There are still open tabs Некоторые вкладки не закрыты - + Bookmark &This Page &Добавить в закладки - + Bookmark &All Tabs Закладки для &всех открытых страниц - + Organize &Bookmarks &Управление закладками - - - - - + + + + + Empty Пусто - + &Back &Назад - + &Forward &Вперед - + &Home &Домашняя страница - + Show &All History Стереть в&сю историю - + Restore All Closed Tabs Открыть все закрытые вкладки - + Clear list Очистить список - + About &Qt О &Qt - + Information about application Информация о приложении - + %1 - QupZilla %1 - QupZilla @@ -3332,124 +3242,115 @@ Are you sure to quit QupZilla? &О QupZilla - + Report &Issue &Сообщить об ошибке - + &Web Search П&оиск в интернете - + Page &Info &Информация о странице - + &Download Manager &Менеджер загрузок - + &Cookies Manager Менеджер &Cookie - + &AdBlock &AdBlock - + RSS &Reader Чтение &RSS - + Clear Recent &History Очистить &недавнюю историю - + &Private Browsing Режим &приватного просмотра - + Other Прочее - - Default - По умолчанию - - - + HTML files Файлы HTML - + Image files Файлы изображений - + Text files Текстовые файлы - + All files Все файлы - + Open file... Открыть файл... - + Are you sure you want to turn on private browsing? Вы действительно хотите включить режим приватного прсмотра? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Когда включен режим приватного просмотра, будут отключены функции, которые могут нарушить вашу конфиденциальность: - + Webpages are not added to the history. Будет отключено ведение истории. - + Current cookies cannot be accessed. Текущие cookies станут недоступны. - + Your session is not stored. Ваша сессия не сохранится. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Пока окно не будет закрыто, вы можете использовать кнопки "Назад" и "Вперед" чтобы возвращаться на открытые страницы. - + Start Private Browsing Включить режим приватного просмотра - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - У вас открыто %1 вкладок и ваша сессия не сохранится. Вы точно хотите выйти из QupZilla? - You have successfully added RSS feed "%1". @@ -3517,18 +3418,18 @@ Are you sure to quit QupZilla? О QupZilla - - + + Configuration Information Информация о конфигурации - + Browser Identification Идентификационная информаця браузера - + Paths ??? Файлы @@ -3540,43 +3441,43 @@ Are you sure to quit QupZilla? - + Version Версия - + WebKit version Версия WebKit - + Application version Версия приложения - + Qt version Версия Qt - + Build time Дата сборки - + Platform Платформа - + Profile Профиль - + Preferences Настройки @@ -3586,72 +3487,68 @@ Are you sure to quit QupZilla? Если у вас возникли проблемы с QupZilla, попробуйте выключить все расширения.<br/> Если это не помогло, пожалуйста, заполните эту форму: - + Build Configuration Конфигурация сборки - + Option Опция - + Value Значение - + Extensions Расширения - + Name Имя - + Author Автор - + Description Описание - + Settings Настройки - + Saved session Сохраненные сессии - + Pinned tabs ?? Закрепленные вкладки - + Data Дата - + Themes Темы - Plugins - Плагины - - - + Translations Переводы @@ -3676,156 +3573,148 @@ Are you sure to quit QupZilla? Переводчики - + Speed Dial Страница быстрого доступа - + Add New Page Добавить новую страницу - + Apply Применить - + Close Закрыть - + Speed Dial settings Настройки страницы быстрого доступа - + Placement: Размещение: - + Auto Автоматическое - + Cover Покрытие - + Fit По длине и ширине - + Fit Width По ширине - + Fit Height По высоте - + Use background image Использовать фоновое изображение - + Select image Выбрать изображение - + Maximum pages in a row: Максимально страниц в строке: - + Change size of pages: Изменить размер страниц: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Эта страница содержит информацию о конфигурации QupZilla. Эта информация необходима для исправления ошибок. Пожалуйста включите её в сообщение об ошибке. - + No available extensions. Нет доступных расширений. - - + + Disabled Отключено - - - - - + + + + + <b>Enabled</b> <b>Включено</b> - + Debug build Сборка для отладки - + WebGL support Поддержка WebGL - + Windows 7 API Windows 7 API - + KDE integration Интеграция в KDE - + Portable build Портативная сборка - + Load title from page Загрузить назвние из страницы - + Edit Изменить - + Remove Удалить - - E-mail is optional<br/><b>Note: </b>Please use English language only. - E-mail необязателен<br/><b>Примечание:</b> Пожалуйста, используйте только английский язык. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Если у вас возникли проблемы с QupZilla, попробуйте выключить все плагины.<br/> Если это не помогло, пожалуйста, заполните эту форму: - Please fill out all required fields! @@ -3833,27 +3722,27 @@ Are you sure to quit QupZilla? - + Information about version О версии программы - + Reload Обновить - + Url Url - + Title Название - + New Page Новая страница @@ -3991,12 +3880,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds.Добавить RSS ленту с этого сайта - + Untitled feed Безымянная лента - + Add Добавить @@ -4204,12 +4093,14 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SideBar - + + Bookmarks Закладки - + + History История @@ -4487,10 +4378,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Paste Вставить - - Delete - Удалить - Select All @@ -4613,7 +4500,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SqueezeLabelV2 - + Copy Копировать @@ -4745,22 +4632,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Невозможно загрузить страницу - + Loading... Загрузка... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Исследовать элемент @@ -4787,10 +4674,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla License Лицензия - - License Viewer - Просмтор лицензии - ToolButton @@ -4835,148 +4718,144 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Чтобы показать эту страницу, QupZilla должен переслать запрос, который повторит действие, которое уже совершено. ( Например поиск, или покупку чего-либо ) - + Confirm form resubmission Подтвердите повторную отправку формы - + Select files to upload... Выберите файлы для загрузки ... - + Server refused the connection Соединение отвергнуто сервером - + Server closed the connection Сервер закрыл соединение - + Server not found Сервер не найден - + Connection timed out Время ожидания соединения истекло - + Untrusted connection Ненадежное соединение - + Temporary network failure Временный сбой сети - + Proxy connection refused Подключение к прокси провалилось - + Proxy server not found Прокси сервер не найден - + Proxy connection timed out Вышел временной лимит подключения - + Proxy authentication required Прокси сервер требует авторизацию - + Content not found Содержимое не найдено - + Unknown network error Неизвестная ошибка сети - + AdBlocked Content Содержимое заболкировано AdBlock'ом - + Blocked by rule <i>%1</i> Заблокировано по правилу <i>%1</i> - + Content Access Denied Доступ к содержанию запрещен - + Error code %1 Код ошибки %1 - + Failed loading page Невозможно загрузить страницу - + QupZilla can't load page from %1. QupZilla не может загрузить страницу %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Проверьте адрес страницы на ошибки ( Например <b>ww</b>.example.com вместо <b>www</b>.example.com) - + If you are unable to load any pages, check your computer's network connection. Если невозможно загрузить любую страницу, проверьте ваше соединение с Internet. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Если ваш компютер или сеть защишена с помощью фаервола или прокси, удостовертесь, что QupZilla может выходить в Internet. - + Try Again Попробовать снова - + JavaScript alert предупреждение JavaScript - + Prevent this page from creating additional dialogs Запретить странице создавать дополнительные диалоги - JavaScript alert - %1 - JavaScript предупреждение -%1 - - - + Choose file... Выберите файл... @@ -5007,233 +4886,233 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebView - + Open link in new &tab Открыть ссылку в новой &вкладке - + Open link in new &window Открыть ссылку в новом &окне - + B&ookmark link Добавить ссылку в &закладки - + &Save link as... С&охранить ссылку как... - + Send link... Послать адрес... - + &Copy link address &Копировать адрес - + Show i&mage Показать и&зображение - + Copy im&age Копи&ровать изображение - + Copy image ad&dress Копировать &адрес изображения - + &Save image as... Со&хранить изображение как... - + Send image... Послать изображение... - + &Back &Назад - + Create Search Engine Добавить поисковый движок - + &Forward &Вперед - - + + &Reload &Обновить - + S&top &Прервать - + This frame Эта структура - + Show &only this frame Показывать &только эту структуру - + Show this frame in new &tab Показывать структуру в новой вкладк&е - + Print frame Распечатаь структуру - + Zoom &in &Увеличить - + &Zoom out &Уменьшить - + Reset Восстановить - + Show so&urce of frame &Показать код структуры - + Book&mark page Добавить в &закладки - + &Save page as... &Сохранить страницу как... - + &Copy page link Копировать &ссылку страницы - + Send page link... Послать адрес страницы... - + &Print page &Распечатать страницу - + Send text... Послать текст... - + Google Translate Google перевод - + Dictionary Словарь - + Go to &web address Идти по &ссылке - + Search with... Искать с помощью... - + &Play &Играть - + &Pause &Пауза - + Un&mute &Включение - + &Mute &Отключение - + &Copy Media Address Копировать &сслыку медиаконтента - + &Send Media Address &Послать сслыку медиаконтента - + Save Media To &Disk &Сохранить медиоконтент - + Select &all В&ыделить всё - + Validate page Проверенная страница - + Show so&urce code Показать &исходый код - + Show info ab&out site Показывать &информацию о сайте - + Search "%1 .." with %2 Искать "%1 .." с %2 diff --git a/translations/sk_SK.ts b/translations/sk_SK.ts index 63286f008..86990ca6b 100644 --- a/translations/sk_SK.ts +++ b/translations/sk_SK.ts @@ -27,10 +27,6 @@ Authors Autori - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Všetky práva vyhradené.<br/> - <small>Build time: %1 </small></p> <small>Dátum zostavenia: %1 </small></p> @@ -594,10 +590,6 @@ Remove bookmark Odstrániť záložku - - Hide Most &Visited - Skryť najna&vštevovanejšie - Move right Posunúť doprava @@ -669,38 +661,14 @@ Name: Názov: - - Remove Bookmark - Odstrániť záložku - - - Edit This Bookmark - Upraviť túto záložku - Folder: Priečinok: - - Add into Bookmarks - Pridať do záložiek - - - Add into Speed Dial - Pridať do rychlej voľby - - - <b>Add Bookmark</b> - <b>Pridať záložku</b> - Edit Bookmark Upraviť záložku - - <b>Edit Bookmark</b> - <b>Upraviť záložku</b> - Remove from Speed Dial Odstrániť z rýchlej voľby @@ -882,17 +850,6 @@ Žiadne ďalšie informácie. - - CloseDialog - - There are still open tabs - Stále sú otvorené karty - - - Don't ask again - Viac sa uz nepýtať - - CookieManager @@ -1372,10 +1329,6 @@ No Named Page Stránka bez názvu - - Failed loading page - Chyba pri načítaní stránky - HistorySideBar @@ -1447,17 +1400,6 @@ Zobraziť informácie o tejto stránke - - MainApplication - - Last session crashed - Minulá relácia spadla - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla spadla :-(</b><br/>Oops, minulá relácia QupZilly skončila pádom. Veľmi sa ospravedlňujeme. Chcete sa pokúsiť obnoviť uložený stav? - - NavigationBar @@ -1562,10 +1504,6 @@ Save Page Screen... Uložiť obraz stránky... - - screen.png - obrazstranky.png - PluginsList @@ -1589,10 +1527,6 @@ Allow Application Extensions to be loaded Povoliť načítanie rozšírení programu - - Load Plugins - Načítať plugin - Application Extensions Rozšírenia programu @@ -1625,10 +1559,6 @@ Error! Chyba! - - Cannot load plugin! - Nemožno načítať plugin! - Cannot load extension! Nemožno načítať rozšírenie! @@ -1764,10 +1694,6 @@ Startup profile: Štartový profil: - - Allow storing web icons - Povoliť ukladanie webových ikon - Allow saving passwords from sites Povoliť ukladanie hesiel zo stránok @@ -1896,10 +1822,6 @@ lines on page riadky na stránke - - Plugins - Pluginy - Print element background when you are printing page (on printer), it determine whether to also print background (color, image) of html elements @@ -2140,10 +2062,6 @@ Show Bookmarks ToolBar on start Zobraziť panel záložiek pri štarte - - Allow Plugins (Flash plugin) - Povoliť pluginy (Flash plugin) - Select all text by clicking in address bar Označiť celý text kliknutím do adresného riadka @@ -2485,10 +2403,6 @@ &Bookmarks &Záložky - - Bookmarks - Záložky - Webpages are not added to the history. Stránky nie sú pridávané do histórie. @@ -2565,10 +2479,6 @@ Report &Issue Nahlásiť &problém - - Default - Štandardné - &Navigation Toolbar Panel &navigácie @@ -2649,18 +2559,10 @@ Bookmark &All Tabs Pridať &všetky karty do záložiek - - History - História - Sidebars Bočné panely - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Stále sú otvorené %1 karty a vaša relácia nebude uložená. Ste si istý, že chcete skončiť? - QupZilla QupZilla @@ -2818,10 +2720,6 @@ Skutočne chcete skončiť? Translations Preklady - - Plugins - Pluginy - Profile Profil @@ -2894,14 +2792,6 @@ Skutočne chcete skončiť? Load title from page Načítať názov zo stránky - - E-mail is optional<br/><b>Note: </b>Please use English language only. - E-mail je nepovinný<br/><b>Poznámka: </b>Používajte prosím len anglický jazyk. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Pokiaľ máte problém s používaním QupZilly, zakážte všetky doplnky. <br/> Pokiaľ problém pretrváva, vyplňte tento formulár: - Please fill out all required fields! Prosím vyplňte všetky povinné polia! @@ -2994,14 +2884,6 @@ Skutočne chcete skončiť? Qt version Verzia QT - - No available plugins. - Žiadne dostupné doplnky. - - - This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports. - Táto stránka obsahuje informácie o aktuálnej konfigurácií QupZilly, pluginov a všetkých dôležitých informáciach na riešenie problémov. Prosím, priložte tieto informácie k hlásenému problému. - Build Configuration Konfigurácia zostavenia @@ -3566,10 +3448,6 @@ Po pridaní či odobratí ciest k certifikátom je nutné reštartovať prehliad Editable changed Povolenie úprav zmenené - - Delete - Vymazať - Error! Chyba! @@ -3795,10 +3673,6 @@ Po pridaní či odobratí ciest k certifikátom je nutné reštartovať prehliad <b>Name:</b> <b>Názov:</b> - - License Viewer - Prehliadač licencie - <b>Description:</b> <b>Popis:</b> @@ -3937,10 +3811,6 @@ Po pridaní či odobratí ciest k certifikátom je nutné reštartovať prehliad Prevent this page from creating additional dialogs Zabrániť tejto stránke vo vytváraní ďalších dialógov - - JavaScript alert - %1 - Výstraha JavaScript - %1 - Confirm form resubmission Potvrdenie opätovného zaslania formuláru diff --git a/translations/sr_BA.ts b/translations/sr_BA.ts index 361a1cd3e..404e2b7df 100644 --- a/translations/sr_BA.ts +++ b/translations/sr_BA.ts @@ -493,40 +493,40 @@ Изабери фајл... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Мозилин Фајерфокс успрема обиљеживаче у <b>places.sqlite</b> Скулајт бази података. Овај фајл се обично налази у - - - - + + + + Please choose this file to begin importing bookmarks. Изаберите овај фајл да бисте отпочели увозе обиљеживача. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Гуглов Хроум успрема обиљеживаче у <b>Bookmarks</b> текстуалном фајлу. Овај фајл се обично налази у - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Опера успрема обиљеживаче у <b>bookmarks.adr</b> текстуалном фајлу. Овај фајл се обично налази у - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Можете увести обиљеживаче из било ког прегледача који подржава извоз у ХТМЛ-у. Овај фајл обично има ове суфиксе - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Интернет Експлорер успрема обиљеживаче у фасцикли <b>Favorites</b>. Овај фајл се обично налази у - + Please choose this folder to begin importing bookmarks. Изаберите ову фасциклу да бисте отпочели увоз обиљеживача. @@ -624,67 +624,67 @@ Име за фасциклу: - + Add Subfolder Додај подфасциклу - + Rename folder Преименуј фасциклу - + Remove folder Уклони фасциклу - + Open link in current &tab Отвори везу у &текућем језичку - + Open link in &new tab Отвори везу у &новом језичку - + Move bookmark to &folder Помјери обиљеживач у &фасциклу - + Rename bookmark Преименуј обиљеживач - + Remove bookmark Уклони обиљеживач - + <b>Warning: </b>You already have bookmarked this page! <b>Упозорење: </b>Већ сте обиљежили ову страницу! - + Choose name and location of this bookmark. Одредите име и локацију за овај обиљеживач. - + Add New Bookmark Додај нови обиљеживач - + Choose folder for bookmarks: Изаберите фасциклу обиљеживача: - + Bookmark All Tabs Обиљежи све језичке @@ -692,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Обиљеживачи у менију - - + + Bookmarks In ToolBar Обиљеживачи у траци алатки - - + + Unsorted Bookmarks Неразврстани обиљеживачи @@ -741,88 +741,88 @@ BookmarksToolbar - + &Bookmark Current Page О&биљежи текућу страницу - + Bookmark &All Tabs Обиљежи све &језичке - + &Organize Bookmarks &Организуј обиљеживаче - + Show Most &Visited Прикажи &најпосјећеније - + Show Only Icons Прикажи само иконе - + &Hide Toolbar &Сакриј траку обиљеживача - + Move right Помјери десно - + Move left Помјери лијево - + Edit bookmark Уреди обиљеживач - + Remove bookmark Уклони обиљеживач - + Edit bookmark: Уреди обиљеживач: - + Title: Име: - + Url: Урл: - + Edit Bookmark Уређивање обиљеживача - + Most visited Најпосјећеније - + Sites you visited the most Сајтови које сте највише посјећивали - - + + Empty Празно @@ -1127,8 +1127,8 @@ - - + + Server: Сервер: @@ -1226,12 +1226,12 @@ Желите ли заиста да обришете све колачиће са вашег рачунара? - + Add to whitelist Додавање у дозвољене - + Add to blacklist Додавање у недозвољене @@ -1409,8 +1409,8 @@ DownloadManager - - + + Download Manager Менаџер преузимања @@ -1420,52 +1420,52 @@ Очисти - + Executable: Извршна: - + Arguments: Аргументи: - + Cannot start external download manager Не могу да покренем спољашњи менаџер преузимања - + Cannot start external download manager! %1 Не могу да покренем спољашњи менаџер преузимања! %1 - + %1% of %2 files (%3) %4 remaining %1% од %2 фајлова (%3) %4 преостало - + % - Download Manager % - Менаџер преузимања - + Download Finished Преузимање је завршено - + All files have been successfully downloaded. Сви фајлови су успјешно преузети. - + Warning Упозорење - + Are you sure to quit? All uncompleted downloads will be cancelled! Желите ли заиста да напустите? Сва незавршена преузимања ће бити отказана! @@ -1604,30 +1604,30 @@ Копирај адресу - - + + Today Данас - - + + This Week Ове недјеље - - + + This Month Овога мјесеца - + Confirmation Потврда - + Are you sure to delete all history? Желите ли заиста да обришете читав историјат? @@ -1635,72 +1635,67 @@ HistoryModel - - Failed loading page - Неуспјех учитавања странице - - - + No Named Page Неименована страница - + January Јануар - + February Фебруар - + March Март - + April Април - + May Мај - + June Јун - + July Јул - + August Август - + September Септембар - + October Октобар - + November Новембар - + December Децембар @@ -1734,19 +1729,19 @@ - + Today Данас - + This Week Ове недјеље - + This Month Овога мјесеца @@ -1772,17 +1767,17 @@ Унесите УРЛ адресу или тражите на %1 - + Paste And &Go Налијепи и &иди - + Clear All Очисти све - + .co.uk Append domain name on ALT + Enter = Should be different for every country .rs.ba @@ -1796,44 +1791,44 @@ NavigationBar - + No Named Page Неименована страница - + Back Назад - + Forward Напријед - + Home Домаћа - + New Tab Нови језичак - + Main Menu Главни мени - - + + Exit Fullscreen Напусти цио екран - - + + Clear history Очисти историјат @@ -1922,7 +1917,7 @@ Снимак странице - + Save Page Screen... Сачувај снимак странице... @@ -1980,22 +1975,22 @@ Дозволи Кликни-за-флеш - + Add site to whitelist Додавање у дозвољене - + Server without http:// (ex. youtube.com) Адреса сервера без „http://“ (на примјер youtube.com) - + Error! Грешка! - + Cannot load extension! Не могу да учитам проширење! @@ -2094,7 +2089,7 @@ - + Note: You cannot delete active profile. Напомена: Не можете обрисати активни профил. @@ -2255,23 +2250,23 @@ Предохватање ДНС уноса - + Allow local storage of HTML5 web content Дозволи локално смештање ХТМЛ5 веб садржаја Дозволи локално смјештање ХТМЛ5 веб садржаја - + Delete locally stored HTML5 web content on close Обриши локални ХТМЛ5 веб садржај по затварању - + JavaScript can access clipboard Јаваскрипта може приступити клипборду - + Send Do Not Track header to servers Шаљи ДНТ (Не Прати Ме) заглавље серверима @@ -2365,324 +2360,319 @@ - Allow storing web icons - Дозволи успремање фавикона - - - Allow saving history Дозволи чување историјата - + Delete history on close Обриши историјат по затварању - + Delete now Обриши сада - + Proxy Configuration Подешавање проксија - + HTTP ХТТП - + SOCKS5 СОЦКС5 - - + + Port: Порт: - - + + Username: Корисничко име: - - + + Password: Лозинка: - + Don't use on: Не користи на: - + Manual configuration Ручне поставке - + System proxy configuration Системске поставке - + Do not use proxy Не користи прокси - + <b>Exceptions</b> <b>Изузеци</b> - + Server: Сервер: - + Use different proxy for https connection Користи други прокси за ХТТПС везу - + <b>Font Families</b> <b>Породице фонта</b> - + Standard Стандардни - + Fixed Фиксни - + Serif Серифни - + Sans Serif Бесерифни - + Cursive Курзивни - + Fantasy Фантазијски - + <b>Font Sizes</b> <b>Величине фонта</b> - + Fixed Font Size Фиксни фонт - + Default Font Size Подразумијевани фонт - + Minimum Font Size Најмања величина - + Minimum Logical Font Size Најмања могућа величина - + <b>Download Location</b> <b>Одредиште преузимања</b> - + Ask everytime for download location Питај сваки пут за одредиште - + Use defined location: Користи одредиште: - - - + + + ... ... - + <b>Download Options</b> <b>Опције преузимања</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Користи системски дијалог фајлова (може проузрочити проблеме за преузимање ССЛ безбиједног садржаја) - + Close download manager when downloading finishes Затвори менаџера преузимања када се преузимање заврши - + <b>External download manager</b> <b>Спољашњи менаџер преузимања</b> - + Use external download manager Користи спољашњи менаџер преузимања - + Executable: Извршна: - + Arguments: Аргументи: - + <b>AutoFill options</b> <b>Опције аутоматске попуне</b> - + Allow saving passwords from sites Дозволи успремање лозинки са сајтова - + <b>Cookies</b> <b>Колачићи</b> - + Filter tracking cookies Пречишћај колачиће пратиоце - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Упозорење:</b> Тачно поклапање домена и пречишћање колачића пратиоца може довести до одбијања неких колачића са сајтова. Ако имате проблема са колачићима, искључите ове опције! - + Change browser identification: Промијени идентификацију прегледача: - + Allow storing of cookies Дозволи успремање колачића - + Delete cookies on close Обриши колачиће по затварању - + Match domain exactly Поклапај домен тачно - + Cookies Manager Менаџер колачића - + <b>SSL Certificates</b> <b>ССЛ сертификати</b> - + SSL Manager ССЛ менаџер - + Edit CA certificates in SSL Manager Уредите сертификате издавача у ССЛ менаџеру - - + + <b>Other</b> <b>Разно</b> - + Send Referer header to servers Шаљи заглавље пратиоца серверима - + Block popup windows Блокирај искачуће прозоре - + <b>Notifications</b> <b>Обавјештења</b> - + Use OSD Notifications Користи ОСД обавјештења - + Use Native System Notifications (Linux only) Користи изворна системска обавјештења (само за Линукс) - + Do not use Notifications Не користи ОСД обавјештења - + Expiration timeout: Вријеме истека: - + seconds секунди - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Напомена: </b>Можете промијенити положај ОСД обавјештења превлачењем по екрану. @@ -2702,17 +2692,17 @@ Да бисте промијенили језик, морате поново покренути прегледач. - + StyleSheet automatically loaded with all websites: Опис стила који ће аутоматски бити учитан за све сајтове: - + Languages Језици - + <b>Preferred language for web sites</b> <b>Приоритетни језик за веб странице</b> @@ -2767,68 +2757,68 @@ Остало - + OSD Notification ОСД обавјештење - + Drag it on the screen to place it where you want. Превуците га по екрану на жељени положај. - + Choose download location... Одабир одредишта за преузимање... - + Choose stylesheet location... Одабир фајла описа стила... - + Deleted Обрисано - + Choose executable location... Одабир локације извршног фајла... - + New Profile Нови профил - + Enter the new profile's name: Унесите име новог профила: - - + + Error! Грешка! - + This profile already exists! Овај профил већ постоји! - + Cannot create profile directory! Не могу да направим директоријум профила! - + Confirmation Потврда - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Желите ли заиста трајно да обришете „%1“ профил? Ова радња не може да се поништи! @@ -2897,22 +2887,22 @@ ИП адреса текуће странице - + &Tools Ала&тке - + &Help По&моћ - + &Bookmarks &Обиљеживачи - + Hi&story &Историјат @@ -3022,17 +3012,17 @@ По&дешавање - + QupZilla Капзила - + Last session crashed Претходна сесија се срушила - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>Капзила се срушила :-(</b><br/>Упс, претходна Капзилина сесија је неочекивано прекинута. Извњавамо се због овога. Желите ли да вратите посљедње сачувано стање? @@ -3088,162 +3078,152 @@ - Bookmarks - Обиљеживачи - - - - History - Историјат - - - Toolbars Траке алатки - + Sidebars Бочне траке - + Zoom &In У&величај - + Zoom &Out У&мањи - + Reset Стварна величина - + &Page Source &Извор странице - + Closed Tabs Затворени језичци - + Recently Visited Недавно посјећено - + Most Visited Најпосјећеније - + Web In&spector Веб и&нспектор - + Configuration Information Поставке програма - + Restore &Closed Tab &Врати затворени језичак - + (Private Browsing) (приватно прегледање) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Још увијек имате %1 отворених језичака а ваша сесија неће бити сачувана. Желите ли заиста да напустите Капзилу? - + Don't ask again Не питај поново - + There are still open tabs Још увијек имате отворених језичака - + Bookmark &This Page Обиљежи овај &језичак - + Bookmark &All Tabs Обиљежи &све језичке - + Organize &Bookmarks &Организуј обиљеживаче - - - - - + + + + + Empty Празно - + &Back На&зад - + &Forward На&пријед - + &Home &Домаћа - + Show &All History Прикажи &сав историјат - + Restore All Closed Tabs Врати све затворене језичке - + Clear list Очисти списак - + About &Qt О &Кјуту - + Information about application Подаци о програму - + %1 - QupZilla %1 - Капзила @@ -3253,117 +3233,112 @@ Are you sure to quit QupZilla? &О Капзили - + Report &Issue &Пријави проблем - + &Web Search Претрага &веба - + Page &Info Подаци о &сајту - + &Download Manager Менаџер &преузимања - + &Cookies Manager Менаџер &колачића - + &AdBlock &Адблок - + RSS &Reader Читач РСС &довода - + Clear Recent &History &Очисти приватне податке - + &Private Browsing П&риватно прегледање - + Other Остало - - Default - Подразумијевано - - - + HTML files ХТМЛ фајлови - + Image files Фајлови слика - + Text files Фајлови текста - + All files Сви фајлови - + Open file... Отвори фајл... - + Are you sure you want to turn on private browsing? Желите ли заиста да укључите приватно прегледање? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Када је приватно прегледање укључено неке радње које се тичу ваше приватности су онемогућене: - + Webpages are not added to the history. Веб странице нису додане у историјат. - + Current cookies cannot be accessed. Текућим колачићима није могућ приступ. - + Your session is not stored. Ваша сесија није сачувана. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Док год не затворите прозор можете користити дугмад Напријед и Назад да се вратите на странице које сте отварали. - + Start Private Browsing Покретање приватног прегледања @@ -3434,18 +3409,18 @@ Are you sure to quit QupZilla? О Капзили - - + + Configuration Information Подаци о поставкама - + Browser Identification Идентификација прегледача - + Paths Путање @@ -3456,43 +3431,43 @@ Are you sure to quit QupZilla? - + Version Издање - + WebKit version Издање Вебкита - + Application version Издање програма - + Qt version Издање Кјут-а - + Build time Датум компајлирања - + Platform Платформа - + Profile Профил - + Preferences Подешавања @@ -3502,67 +3477,67 @@ Are you sure to quit QupZilla? Ако имате проблема са Капзилом најприје покушајте да онемогућите проширења. <br/>Ако то не помогне, онда попуните овај формулар: - + Build Configuration Параметри компајлирања - + Option Поставка - + Value Вриједност - + Extensions Проширења - + Name Име - + Author Аутор - + Description Опис - + Settings Подешавања - + Saved session Сачуване сесије - + Pinned tabs Закачени језичци - + Data Подаци - + Themes Теме - + Translations Преводи @@ -3587,145 +3562,145 @@ Are you sure to quit QupZilla? Преводиоци - + Speed Dial Брзо бирање - + Add New Page Додај нову страницу - + Apply Примијени - + Close Затвори - + Speed Dial settings Подешавање брзог бирања - + Placement: Положај: - + Auto Ауто - + Cover Прекриј - + Fit Уклопи - + Fit Width Уклопи ширину - + Fit Height Уклопи висину - + Use background image Слика за позадину - + Select image Изабери слику - + Maximum pages in a row: Највише брзих бирања у реду: - + Change size of pages: Промијени величину брзих бирања: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Ова страница садржи податке о текућим Капзилиним подешавањима битним за рјешавање проблема. Укључите ове податке приликом слања извјештаја о грешци. - + No available extensions. Нема доступних проширења. - - + + Disabled искључено - - - - - + + + + + <b>Enabled</b> <b>укључено</b> - + Debug build Проналажење грешака - + WebGL support ВебГЛ подршка - + Windows 7 API Виндоуз 7 АПИ - + KDE integration Интеграција у КДЕ - + Portable build Преносно издање - + Load title from page Учитај наслов са странице - + Edit Уреди - + Remove Уклони @@ -3736,27 +3711,27 @@ Are you sure to quit QupZilla? - + Information about version Подаци о издању - + Reload Учитај поново - + Url Урл - + Title Име - + New Page Нова страница @@ -3894,12 +3869,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds.Додај РСС доводе са овог сајта - + Untitled feed Неименован довод - + Add Додај @@ -4107,12 +4082,14 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SideBar - + + Bookmarks Обиљеживачи - + + History Историјат @@ -4511,7 +4488,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SqueezeLabelV2 - + Copy Копирај @@ -4642,22 +4619,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Неуспјех учитавања странице - + Loading... Учитавам... - + %1 - QupZilla %1 - Капзила - + Inspect Element Провјери елемент @@ -4728,144 +4705,144 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Да би приказала ову страницу Капзила мора поново да пошаље захтијев за учитавањем (као претрага куповине која је већ обављена) - + Confirm form resubmission Потврда поновног слања - + Select files to upload... Изабери фајлове за слање... - + Server refused the connection Сервер је одбио везу - + Server closed the connection Сервер је затворио везу - + Server not found Сервер није нађен - + Connection timed out Истекло вријеме повезивања - + Untrusted connection Неповјерљива веза - + Temporary network failure Привремени неуспјех мреже - + Proxy connection refused Веза са проксијем одбијена - + Proxy server not found Сервер проксија није нађен - + Proxy connection timed out Истекло вријеме повезивања са проксијем - + Proxy authentication required Прокси захтијева аутентификацију - + Content not found Садржај није нађен - + Unknown network error Непозната грешка мреже - + AdBlocked Content Блокиран садржај - + Blocked by rule <i>%1</i> Блокирано филтером <i>%1</i> - + Content Access Denied Приступ садржају одбијен - + Error code %1 Кôд грешке %1 - + Failed loading page Неуспјех учитавања странице - + QupZilla can't load page from %1. Капзила не може да учита страницу са %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Провјерите да ли сте погрешно укуцали адресу, на примјер <b>ww.</b>example.com умјесто <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Ако не можете да учитате ниједну страницу, провјерите везу вашег рачунара са интернетом. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Ако су ваш рачунар или мрежа заштићени заштитним зидом или проксијем, провјерите да ли је Капзили дозвољен приступ интернету. - + Try Again Покушај поново - + JavaScript alert Јаваскрипт упозорење - + Prevent this page from creating additional dialogs Не дозволи овој страници да прави још дијалога - + Choose file... Изабери фајл... @@ -4901,233 +4878,233 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Неименована страница - + Create Search Engine Направи мотор претраге - + &Back На&зад - + &Forward На&пријед - - + + &Reload &Учитај поново - + S&top Заус&тави - + This frame Оквир - + Show &only this frame П&рикажи само овај оквир - + Show this frame in new &tab Прикажи овај оквир у новом &језичку - + Print frame Штампај оквир - + Zoom &in У&вличај - + &Zoom out У&мањи - + Reset Стварна величина - + Show so&urce of frame Прикажи извор о&квира - + Book&mark page &Обиљежи страницу - + &Save page as... &Сачувај страницу као... - + &Copy page link &Копирај везу странице - + Send page link... Пошаљи везу странице... - + &Print page &Штампај страницу - + Select &all Из&абери све - + Validate page Провјера кôда - + Show so&urce code Прикажи &изворни кôд - + Show info ab&out site По&даци о сајту - + Open link in new &tab Отвори везу у новом &језичку - + Open link in new &window Отвори везу у новом &прозору - + B&ookmark link &Обиљежи везу - + &Save link as... &Сачувај везу као... - + Send link... Пошаљи везу... - + &Copy link address &Копирај адресу везе - + Show i&mage П&рикажи слику - + Copy im&age К&опирај слику - + Copy image ad&dress Копирај &адресу слике - + &Save image as... Сачувај с&лику као... - + Send image... Пошаљи слику... - + Send text... Пошаљи текст... - + Google Translate Гуглов преводилац - + Dictionary Рјечник - + Go to &web address Иди на &веб адресу - + Search "%1 .." with %2 Тражи „%1“ на %2 - + Search with... Тражи на... - + &Play &Пусти - + &Pause &Паузирај - + Un&mute Вра&ти звук - + &Mute У&тишај - + &Copy Media Address &Копирај адресу медија - + &Send Media Address П&ошаљи адресу медија - + Save Media To &Disk &Сачувај медиј на диск diff --git a/translations/sr_RS.ts b/translations/sr_RS.ts index e227c2b88..8364470f2 100644 --- a/translations/sr_RS.ts +++ b/translations/sr_RS.ts @@ -493,40 +493,40 @@ Изабери фајл... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Мозилин Фајерфокс успрема обележиваче у <b>places.sqlite</b> Скулајт бази података. Овај фајл се обично налази у - - - - + + + + Please choose this file to begin importing bookmarks. Изаберите овај фајл да бисте отпочели увозе обележивача. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Гуглов Хроум успрема обележиваче у <b>Bookmarks</b> текстуалном фајлу. Овај фајл се обично налази у - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Опера успрема обележиваче у <b>bookmarks.adr</b> текстуалном фајлу. Овај фајл се обично налази у - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Можете увести обележиваче из било ког прегледача који подржава извоз у ХТМЛ-у. Овај фајл обично има ове суфиксе - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Интернет Експлорер успрема обележиваче у фасцикли <b>Favorites</b>. Овај фајл се обично налази у - + Please choose this folder to begin importing bookmarks. Изаберите ову фасциклу да бисте отпочели увоз обележивача. @@ -624,67 +624,67 @@ Име за фасциклу: - + Add Subfolder Додај подфасциклу - + Rename folder Преименуј фасциклу - + Remove folder Уклони фасциклу - + Open link in current &tab Отвори везу у &текућем језичку - + Open link in &new tab Отвори везу у &новом језичку - + Move bookmark to &folder Помјери обележивач у &фасциклу - + Rename bookmark Преименуј обележивач - + Remove bookmark Уклони обележивач - + <b>Warning: </b>You already have bookmarked this page! <b>Упозорење: </b>Већ сте обележили ову страницу! - + Choose name and location of this bookmark. Одредите име и локацију за овај обележивач. - + Add New Bookmark Додај нови обележивач - + Choose folder for bookmarks: Изаберите фасциклу обележивача: - + Bookmark All Tabs Обележи све језичке @@ -692,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Обележивачи у менију - - + + Bookmarks In ToolBar Обележивачи у траци алатки - - + + Unsorted Bookmarks Неразврстани обележивачи @@ -741,88 +741,88 @@ BookmarksToolbar - + &Bookmark Current Page О&бележи текућу страницу - + Bookmark &All Tabs Обележи све &језичке - + &Organize Bookmarks &Организуј обележиваче - + Show Most &Visited Прикажи &најпосјећеније - + Show Only Icons Прикажи само иконе - + &Hide Toolbar &Сакриј траку обележивача - + Move right Помери десно - + Move left Помери лево - + Edit bookmark Уреди обиљеживач - + Remove bookmark Уклони обележивач - + Edit bookmark: Уреди обиљеживач: - + Title: Име: - + Url: Урл: - + Edit Bookmark Уређивање обележивача - + Most visited Најпосећеније - + Sites you visited the most Сајтови које сте највише посећивали - - + + Empty Празно @@ -1127,8 +1127,8 @@ - - + + Server: Сервер: @@ -1226,12 +1226,12 @@ Желите ли заиста да обришете све колачиће са вашег рачунара? - + Add to whitelist Додавање у дозвољене - + Add to blacklist Додавање у недозвољене @@ -1409,8 +1409,8 @@ DownloadManager - - + + Download Manager Менаџер преузимања @@ -1420,52 +1420,52 @@ Очисти - + Executable: Извршна: - + Arguments: Аргументи: - + Cannot start external download manager Не могу да покренем спољашњи менаџер преузимања - + Cannot start external download manager! %1 Не могу да покренем спољашњи менаџер преузимања! %1 - + %1% of %2 files (%3) %4 remaining %1% од %2 фајлова (%3) %4 преостало - + % - Download Manager % - Менаџер преузимања - + Download Finished Преузимање је завршено - + All files have been successfully downloaded. Сви фајлови су успешно преузети. - + Warning Упозорење - + Are you sure to quit? All uncompleted downloads will be cancelled! Желите ли заиста да напустите? Сва незавршена преузимања ће бити отказана! @@ -1604,30 +1604,30 @@ Копирај адресу - - + + Today Данас - - + + This Week Ове недеље - - + + This Month Овога месеца - + Confirmation Потврда - + Are you sure to delete all history? Желите ли заиста да обришете читав историјат? @@ -1635,72 +1635,67 @@ HistoryModel - - Failed loading page - Неуспех учитавања странице - - - + No Named Page Неименована страница - + January Јануар - + February Фебруар - + March Март - + April Април - + May Мај - + June Јун - + July Јул - + August Август - + September Септембар - + October Октобар - + November Новембар - + December Децембар @@ -1734,19 +1729,19 @@ - + Today Данас - + This Week Ове недеље - + This Month Овога месеца @@ -1772,17 +1767,17 @@ Унесите УРЛ адресу или тражите на %1 - + Paste And &Go Налепи и &иди - + Clear All Очисти све - + .co.uk Append domain name on ALT + Enter = Should be different for every country .rs.ba @@ -1796,44 +1791,44 @@ NavigationBar - + No Named Page Неименована страница - + Back Назад - + Forward Напред - + Home Домаћа - + New Tab Нови језичак - + Main Menu Главни мени - - + + Exit Fullscreen Напусти цио екран - - + + Clear history Очисти историјат @@ -1922,7 +1917,7 @@ Снимак странице - + Save Page Screen... Сачувај снимак странице... @@ -1980,22 +1975,22 @@ Дозволи Кликни-за-флеш - + Add site to whitelist Додавање у дозвољене - + Server without http:// (ex. youtube.com) Адреса сервера без „http://“ (на пример youtube.com) - + Error! Грешка! - + Cannot load extension! Не могу да учитам проширење! @@ -2094,7 +2089,7 @@ - + Note: You cannot delete active profile. Напомена: Не можете обрисати активни профил. @@ -2255,22 +2250,22 @@ Предохватање ДНС уноса - + Allow local storage of HTML5 web content - + Delete locally stored HTML5 web content on close Обриши локални ХТМЛ5 веб садржај по затварању - + JavaScript can access clipboard Јаваскрипта може приступити клипборду - + Send Do Not Track header to servers Шаљи ДНТ (Не Прати Ме) заглавље серверима @@ -2364,324 +2359,319 @@ - Allow storing web icons - Дозволи успремање фавикона - - - Allow saving history Дозволи чување историјата - + Delete history on close Обриши историјат по затварању - + Delete now Обриши сада - + Proxy Configuration Подешавање проксија - + HTTP ХТТП - + SOCKS5 СОЦКС5 - - + + Port: Порт: - - + + Username: Корисничко име: - - + + Password: Лозинка: - + Don't use on: Не користи на: - + Manual configuration Ручне поставке - + System proxy configuration Системске поставке - + Do not use proxy Не користи прокси - + <b>Exceptions</b> <b>Изузеци</b> - + Server: Сервер: - + Use different proxy for https connection Користи други прокси за ХТТПС везу - + <b>Font Families</b> <b>Породице фонта</b> - + Standard Стандардни - + Fixed Фиксни - + Serif Серифни - + Sans Serif Бесерифни - + Cursive Курзивни - + Fantasy Фантазијски - + <b>Font Sizes</b> <b>Величине фонта</b> - + Fixed Font Size Фиксни фонт - + Default Font Size Подразумевани фонт - + Minimum Font Size Најмања величина - + Minimum Logical Font Size Најмања могућа величина - + <b>Download Location</b> <b>Одредиште преузимања</b> - + Ask everytime for download location Питај сваки пут за одредиште - + Use defined location: Користи одредиште: - - - + + + ... ... - + <b>Download Options</b> <b>Опције преузимања</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Користи системски дијалог фајлова (може проузрочити проблеме за преузимање ССЛ безбедног садржаја) - + Close download manager when downloading finishes Затвори менаџера преузимања када се преузимање заврши - + <b>External download manager</b> <b>Спољашњи менаџер преузимања</b> - + Use external download manager Користи спољашњи менаџер преузимања - + Executable: Извршна: - + Arguments: Аргументи: - + <b>AutoFill options</b> <b>Опције аутоматске попуне</b> - + Allow saving passwords from sites Дозволи успремање лозинки са сајтова - + <b>Cookies</b> <b>Колачићи</b> - + Filter tracking cookies Пречишћај колачиће пратиоце - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Упозорење:</b> Тачно поклапање домена и пречишћање колачића пратиоца може довести до одбијања неких колачића са сајтова. Ако имате проблема са колачићима, искључите ове опције! - + Change browser identification: Промени идентификацију прегледача: - + Allow storing of cookies Дозволи успремање колачића - + Delete cookies on close Обриши колачиће по затварању - + Match domain exactly Поклапај домен тачно - + Cookies Manager Менаџер колачића - + <b>SSL Certificates</b> <b>ССЛ сертификати</b> - + SSL Manager ССЛ менаџер - + Edit CA certificates in SSL Manager Уредите сертификате издавача у ССЛ менаџеру - - + + <b>Other</b> <b>Разно</b> - + Send Referer header to servers Шаљи заглавље пратиоца серверима - + Block popup windows Блокирај искачуће прозоре - + <b>Notifications</b> <b>Обавештења</b> - + Use OSD Notifications Користи ОСД обавештења - + Use Native System Notifications (Linux only) Користи изворна системска обавештења (само за Линукс) - + Do not use Notifications Не користи ОСД обавештења - + Expiration timeout: Време истека: - + seconds секунди - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Напомена: </b>Можете променити положај ОСД обавештења превлачењем по екрану. @@ -2701,17 +2691,17 @@ Да бисте промијенили језик, морате поново покренути прегледач. - + StyleSheet automatically loaded with all websites: Опис стила који ће аутоматски бити учитан за све сајтове: - + Languages Језици - + <b>Preferred language for web sites</b> <b>Приоритетни језик за веб странице</b> @@ -2766,68 +2756,68 @@ Остало - + OSD Notification ОСД обавештење - + Drag it on the screen to place it where you want. Превуците га по екрану на жељени положај. - + Choose download location... Одабир одредишта за преузимање... - + Choose stylesheet location... Одабир фајла описа стила... - + Deleted Обрисано - + Choose executable location... Одабир локације извршног фајла... - + New Profile Нови профил - + Enter the new profile's name: Унесите име новог профила: - - + + Error! Грешка! - + This profile already exists! Овај профил већ постоји! - + Cannot create profile directory! Не могу да направим директоријум профила! - + Confirmation Потврда - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Желите ли заиста трајно да обришете „%1“ профил? Ова радња не може да се поништи! @@ -2896,22 +2886,22 @@ ИП адреса текуће странице - + &Tools Ала&тке - + &Help По&моћ - + &Bookmarks &Обележивачи - + Hi&story &Историјат @@ -3021,17 +3011,17 @@ По&дешавање - + QupZilla Капзила - + Last session crashed Претходна сесија се срушила - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>Капзила се срушила :-(</b><br/>Упс, претходна Капзилина сесија је неочекивано прекинута. Извњавамо се због овога. Желите ли да вратите посљедње сачувано стање? @@ -3087,162 +3077,152 @@ - Bookmarks - Обележивачи - - - - History - Историјат - - - Toolbars Траке алатки - + Sidebars Бочне траке - + Zoom &In У&величај - + Zoom &Out У&мањи - + Reset Стварна величина - + &Page Source &Извор странице - + Closed Tabs Затворени језичци - + Recently Visited Недавно посећено - + Most Visited Најпосећеније - + Web In&spector Веб и&нспектор - + Configuration Information Поставке програма - + Restore &Closed Tab &Врати затворени језичак - + (Private Browsing) (приватно прегледање) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Још увек имате %1 отворених језичака а ваша сесија неће бити сачувана. Желите ли заиста да напустите Капзилу? - + Don't ask again Не питај поново - + There are still open tabs Још увек имате отворених језичака - + Bookmark &This Page Обележи овај &језичак - + Bookmark &All Tabs Обележи &све језичке - + Organize &Bookmarks &Организуј обележиваче - - - - - + + + + + Empty Празно - + &Back На&зад - + &Forward На&пред - + &Home &Домаћа - + Show &All History Прикажи &сав историјат - + Restore All Closed Tabs Врати све затворене језичке - + Clear list Очисти списак - + About &Qt О &Кјуту - + Information about application Подаци о програму - + %1 - QupZilla %1 - QupZilla @@ -3252,117 +3232,112 @@ Are you sure to quit QupZilla? &О Капзили - + Report &Issue &Пријави проблем - + &Web Search Претрага &веба - + Page &Info Подаци о &сајту - + &Download Manager Менаџер &преузимања - + &Cookies Manager Менаџер &колачића - + &AdBlock &Адблок - + RSS &Reader Читач РСС &довода - + Clear Recent &History &Очисти приватне податке - + &Private Browsing П&риватно прегледање - + Other Остало - - Default - Подразумевано - - - + HTML files ХТМЛ фајлови - + Image files Фајлови слика - + Text files Фајлови текста - + All files Сви фајлови - + Open file... Отвори фајл... - + Are you sure you want to turn on private browsing? Желите ли заиста да укључите приватно прегледање? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Када је приватно прегледање укључено неке радње које се тичу ваше приватности су онемогућене: - + Webpages are not added to the history. Веб странице нису додане у историјат. - + Current cookies cannot be accessed. Текућим колачићима није могућ приступ. - + Your session is not stored. Ваша сесија није сачувана. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Док год не затворите прозор можете користити дугмад Напред и Назад да се вратите на странице које сте отварали. - + Start Private Browsing Покретање приватног прегледања @@ -3433,18 +3408,18 @@ Are you sure to quit QupZilla? О Капзили - - + + Configuration Information Подаци о поставкама - + Browser Identification Идентификација прегледача - + Paths Путање @@ -3455,43 +3430,43 @@ Are you sure to quit QupZilla? - + Version Издање - + WebKit version Издање Вебкита - + Application version Издање програма - + Qt version Издање Кјут-а - + Build time Датум компајлирања - + Platform Платформа - + Profile Профил - + Preferences Подешавања @@ -3501,67 +3476,67 @@ Are you sure to quit QupZilla? Ако имате проблема са Капзилом најпре покушајте да онемогућите проширења. <br/>Ако то не помогне, онда попуните овај формулар: - + Build Configuration Параметри компајлирања - + Option Поставка - + Value Вредност - + Extensions Проширења - + Name Име - + Author Аутор - + Description Опис - + Settings Подешавања - + Saved session Сачуване сесије - + Pinned tabs Закачени језичци - + Data Подаци - + Themes Теме - + Translations Преводи @@ -3586,145 +3561,145 @@ Are you sure to quit QupZilla? Преводиоци - + Speed Dial Брзо бирање - + Add New Page Додај нову страницу - + Apply Примени - + Close Затвори - + Speed Dial settings Подешавање брзог бирања - + Placement: Положај: - + Auto Ауто - + Cover Прекриј - + Fit Уклопи - + Fit Width Уклопи ширину - + Fit Height Уклопи висину - + Use background image Слика за позадину - + Select image Изабери слику - + Maximum pages in a row: Највише брзих бирања у реду: - + Change size of pages: Промени величину брзих бирања: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Ова страница садржи податке о текућим Капзилиним подешавањима битним за решавање проблема. Укључите ове податке приликом слања извештаја о грешци. - + No available extensions. Нема доступних проширења. - - + + Disabled искључено - - - - - + + + + + <b>Enabled</b> <b>укључено</b> - + Debug build Проналажење грешака - + WebGL support ВебГЛ подршка - + Windows 7 API Виндоуз 7 АПИ - + KDE integration Интеграција у КДЕ - + Portable build Преносно издање - + Load title from page Учитај наслов са странице - + Edit Уреди - + Remove Уклони @@ -3735,27 +3710,27 @@ Are you sure to quit QupZilla? - + Information about version Подаци о издању - + Reload Учитај поново - + Url Урл - + Title Име - + New Page Нова страница @@ -3893,12 +3868,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds.Додај РСС доводе са овог сајта - + Untitled feed Неименован довод - + Add Додај @@ -4106,12 +4081,14 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SideBar - + + Bookmarks Обележивачи - + + History Историјат @@ -4510,7 +4487,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SqueezeLabelV2 - + Copy Копирај @@ -4641,22 +4618,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Неуспех учитавања странице - + Loading... Учитавам... - + %1 - QupZilla %1 - Капзила - + Inspect Element Провери елемент @@ -4727,144 +4704,144 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Да би приказала ову страницу Капзила мора поново да пошаље захтев за учитавањем (као претрага куповине која је већ обављена) - + Confirm form resubmission Потврда поновног слања - + Select files to upload... Изабери фајлове за слање... - + Server refused the connection Сервер је одбио везу - + Server closed the connection Сервер је затворио везу - + Server not found Сервер није нађен - + Connection timed out Истекло време повезивања - + Untrusted connection Неповерљива веза - + Temporary network failure Привремени неуспех мреже - + Proxy connection refused Веза са проксијем одбијена - + Proxy server not found Сервер проксија није нађен - + Proxy connection timed out Истекло време повезивања са проксијем - + Proxy authentication required Прокси захтева аутентификацију - + Content not found Садржај није нађен - + Unknown network error Непозната грешка мреже - + AdBlocked Content Блокиран садржај - + Blocked by rule <i>%1</i> Блокирано филтером <i>%1</i> - + Content Access Denied Приступ садржају одбијен - + Error code %1 Кôд грешке %1 - + Failed loading page Неуспех учитавања странице - + QupZilla can't load page from %1. Капзила не може да учита страницу са %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Проверите да ли сте погрешно укуцали адресу, на пример <b>ww.</b>example.com уместо <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Ако не можете да учитате ниједну страницу, проверите везу вашег рачунара са интернетом. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Ако су ваш рачунар или мрежа заштићени заштитним зидом или проксијем, проверите да ли је Капзили дозвољен приступ интернету. - + Try Again Покушај поново - + JavaScript alert Јаваскрипт упозорење - + Prevent this page from creating additional dialogs Не дозволи овој страници да прави још дијалога - + Choose file... Изабери фајл... @@ -4900,233 +4877,233 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Неименована страница - + Create Search Engine Направи мотор претраге - + &Back На&зад - + &Forward На&пред - - + + &Reload &Учитај поново - + S&top Заус&тави - + This frame Оквир - + Show &only this frame П&рикажи само овај оквир - + Show this frame in new &tab Прикажи овај оквир у новом &језичку - + Print frame Штампај оквир - + Zoom &in У&величај - + &Zoom out У&мањи - + Reset Стварна величина - + Show so&urce of frame Прикажи извор о&квира - + Book&mark page &Обележи страницу - + &Save page as... &Сачувај страницу као... - + &Copy page link &Копирај везу странице - + Send page link... Пошаљи везу странице... - + &Print page &Штампај страницу - + Select &all Из&абери све - + Validate page Провера кôда - + Show so&urce code Прикажи &изворни кôд - + Show info ab&out site По&даци о сајту - + Open link in new &tab Отвори везу у новом &језичку - + Open link in new &window Отвори везу у новом &прозору - + B&ookmark link &Обележи везу - + &Save link as... &Сачувај везу као... - + Send link... Пошаљи везу... - + &Copy link address &Копирај адресу везе - + Show i&mage П&рикажи слику - + Copy im&age К&опирај слику - + Copy image ad&dress Копирај &адресу слике - + &Save image as... Сачувај с&лику као... - + Send image... Пошаљи слику... - + Send text... Пошаљи текст... - + Google Translate Гуглов преводилац - + Dictionary Речник - + Go to &web address Иди на &веб адресу - + Search "%1 .." with %2 Тражи „%1“ на %2 - + Search with... Тражи на... - + &Play &Пусти - + &Pause &Паузирај - + Un&mute Вра&ти звук - + &Mute У&тишај - + &Copy Media Address &Копирај адресу медија - + &Send Media Address П&ошаљи адресу медија - + Save Media To &Disk &Сачувај медиј на диск diff --git a/translations/sv_SE.ts b/translations/sv_SE.ts index 93605b611..d4c31ec1d 100644 --- a/translations/sv_SE.ts +++ b/translations/sv_SE.ts @@ -35,10 +35,6 @@ <b>WebKit version %1</b></p> <b>Webkit-version %1</b></p> - - <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Alla rättigheter reserverade.<br/> - <small>Build time: %1 </small></p> @@ -497,40 +493,40 @@ Välj fil... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox sparar sina bokmärken i<b>places.sqlite</b> SQLite database. Denna fil hittas vanligen i - - - - + + + + Please choose this file to begin importing bookmarks. Välj denna fil för att börja importera bokmärken. - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google Chrome sparar sina bokmärken .i <b>Bokmärken</b> text file. Denna fil hittas vanligen i - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera sparar sina bokmärken i <b>bookmarks.adr</b> text file. Denna fil hittas vanligen i - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes Du kan importera bokmärken från alla webbläsare som stödjer HTML-exportering. Denna fil har vanligen dessa suffix - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer sparar sina bokmärken i <b>Favoriter</b> folder. Denna mapp hittas vanligen i - + Please choose this folder to begin importing bookmarks. Välj mapp för att börja importera bokmärken. @@ -628,67 +624,67 @@ Välj namn för mapp: - + Add Subfolder Lägg till undermapp - + Rename folder Ändra namn på mapp - + Remove folder Ta bort mapp - + Open link in current &tab Öppna länk i nuvarande &flik - + Open link in &new tab Öppna länk i&ny flik - + Move bookmark to &folder Flytta bokmärke till &mapp - + Rename bookmark Ändra namn på bokmärke - + Remove bookmark Ta bort bokmärke - + <b>Warning: </b>You already have bookmarked this page! <b>Varning: </b>Du har redan lagt till bokmärk för denna sida! - + Choose name and location of this bookmark. Välj namn och plats för detta bokmärke. - + Add New Bookmark Lägg till nytt bokmärk - + Choose folder for bookmarks: Välj mapp för bokmärken: - + Bookmark All Tabs Lägg till bokmärken för alla flikar @@ -696,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu Bokmärken i meny - - + + Bookmarks In ToolBar Bokmärken i verktygsrad - - + + Unsorted Bookmarks Osorterade bokmärkn @@ -745,106 +741,94 @@ BookmarksToolbar - + &Bookmark Current Page &Lägg till bokmärke för nuvarande sida - + Bookmark &All Tabs Lägg till bokmärke för &alla flikar - + &Organize Bookmarks &Organisera bokmärken - Hide Most &Visited - Dölj mest &sedda - - - + Show Most &Visited Visa mest &sedda - + Show Only Icons Visa endast ikoner - + &Hide Toolbar &Dölj verktygsrad - + Move right Flytta till höger - + Move left Flytta till vänster - + Edit bookmark Redigera bokmärke - + Remove bookmark Ta bort bokmärke - + Edit bookmark: Redigera bokmärke: - + Title: Titel: - + Url: Url: - + Edit Bookmark Redigera bokmärk - + Most visited Mest sedda - + Sites you visited the most Sidor du besökt mest - - + + Empty Tomt BookmarksWidget - - Edit This Bookmark - Redigera detta bokmärke - - - Remove Bookmark - Ta bort bokmärke - Name: @@ -875,27 +859,11 @@ Add to Bookmarks Lägg till i Bokmärken - - Add into Bookmarks - Lägg till i Bokmärken - - - Add into Speed Dial - Lägg till i Speed Dial - - - <b>Add Bookmark</b> - <b>Lägg till bokmärke</b> - Edit Bookmark Redigera bokmärke - - <b>Edit Bookmark</b> - <b>Redigera bokmärke</b> - @@ -1116,17 +1084,6 @@ Ingen mer information tillgänglig. - - CloseDialog - - There are still open tabs - Det finns fortfarande öppna flikar - - - Don't ask again - Fråga inte igen - - CookieManager @@ -1171,8 +1128,8 @@ - - + + Server: Server: @@ -1270,12 +1227,12 @@ Är du säker på att du vill ta bort alla kakor från din dator? - + Add to whitelist Lägg till i vitlistan - + Add to blacklist Lägg till i svartlistan @@ -1453,8 +1410,8 @@ DownloadManager - - + + Download Manager Nedladdningshanterare @@ -1464,52 +1421,52 @@ Rensa - + Executable: Körbar fil: - + Arguments: Argument: - + Cannot start external download manager Kan ej starta extern nedladdningshanterare - + Cannot start external download manager! %1 Kan ej starta extern nedladdningshanterare! %1 - + %1% of %2 files (%3) %4 remaining %1% av %2 filer (%3) %4 återstår - + % - Download Manager % - Nedladdningshanterare - + Download Finished Nedladdning klar - + All files have been successfully downloaded. Alla filer har laddats ner. - + Warning Varning - + Are you sure to quit? All uncompleted downloads will be cancelled! Är du säker på att du vill avsluta? Alla inkompletta nedladdningar kommer att avbrytas! @@ -1648,30 +1605,30 @@ Kopiera adress - - + + Today Idag - - + + This Week Denna veckan - - + + This Month Denna månaden - + Confirmation Bekräftelse - + Are you sure to delete all history? Vill du verkligen ta bort all historik? @@ -1679,72 +1636,67 @@ HistoryModel - - Failed loading page - Misslyckades med att hämta sidan - - - + No Named Page Namnlös sida - + January Januari - + February Februari - + March Mars - + April April - + May Maj - + June Juni - + July Juli - + August Augusti - + September September - + October Oktober - + November November - + December December @@ -1778,19 +1730,19 @@ - + Today Idag - + This Week Denna veckan - + This Month Denna månaden @@ -1816,17 +1768,17 @@ Skriv Url-adress eller sök på %1 - + Paste And &Go Klistra in och &kör - + Clear All Rensa allt - + .co.uk Append domain name on ALT + Enter = Should be different for every country .se @@ -1837,58 +1789,47 @@ Visa information om denna sida - - MainApplication - - Last session crashed - Senaste sessionen kraschade - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - <b>QupZilla krashade :-(</b><br/>Hoppsan,den senaste sessionen av QupZilla avslutades oväntat. Vi är ledsna för detta. Vill du prova att återställa senast sparade läge? - - NavigationBar - + No Named Page Namnlös sida - + Back Bakåt - + Forward Framåt - + Home Hem - + New Tab Ny flik - + Main Menu Huvudmeny - - + + Exit Fullscreen Avsluta fullskärm - - + + Clear history Rensa historik @@ -1977,14 +1918,10 @@ Skärmbild - + Save Page Screen... Spara skärmbild... - - screen.png - skärmbild.png - PluginsList @@ -2003,10 +1940,6 @@ Settings Inställningar - - Load Plugins - Ladda insticksmoduler - WebKit Plugins @@ -2043,29 +1976,25 @@ Tillåt Klicka-för-Flash - + Add site to whitelist Lägg till sida i vitlistan - + Server without http:// (ex. youtube.com) Server utan http:// (tex. youtube.com) - + Error! Fel! - + Cannot load extension! Kan ej ladda insticksmodul! - - Cannot load plugin! - Kan ej ladda insticksmodul! - PopupWindow @@ -2161,7 +2090,7 @@ - + Note: You cannot delete active profile. Observera: Du kan inte ta bort aktiv profil. @@ -2316,33 +2245,29 @@ Open new tabs after active tab Öppna nya flikar efter den aktiva fliken - - Allow Plugins (Flash plugin) - Tillåt insticksmoduler (Flash) - Allow DNS Prefetch Hämta DNS-poster i förväg - + Allow local storage of HTML5 web content Tillåt lokal lagring av HTML5-innehåll - + Delete locally stored HTML5 web content on close Ta bort lokalt sparade HTML5-data vid avslut - + JavaScript can access clipboard Klippbord? Javaskript kan komma åt klippbordet - + Send Do Not Track header to servers Skicka DNT-instruktioner till servrar @@ -2436,324 +2361,319 @@ - Allow storing web icons - Tillåt att webbikoner lagras - - - Allow saving history Tillåt att historik sparas - + Delete history on close Ta bort historik vid avslut - + Delete now Ta bort nu - + Proxy Configuration Proxyinställningar - + HTTP HTTP - + SOCKS5 SOCKS5 - - + + Port: Port: - - + + Username: Användarnamn: - - + + Password: Lösenord: - + Don't use on: Använd inte på: - + Manual configuration Manuell inställning - + System proxy configuration Global proxyinställning - + Do not use proxy Använd inte proxy - + <b>Exceptions</b> <b>Undantag</b> - + Server: Server: - + Use different proxy for https connection Använd annan proxy för https-anslutningar - + <b>Font Families</b> <b>Teckensnittsfamilerj</b> - + Standard Standard - + Fixed Fast bredd - + Serif Serif - + Sans Serif Sans Serif - + Cursive Kursivt - + <b>External download manager</b> <b>Extern nedladdningshanterare</b> - + Use external download manager Använd extern nedladdningshanterare - + Executable: Körbar fil: - + Arguments: Argument: - + Filter tracking cookies Filtrera spårningskakor - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Varning: </b>Matcha domännamn exakt och Filtrera spårningskakor kan leda till att kakor från vissa sidor nekas. Om du har problem med kakor, prova att inaktivera dessa inställningar först! - + Change browser identification: Ändra webbläsaridentifiering: - + Fantasy - + <b>Font Sizes</b> <b>Teckenstorlek</b> - + Fixed Font Size Fast - + Default Font Size Standard - + Minimum Font Size Minsta - + Minimum Logical Font Size Minsta logiska - + <b>Download Location</b> <b>Nedladdningsdestination</b> - + Ask everytime for download location Fråga efter nedladdningsdestination varje gång - + Use defined location: Använd förinställd destination: - - - + + + ... ... - + <b>Download Options</b> <b>Nedladdningsinställningar</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Använd systemets egna filhanterare (skapar eventuellt problem vid nedladdning av SSL-säkrat material) - + Close download manager when downloading finishes Stäng nedladdningshanterare när alla nedladdningar avslutas - + <b>AutoFill options</b> <b>Autofyll-alternativ</b> - + Allow saving passwords from sites Tillåt att lösenord lagras på sidor - + <b>Cookies</b> <b>Kakor</b> - + Allow storing of cookies Tillåt lagring av kakor - + Delete cookies on close Ta bort kakor vid avslut - + Match domain exactly Matcha domännamn exakt - + Cookies Manager Kakhanterare - + <b>SSL Certificates</b> <b>SSL-certifikat</b> - + SSL Manager SSL-hanterare - + Edit CA certificates in SSL Manager Redigera CA-certifikat i SSL-hanterare - - + + <b>Other</b> <b>Övrigt</b> - + Send Referer header to servers Skicka Referer header till servrar - + Block popup windows Blockera popup-fönster - + <b>Notifications</b> <b>Notifikationer</b> - + Use OSD Notifications Använd OSD-notifikationer - + Use Native System Notifications (Linux only) Använd systemets egna notifikationssystem (endast Linux) - + Do not use Notifications Använd inte notifikationer - + Expiration timeout: Tiden löper ut: - + seconds sekunder - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Observera: </b>Du kan ändra notifikationernas placering genom att dra runt dem på skärmen. @@ -2773,17 +2693,17 @@ För att byta språk måste du starta om webbläsaren. - + StyleSheet automatically loaded with all websites: Stilmall som automatiskt laddas med alla webbsidor: - + Languages Språk - + <b>Preferred language for web sites</b> <b>Föredraget språk för hemsidor</b> @@ -2832,78 +2752,74 @@ Notifications Notifikationer - - Plugins - Insticksmoduler - Other Annat - + OSD Notification OSD-notifikationer - + Drag it on the screen to place it where you want. Flytta runt den på skämen för att placera den där du vill ha den. - + Choose download location... Välj nedladdningsdestination... - + Choose stylesheet location... Välj stilmallens plats... - + Deleted Borttagen - + Choose executable location... Välj den körbara filens plats... - + New Profile Ny profil - + Enter the new profile's name: Välj namn på den nya profilen: - - + + Error! Fel! - + This profile already exists! Denna profil finns redan! - + Cannot create profile directory! Kan inte skapa profilensökväg! - + Confirmation Bekräftelse - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Är du säker på att du permanent vill ta bort profilen"%1"? Detta kan ej göras ogjort! @@ -2972,22 +2888,22 @@ Nuvarande sidans IP-adress - + &Tools &Verktyg - + &Help &Hjälp - + &Bookmarks &Bokmärken - + Hi&story Hi&storik @@ -3097,17 +3013,17 @@ &Inställningar - + QupZilla QupZilla - + Last session crashed Senaste sessionen kraschade - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>QupZilla krashade :-(</b><br/>Hoppsan,den senaste sessionen av QupZilla avslutades oväntat. Vi är ledsna för detta. Vill du prova att återställa senast sparade läge? @@ -3163,157 +3079,147 @@ - Bookmarks - Bokmärken - - - - History - Historik - - - Toolbars Verktygsrader - + Sidebars Sidorader - + Zoom &In Zooma &in - + Zoom &Out Zooma &ut - + Reset Återställ - + &Page Source &Källkod - + Closed Tabs Stängda flikar - + Recently Visited Senast besökta - + Most Visited Mest besökta - + Web In&spector Webb&inspektör - + Configuration Information Konfigurationsinformation - + Restore &Closed Tab Återställ &stängd flik - + (Private Browsing) (Privat surfning) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Det finns fortfarande %1 öppna flikar och din session kommer inte att sparas. Är du säker på att du vill avsluta QupZilla? - + Don't ask again Fråga inte igen - + There are still open tabs Det finns fortfarande öppna flikar - + Bookmark &This Page Bokmärk &denna sida - + Bookmark &All Tabs Bokmärk &alla flikar - + Organize &Bookmarks Organisera &bokmärken - - - - - + + + + + Empty Tom - + &Back &Bakåt - + &Forward &Framåt - + &Home &Hem - + Show &All History Visa &all historik - + Restore All Closed Tabs Återställ alla stängda flikar - + Clear list Rensa lista - + About &Qt Om &Qt - + Information about application Information om programmet @@ -3323,129 +3229,120 @@ Are you sure to quit QupZilla? &Om QupZilla - + Report &Issue Rapportera &problem - + &Web Search &Webbsökning - + Page &Info Sid&information - + &Download Manager &Nedladdningshanterare - + &Cookies Manager &Kakhanterare - + &AdBlock &Reklamblockering - + RSS &Reader RSS-&läsare - + Clear Recent &History Rensa senaste &historik - + &Private Browsing &Privat surfning - + Other Annat - - Default - Standard - - - + %1 - QupZilla %1 - QupZilla - + HTML files HTML-filer - + Image files Bildfiler - + Text files Textfiler - + All files Alla filer< - + Open file... Öppna fil... - + Are you sure you want to turn on private browsing? Är du säker på att du vill aktivera privat surfning? - + When private browsing is turned on, some actions concerning your privacy will be disabled: När privat surfning aktiveras stängs vissa integritetsrelaterade funktioner av: - + Webpages are not added to the history. Hemsidor sparas inte i historiken. - + Current cookies cannot be accessed. Nuvarande kakor kan inte kommas åt. - + Your session is not stored. Din session sparas inte. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Fram till att du stänger fönstret kan du använda Bakåt/Framåt-knapparna för att återvända till sidor du besökt. - + Start Private Browsing Aktivera privat surfning - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - Det finns fortfarande %1 öppna flikar och din session kommer inte att sparas. Är du säker på att du vill avsluta QupZilla? - You have successfully added RSS feed "%1". @@ -3513,18 +3410,18 @@ Are you sure to quit QupZilla? Om QupZilla - - + + Configuration Information Konfigurationsinformation - + Browser Identification Webbläsaridentifiering - + Paths Sökvägar @@ -3535,43 +3432,43 @@ Are you sure to quit QupZilla? - + Version Version - + WebKit version WebKit-version - + Application version Programversion - + Qt version Qt-version - + Build time Byggdatum - + Platform Plattform - + Profile Profil - + Preferences Inställningar @@ -3581,71 +3478,67 @@ Are you sure to quit QupZilla? Om du har problem med QupZilla, prova att inaktivera alla insticksmoduler först. <br/> Om detta inte löser problemet, fyll i i detta formulär: - + Build Configuration Byggflaggor - + Option Alternativ - + Value Värde - + Extensions Insticksmoduler - + Name Namn - + Author Författare - + Description Beskrivning - + Settings Inställningar - + Saved session Sparad session - + Pinned tabs Nålade flikar - + Data Data - + Themes Teman - Plugins - Insticksmoduler - - - + Translations Översättningar @@ -3670,164 +3563,148 @@ Are you sure to quit QupZilla? Översättare - + Speed Dial Speed Dial - + Add New Page Lägg till ny sida - + Apply Verkställ - + Close Stäng - + Speed Dial settings Speed Dial-inställningar - + Placement: Placering: - + Auto Automatisk - + Cover Omslag - + Fit Passa in - + Fit Width Passa in bredd - + Fit Height Passa in höjd - + Use background image Använd bakgrundsbild - + Select image Välj bild - + Maximum pages in a row: Maximalt antal sidor på en rad: - + Change size of pages: Ändra storlek på sidor: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. Denna sida innehåller information om QupZillas aktuella konfiguration - relevant för felsökning. Vänligen inkludera denna information i buggrapporter. - + No available extensions. Inga tillgängliga insticksmoduler - This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports. - Denna sida innehåller information om QupZillas nuvarande konfiguration, insticksmoduler etc, all information som är relevant för felsökning. Var vänlig och inkludera denna information i buggrapporter. - - - - + + Disabled Inaktiverad - - - - - + + + + + <b>Enabled</b> <b>Aktiverad</b> - + Debug build - + WebGL support WebGL-stöd - + Windows 7 API Windows 7 API - + KDE integration KDE-integration - + Portable build - No available plugins. - Inga tillgängliga insticksmoduler. - - - + Load title from page Hämta titel från sidan - + Edit Redigera - + Remove Ta bort - - E-mail is optional<br/><b>Note: </b>Please use English language only. - E-post är valfritt<br/><b>Observera:</b>Använd endast Engelska. - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - Om du upplever problem med QupZilla, prova att inaktivera alla insticksmoduler först. <br/>Om det inte löser problemet, fyll i denna blankett: - Please fill out all required fields! @@ -3835,27 +3712,27 @@ Are you sure to quit QupZilla? - + Information about version Information om version - + Reload Hämta om - + Url Url - + Title Titel - + New Page Ny sida @@ -3993,12 +3870,12 @@ Lägg till flöden med RSS-ikonen i navigeringsraden från sidor som tillhandah Lägg till RSS-flöden från denna sida - + Untitled feed Namnlöst flöde - + Add Lägg till @@ -4206,12 +4083,14 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s SideBar - + + Bookmarks Bokmärken - + + History Historik @@ -4489,10 +4368,6 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Paste Klistra in - - Delete - Ta bort - Select All @@ -4614,7 +4489,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s SqueezeLabelV2 - + Copy Kopiera @@ -4745,22 +4620,22 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s TabbedWebView - + Failed loading page Misslyckades med att hämta sidan - + Loading... Hämtar... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Granska element @@ -4787,10 +4662,6 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s License Licens - - License Viewer - Licensvisare - ToolButton @@ -4835,7 +4706,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) För att visa sidan måste QupZilla skicka information som kommer att @@ -4843,141 +4714,137 @@ upprepa en tidigare utförd åtgärd (såsom en sökning eller beställningsbekräftelse) - + Confirm form resubmission Skicka om formulärdata - + Select files to upload... Välj filer att ladda upp... - + Server refused the connection Servern vägrade ansluta - + Server closed the connection Servern avbröt anslutningen - + Server not found Servern hittades inte - + Connection timed out Anslutningen upphörde - + Untrusted connection Osäker anslutning - + Temporary network failure Temporärt nätverksfel - + Proxy connection refused Proxyanslutning vägrad - + Proxy server not found Proxyserver ej hittad - + Proxy connection timed out Proxyanslutning upphörde - + Proxy authentication required Proxyautentisering krävs - + Content not found Innehåll hittades inte - + Unknown network error Okänt nätverksfel - + AdBlocked Content Reklamblockerat innehåll - + Blocked by rule <i>%1</i> Blockart av regeln <i>%1</i> - + Content Access Denied Innehållsåtkomst nekad - + Error code %1 Felkod %1 - + Failed loading page Misslyckades med att hämta sidan - + QupZilla can't load page from %1. QupZilla kan inte hämta sidan från %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Kontrollera adressen efter stavfel såsom <b>ww.</b>exempel.se istället för <b>www.</b>exempel.se - + If you are unable to load any pages, check your computer's network connection. Om du inte kan hämta några sidor alls, kontrollera din dators nätverksanslutning. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Om din dator eller ditt nätverk är skyddat av en brandvägg eller proxy, kontrollera att QupZilla har tillåtelse att nå webben. - + Try Again Försök igen - + JavaScript alert JavaScript-varning - + Prevent this page from creating additional dialogs Förhindra att denna sidan skapar fler dialogrutor - JavaScript alert - %1 - Javaskriptvarning - %1 - - - + Choose file... Välj fil... @@ -5008,233 +4875,233 @@ beställningsbekräftelse) WebView - + &Copy page link &Kopiera sidlänk - + Send page link... Skicka sidlänk... - + &Print page &Skriv ut sida - + Validate page Validera sida - + Send text... Skicka text... - + Google Translate Google Översätt - + Dictionary Ordlista - + Go to &web address Gå till &webadress - + Open link in new &tab Öppna länk i ny &flik - + Open link in new &window Öppna länk i nytt &fönster - + B&ookmark link Bokmärk &länk - + &Save link as... &Spara länk som... - + Send link... Skicka länk... - + &Copy link address &Kopiera länkadress - + Show i&mage Visa &bild - + Copy im&age Kopiera &bild - + Copy image ad&dress Kopiera bild&adress - + &Save image as... &Spara bild som... - + Send image... Skicka bild... - + &Back &Bakåt - + Create Search Engine Skapa sökmotor - + &Forward &Framåt - - + + &Reload &Hämta om - + S&top &Stopp - + This frame Denna ram - + Show &only this frame Visa &endast denna ramen - + Show this frame in new &tab Visa denna ramen i ny &flik - + Print frame Skriv ut ram - + Zoom &in Zooma &in - + &Zoom out Zooma &ut - + Reset Återställ - + Show so&urce of frame Visa ramens &källa - + Book&mark page Bok&märk sida - + &Save page as... &Spara sida som... - + Select &all Markera &allt - + Show so&urce code Visa &källkod - + Show info ab&out site Visa &information om denna sida - + Search with... Sök med... - + &Play &Spela upp - + &Pause &Paus - + Un&mute Slå &på ljud - + &Mute &Stäng av ljud - + &Copy Media Address &Kopiera medieadress - + &Send Media Address &Skicka medieadress - + Save Media To &Disk Spara media till &hårddisk - + Search "%1 .." with %2 Sök efter"%1 .."på %2 diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts index 35b741c68..1fd18ee27 100644 --- a/translations/zh_CN.ts +++ b/translations/zh_CN.ts @@ -493,40 +493,40 @@ 选择文件... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox的书签文件通常位于 - - - - + + + + Please choose this file to begin importing bookmarks. 请选择文件开始导入书签。 - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in 谷歌浏览器的书签文件通常位于 - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera浏览器的书签文件通常位于 - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes 您可以从任何支持HTML的浏览器中导入书签。此文件通常这些后缀 - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer的书签文件通常位于 - + Please choose this folder to begin importing bookmarks. 选择此文件夹,开始导入书签。 @@ -584,7 +584,7 @@ 导入书签 - + Add Subfolder 添加子文件夹 @@ -629,62 +629,62 @@ 选择文件夹的名称: - + <b>Warning: </b>You already have bookmarked this page! <b>警告:</b>您已经有了此页书签! - + Choose name and location of this bookmark. 选择书签的名称和位置. - + Open link in &new tab 在新标签中打开链接 &new tab - + Move bookmark to &folder 移动书签和文件夹 &f - + Rename folder 重命名文件夹 - + Remove folder 删除文件夹 - + Open link in current &tab 在当前标签中打开链接&tab - + Rename bookmark 重命名书签 - + Remove bookmark 删除书签 - + Add New Bookmark 添加新标签 - + Choose folder for bookmarks: 选择标签文件夹: - + Bookmark All Tabs 为所有标签创建书签 @@ -692,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu 在菜单栏中创建书签 - - + + Bookmarks In ToolBar 在工具栏中创建书签 - - + + Unsorted Bookmarks 未分类的书签 @@ -741,102 +741,94 @@ BookmarksToolbar - + &Bookmark Current Page - + Bookmark &All Tabs - + &Organize Bookmarks - + Show Most &Visited - + Show Only Icons 只显示图标 - + &Hide Toolbar - + Move right 向右移动 - + Move left 向左移动 - + Edit bookmark 编辑书签 - + Remove bookmark 删除书签 - + Edit bookmark: 编辑书签: - + Title: 标题: - + Url: 地址: - + Edit Bookmark 编辑书签 - + Most visited - + Sites you visited the most 您最常访问的网站 - - + + Empty 空页面 BookmarksWidget - - Edit This Bookmark - 编辑此书签 - - - Remove Bookmark - 删除书签 - Name: @@ -867,27 +859,11 @@ Add to Bookmarks 添加到书签 - - Add into Bookmarks - 插入到书签 - - - Add into Speed Dial - 插入到快速拨号 - - - <b>Add Bookmark</b> - <b>添加书签</b> - Edit Bookmark 编辑书签 - - <b>Edit Bookmark</b> - <b>编辑书签</b> - @@ -1107,17 +1083,6 @@ 没有提供更多信息. - - CloseDialog - - There are still open tabs - 总是打开标签页 - - - Don't ask again - 不要再询问 - - CookieManager @@ -1162,8 +1127,8 @@ - - + + Server: @@ -1261,12 +1226,12 @@ 您确定删除计算机上所有的Cookie吗? - + Add to whitelist 添加到白名单 - + Add to blacklist 添加到黑名单 @@ -1442,8 +1407,8 @@ DownloadManager - - + + Download Manager 下载管理 @@ -1453,52 +1418,52 @@ 清除 - + Executable: 可执行文件: - + Arguments: 参数: - + Cannot start external download manager 无法启动外部下载管理器 - + Cannot start external download manager! %1 无法启动外部下载管理器!%1 - + %1% of %2 files (%3) %4 remaining %1%的%2文件(%3)%4剩余 - + % - Download Manager % - 下载管理 - + Download Finished 下载完成 - + All files have been successfully downloaded. 所有文件已成功下载. - + Warning 注意 - + Are you sure to quit? All uncompleted downloads will be cancelled! 下载未完成确认退出吗? @@ -1637,30 +1602,30 @@ 复制地址 - - + + Today 到今天 - - + + This Week 本周 - - + + This Month 本月 - + Confirmation 确认 - + Are you sure to delete all history? 确定删除所有历史记录吗? @@ -1668,72 +1633,67 @@ HistoryModel - - Failed loading page - - - - + No Named Page - + January 一月 - + February 二月 - + March 三月 - + April 四月 - + May 五月 - + June 六月 - + July 七月 - + August 八月 - + September 九月 - + October 十月 - + November 十一月 - + December 十二月 @@ -1767,19 +1727,19 @@ - + Today 到今天 - + This Week 本周 - + This Month 本月 @@ -1805,17 +1765,17 @@ 输入URL地址或在%1上搜索 - + Paste And &Go 粘贴和&Go - + Clear All 全部清除 - + .co.uk Append domain name on ALT + Enter = Should be different for every country .co.uk @@ -1826,58 +1786,47 @@ 显示此页信息 - - MainApplication - - Last session crashed - 会话崩溃 - - - <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? - QupZilla上次结束时崩溃,我们非常遗憾。您要还原保存的状态吗? - - NavigationBar - + No Named Page 无命名页面 - + Back 后退 - + Forward 前进 - + Home 主页 - + New Tab 新标签 - + Main Menu 主菜单 - - + + Exit Fullscreen 退出全屏 - - + + Clear history 清除历史 @@ -1966,7 +1915,7 @@ 网页屏幕 - + Save Page Screen... 保存屏幕网页... @@ -1988,10 +1937,6 @@ Settings 设置 - - Load Plugins - 导入插件 - WebKit Plugins @@ -2028,22 +1973,22 @@ 允许点击Flash - + Add site to whitelist 将网站添加到白名单 - + Server without http:// (ex. youtube.com) 没有http://服务器(如youtube.com) - + Error! 错误! - + Cannot load extension! 无法加载扩展! @@ -2103,10 +2048,6 @@ Notifications 通知 - - Plugins - 插件 - Other @@ -2180,7 +2121,7 @@ - + Note: You cannot delete active profile. 注意:您不能删除活动配置文件。 @@ -2304,32 +2245,28 @@ Allow JavaScript 允许JavaScript - - Allow Plugins (Flash plugin) - 允许插件(Flash插件) - Allow DNS Prefetch 允许DNS预取 - + Allow local storage of HTML5 web content 允许本地存储HTML5的网页内容 - + Delete locally stored HTML5 web content on close 删除本地存储的HTML5网页内容 - + JavaScript can access clipboard JavaScript可访问剪贴板 - + Send Do Not Track header to servers 发送不跟踪头到服务器 @@ -2465,324 +2402,319 @@ - Allow storing web icons - 允许存储网页图标 - - - Allow saving history 允许保存历史 - + Delete history on close 删除近来的历史记录 - + Delete now 立即删除 - + Proxy Configuration 代理配置 - + HTTP - + SOCKS5 - - + + Port: 端口: - - + + Username: 用户名: - - + + Password: 密码: - + Don't use on: 不要使用: - + Manual configuration 手动配置 - + System proxy configuration 系统代理配置 - + Do not use proxy 不使用代理 - + <b>Exceptions</b> <b>例外</b> - + Server: 服务器: - + Use different proxy for https connection 使用不同的代理连接https - + <b>Font Families</b> <b>字体系列</b> - + Standard 标准字体 - + Fixed 等宽字体 - + Serif 衬线字体 - + Sans Serif 无衬线字体 - + Cursive 手写字体 - + <b>External download manager</b> <b>外部下载管理器</b> - + Use external download manager 使用外部下载管理器 - + Executable: 可执行文件: - + Arguments: 参数: - + Filter tracking cookies 过滤器跟踪Cookie - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>警告:</b>精确匹配和筛选跟踪Cookie的选项可能会导致拒绝网站的一些cookies。如果您有与cookie有关的问题,请首先尝试禁用此选项! - + Change browser identification: 更改浏览器识别: - + Fantasy 幻想字体 - + <b>Font Sizes</b> - + Fixed Font Size 等宽字体大小 - + Default Font Size 默认字体大小 - + Minimum Font Size 最小字体大小 - + Minimum Logical Font Size 最小的逻辑字体大小 - + <b>Download Location</b> <b>下载位置</ b> - + Ask everytime for download location 每次询问下载位置 - + Use defined location: 使用定义的位置: - - - + + + ... ... - + <b>Download Options</b> <b>下载选项</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) 使用本地系统文件对话框 (可能会导致下载SSL保护内容的问题) - + Close download manager when downloading finishes 下载完成后关闭下载管理器 - + <b>AutoFill options</b> <B>自动填充选项</b> - + Allow saving passwords from sites 允许保存网站密码 - + <b>Cookies</b> <b>Cookies</b> - + Allow storing of cookies 允许存储cookie - + Delete cookies on close 关闭后删除cookies - + Match domain exactly 域完全匹配 - + Cookies Manager 管理Cookies - + <b>SSL Certificates</b> <b>SSL证书</b> - + SSL Manager 管理SSL - + Edit CA certificates in SSL Manager 在SSL管理器中编辑CA证书 - - + + <b>Other</b> <b>其他</b> - + Send Referer header to servers 发送引用者标头到服务器 - + Block popup windows 拦截弹出窗口 - + <b>Notifications</b> <b>通知</b> - + Use OSD Notifications 使用OSD的通知 - + Use Native System Notifications (Linux only) 使用本机的系统通知(仅限Linux) - + Do not use Notifications 不要使用通知 - + Expiration timeout: 到期超时: - + seconds - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>注意:</ b>您可以在屏幕上拖动以改变OSD​​通知的位置。 @@ -2802,17 +2734,17 @@ 要改变语言,你必须重新启动浏览器。 - + StyleSheet automatically loaded with all websites: 所有的网站自动加载样式表: - + Languages 语言 - + <b>Preferred language for web sites</b> <b>网站首选的语言</b> @@ -2822,68 +2754,68 @@ 外观 - + OSD Notification OSD的通知 - + Drag it on the screen to place it where you want. 在屏幕上拖动它到你想要的地方。 - + Choose download location... 选择下载位置... ... - + Choose stylesheet location... 选择样式表的位置... - + Deleted 已删除 - + Choose executable location... 选择可执行文件的位置... - + New Profile 新的配置文件 - + Enter the new profile's name: 输入新配置文件的名称: - - + + Error! 错误! - + This profile already exists! 此配置文件已经存在! - + Cannot create profile directory! 无法创建配置文件目录! - + Confirmation 确认 - + Are you sure to permanently delete "%1" profile? This action cannot be undone! 您确定要永久删除“%1”个人资料吗?这将无法复原! @@ -2951,16 +2883,6 @@ IP Address of current page 当前页面的IP地址 - - - Bookmarks - 书签 - - - - History - 历史 - &New Window @@ -3052,27 +2974,27 @@ 查找&F - + &Tools 工具&T - + QupZilla - + &Help 帮助&H - + &Bookmarks 书签&B - + Hi&story 历史&s @@ -3082,12 +3004,12 @@ 文件&F - + Last session crashed 会话崩溃 - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? QupZilla上次结束时崩溃,我们非常遗憾。您需要还原保存的状态吗? @@ -3147,143 +3069,143 @@ 字符与编码&E - + Toolbars 工具栏 - + Sidebars 侧边栏 - + Zoom &In 放大&I - + Zoom &Out 缩小&O - + Reset 重置 - + &Page Source 页面源代码&P - + Closed Tabs 关闭标签页 - + Recently Visited 最近访问 - + Most Visited 最常访问的 - + Web In&spector 在网络和&spector - + Configuration Information 配置信息 - + Restore &Closed Tab 还原关闭的标签&C - + (Private Browsing) (私人浏览) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? 还有%1的标签和您的会话将不会被储存。 你确定退出QupZilla吗? - + Don't ask again 不要再询问 - + There are still open tabs 总是打开标签页 - + Bookmark &This Page 收藏本页&T - + Bookmark &All Tabs 收藏全部标签页&A - + Organize &Bookmarks 组织书签&B - - - - - + + + + + Empty 空页面 - + &Back 后退&B - + &Forward 前进&F - + &Home 主页&H - + Show &All History 显示所有历史页&A - + Restore All Closed Tabs 还原关闭的标签 - + Clear list 清除列表 - + About &Qt 关于Qt&Q @@ -3293,136 +3215,127 @@ Are you sure to quit QupZilla? 关于QupZIlla&A - + Report &Issue 报告及发行&I - + &Web Search &W网页搜索 - + Page &Info 网页信息&I - + &Download Manager 下载管理&D - + &Cookies Manager 管理Cookies&C - + &AdBlock &AdBlock - + RSS &Reader RSS阅读器&R - + Clear Recent &History 清除最近的历史&H - + &Private Browsing 隐私浏览&P - - There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? - 还有%1打开的标签和您的会话将不会被储存.你一定要退出吗? - Pr&eferences 首选项&e - + Information about application 软件信息 - + Other 其他 - - Default - 默认 - - - + %1 - QupZilla %1 - QupZilla - + HTML files HTML文件 - + Image files 图像文件 - + Text files 文本文件 - + All files 所有文件 - + Open file... 打开文件... - + Are you sure you want to turn on private browsing? 你确定要打开隐私浏览吗? - + When private browsing is turned on, some actions concerning your privacy will be disabled: 打开隐私浏览时,有关于您的隐私行动将被禁用: - + Webpages are not added to the history. 网页不会添加到历史记录。 - + Current cookies cannot be accessed. 当前的cookies无法被访问。 - + Your session is not stored. 不会存储您的会话。 - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. 直到您关闭该窗口,你仍然可以单击后退和前进按钮,返回到你已经打开的网页. - + Start Private Browsing 开始隐私浏览 @@ -3498,18 +3411,18 @@ Are you sure to quit QupZilla? 关于 QupZilla - - + + Configuration Information 配置信息 - + Browser Identification 浏览器标识 - + Paths 路径 @@ -3520,112 +3433,108 @@ Are you sure to quit QupZilla? - + Version 版本 - + WebKit version Webkit版本 - + Application version 应用程序的版本 - + Qt version QT版本 - + Build time 建立时间 - + Platform 平台 - + Profile 配置文件 - + Preferences 首选项 - + Build Configuration 生成配置 - + Option 选项 - + Value - + Extensions 扩展 - + Name 名称 - + Author 作者 - + Description 描述 - + Settings 设置 - + Saved session 保存的会话 - + Pinned tabs 固定选项卡 - + Data 数据 - + Themes 主题 - Plugins - 插件 - - - + Translations 翻译 @@ -3650,156 +3559,148 @@ Are you sure to quit QupZilla? 翻译 - + Speed Dial 快速拨号 - + Add New Page 添加新网页 - + Apply 应用 - + Close 关闭 - + Speed Dial settings 快速拨号设置 - + Placement: 放置: - + Auto 自动 - + Cover 覆盖 - + Fit 适合 - + Fit Width 适合宽度 - + Fit Height 适合高度 - + Use background image 使用背景 - + Select image 选择图像 - + Maximum pages in a row: 每排最多网页数: - + Change size of pages: 改变页面大小: - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. 此页面包含关于QupZilla的当前配置和故障排除的信息。请提交错误报告时,包括此信息。 - + No available extensions. 没有可用的扩展。 - - + + Disabled 禁用 - - - - - + + + + + <b>Enabled</b> <b>已启用</b> - + Debug build 建立调试 - + WebGL support WebGL支持 - + Windows 7 API Windows 7API - + KDE integration KDE整合 - + Portable build 建立便携式 - + Load title from page 从网页载入标题 - + Edit 编辑 - + Remove 删除 - - E-mail is optional<br/><b>Note: </b>Please use English language only. - E-mail是可选的<br/><b>注意:</b>请只使用英语。 - - - If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: - 如果你的QupZilla遇到问题,请首先尝试禁用所有插件. <br/>如果这不能解决问题,那么请填写这张表格: - Please fill out all required fields! @@ -3807,27 +3708,27 @@ Are you sure to quit QupZilla? - + Information about version 版本信息 - + Reload 刷新 - + Url 地址 - + Title 标题 - + New Page 新网页 @@ -3964,12 +3865,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds.从这个网站添加RSS订阅 - + Untitled feed 未命名提要 - + Add 添加 @@ -4176,12 +4077,14 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SideBar - + + Bookmarks 书签 - + + History 历史 @@ -4459,10 +4362,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Paste 粘贴 - - Delete - 删除 - Select All @@ -4584,7 +4483,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SqueezeLabelV2 - + Copy 复制 @@ -4715,22 +4614,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page 载入页面失败 - + Loading... 载入中... - + %1 - QupZilla %1 - QupZilla - + Inspect Element 检查要素 @@ -4757,10 +4656,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla License 许可证 - - License Viewer - 许可证查看器 - ToolButton @@ -4805,143 +4700,143 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) 为显示此页QupZilla须重新发送请求 - + Confirm form resubmission 确认重新提交表格 - + Select files to upload... 选择要上传的文件... - + Server refused the connection 服务器拒绝了连接 - + Server closed the connection 服务器关闭了连接 - + Server not found 找不到服务器 - + Connection timed out 连接超时 - + Untrusted connection 不受信任的连接 - + Temporary network failure 临时网络故障 - + Proxy connection refused 代理服务器连接被拒绝 - + Proxy server not found 没有发现代理服务器 - + Proxy connection timed out 代理服务器连接超时 - + Proxy authentication required 要求代理身份验证 - + Content not found 内容不存在 - + Unknown network error 未知的网络错误 - + AdBlocked Content AdBlocked内容 - + Blocked by rule <i>%1</i> 阻止规则 <i>%1</i> - + Content Access Denied 内容访问被拒绝 - + Error code %1 错误代码为%1 - + Failed loading page 载入页面失败 - + QupZilla can't load page from %1. QupZilla无法加载%1页。 - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com 检查输入错误的地址,如<b> WW</b> example.com,而不是<B> WWW。</b> example.com - + If you are unable to load any pages, check your computer's network connection. 如果您无法载入任何页面,请检查您的计算机的网络连接。 - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. 如果您的计算机或网络受到防火墙或代理的保护,确保QupZilla允许访问Web。 - + Try Again 再试一次 - + JavaScript alert JavaScript警告 - + Prevent this page from creating additional dialogs 阻止此页创建额外的对话 - + Choose file... 选择文件... @@ -4972,233 +4867,233 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebView - + Open link in new &tab 在新标签中打开链接&t - + Open link in new &window 在新窗口中打开链接&w - + B&ookmark link 书签链接&o - + &Save link as... 链接另存为&S... - + Send link... 发送链接... - + &Copy link address 复制链接地址&C - + Show i&mage 显示图像&m - + Copy im&age 复制图像&a - + Copy image ad&dress 复制图像地址&d - + &Save image as... 图像另存为&S... - + Send image... 发送图像... - + &Back 后退&B - + Create Search Engine 创建搜索引擎 - + &Forward 前进&F - - + + &Reload 刷新&R - + S&top 停止&t - + This frame 此帧 - + Show &only this frame 仅显示此帧&o - + Show this frame in new &tab 在新选项卡的显示帧&t - + Print frame 打印帧 - + Zoom &in 放大&i - + &Zoom out 缩小&Z - + Reset 重置 - + Show so&urce of frame 显示帧源码&u - + Book&mark page 加入书签&m - + &Save page as... 保存网页为&S... - + &Copy page link 复制页面的链接&C - + Send page link... 发送页面链接... - + &Print page 打印页面...&P - + Send text... 发送短信... - + Google Translate 谷歌翻译 - + Dictionary 字典 - + Go to &web address 去网页地址&w - + Search with... 搜索... - + &Play 播放&P - + &Pause 暂停&P - + Un&mute 取消静音&m - + &Mute 静音&M - + &Copy Media Address 复制媒体地址&C - + &Send Media Address 发送媒体地址&S - + Save Media To &Disk 储存媒体到磁盘&D - + Select &all 选取所有&a - + Validate page 验证页面 - + Show so&urce code 显示源代码&u - + Show info ab&out site 显示有关网站的信息&o - + Search "%1 .." with %2 使用 %2搜索"%1 .." diff --git a/translations/zh_TW.ts b/translations/zh_TW.ts index fe19522f7..b81dd7ee9 100644 --- a/translations/zh_TW.ts +++ b/translations/zh_TW.ts @@ -493,40 +493,40 @@ 選擇檔案... - + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in Mozilla Firefox的書籤資料庫通常為<b>places.sqlite</b>資料庫,而此檔案通常位於 - - - - + + + + Please choose this file to begin importing bookmarks. 請選擇檔案以開始匯入書籤。 - + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in Google瀏覽器的書籤文件通常為<b>Bookmarks</b>文字檔案,而此檔案位於 - + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in Opera瀏覽器的書籤通常為<b>bookmarks.adr</b>文字檔案,而此檔案位於 - + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes 你可以從任何HTML瀏覽器中匯入書籤。此檔案通常有這些步驟 - + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer的書籤通常為<b>Favorites</b>資料夾,而此資料夾位於 - + Please choose this folder to begin importing bookmarks. 選擇此資料夾,開始匯入書籤。 @@ -584,7 +584,7 @@ 匯入書籤 - + Add Subfolder 新增子資料夾 @@ -629,62 +629,62 @@ 選擇資料夾的名稱: - + Open link in current &tab 在此分頁開啟此連結 (&tab) - + <b>Warning: </b>You already have bookmarked this page! <b>警告:</b>你已經擁有此書籤了! - + Choose name and location of this bookmark. 選擇書籤的名稱與位置。 - + Open link in &new tab 在新分頁開啟連結 (&new tab) - + Move bookmark to &folder 移動資料夾到 (&f) - + Rename folder 重新命名資料夾 - + Remove folder 移除資料夾 - + Rename bookmark 重新命名書籤 - + Remove bookmark 移除書籤 - + Add New Bookmark 新增書籤 - + Choose folder for bookmarks: 選擇書籤資料夾: - + Bookmark All Tabs 將所有分頁加入書籤 @@ -692,20 +692,20 @@ BookmarksModel - - + + Bookmarks In Menu 在選單中建立書籤 - - + + Bookmarks In ToolBar 在工具列中建立書籤 - - + + Unsorted Bookmarks 未分類書籤 @@ -741,88 +741,88 @@ BookmarksToolbar - + &Bookmark Current Page 將此頁加入書籤(&B) - + Bookmark &All Tabs 將所有分頁加入書簽(&A) - + &Organize Bookmarks 管理書籤(&O) - + Show Most &Visited 顯示最多瀏覽(&V) - + Show Only Icons 僅顯示圖示 - + &Hide Toolbar 隱藏工具列(&H) - + Move right 往右移動 - + Move left 往左移動 - + Edit bookmark 編輯書簽 - + Remove bookmark 刪除書簽 - + Edit bookmark: 編輯書籤: - + Title: 標題: - + Url: 位址: - + Edit Bookmark 書籤連結 - + Most visited 最常造訪網頁 - + Sites you visited the most 你最常造訪的網頁 - - + + Empty 空頁面 @@ -1127,8 +1127,8 @@ - - + + Server: 伺服器: @@ -1226,12 +1226,12 @@ 確定要刪除電腦上所有的cookies? - + Add to whitelist 加到優先名單 - + Add to blacklist 加到黑名單 @@ -1407,8 +1407,8 @@ DownloadManager - - + + Download Manager 下載管理 @@ -1418,52 +1418,52 @@ 清除 - + Executable: 可執行: - + Arguments: 衝突: - + Cannot start external download manager 無法開始外部的下載管理 - + Cannot start external download manager! %1 無法開始外部的下載管理! %1 - + %1% of %2 files (%3) %4 remaining %1%的%2檔案(%3)%4剩餘 - + % - Download Manager % -下載管理 - + Download Finished 下載完成 - + All files have been successfully downloaded. 所有檔案下載完成。 - + Warning 注意 - + Are you sure to quit? All uncompleted downloads will be cancelled! 未完成下載,退出將會取消所有的下載。確定要退出嗎? @@ -1602,30 +1602,30 @@ 複製地址 - - + + Today 到今天 - - + + This Week 這禮拜 - - + + This Month 這個月 - + Confirmation 確認 - + Are you sure to delete all history? 確定刪除所有記錄嗎? @@ -1633,72 +1633,67 @@ HistoryModel - - Failed loading page - 開啟頁面失敗 - - - + No Named Page 未命名頁面 - + January 一月 - + February 二月 - + March 三月 - + April 四月 - + May 五月 - + June 六月 - + July 七月 - + August 八月 - + September 九月 - + October 十月 - + November 十一月 - + December 十二月 @@ -1732,19 +1727,19 @@ - + Today 今天 - + This Week 這禮拜 - + This Month 這個月 @@ -1770,17 +1765,17 @@ 輸入URL位址或在%1上搜尋 - + Paste And &Go 貼上並前往(&G) - + Clear All 全部清除 - + .co.uk Append domain name on ALT + Enter = Should be different for every country .co.uk @@ -1794,44 +1789,44 @@ NavigationBar - + No Named Page 未命名頁面 - + Back 上一頁 - + Forward 下一頁 - + Home 首頁 - + New Tab 新增分頁 - + Main Menu 主要選單 - - + + Exit Fullscreen 離開全螢幕 - - + + Clear history 清除記錄 @@ -1920,7 +1915,7 @@ 頁面 - + Save Page Screen... 儲存頁面... @@ -1978,22 +1973,22 @@ 允許手動啟動Flash外掛 - + Add site to whitelist 將網頁加入優先名單 - + Server without http:// (ex. youtube.com) 不包涵http://伺服器(如 youtube.com) - + Error! 錯誤! - + Cannot load extension! 無法讀取擴充功能! @@ -2126,7 +2121,7 @@ - + Note: You cannot delete active profile. 注意:您不能刪除正在運行的配置文件。 @@ -2256,22 +2251,22 @@ 允許DNS預取 - + Allow local storage of HTML5 web content 允許儲存HTML5網頁內容到本地電腦 - + Delete locally stored HTML5 web content on close 關閉時刪除本地的HTML5網頁內容 - + JavaScript can access clipboard JavaScript可以讀取剪貼區 - + Send Do Not Track header to servers 傳送不跟蹤標頭到伺服器 @@ -2407,324 +2402,319 @@ - Allow storing web icons - 允許儲存網路圖示 - - - Allow saving history 允許保留記錄 - + Delete history on close 刪除最近的瀏覽記錄 - + Delete now 現在刪除 - + Proxy Configuration 代理配置 - + HTTP - + SOCKS5 - - + + Port: 端口: - - + + Username: 使用者名稱: - - + + Password: 密碼: - + Don't use on: 不要使用: - + Manual configuration 手動設置 - + System proxy configuration 系統代理設置 - + Do not use proxy 不使用代理 - + <b>Exceptions</b> <b>例外</b> - + Server: 伺服器: - + Use different proxy for https connection 使用不同的代理伺服器來連結https - + <b>Font Families</b> <b>字型家族</b> - + Standard 標準字體 - + Fixed 等寬字體 - + Serif 襯線字體 - + Sans Serif 無襯線字體 - + Cursive 手寫字體 - + <b>External download manager</b> <b>外部下載管理</b> - + Use external download manager 使用外部下載管理 - + Executable: 可執行的: - + Arguments: 衝突: - + Filter tracking cookies Cookies濾鏡追蹤 - + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>警告:</b>追蹤濾鏡將會拒絕指定網域存取cookie,如果有問題,請先取消此選項! - + Fantasy 幻想字體 - + <b>Font Sizes</b> <b>字體大小</b> - + Fixed Font Size 等寬字體大小 - + Default Font Size 預設字體大小 - + Minimum Font Size 最小字體大小 - + Minimum Logical Font Size 最小邏輯字體大小 - + <b>Download Location</b> <b>下載位置</b> - + Ask everytime for download location 總是詢問下載位置 - + Use defined location: 自訂下載位置: - - - + + + ... ... - + <b>Download Options</b> <b>下載選項</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) 使用本地系統檔案對話框 (可能會導致SSL下載保護內容的問題) - + Close download manager when downloading finishes 下載完畢後關閉下載管理員 - + <b>AutoFill options</b> <b>自動填充選項</b> - + Allow saving passwords from sites 允許儲存網站密碼 - + <b>Cookies</b> <b>Cookies</b> - + Change browser identification: 使用者代理程式: - + Allow storing of cookies 允許儲存cookie - + Delete cookies on close 關閉後刪除cookies - + Match domain exactly 網域完全匹配 - + Cookies Manager 管理Cookies - + <b>SSL Certificates</b> <b>SSL 憑證</b> - + SSL Manager 管理SSL - + Edit CA certificates in SSL Manager 在SSL管理原理編輯CA憑證 - - + + <b>Other</b> <b>其他</b> - + Send Referer header to servers 傳送偏好的標頭到伺服器 - + Block popup windows 封鎖彈出式視窗 - + <b>Notifications</b> <b>通知</b> - + Use OSD Notifications 使用OSD的通知 - + Use Native System Notifications (Linux only) 使用系統通知(僅限Linux) - + Do not use Notifications 不要使用通知 - + Expiration timeout: 截止日期: - + seconds - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>注意: </b>您可以在螢幕上拖曳OSD通知的位置。 @@ -2744,17 +2734,17 @@ 要改變語言,您必須重新開啟瀏覽器。 - + StyleSheet automatically loaded with all websites: 所有的網站套用樣式表: - + Languages 語言 - + <b>Preferred language for web sites</b> <b>網站優先的語言</b> @@ -2764,68 +2754,68 @@ 外觀 - + OSD Notification OSD的通知 - + Drag it on the screen to place it where you want. 在螢幕上拖曳它到你想要的位置。 - + Choose download location... 選擇下載位置... - + Choose stylesheet location... 選擇樣式表的位置... - + Deleted 已刪除 - + Choose executable location... 選擇可執行的位置... - + New Profile 新的設置文件 - + Enter the new profile's name: 輸入新的設置文件名稱: - - + + Error! 錯誤! - + This profile already exists! 此設置文件已存在! - + Cannot create profile directory! 無法新建設置見目錄! - + Confirmation 確認 - + Are you sure to permanently delete "%1" profile? This action cannot be undone! 您確定要永就移除"%1"個人資料嗎?這將無法復原! @@ -2893,16 +2883,6 @@ IP Address of current page 當前頁面的IP位址 - - - Bookmarks - 書籤 - - - - History - 記錄 - &New Window @@ -2994,27 +2974,27 @@ 搜尋(&F) - + &Tools 工具(&T) - + QupZilla - + &Help 幫助(&H) - + &Bookmarks 書籤(&B) - + Hi&story 記錄(&s) @@ -3024,12 +3004,12 @@ 檔案(&F) - + Last session crashed 上一個不正常結束 - + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? <b>不好意思,QupZilla被不正常結束:-(</b><br/>我們對此感到相當抱歉。您想要還原結束前儲存的狀態嗎? @@ -3084,143 +3064,143 @@ 字元與編碼(&E) - + Toolbars 工具列 - + Sidebars 側邊列 - + Zoom &In 放大(&I) - + Zoom &Out 縮小(&O) - + Reset 重置 - + &Page Source 頁面原始碼(&P) - + Closed Tabs 關閉分頁 - + Recently Visited 最近瀏覽 - + Most Visited 最多瀏覽 - + Web In&spector 網頁檢查(&s) - + Configuration Information 設定資訊 - + Restore &Closed Tab 還原關閉分頁(&C) - + (Private Browsing) (私密瀏覽) - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? 仍然有%1個開啟中分頁且您的會話並不會被儲存。 您確定還要離開QupZilla嗎? - + Don't ask again 不要在詢問 - + There are still open tabs 仍然有開啟中分頁 - + Bookmark &This Page 加入書籤(&T) - + Bookmark &All Tabs 所有分頁加入書籤(&A) - + Organize &Bookmarks 組織書籤(&B) - - - - - + + + + + Empty 空頁面 - + &Back 上一頁(&B) - + &Forward 下一頁(&F) - + &Home 首頁(&H) - + Show &All History 顯示所有記錄(&A) - + Restore All Closed Tabs 還原所有關閉分頁 - + Clear list 清除清單 - + About &Qt 關於Qt(&Q) @@ -3230,67 +3210,67 @@ Are you sure to quit QupZilla? 關於QupZIlla(&A) - + Report &Issue 報告及發行(&I) - + &Web Search 網頁搜尋(&W) - + Page &Info 網頁訊息(&I) - + &Download Manager 下載管理(&D) - + &Cookies Manager 管理Cookies(&C) - + &AdBlock 廣告封鎖(&A) - + RSS &Reader RSS閱讀器(&R) - + Clear Recent &History 清除最近的記錄(&H) - + &Private Browsing 私密瀏覽(&P) - + HTML files HTML檔案 - + Image files 影像檔案 - + Text files 文字檔案 - + All files 所有檔案 @@ -3300,22 +3280,17 @@ Are you sure to quit QupZilla? 偏好設定(&e) - + Information about application 程式資訊 - + Other 其他 - - Default - 預設 - - - + %1 - QupZilla %1 - QupZilla @@ -3325,42 +3300,42 @@ Are you sure to quit QupZilla? 列印(&P)... - + Open file... 開啟檔案... - + Are you sure you want to turn on private browsing? 你確定要開始私密瀏覽? - + When private browsing is turned on, some actions concerning your privacy will be disabled: 開啟私密瀏覽時,有關您的隱私動作將被禁止: - + Webpages are not added to the history. 網頁不會被記錄。 - + Current cookies cannot be accessed. 當前的cookies無法被讀取。 - + Your session is not stored. 您的交談將不被儲存。 - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. 直到您關閉視窗,您仍然可以按上一頁及下一頁,返回您開啟過的網頁。 - + Start Private Browsing 開始私密瀏覽 @@ -3436,17 +3411,17 @@ Are you sure to quit QupZilla? 關於 QupZilla - + This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports. 此頁包涵QupZilla現在的設定相關訊息(也許有關解決問題)。回報問題給我們時請附上這些資訊。 - + Browser Identification 瀏覽器識別 - + Paths 路徑 @@ -3457,109 +3432,109 @@ Are you sure to quit QupZilla? - + Version 版本 - + WebKit version Webkit版本 - + Application version 軟體版本 - + Qt version Qt版本 - + Build time 建構時間 - + Platform 平台 - + Profile 設置文件 - - + + Configuration Information 設定資訊 - + Build Configuration 建立設定 - + Preferences 偏好設定 - + Option 選項 - + Value 數值 - + Name 名稱 - + Author 作者 - + Description 描述 - + Settings 設定 - + Saved session 儲存的交談 - + Pinned tabs 固定分頁 - + Data 資料 - + Themes 主題 - + Translations 翻譯 @@ -3584,145 +3559,145 @@ Are you sure to quit QupZilla? 翻譯團隊 - + Speed Dial 快速撥號 - + Add New Page 新增頁面 - + Apply 套用 - + Close 關閉 - + Speed Dial settings 快速撥號設定 - + Placement: 佈局: - + Auto 自動 - + Cover - + Fit - + Fit Width - + Fit Height - + Use background image - + Select image - + Maximum pages in a row: - + Change size of pages: - + Extensions 擴充功能 - - + + Disabled 不允許 - - - - - + + + + + <b>Enabled</b> <b>允許</b> - + Debug build 除錯建立 - + WebGL support WebGL支援 - + Windows 7 API Windows 7應用程式介面 - + KDE integration KDE 整合介面 - + Portable build 可攜版本建立 - + No available extensions. 無可用擴充功能。 - + Load title from page 從網頁匯入標題 - + Edit 編輯 - + Remove 移除 @@ -3733,27 +3708,27 @@ Are you sure to quit QupZilla? - + Information about version 版本資訊 - + Reload 重新整理 - + Url 位址 - + Title 標題 - + New Page 新頁面 @@ -3890,12 +3865,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds.從這個網站新增RSS頻道 - + Untitled feed 未命名頻道 - + Add 新增 @@ -4102,12 +4077,14 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SideBar - + + Bookmarks 書籤 - + + History 記錄 @@ -4506,7 +4483,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla SqueezeLabelV2 - + Copy 複製 @@ -4637,22 +4614,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page 讀取頁面失敗 - + Loading... 讀取中... - + %1 - QupZilla - + Inspect Element 檢查元素 @@ -4723,143 +4700,143 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) 為顯示此頁QupZilla需重新發送請求 - + Confirm form resubmission - + Select files to upload... 選擇要上傳的檔案... - + Server refused the connection 伺服器拒絕連結 - + Server closed the connection 伺服器關閉了連結 - + Server not found 找不到伺服器 - + Connection timed out 連線逾時 - + Untrusted connection 不受信任的連結 - + Temporary network failure 網路連線暫時失敗 - + Proxy connection refused 代理主機拒絕連結 - + Proxy server not found 找不到代理伺服器 - + Proxy connection timed out 代理主機連線逾時 - + Proxy authentication required 代理主機認證需求 - + Content not found 找不到內容 - + Unknown network error 未知網路錯誤 - + AdBlocked Content 封鎖廣告內容內容 - + Blocked by rule <i>%1</i> 阻止規則 <i>%1</i> - + Content Access Denied 讀取內容被拒 - + Error code %1 錯誤代碼為%1 - + Failed loading page 讀取頁面失敗 - + QupZilla can't load page from %1. QupZilla無法讀取%1頁。 - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com 檢查輸入錯誤位址,如<b> WW</b> example.com,而不是<B> WWW。</b> example.com - + If you are unable to load any pages, check your computer's network connection. 如果無法讀取任何頁面,請檢查您的電腦的網路連接。 - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. 如果您的電腦或網路受到防火牆或代理的保護,確認QupZilla可以讀取網頁。 - + Try Again 重試 - + JavaScript alert JavaScript 警告 - + Prevent this page from creating additional dialogs 創見附加的對話,防止此頁 - + Choose file... 選擇檔案... @@ -4890,233 +4867,233 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebView - + Open link in new &tab 在新分頁中開起連結(&t) - + Open link in new &window 在新視窗中開起連結(&w) - + B&ookmark link 書籤連結(&o) - + &Save link as... 另存連結為(&S)... - + Send link... 傳送連結... - + &Copy link address 複製連結位址(&C) - + Show i&mage 顯示圖片(&m) - + Copy im&age 複製圖片(&a) - + Copy image ad&dress 複製圖片位址(&d) - + &Save image as... 圖片另存為(&S)... - + Send image... 傳送圖片... - + &Back 上一頁(&B) - + Create Search Engine 建立搜尋引擎 - + &Forward 下一頁(&F) - - + + &Reload 重新整理(&R) - + S&top 終止(&t) - + This frame 這個框架 - + Show &only this frame 僅顯示此框架(&o) - + Show this frame in new &tab 在心分頁中顯示此框架(&t) - + Print frame 列印此框架 - + Zoom &in 放大(&i) - + &Zoom out 縮小(&Z) - + Reset 重置 - + Show so&urce of frame 顯示此框架的原始碼(&u) - + Book&mark page 加入書籤(&m) - + &Save page as... 另存網頁為(&S)... - + &Copy page link 複製網頁連結(&C) - + Send page link... 傳送網頁連結... - + &Print page 列印此頁(&P) - + Send text... 傳送文字... - + Google Translate Google翻譯 - + Dictionary 字典 - + Go to &web address 前往網址(&w) - + Search with... 選擇使用搜尋引擎... - + &Play 播放(&P) - + &Pause 暫停(&P) - + Un&mute 取消靜音(&m) - + &Mute 靜音(&M) - + &Copy Media Address 複製此多媒體位址(&C) - + &Send Media Address 傳送此多媒體位址(&S) - + Save Media To &Disk 儲存此多媒體(&D) - + Select &all 全選(&a) - + Validate page 驗證此頁 - + Show so&urce code 顯示原始碼(&u) - + Show info ab&out site 顯示有關網站的訊息(&o) - + Search "%1 .." with %2 使用 %2搜尋"%1 .."