diff --git a/build-android-with-native.py b/build-android-with-native.py
index 83bad00f4..08e9376f4 100755
--- a/build-android-with-native.py
+++ b/build-android-with-native.py
@@ -527,7 +527,7 @@ for arch in ARCHS:
if COMPILE_APK:
syscall('rm -f build/apk/*.apk', shell=True)
- syscall('./gradlew assembleDebug')
+ syscall('./gradlew build')
if LOCALES_TXT:
diff --git a/kiwix.c b/kiwix.c
index f9eb1ac82..5d04d0846 100644
--- a/kiwix.c
+++ b/kiwix.c
@@ -234,7 +234,7 @@ JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getTitle
}
-JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getDescription
+JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwibx_getDescription
(JNIEnv *env, jobject obj, jobject descriptionObj) {
jboolean retVal = JNI_FALSE;
std::string cDescription;
@@ -254,168 +254,6 @@ JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getDescription
return retVal;
}
-JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getLanguage
-(JNIEnv *env, jobject obj, jobject languageObj) {
- jboolean retVal = JNI_FALSE;
- std::string cLanguage;
-
- pthread_mutex_lock(&readerLock);
- try {
- if (reader != NULL) {
- std::string cLanguage = reader->getLanguage();
- setStringObjValue(cLanguage, languageObj, env);
- retVal = JNI_TRUE;
- }
- } catch (exception &e) {
- std::cerr << e.what() << std::endl;
- }
- pthread_mutex_unlock(&readerLock);
-
- return retVal;
-}
-
-JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getDate
-(JNIEnv *env, jobject obj, jobject dateObj) {
- jboolean retVal = JNI_FALSE;
- std::string cDate;
-
- pthread_mutex_lock(&readerLock);
- try {
- if (reader != NULL) {
- std::string cDate = reader->getDate();
- setStringObjValue(cDate, dateObj, env);
- retVal = JNI_TRUE;
- }
- } catch (exception &e) {
- std::cerr << e.what() << std::endl;
- }
- pthread_mutex_unlock(&readerLock);
-
- return retVal;
-}
-
-JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getCreator
-(JNIEnv *env, jobject obj, jobject creatorObj) {
- jboolean retVal = JNI_FALSE;
- std::string cCreator;
-
- pthread_mutex_lock(&readerLock);
- try {
- if (reader != NULL) {
- std::string cCreator = reader->getCreator();
- setStringObjValue(cCreator, creatorObj, env);
- retVal = JNI_TRUE;
- }
- } catch (exception &e) {
- std::cerr << e.what() << std::endl;
- }
- pthread_mutex_unlock(&readerLock);
-
- return retVal;
-}
-
-JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getPublisher
-(JNIEnv *env, jobject obj, jobject publisherObj) {
- jboolean retVal = JNI_FALSE;
- std::string cPublisher;
-
- pthread_mutex_lock(&readerLock);
- try {
- if (reader != NULL) {
- std::string cPublisher = reader->getPublisher();
- setStringObjValue(cPublisher, publisherObj, env);
- retVal = JNI_TRUE;
- }
- } catch (exception &e) {
- std::cerr << e.what() << std::endl;
- }
- pthread_mutex_unlock(&readerLock);
-
- return retVal;
-}
-
-JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getArticleCount
-(JNIEnv *env, jobject obj, jobject articleCountObj) {
- jboolean retVal = JNI_FALSE;
- unsigned int cArticleCount = 0;
-
- pthread_mutex_lock(&readerLock);
- try {
- if (reader != NULL) {
- cArticleCount = reader->getArticleCount();
- setIntObjValue(cArticleCount, articleCountObj, env);
- retVal = JNI_TRUE;
- }
- } catch (exception &e) {
- std::cerr << e.what() << std::endl;
- }
- pthread_mutex_unlock(&readerLock);
-
- return retVal;
-}
-
-JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getMediaCount
-(JNIEnv *env, jobject obj, jobject mediaCountObj) {
- jboolean retVal = JNI_FALSE;
- unsigned int cMediaCount = 0;
-
- pthread_mutex_lock(&readerLock);
- try {
- if (reader != NULL) {
- cMediaCount = reader->getMediaCount();
- setIntObjValue(cMediaCount, mediaCountObj, env);
- retVal = JNI_TRUE;
- }
- } catch (exception &e) {
- std::cerr << e.what() << std::endl;
- }
- pthread_mutex_unlock(&readerLock);
-
- return retVal;
-}
-
-JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getFileSize
-(JNIEnv *env, jobject obj, jobject fileSizeObj) {
- jboolean retVal = JNI_FALSE;
- unsigned int cFileSize = 0;
-
- pthread_mutex_lock(&readerLock);
- try {
- if (reader != NULL) {
- cFileSize = reader->getFileSize();
- setIntObjValue(cFileSize, fileSizeObj, env);
- retVal = JNI_TRUE;
- }
- } catch (exception &e) {
- std::cerr << e.what() << std::endl;
- }
- pthread_mutex_unlock(&readerLock);
-
- return retVal;
-}
-
-JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getFavicon
-(JNIEnv *env, jobject obj, jobject contentObj, jobject mimeTypeObj) {
- jboolean retVal = JNI_FALSE;
- std::string cContent;
- std::string cMimeType;
-
- pthread_mutex_lock(&readerLock);
- try {
- if (reader != NULL) {
- reader->getFavicon(cContent, cMimeType);
- setStringObjValue(cContent, contentObj, env);
- setStringObjValue(cMimeType, mimeTypeObj, env);
- retVal = JNI_TRUE;
- }
- } catch (exception &e) {
- std::cerr << e.what() << std::endl;
- }
- pthread_mutex_unlock(&readerLock);
-
- return retVal;
-}
-
JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getRandomPage
(JNIEnv *env, jobject obj, jobject urlObj) {
jboolean retVal = JNI_FALSE;
@@ -435,3 +273,4 @@ JNIEXPORT jboolean JNICALL Java_org_kiwix_kiwixmobile_JNIKiwix_getRandomPage
return retVal;
}
+
diff --git a/res/values-af/strings.xml b/res/values-af/strings.xml
index bf6fe97a2..19d4fc632 100644
--- a/res/values-af/strings.xml
+++ b/res/values-af/strings.xml
@@ -23,6 +23,9 @@
Soek
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ar/strings.xml b/res/values-ar/strings.xml
index 2397697ee..456454596 100644
--- a/res/values-ar/strings.xml
+++ b/res/values-ar/strings.xml
@@ -23,6 +23,9 @@
إبحث
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-as/strings.xml b/res/values-as/strings.xml
index 9ba3aa87b..6d18c572d 100644
--- a/res/values-as/strings.xml
+++ b/res/values-as/strings.xml
@@ -23,6 +23,9 @@
অনুসন্ধান
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ba/strings.xml b/res/values-ba/strings.xml
index 7871f00fc..211e911ab 100644
--- a/res/values-ba/strings.xml
+++ b/res/values-ba/strings.xml
@@ -23,6 +23,9 @@
Эҙләү
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-be/strings.xml b/res/values-be/strings.xml
index d0de4158d..6812b9fef 100644
--- a/res/values-be/strings.xml
+++ b/res/values-be/strings.xml
@@ -23,6 +23,9 @@
Пошук
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-bg/strings.xml b/res/values-bg/strings.xml
index 4526eea34..602997b81 100644
--- a/res/values-bg/strings.xml
+++ b/res/values-bg/strings.xml
@@ -23,6 +23,9 @@
Търсене
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-bm/strings.xml b/res/values-bm/strings.xml
index 590448433..823e7d1e4 100644
--- a/res/values-bm/strings.xml
+++ b/res/values-bm/strings.xml
@@ -23,6 +23,9 @@
Ɲinini kɛ
I ka kunnafoni ɲinintaw sɛbɛn yan.
I mago bɛ fisiye min na ZIMU kɔnɔ, o suganti yan.
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Fisiye ZIMU foyi ma sɔrɔ i ka mansin kan. \nTaa i ɲɛ jɔ dɛmɛ ɲɛ kan, walasa ka faamuya sɔrɔ kunnafoniw bila cogo la Kiwikisi kan. \nN\'a sɔrɔla i ye Fisiye ZIMU dɔ bila i ka mansin kan walima kile dɔ kan, i bɛ se ka segin a kan miniti kelen kɔnɔ walima k\'i ka mansin faga k\'a mɛnɛ.
@@ -47,11 +50,8 @@
Kunnafoni minnu ɲɛ cogoya yɛlɛmanen don, olu jira.
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-bn/strings.xml b/res/values-bn/strings.xml
index 730d65555..39d4c562b 100644
--- a/res/values-bn/strings.xml
+++ b/res/values-bn/strings.xml
@@ -23,6 +23,9 @@
অনুসন্ধান
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-br/strings.xml b/res/values-br/strings.xml
index 2686a856e..b57ad8e54 100644
--- a/res/values-br/strings.xml
+++ b/res/values-br/strings.xml
@@ -23,6 +23,9 @@
Klask
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ca/strings.xml b/res/values-ca/strings.xml
index bf41da883..db9669599 100644
--- a/res/values-ca/strings.xml
+++ b/res/values-ca/strings.xml
@@ -23,6 +23,9 @@
Cerca
Escriviu per buscar articles
Seleccioneu un fitxer de contingut ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No s\'han trobat arxius ZIM en el vostre dispositiu. Visiteu la Pàgina d\'Ajuda per obtenir instruccions sobre com carregar contingut a Kiwix. Si realment vau col·locar un arxiu ZIM en el vostre dispositiu/emmagatzematge extern, podeu tornar a intentar-ho en uns moments, o reinicieu el vostre dispositiu.
@@ -47,11 +50,8 @@
Mostrar els articles amb colors inverses
Tornar a dalt
Mostra un botó al final de la pàgina per desplaçar-se cap a la part superior
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml
index 1277b95f0..cf06f3f5b 100644
--- a/res/values-cs/strings.xml
+++ b/res/values-cs/strings.xml
@@ -23,6 +23,9 @@
Vyhledávání
Pro vyhledání článků pište
Vyberte obsahový soubor ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Na zařízení nenalezeny soubory ZIM.\nPro vodítka, jak nahrávat do Kiwixu obsah, se podívejte na stránku nápovědy.\nPokud jste na své zařízení nebo externí paměť opravdu nahráli soubor ZIM, můžete zkusit načtení za minutu a nebo po restartu zařízení.
@@ -47,11 +50,8 @@
Zobrazuje stránky v obrácených barvách.
Zpět na začátek
Zobrazit tlačítko "Zpět na začátek" na konci stránky
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-cv/strings.xml b/res/values-cv/strings.xml
index 44ded8c71..762a1ba77 100644
--- a/res/values-cv/strings.xml
+++ b/res/values-cv/strings.xml
@@ -23,6 +23,9 @@
Шырав
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-cy/strings.xml b/res/values-cy/strings.xml
index 9b1b11f8e..d45a2d47c 100644
--- a/res/values-cy/strings.xml
+++ b/res/values-cy/strings.xml
@@ -23,6 +23,9 @@
Chwilio
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml
index 2ec0a3d83..b1dd32569 100644
--- a/res/values-da/strings.xml
+++ b/res/values-da/strings.xml
@@ -23,6 +23,9 @@
Søg
Skriv for at finde artikler
Vælg en ZIM indholdsfil (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Ingen ZIM filer fundet på enheden.\nTag et kig på hjælpesiden for at få anvisninger om, hvordan man indlæser indhold i Kiwix.\nHvis du har sat en ZIM fil på din enhed/ekstern, kan du prøve igen i et minut eller genstarte din enhed.
@@ -47,11 +50,8 @@
Vis artikler med inverterede farver
Tilbage til toppen
Få vist en knap i slutningen af siden for at rulle op til toppen
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml
index 6c3a424cc..0b7b23d33 100644
--- a/res/values-de/strings.xml
+++ b/res/values-de/strings.xml
@@ -23,6 +23,9 @@
Suche
Zum Suchen von Artikeln tippen
Wähle eine ZIM-Inhaltsdatei aus (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Es wurden keine ZIM-Dateien auf deinem Gerät gefunden.\nSchau auf den Hilfeseiten nach, um Lösungen zum Laden von Inhalt in Kiwix zu erhalten.\nFalls sich eine ZIM-Datei auf deinem Gerät/externen Speicher befindet, kannst du es in einer Minute erneut versuchen oder dein Gerät neu starten.
@@ -47,11 +50,8 @@
Artikel mit umgekehrten Farben ansehen
Zurück nach oben
Zeigt einen Button am Seitenende an, um zum Anfang hochzuscrollen.
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-el/strings.xml b/res/values-el/strings.xml
index 80f2755c0..2b151c80d 100644
--- a/res/values-el/strings.xml
+++ b/res/values-el/strings.xml
@@ -23,6 +23,9 @@
Αναζήτηση
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-eo/strings.xml b/res/values-eo/strings.xml
index deae45da7..fa0ed7265 100644
--- a/res/values-eo/strings.xml
+++ b/res/values-eo/strings.xml
@@ -23,6 +23,9 @@
Serĉi
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml
index f5ef26a4a..b5dda8254 100644
--- a/res/values-es/strings.xml
+++ b/res/values-es/strings.xml
@@ -23,6 +23,9 @@
Buscar
Tipo de búsqueda de artículos
Seleccione un archivo de contenido de ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No se encontró ningún archivo ZIM en tu dispositivo.\nEcha un vistazo a la Página de Ayuda para obtener instrucciones acerca de cómo cargar contenido en Kiwix.\nSi pusiste un archivo ZIM en tu dispositivo de almacenamiento externo, puedes intentar en un minuto o reiniciar el dispositivo.
@@ -47,11 +50,8 @@
Mostrar artículos con colores revertidas
Volver al principio
Mostrar un botón al final de la página para desplazarse al comienzo
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-et/strings.xml b/res/values-et/strings.xml
index 9ad35c495..0a1791fd4 100644
--- a/res/values-et/strings.xml
+++ b/res/values-et/strings.xml
@@ -23,6 +23,9 @@
Otsi
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-fa/strings.xml b/res/values-fa/strings.xml
index 88d338393..56b71a5c3 100644
--- a/res/values-fa/strings.xml
+++ b/res/values-fa/strings.xml
@@ -23,6 +23,9 @@
جستجو
برای یافتن مقالهها تایپ کنید
یک پروندهٔ محتوایی ZIM را انتخاب کنید (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
هیچ پروندهٔ ZIM در دستگاه شما یافت نشد.\nنگاهی به صفحهٔ کمک برای گرفتن جهتهایی به بارگذاری محتویات به Kiwix نگاهی بیندازید.\nاگر شما پروندهٔ ZIM در دستگاه/حافظهٔ خارجی خود قرار دهید، شما چند دقیقه دیگر مجدداً سعی کنید یا دستگاه خود را ریاستارت کنید.
@@ -47,11 +50,8 @@
نمایش مقالهها با رنگهای معکوسشده
بازگشت به بالای صفحه
نمایش دکمه در پایان صفحه برای انتقال به بالا
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-fi/strings.xml b/res/values-fi/strings.xml
index 1001f6f70..389de4b75 100644
--- a/res/values-fi/strings.xml
+++ b/res/values-fi/strings.xml
@@ -23,6 +23,9 @@
Haku
Type to lookup articles
Valitse ZIM-sisältötiedosto (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-fo/strings.xml b/res/values-fo/strings.xml
index 9e17ca637..be8eeb06c 100644
--- a/res/values-fo/strings.xml
+++ b/res/values-fo/strings.xml
@@ -23,6 +23,9 @@
Leita
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml
index 86142cfce..ec28f21d0 100644
--- a/res/values-fr/strings.xml
+++ b/res/values-fr/strings.xml
@@ -23,6 +23,9 @@
Rechercher
Taper pour rechercher des articles
Sélectionner un fichier de contenu ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Aucun fichier ZIM n’a été trouvé sur votre machine.\nJetez un coup d’œil à la page d’aide pour avoir des instructions sur la manière de charger du contenu dans Kiwix.\nSi vous avez mis un fichier ZIM sur votre stockage interne ou externe, vous pouvez réessayer dans une minute ou redémarrer votre appareil.
@@ -47,11 +50,8 @@
Afficher les articles en couleurs inversées
Retourner au début
Afficher un bouton en bas de la page pour revenir au début
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-gl/strings.xml b/res/values-gl/strings.xml
index d70d31f63..b19207a11 100644
--- a/res/values-gl/strings.xml
+++ b/res/values-gl/strings.xml
@@ -23,6 +23,9 @@
Procurar
Empece a escribir para procurar artigos
Seleccione un ficheiro de contido ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Non se atopou ningún ficheiro ZIM no seu dispositivo.\nBote unha ollada á páxina de axuda para aprender a cargar contido no Kiwix.\nSe xa puxo o ficheiro ZIM no seu dispositivo de almacenamento interno ou externo, pode reintentalo nun minuto ou reiniciar o dispositivo.
@@ -47,11 +50,8 @@
Mostrar os artigos coas cores invertidas
Volver ao inicio
Mostrar un botón ao final da páxina para volver ao inicio da mesma
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-gu/strings.xml b/res/values-gu/strings.xml
index c0ddb6fd5..cdf66d7df 100644
--- a/res/values-gu/strings.xml
+++ b/res/values-gu/strings.xml
@@ -23,6 +23,9 @@
શોધો
Type to lookup articles
ZIM માહિતી ફાઇલ (*.zim) પસંદ કરો
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-he/strings.xml b/res/values-he/strings.xml
index 50d43b4ec..11952ac4f 100644
--- a/res/values-he/strings.xml
+++ b/res/values-he/strings.xml
@@ -23,6 +23,9 @@
חיפוש
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-hi/strings.xml b/res/values-hi/strings.xml
index b665cdf18..d779c0df4 100644
--- a/res/values-hi/strings.xml
+++ b/res/values-hi/strings.xml
@@ -6,11 +6,11 @@
होम
आगे जाएँ
पीछे जाएँ
- वरीयताएँ
+ प्राथमिकताएँ
खोजें
पाठ में खोजें
- यादृच्छिक अनुच्छेद
- संपूर्ण स्क्रीन
+ रैन्डम लेख
+ पूरा स्क्रीन
पूरे स्क्रीन से बाहर निकलें
बाहर निकलें
Rescan SD card
@@ -23,6 +23,9 @@
खोजें
लेख तलाश करने के लिए लिखें
एक ZIM कान्टेन्ट फ़ाइल (*.zim) का चयन करें
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
आपकी डिवाइस पर कोई ZIM फ़ाइल नही मिली।\nKiwix मे कान्टेन्ट लोड करने के बारे मे जानने के लिए हेल्प पृष्ठ देखें।\nयदि आपने अपने डिवाइस/इक्स्टर्नल स्टोरिज पर ZIM फ़ाइल डाली है, तो फिर से इक मिनिट मे प्रयास करें, या फिर डिवाइस पुनरारंभ करें।
@@ -47,11 +50,8 @@
उल्टे रंगों के साथ लेख दिखाएँ
वापस शीर्ष पे जाएँ
उपर तक स्क्रॉल करने के लिए पृष्ठ के अंत में एक बटन दिखाएँ
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-hr/strings.xml b/res/values-hr/strings.xml
index 098d1a4e3..dfb019ace 100644
--- a/res/values-hr/strings.xml
+++ b/res/values-hr/strings.xml
@@ -23,6 +23,9 @@
Traži
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-hu/strings.xml b/res/values-hu/strings.xml
index 569044361..90a1cadb8 100644
--- a/res/values-hu/strings.xml
+++ b/res/values-hu/strings.xml
@@ -23,6 +23,9 @@
Keresés
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ia/strings.xml b/res/values-ia/strings.xml
index a8b9ff867..967dab6ea 100644
--- a/res/values-ia/strings.xml
+++ b/res/values-ia/strings.xml
@@ -18,11 +18,14 @@
Save Image
An error occured when trying to save an image!
Saved image as %s in your Pictures folder.
- Scanning for ZIM files, please wait...
- Back to Top
+ Cerca files ZIM, per favor attende...
+ Initio del pagina
Cercar
Dactylographar pro cercar articulos
Selige un file de contento ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Nulle file ZIM trovate in vostre dispositivo.\nIn le pagina de adjuta se trova instructiones pro cargar contento in Kiwix.\nSi vos ha de facto mittite un file ZIM in vostre dispositivo o spatio de immagazinage externe, vos pote essayar de novo post un minuta o reinitiar vostre dispositivo.
@@ -45,13 +48,10 @@
Monstrar un button de zoom in le angulo inferior dextre del schermo
Modo nocturne
Monstrar articulos in colores invertite
- Back to Top
- Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
+ Initio del pagina
+ Monstrar un button al fin del pagina pro retornar al initio
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-id/strings.xml b/res/values-id/strings.xml
index 4fcdc7e21..c1e81a02d 100644
--- a/res/values-id/strings.xml
+++ b/res/values-id/strings.xml
@@ -23,6 +23,9 @@
Cari
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ie/strings.xml b/res/values-ie/strings.xml
index 6c05ef359..f517367fc 100644
--- a/res/values-ie/strings.xml
+++ b/res/values-ie/strings.xml
@@ -23,6 +23,9 @@
Sercha
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml
index da66de4b1..1059cdc1b 100644
--- a/res/values-it/strings.xml
+++ b/res/values-it/strings.xml
@@ -23,6 +23,9 @@
Ricerca
Scrivi per ricercare le voci
Seleziona un file di contenuto ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Nessun file ZIM trovano sul tuo dispositivo.\nLeggi la pagina di aiuto per ottenere indicazioni su come caricare il contenuto in Kiwix.\nSe ha inserito un file ZIM sul tuo dispositivo, potresti ritentare fra un minuto o riavviare il dispositivo.
@@ -47,11 +50,8 @@
Visualizza le voci con colori invertiti
Torna all\'inizio
Mostra un pulsante alla fine della pagina per scorrere fino all\'inizio
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml
index 25f018240..53ea5914f 100644
--- a/res/values-ja/strings.xml
+++ b/res/values-ja/strings.xml
@@ -23,6 +23,9 @@
検索
記事の検索
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
記事を反転色で表示する
トップに戻る
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-jv/strings.xml b/res/values-jv/strings.xml
index 0442e83ca..635a20fb9 100644
--- a/res/values-jv/strings.xml
+++ b/res/values-jv/strings.xml
@@ -23,6 +23,9 @@
Golèk
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ka/strings.xml b/res/values-ka/strings.xml
index a23a8e78f..1fe3eb70a 100644
--- a/res/values-ka/strings.xml
+++ b/res/values-ka/strings.xml
@@ -23,6 +23,9 @@
ძიება
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-km/strings.xml b/res/values-km/strings.xml
index f7def3596..bb395ab28 100644
--- a/res/values-km/strings.xml
+++ b/res/values-km/strings.xml
@@ -23,6 +23,9 @@
ស្វែងរក
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-kn/strings.xml b/res/values-kn/strings.xml
index 339d19c5f..08aecc08c 100644
--- a/res/values-kn/strings.xml
+++ b/res/values-kn/strings.xml
@@ -23,6 +23,9 @@
ಅನ್ವೇಷಿಸಿ
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml
index 2b8d98aca..ac8b9babc 100644
--- a/res/values-ko/strings.xml
+++ b/res/values-ko/strings.xml
@@ -23,6 +23,9 @@
검색
문서를 찾아보는 종류
ZIM 콘텐츠 파일 (*.zim) 선택
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
장치에서 ZIM 파일이 발견되지 않았습니다.\n도움말에서 콘텐츠를 어떻게 키윅스로 불러오는지 알아보세요.\n만약 파일을 외장 디스크나 기기에 넣었다면, 몇분 후 재시도하거나 재부팅해 보세요.
@@ -47,11 +50,8 @@
되돌린 색으로 문서를 보여줍니다
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ky/strings.xml b/res/values-ky/strings.xml
index 72f43ed35..01100e7d4 100644
--- a/res/values-ky/strings.xml
+++ b/res/values-ky/strings.xml
@@ -23,6 +23,9 @@
Издөө
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-lb/strings.xml b/res/values-lb/strings.xml
index 8f435afdc..a72bc9030 100644
--- a/res/values-lb/strings.xml
+++ b/res/values-lb/strings.xml
@@ -23,6 +23,9 @@
Sichen
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-li/strings.xml b/res/values-li/strings.xml
index 7747d9f0d..f64995ba2 100644
--- a/res/values-li/strings.xml
+++ b/res/values-li/strings.xml
@@ -23,6 +23,9 @@
Zeuk
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-lt/strings.xml b/res/values-lt/strings.xml
index a0eff86a7..87cf4923f 100644
--- a/res/values-lt/strings.xml
+++ b/res/values-lt/strings.xml
@@ -23,6 +23,9 @@
Paieška
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-lv/strings.xml b/res/values-lv/strings.xml
index bf981d153..cbacd7b98 100644
--- a/res/values-lv/strings.xml
+++ b/res/values-lv/strings.xml
@@ -23,6 +23,9 @@
Meklēt
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-mk/strings.xml b/res/values-mk/strings.xml
index ced548dcb..bcdd1ff38 100644
--- a/res/values-mk/strings.xml
+++ b/res/values-mk/strings.xml
@@ -23,6 +23,9 @@
Пребарување
Тип за пребарување статии
Изберете ZIM-податотека (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
На уредот не се најдени ZIM-податотеки.\nПогледајте ја страницата за помош за да дознаете како да ставите содржини во Kiwix.\nАко сепак имате ставено ZIM-податотека во уредот/надворешниот склад, обидете се повторно за една минута или превклучете го уредот.
@@ -47,11 +50,8 @@
Прикажувај ги статиите во обратни бои
Најгоре
Прикажувај копче за враќање најгоре на крајот од страницата
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ml/strings.xml b/res/values-ml/strings.xml
index e49a4343a..ed4af3f59 100644
--- a/res/values-ml/strings.xml
+++ b/res/values-ml/strings.xml
@@ -23,6 +23,9 @@
തിരയുക
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-mn/strings.xml b/res/values-mn/strings.xml
index 689f63249..4e3a2b7d8 100644
--- a/res/values-mn/strings.xml
+++ b/res/values-mn/strings.xml
@@ -23,6 +23,9 @@
Хайлт
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ms/strings.xml b/res/values-ms/strings.xml
index a53c82c5c..d7833afff 100644
--- a/res/values-ms/strings.xml
+++ b/res/values-ms/strings.xml
@@ -23,6 +23,9 @@
Cari
Taip untuk mencari rencana
Pilih Fail Kandungan ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Tidak terdapat fail ZIM di dalam peranti anda.\nSila baca halaman Bantuan untuk mendapat petua untuk cara memuatkan kandungan ke dalam Kiwix.\nJika benar anda meletakkan fail ZIM di dalam peranti/storan luaran anda, apa kata anda cuba lagi sebentar kemudian atau me-restart peranti anda.
@@ -47,11 +50,8 @@
Paparkan rencana yang diterbalikkan warnanya
Kembali ke Atas
Paparkan butang di kaki halaman untuk menskrol kembali ke atas
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-mt/strings.xml b/res/values-mt/strings.xml
index 0a3e67ac7..e9f9736bd 100644
--- a/res/values-mt/strings.xml
+++ b/res/values-mt/strings.xml
@@ -23,6 +23,9 @@
Fittex
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-my/strings.xml b/res/values-my/strings.xml
index 397167439..2cdc19fff 100644
--- a/res/values-my/strings.xml
+++ b/res/values-my/strings.xml
@@ -23,6 +23,9 @@
ရှာဖွေရန်
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml
index d63357a20..b39478385 100644
--- a/res/values-nb/strings.xml
+++ b/res/values-nb/strings.xml
@@ -23,6 +23,9 @@
Søk
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ne/strings.xml b/res/values-ne/strings.xml
index 72143058c..2d1e76440 100644
--- a/res/values-ne/strings.xml
+++ b/res/values-ne/strings.xml
@@ -23,6 +23,9 @@
खोज
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml
index 76f94cc50..77e5496e2 100644
--- a/res/values-nl/strings.xml
+++ b/res/values-nl/strings.xml
@@ -23,6 +23,9 @@
Zoeken
Voer tekst in om pagina\'s te zoeken
Selecteer een ZIM inhoudsbestand (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Er zijn geen ZIM-bestanden op uw apparaat gevonden.\nKijk op de Hulppagina voor hulp bij het laden van inhoud in Kiwix.\nAls u een ZIM-bestand op uw apparaat of externe opslag hebt gezet, probeer het dan even een aantal seconden opnieuw of herstart uw apparaat.
@@ -47,11 +50,8 @@
Pagina\'s weergeven met omgekeerde kleuren
Terug naar boven
Aan het einde van de pagina een knop weergeven om terug te gaan naar boven
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-nn/strings.xml b/res/values-nn/strings.xml
index 0d7757a32..16243c5c1 100644
--- a/res/values-nn/strings.xml
+++ b/res/values-nn/strings.xml
@@ -23,6 +23,9 @@
Søk
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-oc/strings.xml b/res/values-oc/strings.xml
index 7da588705..ab5e5cdf9 100644
--- a/res/values-oc/strings.xml
+++ b/res/values-oc/strings.xml
@@ -23,6 +23,9 @@
Cèrca
Picar per recercar d\'articles
Seleccionar un fichièr de contengut ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Cap de fichièr ZIM es pas estat trobat sus vòstra maquina.\nGetatz un còp d’uèlh a la pagina d’ajuda per aver d\'instruccions sul biais de cargar de contengut dins Kiwix.\nS\'avètz mes un fichièr ZIM sus vòstre emmagazinatge intèrne o extèrne, podètz tornar ensajar dins una minuta o reamodar vòstre aparelh.
@@ -47,11 +50,8 @@
Afichar los articles en colors inversadas
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-or/strings.xml b/res/values-or/strings.xml
index c2d114109..e4eaf2028 100644
--- a/res/values-or/strings.xml
+++ b/res/values-or/strings.xml
@@ -23,6 +23,9 @@
ଖୋଜିବେ
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml
index 8432db6a2..05bf745a1 100644
--- a/res/values-pl/strings.xml
+++ b/res/values-pl/strings.xml
@@ -23,6 +23,9 @@
Szukaj
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Powrót do góry
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ps/strings.xml b/res/values-ps/strings.xml
index 653dde8d6..42724d009 100644
--- a/res/values-ps/strings.xml
+++ b/res/values-ps/strings.xml
@@ -23,6 +23,9 @@
پلټل
د ليکنو موندلو لپاره وټاپۍ
د ZIM مېنځپانگې يوه دوتنه ټاکل (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
ستاسې په وزلې هېڅ کومه ZIM دوتنه و نه موندل شوه.\nکيويکس کې د مېنځپانگې د برسېرولو لپاره د لارښود مخ ولولۍ.\nکه تاسې په خپلې وزلې کې يو ZIM دوتنه نه وي ايښې، نو تاسې کولی شی چې يوه دقيقه وروسته يې بيا وآزمويۍ او يا هم خپله وزله سر له نوي ولگوۍ او بيا هڅه وکړۍ.
@@ -47,11 +50,8 @@
رنگ اړول شوې ليکنې ښکاره کول
بېرته سر ته
د مخ په پای کې د مخ سر ته ورتللو لپاره يوه تڼۍ ښکاره کول
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml
index c00a317f6..4ba0c615d 100644
--- a/res/values-pt/strings.xml
+++ b/res/values-pt/strings.xml
@@ -23,6 +23,9 @@
Pesquisar
Digite para pesquisar artigos.
Selecione um arquivo de conteúdo ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-qu/strings.xml b/res/values-qu/strings.xml
index eece5fd54..75bbd6042 100644
--- a/res/values-qu/strings.xml
+++ b/res/values-qu/strings.xml
@@ -23,6 +23,9 @@
Maskay
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-rm/strings.xml b/res/values-rm/strings.xml
index 058ef687d..6da005e22 100644
--- a/res/values-rm/strings.xml
+++ b/res/values-rm/strings.xml
@@ -23,6 +23,9 @@
Tschertgar
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ro/strings.xml b/res/values-ro/strings.xml
index 72d20c992..9a9edcf81 100644
--- a/res/values-ro/strings.xml
+++ b/res/values-ro/strings.xml
@@ -11,24 +11,27 @@
Căutare în text
Articol aleatoriu
Ecran complet
- Ieșire din modul ecran complet
+ Ieșire din ecran complet
Ieșire
Rescan SD card
Share with friends
Save Image
An error occured when trying to save an image!
Saved image as %s in your Pictures folder.
- Scanning for ZIM files, please wait...
- Back to Top
+ Se caută fișiere ZIM; vă rugăm să așteptați...
+ Începutul paginii
Căutare
Tastați pentru a căuta articole
Alegeți un fișier cu conținut ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Nu s-au găsit fișiere ZIM pe dispozitivul dumneavoastră.\nConsultați pagina de ajutor pentru detalii despre încărcarea conținutului în Kiwix.\nDacă totuși ați stocat un fișier ZIM pe dispozitivul dv./stocarea dv. externă, puteți reîncerca peste un minut sau puteți reporni dispozitivul.
Eroare: Fișierul ZIM selectat nu poate fi găsit.
Eroare: Fișierul selectat nu este un fișier ZIM valid.
- Error: Loading article \"%1$s\" failed.
+ Eroare: Încărcarea articolului \"%1$s\" nu a reușit.
Eroare: Încărcarea articolului (Url: %1$s) nu a reușit.
Afișare
Nivel de zoom
@@ -39,19 +42,16 @@
- Medium
- Large
- Information
- Version
+ Informații
+ Versiune
Controale de zoom
Afișează un buton de zoom în colțul din dreapta jos al ecranului
Mod de noapte
Afișează articolele în culori inversate
- Back to Top
- Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
+ Începutul paginii
+ Afișează un buton la sfârșitul paginii pentru a reveni la începutul acesteia
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
index b3942271f..4fe8a143a 100644
--- a/res/values-ru/strings.xml
+++ b/res/values-ru/strings.xml
@@ -23,6 +23,9 @@
Поиск
Введите для поиска статей
Выберите ZIM-файл (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Не удалось найти ZIM-файлы на вашем устройстве.\nВзгляните на страницу справки, чтобы получить указания о том, как загружать содержимое на Kiwix.\nЕсли вы расположили ZIM-файл на вашем устройстве или внешнем носителе, возможно, стоит повторить попытку через минуту-другую или перезагрузить устройство.
@@ -47,11 +50,8 @@
Показать статьи в «ночном режиме»
Вернуться наверх
Отобразить кнопку в конце страницы для прокрутки вверх
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-sa/strings.xml b/res/values-sa/strings.xml
index b52c2d65f..709fc7bde 100644
--- a/res/values-sa/strings.xml
+++ b/res/values-sa/strings.xml
@@ -23,6 +23,9 @@
अन्वेषणम्
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-sh/strings.xml b/res/values-sh/strings.xml
index dc08ac0ef..7a0cc9a8a 100644
--- a/res/values-sh/strings.xml
+++ b/res/values-sh/strings.xml
@@ -23,6 +23,9 @@
Traži
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-si/strings.xml b/res/values-si/strings.xml
index bbffe2d9f..df6e255fa 100644
--- a/res/values-si/strings.xml
+++ b/res/values-si/strings.xml
@@ -23,6 +23,9 @@
ගවේෂණය
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-sk/strings.xml b/res/values-sk/strings.xml
index 3ed789baa..b6cbb6caa 100644
--- a/res/values-sk/strings.xml
+++ b/res/values-sk/strings.xml
@@ -23,6 +23,9 @@
Hľadať
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-sl/strings.xml b/res/values-sl/strings.xml
index 6ccbe407d..e62908488 100644
--- a/res/values-sl/strings.xml
+++ b/res/values-sl/strings.xml
@@ -19,16 +19,19 @@
An error occured when trying to save an image!
Saved image as %s in your Pictures folder.
Scanning for ZIM files, please wait...
- Back to Top
+ Nazaj na vrh
Iskanje
Vrsta iskanih člankov
Izberite datoteko z vsebino ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Na vaši napravi ni bila najdena nobena datoteka ZIM.\nZa napotke v zvezi z nalaganjem vsebine v Kiwix si poglejte Stran za pomoč.\nČe ste datoteko ZIM posneli na svojo napravo/zunanji disk, lahko ponovno poskusite po kratkem čakanju ali pa svojo napravo ponovno zaženete.
Napaka: izbrane datoteke ZIM ni mogoče najti.
Napaka: izbrana datoteka ni veljavna datoteka ZIM.
- Error: Loading article \"%1$s\" failed.
+ Napaka: Nalaganje članka \"%1$s\" je spodletelo.
Napaka: nalaganje članka (url: %1$s) ni uspelo.
Prikaz
Raven zumiranja
@@ -39,19 +42,16 @@
- Medium
- Large
- Information
- Version
+ Informacije
+ Različica
Kontrolniki zumiranja
V spodnjem desnem vogalu zaslona prikaži gumb za zumiranje
Nočni način
Prikaz člankov z obrnjenimi barvami
- Back to Top
+ Nazaj na vrh
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-sq/strings.xml b/res/values-sq/strings.xml
index 1c7aecf14..747ca47ca 100644
--- a/res/values-sq/strings.xml
+++ b/res/values-sq/strings.xml
@@ -23,6 +23,9 @@
Kërko
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-su/strings.xml b/res/values-su/strings.xml
index 5d9388673..0510cfe8a 100644
--- a/res/values-su/strings.xml
+++ b/res/values-su/strings.xml
@@ -23,6 +23,9 @@
Paluruh
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-sv/strings.xml b/res/values-sv/strings.xml
index 480a35ff0..e70fb517e 100644
--- a/res/values-sv/strings.xml
+++ b/res/values-sv/strings.xml
@@ -23,6 +23,9 @@
Sök
Skriv för att kolla upp artiklar
Välj en ZIM-innehållsfil (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Inga ZIM-filer hittades på din enhet.\nTa en titt på hjälpsidan för att få hjälp om hur man läser in innehåll i Kiwix.\nOm du lade in en ZIM-fil på din enhet/externa minne bör du kanske prova igen om någon minut eller starta om din enhet.
@@ -47,11 +50,8 @@
Visa artiklar med inverterade färger
Tillbaka till toppen
Visar en knapp i slutet på sidan för att rulla upp till toppen
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-sw/strings.xml b/res/values-sw/strings.xml
index 3bd9e93fd..35219990d 100644
--- a/res/values-sw/strings.xml
+++ b/res/values-sw/strings.xml
@@ -23,6 +23,9 @@
Tafuta
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ta/strings.xml b/res/values-ta/strings.xml
index a6ece5afb..7ac3d4240 100644
--- a/res/values-ta/strings.xml
+++ b/res/values-ta/strings.xml
@@ -23,6 +23,9 @@
தேடு
Type to lookup articles
ZIM கோப்பை தேர்வு செய் (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-te/strings.xml b/res/values-te/strings.xml
index 163ae01be..ba59eb092 100644
--- a/res/values-te/strings.xml
+++ b/res/values-te/strings.xml
@@ -23,6 +23,9 @@
వెతుకు
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-th/strings.xml b/res/values-th/strings.xml
index 8344250df..79c3f2fc5 100644
--- a/res/values-th/strings.xml
+++ b/res/values-th/strings.xml
@@ -23,6 +23,9 @@
ค้นหา
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-tl/strings.xml b/res/values-tl/strings.xml
index 0eb486f90..dbc41b28b 100644
--- a/res/values-tl/strings.xml
+++ b/res/values-tl/strings.xml
@@ -23,6 +23,9 @@
Humanap
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-tr/strings.xml b/res/values-tr/strings.xml
index a40ca49dd..d6ae8b452 100644
--- a/res/values-tr/strings.xml
+++ b/res/values-tr/strings.xml
@@ -23,6 +23,9 @@
Ara
Makalelerde aranacak kelimeyi yazın
Bir ZIM İçerik Dosyası seçin (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Cihazınızda bir ZIM dosyası bulunamadı.\nKiwix\'e içerik yükleme talimatlarını görmek için Yardım Sayfası\'na bir göz atın.\nEğer cihazınıza/harici depolama kaynağınıza bir ZIM dosyası koyduysanız, birkaç dakika içerisinde yeniden deneyebilir veya cihazınızı yeniden başlatabilirsiniz.
@@ -47,11 +50,8 @@
Makaleleri dönüştürülmüş renklerle göster
Başa dön
Başa dönmek için sayfanın altında bir düğme görüntüler
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-uk/strings.xml b/res/values-uk/strings.xml
index 16dba8211..789a61080 100644
--- a/res/values-uk/strings.xml
+++ b/res/values-uk/strings.xml
@@ -23,6 +23,9 @@
Знайти
Наберіть для пошуку статей
Виберіть файл вмісту ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Файлів ZIM не знайдено на вашому пристрої.\nПогляньте на сторінку допомогти, щоб отримати вказівки, як завантажувати вміст у Kiwix.\nЯкщо ви поклали файл ZIM на ваш пристрій/зовнішній носій, то можете повторити за хвилину або перезапустити пристрій.
@@ -47,11 +50,8 @@
Показати статті з повернутими кольорами
Наверх
Відображати кнопки в кінці сторінки для прокрутки вгору
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-ur/strings.xml b/res/values-ur/strings.xml
index e07cbe32d..6aed0d2b8 100644
--- a/res/values-ur/strings.xml
+++ b/res/values-ur/strings.xml
@@ -23,6 +23,9 @@
تلاش
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-uz/strings.xml b/res/values-uz/strings.xml
index 4363d51d6..75f55eb16 100644
--- a/res/values-uz/strings.xml
+++ b/res/values-uz/strings.xml
@@ -23,6 +23,9 @@
Qidiruv
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-vi/strings.xml b/res/values-vi/strings.xml
index d7ce565f8..e96c94b52 100644
--- a/res/values-vi/strings.xml
+++ b/res/values-vi/strings.xml
@@ -23,6 +23,9 @@
Tìm kiếm
Gõ để tra cứu bài
Chọn một Tập tin Nội dung ZIM (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
Không tìm thấy tập tin ZIM trên thiết bị của bạn.\nHãy đọc Trang Trợ giúp để biết cách tải nội dung vào Kiwix.\nNếu bạn có đưa tập tin ZIM vào thiết bị hoặc bộ nhớ ngoài của bạn, hãy thử lại sau hoặc khởi động lại thiết bị của bạn.
@@ -47,11 +50,8 @@
Đảo ngược màu sắc trong bài
Trở lên Đầu trang
Hiển thị nút ở cuối trang để di chuyển lên trên cùng
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-yi/strings.xml b/res/values-yi/strings.xml
index 6f25bab3e..7d3b4ec39 100644
--- a/res/values-yi/strings.xml
+++ b/res/values-yi/strings.xml
@@ -23,6 +23,9 @@
זוכן
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-yo/strings.xml b/res/values-yo/strings.xml
index fc257ca0c..f65d3bb32 100644
--- a/res/values-yo/strings.xml
+++ b/res/values-yo/strings.xml
@@ -23,6 +23,9 @@
Àwárí
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values-zh/strings.xml b/res/values-zh/strings.xml
index 70d5ccdaf..52b7c8632 100644
--- a/res/values-zh/strings.xml
+++ b/res/values-zh/strings.xml
@@ -23,6 +23,9 @@
搜索
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,11 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
+ Couldn\'t connect to the internet.
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 666307bce..8a833c1d4 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -23,6 +23,9 @@
Search
Type to lookup articles
Select a ZIM Content File (*.zim)
+ Open link in new tab?
+ Do you want to remove this tab?
+ Remove tab
I enjoy Wikipedia Offline with Kiwix!
I enjoy Wikipedia Offline with Kiwix! The whole human knowledge at hand wherever you go! Without Internet! http://goo.gl/h9Smkk
No ZIM files found on your device.\nTake a look at the Help Page to get directions on how to load content into Kiwix.\nIf you did put a ZIM file on your device/external storage, you might retry in a minute or restart your device.
@@ -47,14 +50,8 @@
Show articles with reverted colors
Back to Top
Display a button at the end of the page to scroll up to the top
- Remove Tab
- Add new Tab
- Remove
- Open link in new Tab?
Share via
Language
Choose a language
- Delete Tab
- Do you want to delete this tab?
Couldn\'t connect to the internet.
diff --git a/src/org/kiwix/kiwixmobile/JNIKiwix.java b/src/org/kiwix/kiwixmobile/JNIKiwix.java
index 0e957fc15..56d49c31a 100644
--- a/src/org/kiwix/kiwixmobile/JNIKiwix.java
+++ b/src/org/kiwix/kiwixmobile/JNIKiwix.java
@@ -29,6 +29,14 @@ public class JNIKiwix {
public native boolean getPageUrlFromTitle(String title, JNIKiwixString url);
public native boolean getTitle(JNIKiwixString title);
public native boolean getDescription(JNIKiwixString title);
+ public native boolean getLanguage(JNIKiwixString language);
+ public native boolean getDate(JNIKiwixString language);
+ public native boolean getFavicon(JNIKiwixString content, JNIKiwixString mimeType);
+ public native boolean getCreator(JNIKiwixString creator);
+ public native boolean getPublisher(JNIKiwixString publisher);
+ public native boolean getFileSize(JNIKiwixInt size);
+ public native boolean getArticleCount(JNIKiwixInt count);
+ public native boolean getMediaCount(JNIKiwixInt count);
public native boolean getRandomPage(JNIKiwixString url);
static {
diff --git a/src/org/kiwix/kiwixmobile/KiwixMobileActivity.java b/src/org/kiwix/kiwixmobile/KiwixMobileActivity.java
index 61eb50365..d2169f57b 100644
--- a/src/org/kiwix/kiwixmobile/KiwixMobileActivity.java
+++ b/src/org/kiwix/kiwixmobile/KiwixMobileActivity.java
@@ -647,8 +647,8 @@ public class KiwixMobileActivity extends SherlockFragmentActivity implements Act
AlertDialog.Builder dialog = new AlertDialog.Builder(this);
- dialog.setTitle(getString(R.string.delete_tab_title));
- dialog.setMessage(getString(R.string.delete_tab_message));
+ dialog.setTitle(getString(R.string.remove_tab));
+ dialog.setMessage(getString(R.string.remove_tab_confirm));
dialog.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
removeTabAt(mCurrentDraggedTab);