logo

badwolf

minimalist and privacy-oriented web browser based on WebKitGTK
commit: 506ea6fa32138827a103cf11cc174f4a0f3a25c3
parent d88eca3e85906ca9458a8f0da89c85ddf5e9882d
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun, 25 Oct 2020 02:42:10 +0100

Add _() to bookmarks.c and update french translation

Diffstat:

Mbookmarks.c15++++++++-------
Mpo/fr.po95+++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------
Mpo/messages.pot83+++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------
Mpo/pt_BR.po83+++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------
Mpo/tr.po87+++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------
5 files changed, 249 insertions(+), 114 deletions(-)

diff --git a/bookmarks.c b/bookmarks.c @@ -3,6 +3,7 @@ #include "badwolf.h" #include "config.h" +#include <glib/gi18n.h> /* _() and other internationalization/localization helpers */ #include <glib/gprintf.h> /* g_fprintf() */ #include <gtk/gtk.h> #include <libxml/xinclude.h> @@ -55,7 +56,7 @@ load_xpath_results(GtkListStore *list_store, xmlNodeSetPtr nodes) size = (nodes) ? nodes->nodeNr : 0; - g_fprintf(stderr, "Bookmarks: Found %d bookmarks.\n", size); + g_fprintf(stderr, _("Bookmarks: Found %d bookmarks.\n"), size); for(int i = 0; i < size; i++) if(nodes->nodeTab[i]) { @@ -77,15 +78,15 @@ bookmarks_completion_init() if(access(filename, R_OK) != 0) { - g_fprintf(stderr, "Bookmarks: No loadable file found at %s\n", filename); + g_fprintf(stderr, _("Bookmarks: No loadable file found at %s\n"), filename); return NULL; } - g_fprintf(stderr, "Bookmarks: loading at %s\n", filename); + g_fprintf(stderr, _("Bookmarks: loading at %s\n"), filename); doc = xmlParseFile(filename); if(doc == NULL) { - g_fprintf(stderr, "Bookmarks: unable to parse file \"%s\"\n", filename); + g_fprintf(stderr, _("Bookmarks: unable to parse file \"%s\"\n"), filename); location_completion_cleanup(xpathObj, xpathCtx, doc); return NULL; } @@ -95,7 +96,7 @@ bookmarks_completion_init() xpathCtx = xmlXPathNewContext(doc); if(xpathCtx == NULL) { - g_fprintf(stderr, "Bookmarks: unable to create new XPath context\n"); + g_fprintf(stderr, _("Bookmarks: unable to create new XPath context\n")); location_completion_cleanup(xpathObj, xpathCtx, doc); return NULL; } @@ -103,7 +104,7 @@ bookmarks_completion_init() xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(xpathObj == NULL) { - g_fprintf(stderr, "Bookmarks: unable to evaluate xpath expression \"%s\"\n", xpathExpr); + g_fprintf(stderr, _("Bookmarks: unable to evaluate XPath expression \"%s\"\n"), xpathExpr); location_completion_cleanup(xpathObj, xpathCtx, doc); return NULL; } @@ -112,7 +113,7 @@ bookmarks_completion_init() location_completion_cleanup(xpathObj, xpathCtx, doc); - g_fprintf(stderr, "Bookmarks: Done.\n"); + g_fprintf(stderr, _("Bookmarks: Done.\n")); return GTK_TREE_MODEL(list_store); } diff --git a/po/fr.po b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Badwolf 0.3.0+gd88f2e7\n" "Report-Msgid-Bugs-To: contact+badwolf-msgid@hacktivis.me\n" -"POT-Creation-Date: 2020-05-15 06:00+0200\n" +"POT-Creation-Date: 2020-10-25 02:35+0100\n" "PO-Revision-Date: 2019-12-22 00:57+0100\n" "Last-Translator: Haelwenn (lanodan) Monnier <contact@hacktivis.me>\n" "Language-Team: French\n" @@ -37,20 +37,53 @@ msgstr "%02i:%02i:%02i Téléchargement finit" msgid "%02i:%02i:%02i Downloading…" msgstr "%02i:%02i:%02i Téléchargement en cours…" -#: downloads.c:195 downloads.c:212 downloads.c:215 +#: downloads.c:199 downloads.c:216 downloads.c:219 msgid "Badwolf Downloads" msgstr "Téléchargements Badwolf" -#: badwolf.c:861 +#: bookmarks.c:116 +msgid "Bookmarks: Done.\n" +msgstr "Marque-Pages: Terminé.\n" + +#: bookmarks.c:59 +#, c-format +msgid "Bookmarks: Found %d bookmarks.\n" +msgstr "Marque-Pages: %d marque-pages trouvés.\n" + +#: bookmarks.c:81 +#, c-format +msgid "Bookmarks: No loadable file found at %s\n" +msgstr "Marques-Pages: Aucun fichier chargeable trouvé à %s\n" + +#: bookmarks.c:85 +#, c-format +msgid "Bookmarks: loading at %s\n" +msgstr "Marques-Pages: chargement à %s\n" + +#: bookmarks.c:99 +msgid "Bookmarks: unable to create new XPath context\n" +msgstr "Marques-Pages: Échec à la création du contexte XPath\n" + +#: bookmarks.c:107 +#, c-format +msgid "Bookmarks: unable to evaluate XPath expression \"%s\"\n" +msgstr "Marques-Pages: Échec à l'évaluation de l'expression XPath « %s »\n" + +#: bookmarks.c:89 +#, c-format +msgid "Bookmarks: unable to parse file \"%s\"\n" +msgstr "Marques-Pages: Ëchec au parsage du fichier « %s »\n" + +#: badwolf.c:954 #, c-format msgid "Buildtime WebKit version: %d.%d.%d\n" msgstr "Version WebKit à la compilation: %d.%d.%d\n" -#: badwolf.c:391 +#: badwolf.c:439 msgid "Continue" msgstr "Continuer" -#: badwolf.c:341 +#: badwolf.c:389 msgid "" "Couldn't verify the TLS certificate to ensure a better security of the " "connection. You might want to verify your machine and network.\n" @@ -61,7 +94,7 @@ msgstr "" "et son réseau.\n" "\n" -#: badwolf.c:98 +#: badwolf.c:99 msgid "Crashed" msgstr "Crash" @@ -69,33 +102,33 @@ msgstr "Crash" msgid "Download starting…" msgstr "Démarrage du téléchargement" -#: badwolf.c:364 +#: badwolf.c:412 msgid "Error: Some unknown error occurred validating the certificate.\n" msgstr "" "Erreur : Une erreur inconnue est apparue pendant la validation du " "certificat.\n" -#: badwolf.c:345 +#: badwolf.c:393 msgid "Error: The X509 Certificate Authority is unknown.\n" msgstr "Erreur : L'autorité de certification (CA X509) est inconnue.\n" -#: badwolf.c:358 +#: badwolf.c:406 msgid "Error: The certificate has been revoked.\n" msgstr "Erreur : Le certificat à été révoqué.\n" -#: badwolf.c:355 +#: badwolf.c:403 msgid "Error: The certificate has expired. Check your system's clock.\n" msgstr "Erreur : Le certificat a expiré.\n" -#: badwolf.c:361 +#: badwolf.c:409 msgid "Error: The certificate is considered to be insecure.\n" msgstr "Erreur : Le certificat est considéré comme non-sécurisé.\n" -#: badwolf.c:352 +#: badwolf.c:400 msgid "Error: The certificate isn't valid yet. Check your system's clock.\n" msgstr "Erreur : Le certificat n'est pas encore valide.\n" -#: badwolf.c:348 +#: badwolf.c:396 msgid "Error: The given identity doesn't match the expected one.\n" msgstr "Erreur : L'identité ne correspond pas à celle attendue.\n" @@ -108,80 +141,80 @@ msgstr "" "Navigateur WebKitGTK+ minimaliste et orienté vie privée\n" "Version WebKit au lancement: %d.%d.%d" -#: badwolf.c:790 +#: badwolf.c:889 msgid "New tab" msgstr "Nouvel onglet" -#: badwolf.c:910 +#: badwolf.c:1006 msgid "Open new tab" msgstr "Ouvrir un nouvel onglet" -#: badwolf.c:102 +#: badwolf.c:103 msgid "Out of Memory" msgstr "Dépassement Mémoire" -#: badwolf.c:859 +#: badwolf.c:952 #, c-format msgid "Running Badwolf version: %s\n" msgstr "Version de Badwolf: %s\n" -#: badwolf.c:866 +#: badwolf.c:959 #, c-format msgid "Runtime WebKit version: %d.%d.%d\n" msgstr "Version WebKit au lancement: %d.%d.%d\n" -#: badwolf.c:388 +#: badwolf.c:436 #, c-format msgid "TLS Error for %s." msgstr "Erreur TLS pour %s." -#: badwolf.c:391 +#: badwolf.c:439 #, fuzzy msgid "Temporarily Add Exception" msgstr "Ajouter Temporairement une Exception" -#: badwolf.c:588 +#: badwolf.c:647 msgid "Toggle javascript" msgstr "Activer/Désactiver javascript" -#: badwolf.c:593 +#: badwolf.c:652 msgid "Toggle loading images automatically" msgstr "" -#: badwolf.c:106 +#: badwolf.c:107 msgid "Unknown Crash" msgstr "Crash inconnu" -#: badwolf.c:591 +#: badwolf.c:650 msgid "_IMG" msgstr "_IMG" -#: badwolf.c:586 +#: badwolf.c:645 msgid "_JS" msgstr "_JS" -#: badwolf.c:706 +#: badwolf.c:777 msgid "search in current page" msgstr "recherche dans la page courante" -#: badwolf.c:97 +#: badwolf.c:98 msgid "the web process crashed.\n" msgstr "le processus web a cessé de fonctionner.\n" -#: badwolf.c:101 +#: badwolf.c:102 msgid "the web process exceeded the memory limit.\n" msgstr "le processus web a dépassé la limitation de mémoire.\n" -#: badwolf.c:105 +#: badwolf.c:106 msgid "the web process terminated for an unknown reason.\n" msgstr "le processus web s’est interrompu pour une raison inconnue.\n" -#: badwolf.c:873 +#: badwolf.c:966 #, c-format msgid "webkit-web-extension directory set to: %s\n" msgstr "Répertoire webkit-web-extension configuré à %s\n" #. TRANSLATOR Ignore this entry. Done for forcing Unicode in xgettext. -#: badwolf.c:944 +#: badwolf.c:1042 msgid "ø" msgstr "" diff --git a/po/messages.pot b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Badwolf 1.0.2+g17b9802.develop\n" +"Project-Id-Version: Badwolf 1.0.3+g0391361.develop\n" "Report-Msgid-Bugs-To: contact+badwolf-msgid@hacktivis.me\n" -"POT-Creation-Date: 2020-07-11 11:35+0200\n" +"POT-Creation-Date: 2020-10-25 02:35+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -41,16 +41,49 @@ msgstr "" msgid "Badwolf Downloads" msgstr "" -#: badwolf.c:919 +#: bookmarks.c:116 +msgid "Bookmarks: Done.\n" +msgstr "" + +#: bookmarks.c:59 +#, c-format +msgid "Bookmarks: Found %d bookmarks.\n" +msgstr "" + +#: bookmarks.c:81 +#, c-format +msgid "Bookmarks: No loadable file found at %s\n" +msgstr "" + +#: bookmarks.c:85 +#, c-format +msgid "Bookmarks: loading at %s\n" +msgstr "" + +#: bookmarks.c:99 +msgid "Bookmarks: unable to create new XPath context\n" +msgstr "" + +#: bookmarks.c:107 +#, c-format +msgid "Bookmarks: unable to evaluate XPath expression \"%s\"\n" +msgstr "" + +#: bookmarks.c:89 +#, c-format +msgid "Bookmarks: unable to parse file \"%s\"\n" +msgstr "" + +#: badwolf.c:954 #, c-format msgid "Buildtime WebKit version: %d.%d.%d\n" msgstr "" -#: badwolf.c:416 +#: badwolf.c:439 msgid "Continue" msgstr "" -#: badwolf.c:366 +#: badwolf.c:389 msgid "" "Couldn't verify the TLS certificate to ensure a better security of the " "connection. You might want to verify your machine and network.\n" @@ -65,31 +98,31 @@ msgstr "" msgid "Download starting…" msgstr "" -#: badwolf.c:389 +#: badwolf.c:412 msgid "Error: Some unknown error occurred validating the certificate.\n" msgstr "" -#: badwolf.c:370 +#: badwolf.c:393 msgid "Error: The X509 Certificate Authority is unknown.\n" msgstr "" -#: badwolf.c:383 +#: badwolf.c:406 msgid "Error: The certificate has been revoked.\n" msgstr "" -#: badwolf.c:380 +#: badwolf.c:403 msgid "Error: The certificate has expired. Check your system's clock.\n" msgstr "" -#: badwolf.c:386 +#: badwolf.c:409 msgid "Error: The certificate is considered to be insecure.\n" msgstr "" -#: badwolf.c:377 +#: badwolf.c:400 msgid "Error: The certificate isn't valid yet. Check your system's clock.\n" msgstr "" -#: badwolf.c:373 +#: badwolf.c:396 msgid "Error: The given identity doesn't match the expected one.\n" msgstr "" @@ -100,11 +133,11 @@ msgid "" "Runtime WebKit version: %d.%d.%d" msgstr "" -#: badwolf.c:854 +#: badwolf.c:889 msgid "New tab" msgstr "" -#: badwolf.c:968 +#: badwolf.c:1006 msgid "Open new tab" msgstr "" @@ -112,30 +145,30 @@ msgstr "" msgid "Out of Memory" msgstr "" -#: badwolf.c:917 +#: badwolf.c:952 #, c-format msgid "Running Badwolf version: %s\n" msgstr "" -#: badwolf.c:924 +#: badwolf.c:959 #, c-format msgid "Runtime WebKit version: %d.%d.%d\n" msgstr "" -#: badwolf.c:413 +#: badwolf.c:436 #, c-format msgid "TLS Error for %s." msgstr "" -#: badwolf.c:416 +#: badwolf.c:439 msgid "Temporarily Add Exception" msgstr "" -#: badwolf.c:624 +#: badwolf.c:647 msgid "Toggle javascript" msgstr "" -#: badwolf.c:629 +#: badwolf.c:652 msgid "Toggle loading images automatically" msgstr "" @@ -143,15 +176,15 @@ msgstr "" msgid "Unknown Crash" msgstr "" -#: badwolf.c:627 +#: badwolf.c:650 msgid "_IMG" msgstr "" -#: badwolf.c:622 +#: badwolf.c:645 msgid "_JS" msgstr "" -#: badwolf.c:742 +#: badwolf.c:777 msgid "search in current page" msgstr "" @@ -167,12 +200,12 @@ msgstr "" msgid "the web process terminated for an unknown reason.\n" msgstr "" -#: badwolf.c:931 +#: badwolf.c:966 #, c-format msgid "webkit-web-extension directory set to: %s\n" msgstr "" #. TRANSLATOR Ignore this entry. Done for forcing Unicode in xgettext. -#: badwolf.c:1002 +#: badwolf.c:1042 msgid "ø" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Badwolf 0.4.0+g607300e\n" "Report-Msgid-Bugs-To: contact+badwolf-msgid@hacktivis.me\n" -"POT-Creation-Date: 2020-05-18 03:06+0200\n" +"POT-Creation-Date: 2020-10-25 02:35+0100\n" "PO-Revision-Date: 2020-05-17 20:18-0300\n" "Last-Translator: Pedro Lucas Porcellis <porcellis@eletrotupi.com>\n" "Language-Team: Brazilian Portuguese\n" @@ -36,20 +36,53 @@ msgstr "%02i:%02i:%02i Transferência Concluída" msgid "%02i:%02i:%02i Downloading…" msgstr "%02i:%02i:%02i Baixando…" -#: downloads.c:195 downloads.c:212 downloads.c:215 +#: downloads.c:199 downloads.c:216 downloads.c:219 msgid "Badwolf Downloads" msgstr "Transferências do Badwolf" -#: badwolf.c:874 +#: bookmarks.c:116 +msgid "Bookmarks: Done.\n" +msgstr "" + +#: bookmarks.c:59 +#, c-format +msgid "Bookmarks: Found %d bookmarks.\n" +msgstr "" + +#: bookmarks.c:81 +#, c-format +msgid "Bookmarks: No loadable file found at %s\n" +msgstr "" + +#: bookmarks.c:85 +#, c-format +msgid "Bookmarks: loading at %s\n" +msgstr "" + +#: bookmarks.c:99 +msgid "Bookmarks: unable to create new XPath context\n" +msgstr "" + +#: bookmarks.c:107 +#, c-format +msgid "Bookmarks: unable to evaluate XPath expression \"%s\"\n" +msgstr "" + +#: bookmarks.c:89 +#, c-format +msgid "Bookmarks: unable to parse file \"%s\"\n" +msgstr "" + +#: badwolf.c:954 #, c-format msgid "Buildtime WebKit version: %d.%d.%d\n" msgstr "Versão do WebKit %d.%d.%d\n" -#: badwolf.c:403 +#: badwolf.c:439 msgid "Continue" msgstr "Continuar" -#: badwolf.c:353 +#: badwolf.c:389 msgid "" "Couldn't verify the TLS certificate to ensure a better security of the " "connection. You might want to verify your machine and network.\n" @@ -67,34 +100,34 @@ msgstr "Erro" msgid "Download starting…" msgstr "Transferência Iniciada…" -#: badwolf.c:376 +#: badwolf.c:412 msgid "Error: Some unknown error occurred validating the certificate.\n" msgstr "" "Erro: Algum erro desconhecido ocorreu enquanto validava o certificado.\n" -#: badwolf.c:357 +#: badwolf.c:393 msgid "Error: The X509 Certificate Authority is unknown.\n" msgstr "Erro: A Autoridade de Certificados X509 é desconhecida.\n" -#: badwolf.c:370 +#: badwolf.c:406 msgid "Error: The certificate has been revoked.\n" msgstr "Erro: O certificado foi revogado.\n" -#: badwolf.c:367 +#: badwolf.c:403 msgid "Error: The certificate has expired. Check your system's clock.\n" msgstr "" "Erro: O certificado foi expirado. Verifique o relógio do seu sistema.\n" -#: badwolf.c:373 +#: badwolf.c:409 msgid "Error: The certificate is considered to be insecure.\n" msgstr "Erro: O certificado é considerado inseguro.\n" -#: badwolf.c:364 +#: badwolf.c:400 msgid "Error: The certificate isn't valid yet. Check your system's clock.\n" msgstr "" "Erro: O certificado não é válido ainda. Verifique o relógio do seu sistema.\n" -#: badwolf.c:360 +#: badwolf.c:396 msgid "Error: The given identity doesn't match the expected one.\n" msgstr "Erro: A identidade não confere com a esperada.\n" @@ -107,11 +140,11 @@ msgstr "" "Navegador orientado pela privacidade e minimalismo\n" "Versão do WebKit: %d.%d.%d" -#: badwolf.c:803 +#: badwolf.c:889 msgid "New tab" msgstr "Nova aba" -#: badwolf.c:923 +#: badwolf.c:1006 msgid "Open new tab" msgstr "Abrir uma Nova aba" @@ -119,30 +152,30 @@ msgstr "Abrir uma Nova aba" msgid "Out of Memory" msgstr "Sem memória" -#: badwolf.c:872 +#: badwolf.c:952 #, c-format msgid "Running Badwolf version: %s\n" msgstr "Rodando versão %s do Badwolf\n" -#: badwolf.c:879 +#: badwolf.c:959 #, c-format msgid "Runtime WebKit version: %d.%d.%d\n" msgstr "Versão do WebKit: %d.%d.%d\n" -#: badwolf.c:400 +#: badwolf.c:436 #, c-format msgid "TLS Error for %s." msgstr "Erro TLS para %s." -#: badwolf.c:403 +#: badwolf.c:439 msgid "Temporarily Add Exception" msgstr "Adicionar exceção temporária" -#: badwolf.c:600 +#: badwolf.c:647 msgid "Toggle javascript" msgstr "Habilitar Javascript" -#: badwolf.c:605 +#: badwolf.c:652 msgid "Toggle loading images automatically" msgstr "Habilitar carregamento de imagens automático" @@ -150,15 +183,15 @@ msgstr "Habilitar carregamento de imagens automático" msgid "Unknown Crash" msgstr "Erro desconhecido" -#: badwolf.c:603 +#: badwolf.c:650 msgid "_IMG" msgstr "_IMG" -#: badwolf.c:598 +#: badwolf.c:645 msgid "_JS" msgstr "_JS" -#: badwolf.c:718 +#: badwolf.c:777 msgid "search in current page" msgstr "buscar na página atual" @@ -174,12 +207,12 @@ msgstr "o processo web excedeu o limite de memória.\n" msgid "the web process terminated for an unknown reason.\n" msgstr "o processo web terminou por uma razão desconhecida.\n" -#: badwolf.c:886 +#: badwolf.c:966 #, c-format msgid "webkit-web-extension directory set to: %s\n" msgstr "diretório de extensões configurado para: %s\n" #. TRANSLATOR Ignore this entry. Done for forcing Unicode in xgettext. -#: badwolf.c:957 +#: badwolf.c:1042 msgid "ø" msgstr "" diff --git a/po/tr.po b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Badwolf 1.0.2+g17b9802.develop\n" "Report-Msgid-Bugs-To: contact+badwolf-msgid@hacktivis.me\n" -"POT-Creation-Date: 2020-07-11 11:35+0200\n" +"POT-Creation-Date: 2020-10-25 02:35+0100\n" "PO-Revision-Date: 2020-07-17 23:50+0300\n" "Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" "Language-Team: Turkish\n" @@ -41,16 +41,49 @@ msgstr "%02i:%02i:%02i İndiriliyor…" msgid "Badwolf Downloads" msgstr "Badwolf İndirmeleri" -#: badwolf.c:919 +#: bookmarks.c:116 +msgid "Bookmarks: Done.\n" +msgstr "" + +#: bookmarks.c:59 +#, c-format +msgid "Bookmarks: Found %d bookmarks.\n" +msgstr "" + +#: bookmarks.c:81 +#, c-format +msgid "Bookmarks: No loadable file found at %s\n" +msgstr "" + +#: bookmarks.c:85 +#, c-format +msgid "Bookmarks: loading at %s\n" +msgstr "" + +#: bookmarks.c:99 +msgid "Bookmarks: unable to create new XPath context\n" +msgstr "" + +#: bookmarks.c:107 +#, c-format +msgid "Bookmarks: unable to evaluate XPath expression \"%s\"\n" +msgstr "" + +#: bookmarks.c:89 +#, c-format +msgid "Bookmarks: unable to parse file \"%s\"\n" +msgstr "" + +#: badwolf.c:954 #, c-format msgid "Buildtime WebKit version: %d.%d.%d\n" msgstr "Oluşturma zamanı WebKit sürümü: %d.%d.%d\n" -#: badwolf.c:416 +#: badwolf.c:439 msgid "Continue" msgstr "Devam Et" -#: badwolf.c:366 +#: badwolf.c:389 msgid "" "Couldn't verify the TLS certificate to ensure a better security of the " "connection. You might want to verify your machine and network.\n" @@ -68,31 +101,33 @@ msgstr "Çöktü" msgid "Download starting…" msgstr "İndirme başlatılıyor…" -#: badwolf.c:389 +#: badwolf.c:412 msgid "Error: Some unknown error occurred validating the certificate.\n" msgstr "Hata: Sertifika doğrulanırken bilinmeyen bir hata oluştu.\n" -#: badwolf.c:370 +#: badwolf.c:393 msgid "Error: The X509 Certificate Authority is unknown.\n" msgstr "Hata: X509 Sertifika Yetkilisi bilinmiyor.\n" -#: badwolf.c:383 +#: badwolf.c:406 msgid "Error: The certificate has been revoked.\n" msgstr "Hata: Sertifika yürürlükten kaldırıldı.\n" -#: badwolf.c:380 +#: badwolf.c:403 msgid "Error: The certificate has expired. Check your system's clock.\n" -msgstr "Hata: Sertifikanın süresi doldu. Sisteminizin saatini gözden geçirin.\n" +msgstr "" +"Hata: Sertifikanın süresi doldu. Sisteminizin saatini gözden geçirin.\n" -#: badwolf.c:386 +#: badwolf.c:409 msgid "Error: The certificate is considered to be insecure.\n" msgstr "Hata: Sertifikanın güvensiz olduğu kabul ediliyor.\n" -#: badwolf.c:377 +#: badwolf.c:400 msgid "Error: The certificate isn't valid yet. Check your system's clock.\n" -msgstr "Hata: Sertifika henüz geçerli değil. Sisteminizin saatini gözden geçirin.\n" +msgstr "" +"Hata: Sertifika henüz geçerli değil. Sisteminizin saatini gözden geçirin.\n" -#: badwolf.c:373 +#: badwolf.c:396 msgid "Error: The given identity doesn't match the expected one.\n" msgstr "Hata: Verilen kimlik beklenen ile eşleşmiyor.\n" @@ -105,11 +140,11 @@ msgstr "" "Sadelik ve gizlilik odaklı WebKitGTK+ tarayıcısı\n" "Çalışma zamanı WebKit sürümü: %d.%d.%d" -#: badwolf.c:854 +#: badwolf.c:889 msgid "New tab" msgstr "Yeni sekme" -#: badwolf.c:968 +#: badwolf.c:1006 msgid "Open new tab" msgstr "Yeni sekme aç" @@ -117,30 +152,30 @@ msgstr "Yeni sekme aç" msgid "Out of Memory" msgstr "Yetersiz Bellek" -#: badwolf.c:917 +#: badwolf.c:952 #, c-format msgid "Running Badwolf version: %s\n" msgstr "Çalışan Badwolf sürümü: %s\n" -#: badwolf.c:924 +#: badwolf.c:959 #, c-format msgid "Runtime WebKit version: %d.%d.%d\n" msgstr "Çalışma zamanı WebKit sürümü: %d.%d.%d\n" -#: badwolf.c:413 +#: badwolf.c:436 #, c-format msgid "TLS Error for %s." msgstr "%s için TLS Hatası." -#: badwolf.c:416 +#: badwolf.c:439 msgid "Temporarily Add Exception" msgstr "Geçici Olarak İstisna Ekle" -#: badwolf.c:624 +#: badwolf.c:647 msgid "Toggle javascript" msgstr "Javascript'i aç/kapat" -#: badwolf.c:629 +#: badwolf.c:652 msgid "Toggle loading images automatically" msgstr "Resimleri otomatik yüklemeyi aç/kapat" @@ -148,15 +183,15 @@ msgstr "Resimleri otomatik yüklemeyi aç/kapat" msgid "Unknown Crash" msgstr "Bilinmeyen Çökme" -#: badwolf.c:627 +#: badwolf.c:650 msgid "_IMG" msgstr "_RSM" -#: badwolf.c:622 +#: badwolf.c:645 msgid "_JS" msgstr "_JS" -#: badwolf.c:742 +#: badwolf.c:777 msgid "search in current page" msgstr "geçerli sayfada ara" @@ -172,12 +207,12 @@ msgstr "web işlemi bellek sınırını aştı.\n" msgid "the web process terminated for an unknown reason.\n" msgstr "web işlemi bilinmeyen bir nedenle sona erdi.\n" -#: badwolf.c:931 +#: badwolf.c:966 #, c-format msgid "webkit-web-extension directory set to: %s\n" msgstr "webkit-web-extension dizini şuna ayarlandı: %s\n" #. TRANSLATOR Ignore this entry. Done for forcing Unicode in xgettext. -#: badwolf.c:1002 +#: badwolf.c:1042 msgid "ø" msgstr ""