From c4058b0a197be2f6f2d51e0343516cae8ee73e95 Mon Sep 17 00:00:00 2001 From: Rashiq Date: Wed, 3 Jun 2015 15:49:22 +0200 Subject: [PATCH 01/10] Remove Zoom functionality and make it automatic through manipulating the html --- res/values/strings_nontranslatable.xml | 11 -- .../kiwixmobile/KiwixMobileFragment.java | 114 ++++++------------ src/org/kiwix/kiwixmobile/KiwixWebView.java | 28 ++--- .../kiwixmobile/settings/SettingsHelper.java | 28 ----- 4 files changed, 44 insertions(+), 137 deletions(-) delete mode 100644 res/values/strings_nontranslatable.xml diff --git a/res/values/strings_nontranslatable.xml b/res/values/strings_nontranslatable.xml deleted file mode 100644 index 7c0363df7..000000000 --- a/res/values/strings_nontranslatable.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - automatic - small - medium - large - - \ No newline at end of file diff --git a/src/org/kiwix/kiwixmobile/KiwixMobileFragment.java b/src/org/kiwix/kiwixmobile/KiwixMobileFragment.java index ac6aeb000..50b19122b 100644 --- a/src/org/kiwix/kiwixmobile/KiwixMobileFragment.java +++ b/src/org/kiwix/kiwixmobile/KiwixMobileFragment.java @@ -52,7 +52,6 @@ import android.preference.PreferenceManager; import android.text.Editable; import android.text.InputType; import android.text.TextWatcher; -import android.util.DisplayMetrics; import android.util.Log; import android.view.ContextMenu; import android.view.DragEvent; @@ -107,12 +106,8 @@ public class KiwixMobileFragment extends SherlockFragment { private static final String TAG_CURRENTARTICLE = "currentarticle"; - private static final String PREF_ZOOM = "pref_zoom"; - private static final String PREF_NIGHTMODE = "pref_nightmode"; - private static final String PREF_ZOOM_ENABLED = "pref_zoom_enabled"; - private static final String PREF_KIWIX_MOBILE = "kiwix-mobile"; private static final String PREF_BACKTOTOP = "pref_backtotop"; @@ -455,6 +450,23 @@ public class KiwixMobileFragment extends SherlockFragment { private void setUpWebView() { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + WebView.setWebContentsDebuggingEnabled(true); + } + + // webView.getSettings().setLoadsImagesAutomatically(false); + // Does not make much sense to cache data from zim files.(Not clear whether + // this actually has any effect) + webView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE); + webView.setWebChromeClient(new MyWebChromeClient()); + + // Should basically resemble the behavior when setWebClient not done + // (i.p. internal urls load in webview, external urls in browser) + // as currently no custom setWebViewClient required it is commented + // However, it must notify the bookmark system when a page is finished loading + // so that it can refresh the menu. + webView.setWebViewClient(new MyWebViewClient()); + webView.setOnPageChangedListener(new KiwixWebView.OnPageChangeListener() { @Override @@ -618,28 +630,12 @@ public class KiwixMobileFragment extends SherlockFragment { } }); - // JS includes will not happen unless we enable JS - webView.getSettings().setJavaScriptEnabled(true); - mBackToTopButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { webView.pageUp(true); } }); - - // webView.getSettings().setLoadsImagesAutomatically(false); - // Does not make much sense to cache data from zim files.(Not clear whether - // this actually has any effect) - webView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE); - webView.setWebChromeClient(new MyWebChromeClient()); - - // Should basically resemble the behavior when setWebClient not done - // (i.p. internal urls load in webview, external urls in browser) - // as currently no custom setWebViewClient required it is commented - // However, it must notify the bookmark system when a page is finished loading - // so that it can refresh the menu. - webView.setWebViewClient(new MyWebViewClient()); } private void setUpExitFullscreenButton() { @@ -753,38 +749,16 @@ public class KiwixMobileFragment extends SherlockFragment { public void loadPrefs() { mySharedPreferences = PreferenceManager.getDefaultSharedPreferences(getActivity()); - - String pref_zoom = mySharedPreferences.getString(PREF_ZOOM, AUTOMATIC); - Boolean pref_zoom_enabled = mySharedPreferences.getBoolean(PREF_ZOOM_ENABLED, false); - Boolean pref_nightmode = mySharedPreferences.getBoolean(PREF_NIGHTMODE, false); + boolean nightMode = mySharedPreferences.getBoolean(PREF_NIGHTMODE, false); isBacktotopEnabled = mySharedPreferences.getBoolean(PREF_BACKTOTOP, false); - if (pref_zoom.equals(AUTOMATIC)) { - setDefaultZoom(); - } else if (pref_zoom.equals(MEDIUM)) { - webView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.MEDIUM); - } else if (pref_zoom.equals(SMALL)) { - webView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.FAR); - } else if (pref_zoom.equals(LARGE)) { - webView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.CLOSE); - } else { - Log.w(TAG_KIWIX, - "pref_displayZoom value (" + pref_zoom + " unknown. Assuming automatic"); - webView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.MEDIUM); - } - - // Pinch to zoom - // This seems to suffer from a bug in Android. If you set to "false" this only apply after a restart of the app. - Log.d(TAG_KIWIX, "pref_zoom_enabled value (" + pref_zoom_enabled + ")"); - webView.disableZoomControlls(pref_zoom_enabled); - if (!isBacktotopEnabled) { mBackToTopButton.setVisibility(View.INVISIBLE); } // Night mode status - Log.d(TAG_KIWIX, "pref_nightmode value (" + pref_nightmode + ")"); - if (nightMode != pref_nightmode) { + Log.d(TAG_KIWIX, "nightMode value (" + nightMode + ")"); + if (this.nightMode != nightMode) { ToggleNightMode(); } } @@ -999,8 +973,10 @@ public class KiwixMobileFragment extends SherlockFragment { if (articleUrl != null) { // hideSearchBar(); + webView.loadUrl(Uri.parse(ZimContentProvider.CONTENT_URI + articleUrl).toString()); + } else { String errorString = String .format(getResources().getString(R.string.error_articlenotfound), @@ -1076,37 +1052,6 @@ public class KiwixMobileFragment extends SherlockFragment { } } - public void setDefaultZoom() { - DisplayMetrics metrics = new DisplayMetrics(); - getActivity().getWindowManager().getDefaultDisplay().getMetrics(metrics); - - // Cleaner than approach used in 1.0 to set CLOSE for tables, MEDIUM for phones. - // However, unfortunately at least on Samsung Galaxy Tab 2 density is medium. - // Anyway, user can now override so it should be ok. - switch (metrics.densityDpi) { - - case DisplayMetrics.DENSITY_HIGH: - Log.d(TAG_KIWIX, "setDefaultZoom for Display DENSITY_HIGH-> ZoomDensity.FAR "); - webView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.FAR); - break; - - case DisplayMetrics.DENSITY_MEDIUM: - Log.d(TAG_KIWIX, "setDefaultZoom for Display DENSITY_MEDIUM-> ZoomDensity.MEDIUM "); - webView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.MEDIUM); - break; - - case DisplayMetrics.DENSITY_LOW: - Log.d(TAG_KIWIX, "setDefaultZoom for Display DENSITY_LOW-> ZoomDensity.CLOSE "); - webView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.CLOSE); - break; - - default: - Log.d(TAG_KIWIX, "setDefaultZoom for Display OTHER -> ZoomDensity.MEDIUM "); - webView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.MEDIUM); - break; - } - } - public void readAloud() { tts.readAloud(); } @@ -1322,6 +1267,21 @@ public class KiwixMobileFragment extends SherlockFragment { view.reload(); } } + + String viewPortJs = "javascript:" + + "viewport = document.querySelector(\"meta[name=viewport]\");\n" + + "\n" + + "if (!viewport) {\n" + + " var viewPortTag = document.createElement('meta');\n" + + " viewPortTag.id = \"viewport\";\n" + + " viewPortTag.name = \"viewport\";\n" + + " viewPortTag.content = \"width=device-width, initial-scale=1.0, " + + "\";\n" + + " document.getElementsByTagName('head')[0].appendChild(viewPortTag);\n" + + "\n" + + "}"; + + webView.loadUrl(viewPortJs); } } } diff --git a/src/org/kiwix/kiwixmobile/KiwixWebView.java b/src/org/kiwix/kiwixmobile/KiwixWebView.java index 9d237b346..27f7c1687 100644 --- a/src/org/kiwix/kiwixmobile/KiwixWebView.java +++ b/src/org/kiwix/kiwixmobile/KiwixWebView.java @@ -20,13 +20,9 @@ package org.kiwix.kiwixmobile; import android.content.Context; -import android.os.Build; import android.util.AttributeSet; import android.view.MotionEvent; -import android.webkit.WebChromeClient; -import android.webkit.WebSettings.LayoutAlgorithm; import android.webkit.WebView; -import android.webkit.WebViewClient; import android.widget.ZoomButtonsController; import java.lang.reflect.Method; @@ -59,20 +55,12 @@ public class KiwixWebView extends WebView { } private void init() { - setWebChromeClient(new WebChromeClient()); - setWebViewClient(new WebViewClient()); + // setWebChromeClient(new WebChromeClient()); + // setWebViewClient(new WebViewClient()); getSettings().setJavaScriptEnabled(true); getSettings().setSupportMultipleWindows(true); getSettings().setSupportZoom(true); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { - - // Avoid crash with WebViewClassic - try { - getSettings().setLayoutAlgorithm(LayoutAlgorithm.TEXT_AUTOSIZING); - } catch (Exception e) { - e.printStackTrace(); - } - } + disableZoomControlls(); } @Override @@ -101,20 +89,18 @@ public class KiwixWebView extends WebView { } } - public void disableZoomControlls(boolean disable) { - - mDisableZoomControlls = disable; + public void disableZoomControlls() { if (newApi()) { getSettings().setBuiltInZoomControls(true); - getSettings().setDisplayZoomControls(disable); + getSettings().setDisplayZoomControls(false); } else { - getZoomControlls(); + getZoomControls(); } } // Use reflection to hide the zoom controlls - private void getZoomControlls() { + private void getZoomControls() { try { Class webview = Class.forName("android.webkit.WebView"); Method method = webview.getMethod("getZoomButtonsController"); diff --git a/src/org/kiwix/kiwixmobile/settings/SettingsHelper.java b/src/org/kiwix/kiwixmobile/settings/SettingsHelper.java index 32471e420..b173e40e7 100644 --- a/src/org/kiwix/kiwixmobile/settings/SettingsHelper.java +++ b/src/org/kiwix/kiwixmobile/settings/SettingsHelper.java @@ -48,38 +48,10 @@ public class SettingsHelper { } public void setUpSettings() { - prepareListPreferenceForAutoSummary("pref_zoom"); setUpLanguageChooser("pref_language_chooser"); setAppVersionNumber(); } - private void prepareListPreferenceForAutoSummary(String preferenceId) { - - ListPreference prefList = (ListPreference) getPrefrence(preferenceId); - - prefList.setDefaultValue(prefList.getEntryValues()[0]); - String summary = prefList.getValue(); - - if (summary == null) { - prefList.setValue((String) prefList.getEntryValues()[0]); - summary = prefList.getValue(); - } - - prefList.setSummary(prefList.getEntries()[prefList.findIndexOfValue(summary)]); - prefList.setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() { - - @Override - public boolean onPreferenceChange(Preference preference, Object newValue) { - if (preference instanceof ListPreference) { - ListPreference listPreference = ((ListPreference) preference); - preference.setSummary(listPreference.getEntries() - [listPreference.findIndexOfValue(newValue.toString())]); - } - return true; - } - }); - } - private void setUpLanguageChooser(String preferenceId) { ListPreference languageList = (ListPreference) getPrefrence(preferenceId); From dc667dc7151249bfa66221520e79c1c0d3df64c1 Mon Sep 17 00:00:00 2001 From: Rashiq Date: Wed, 3 Jun 2015 15:58:39 +0200 Subject: [PATCH 02/10] Delete unused string resources --- res/drawable-hdpi/action_delete.png | Bin 1624 -> 0 bytes res/drawable-mdpi/action_delete.png | Bin 1359 -> 0 bytes res/drawable-xhdpi/action_delete.png | Bin 1848 -> 0 bytes res/values-af/strings.xml | 9 ++------- res/values-am/strings.xml | 9 ++------- res/values-ar/strings.xml | 9 ++------- res/values-as/strings.xml | 9 ++------- res/values-az/strings.xml | 9 ++------- res/values-ba/strings.xml | 9 ++------- res/values-be/strings.xml | 9 ++------- res/values-bg/strings.xml | 9 ++------- res/values-bm/strings.xml | 9 ++------- res/values-bn/strings.xml | 9 ++------- res/values-br/strings.xml | 9 ++------- res/values-ca/strings.xml | 9 ++------- res/values-cs/strings.xml | 9 ++------- res/values-cv/strings.xml | 9 ++------- res/values-cy/strings.xml | 9 ++------- res/values-da/strings.xml | 9 ++------- res/values-de/strings.xml | 9 ++------- res/values-el/strings.xml | 9 ++------- res/values-eo/strings.xml | 9 ++------- res/values-es/strings.xml | 9 ++------- res/values-et/strings.xml | 9 ++------- res/values-fa/strings.xml | 9 ++------- res/values-fi/strings.xml | 9 ++------- res/values-fo/strings.xml | 9 ++------- res/values-fr/strings.xml | 9 ++------- res/values-gl/strings.xml | 9 ++------- res/values-gu/strings.xml | 9 ++------- res/values-he/strings.xml | 9 ++------- res/values-hi/strings.xml | 9 ++------- res/values-hr/strings.xml | 9 ++------- res/values-hu/strings.xml | 9 ++------- res/values-ia/strings.xml | 9 ++------- res/values-id/strings.xml | 9 ++------- res/values-ie/strings.xml | 9 ++------- res/values-it/strings.xml | 9 ++------- res/values-ja/strings.xml | 9 ++------- res/values-jv/strings.xml | 9 ++------- res/values-ka/strings.xml | 9 ++------- res/values-km/strings.xml | 9 ++------- res/values-kn/strings.xml | 9 ++------- res/values-ko/strings.xml | 9 ++------- res/values-ky/strings.xml | 9 ++------- res/values-lb/strings.xml | 9 ++------- res/values-li/strings.xml | 9 ++------- res/values-lt/strings.xml | 9 ++------- res/values-lv/strings.xml | 9 ++------- res/values-mg/strings.xml | 9 ++------- res/values-mk/strings.xml | 9 ++------- res/values-ml/strings.xml | 9 ++------- res/values-mn/strings.xml | 9 ++------- res/values-ms/strings.xml | 9 ++------- res/values-mt/strings.xml | 9 ++------- res/values-my/strings.xml | 9 ++------- res/values-nb/strings.xml | 9 ++------- res/values-ne/strings.xml | 9 ++------- res/values-nl/strings.xml | 9 ++------- res/values-nn/strings.xml | 9 ++------- res/values-oc/strings.xml | 9 ++------- res/values-or/strings.xml | 9 ++------- res/values-pl/strings.xml | 9 ++------- res/values-ps/strings.xml | 9 ++------- res/values-pt/strings.xml | 9 ++------- res/values-qu/strings.xml | 9 ++------- res/values-rm/strings.xml | 9 ++------- res/values-ro/strings.xml | 9 ++------- res/values-ru/strings.xml | 9 ++------- res/values-sa/strings.xml | 9 ++------- res/values-sh/strings.xml | 9 ++------- res/values-si/strings.xml | 9 ++------- res/values-sk/strings.xml | 9 ++------- res/values-sl/strings.xml | 9 ++------- res/values-so/strings.xml | 9 ++------- res/values-sq/strings.xml | 9 ++------- res/values-su/strings.xml | 9 ++------- res/values-sv/strings.xml | 9 ++------- res/values-sw/strings.xml | 9 ++------- res/values-ta/strings.xml | 9 ++------- res/values-te/strings.xml | 9 ++------- res/values-th/strings.xml | 9 ++------- res/values-tl/strings.xml | 9 ++------- res/values-tr/strings.xml | 9 ++------- res/values-uk/strings.xml | 9 ++------- res/values-ur/strings.xml | 9 ++------- res/values-uz/strings.xml | 9 ++------- res/values-vi/strings.xml | 9 ++------- res/values-yi/strings.xml | 9 ++------- res/values-yo/strings.xml | 9 ++------- res/values-zh/strings.xml | 9 ++------- res/values/strings.xml | 9 ++------- res/xml/preferences.xml | 12 ------------ 93 files changed, 178 insertions(+), 635 deletions(-) delete mode 100644 res/drawable-hdpi/action_delete.png delete mode 100644 res/drawable-mdpi/action_delete.png delete mode 100644 res/drawable-xhdpi/action_delete.png diff --git a/res/drawable-hdpi/action_delete.png b/res/drawable-hdpi/action_delete.png deleted file mode 100644 index e9ce89e0460b368de996f6b1d7ee149ae5fb1315..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1624 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@%qp275hW46K32*3xq68pHF_1f1wh>l3^w)^1&PVosU-?Y zsp*+{wo31J?^jaDOtDo8H}y5}EpSfF$n>ZxN)4{^3rViZPPR-@vbR&PsjvbXkegbP zs8ErclUHn2VXFi-*9yo63F|8hm3bwJ6}oxF$}kgLQj3#|G7CyF^YauyCMG83 zmzLNn0bL65LT&-v*t}wBFaZNhzap_f-%!s00+w{G(#^lGsVip$=JZnz{SMW$-u?X(ACh=#L&{!#L3yw z&D7A`#K{n**Cju>G&eP`1g19ytk=TD+111qr(RHE$SnZc?2=lPS(cjOR+OKs0QR(1 zCT_PF;WQ7bHwCL(!2U4CsaGH97=2LGB1JV!2$+6AOnAZta^OinH4m8Hi+~B+%vbIe z0|V13PZ!6Kid%1H?#{d7Akt=gFXxa}LsLURu0o7zi^jA`<_i`+W?Zm*$s@~*%NH+R zXvlc6{oy5tLrPp7J3JkH%r++T{}ohGWQnO{QGEW{Jdi7HLD-f z+p}1=Fhw!`pV?5iKfX+p<@rIo34TA$YW)aEOEHiL`ILU_VbUB%^8@Q9y`J^Gn(bXv zuDCg`ESCj0pLF-4;}-W>pZ|E7vZIDc(%!zfHJLN8PF=B-GiJU(Trc;9k_zTMvc)a5QEt0Y)$g(v$yFCgT?QxCiS=hvNQAb?{wZXE^IeT%-r3ZrgJKc zyVK&hg_vM4!<| z7sK0JLlV^|7eqgB)M$NBJD({@ZSk5rnd_3m76!a7sPl4~Et?_5c)#NCrsf=V?u2uJ zTW)3;itq67iswChBGuC;T6sQ`nT)xbX0F+-ATy&J)-}eBu~(eCwq2{`@{m) zD~{#lSYCLj%tQV*@4p)6@Y0fu&^BP&THD}u+@Fz+;rN|9?#>?y0zqZHr>mdKI;Vst0H|?TumAu6 diff --git a/res/drawable-mdpi/action_delete.png b/res/drawable-mdpi/action_delete.png deleted file mode 100644 index cedb1085b85cf28fec0152168da61defb93fd6fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1359 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@%qp275hW46K32*3xq68pHF_1f1wh>l3^w)^1&PVosU-?Y zsp*+{wo31J?^jaDOtDo8H}y5}EpSfF$n>ZxN)4{^3rViZPPR-@vbR&PsjvbXkegbP zs8ErclUHn2VXFi-*9yo63F|8hm3bwJ6}oxF$}kgLQj3#|G7CyF^YauyCMG83 zmzLNn0bL65LT&-v*t}wBFaZNhzap_f-%!s00+w{G(#^lGsVip$->3i)zr|`$-u?X(ACh=#L&{!#L3yw z&D7A`#K{n**Cju>G&eP`1g19yq1OnfUQlAlEdbi=l3J8mmYU*Ll%J~r_Ow+dPPdr2 z;WQ7bHwCv_3~=hz2RcR{6tzfE4HE*U9}p9saDg0n(of9;ruQOX!d}0Wsg!|%@t~)R zV@SoVH`6zIF*^#hy?=C6g-guwsFP#h8kgDHTg9ZM<&U^+5L)9>BXHj#C&z`mTO&zx zT9ae*f(6sxsFwfZ-v2N{FC{-;wN>(m#iln#|IeK}mvhIWZ?0q1LCFogtQCLNe(YP% z=i4ayK#Yce2gqtnB)xR0HN`4y-a-l?twJ8cGA$`yVt0o>EPi&ZH#tDLU}k$&Few z*s>G4nfyL+MJx%P_$Xj2-$b)hTX*(9n3O1+e&R7pR^E~c6XKJCfxTz9hNZ&+UUN8KCg4=bPQ&9;3uO;UDdhwy^~Z4DE2 zHavK7t*grZ`7S1c&zvGKR= zFt4=+eGLWz3OQwmFFfFIn$5(-%-HD5c*vn)gKokC%MZsM1-(%|@>Hfjd(B?X{D|A; zKVE1A*UTx9+30>ksOG5YHI@_Z$1HawOkcgpd77|)(ae(fyKEOoZ+cjNxL*H(djlf_ XdqiO|XOH7mP!Z?p>gTe~DWM4f=>_8H diff --git a/res/drawable-xhdpi/action_delete.png b/res/drawable-xhdpi/action_delete.png deleted file mode 100644 index 98c73da1f35b06932d1a76de6468afb2768998d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1848 zcmaJ?X;c$e7!430Q7Iq-qE?2WC|fcU6CsfZSpWkB5h8|CDMK6uuGVt(JlY^Hm)M)k3>q-#f~WCl zpOTVEq5vU^Apn~W`pUtX5HOQPhgcwo#qj}{AOtcXCIj^Ig+MObj|)P;=Z8i_!xYKf zXi>=LSj34(OT}>wm%-5KbadSeI*O$*AP$Ga0GSLX)0gn@)n=-3SnsRWx(_jk5Um_j zYH%g0226}_5}JYYXhf!;N>FKrY1P`#Z6X@R(8C%AL|&4SQ?xXyi-2 z|4FQsW@->dG@?Z_FgY=}WOq|24OfUEFpgqU6ipxMVpJ-MquNwd0|;Z-bO?~Za;4g2 z8AM1VT(Me*XsyHh$;Ub!M~mxm@dIcH_wQ&GUlo*REN8ZQG4iS*pV> z_uN_wGQ^uD%vnW>luoy}+7ewyO7Ht^McnP$AA5Rhjeg;VsSRTjsRzkZ>MBB?ltxV# zWvX^)FoU=q$Z~rniC%NAOHWYo`+B2q!ZQ8gyq8#jryz%x6=XaQ^$RL98W$GWC0O1zdK;VcYRPD`TIxzaYBjIp z-JIhr6Ffilz+%aAqsIDKM!e^y z8ZKOtPLUH=m9zOfYPk-8N=x(9zbKusxh`|F!iSv-er-q#ls= zP`xO22?HLm4rtEg6{g#C&N?dGeZ{FHNZ4?jnh@HoPJA>|UK_vR^y7jpd3}dM zzdsUIJgM}ZSM0%2=I7()o$wfw<5;&WEM}b!@cv_3<&|FYGyDDaE$*jN%v)M6OmpSO zxmflnGWR;|bcl@rg36ECQs+`rD0}RkEM1muywk(CvYnp|BPDG<3+9O|o4V&3ZTC8@ z4>O)MbeJ={i}PL{*08(U)$}WmyN$cvzAqA!FZxJ&-X-<- zj~k~c(_2Qixs(Rhc~2QgwVb3}IR9wnCW99xbxHf1Fk8>+qq#0piF;6U1hpf((0qDT z-463;_vU8NZvM>==gce;mb*_S_T%l9aF=-9Be<8HzQk@=+wP4{c3HUycE zb+zKH_imW6(Xi<}D67qHBj0)=MOTB;)azT{8ypJcP4zDDxvZT|^d=d%i*DhP2BPM(3e|qe(Q^`q83+L?mTpxFbvQVS* z+Z{+rJlsMFUzku0KOD%vWL7eYqcwIsIVm`dj z5H}E2SR7$!zIxB%B;|r^z(0KZ)4sgsNjcqR-P4&?YE_X5+*pt_*;U*3(dO2ow!!NnGxsseSA8UpCnefGaLNVRzcKyG N#KDoG{er|5{{R}rz~}$~ diff --git a/res/values-af/strings.xml b/res/values-af/strings.xml index 24dbfebbc..e926345ee 100644 --- a/res/values-af/strings.xml +++ b/res/values-af/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Maak lêer oop... @@ -39,8 +39,6 @@ Fout: Laai van bladsy \"%1$s\" het gefaal. Fout: Laai van bladsy (URL: %1$s) het gefaal. Wys - Zoom-vlak - Zoom-vlak Outomaties Klein @@ -49,8 +47,6 @@ Inligting Weergawe - Zoom-instellings - Wys \'n zoom-knop regs onder op die skerm Nag-modus Wys artikels met omgekeerde kleure Terug na bo @@ -58,6 +54,5 @@ Deel... Taal Kies \'n taal - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-am/strings.xml b/res/values-am/strings.xml index e44cc2885..0817b41d5 100644 --- a/res/values-am/strings.xml +++ b/res/values-am/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ፋይልን ለመክፈት... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Display - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Information Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via ቋንቋ Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ar/strings.xml b/res/values-ar/strings.xml index 179d22419..ae5cd299e 100644 --- a/res/values-ar/strings.xml +++ b/res/values-ar/strings.xml @@ -1,4 +1,4 @@ - + Kiwix افتح ملفًا... @@ -39,8 +39,6 @@ خطأ: تحميل المقالة \"%1$s\" لم يتم بنجاح. خطأ: تحميل المقالة (Url: %1$s) لم يتم بنجاح. عرض - مستوى التكبير/التصغير - مستوى التكبير/التصغير آلي صغير @@ -49,8 +47,6 @@ معلومة نسخة - تحكم التكبير/التصغير - عرض زر تكبير/تصغير في الزاوية اليمنى أسفل الشاشة الوضع الليلي إظهار المقالات مع الألوان المسترجعة ارجع إلى الأعلى @@ -58,6 +54,5 @@ شارك عبر... اللغة اختر لغة - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-as/strings.xml b/res/values-as/strings.xml index 7ba6268ac..385b8ab10 100644 --- a/res/values-as/strings.xml +++ b/res/values-as/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ফাইল খুলক... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. প্রদর্শন - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ বিবৰণ Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via ভাষা Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-az/strings.xml b/res/values-az/strings.xml index 1d3dbc00d..9d3e16f43 100644 --- a/res/values-az/strings.xml +++ b/res/values-az/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Faylı aç... @@ -39,8 +39,6 @@ Xəta:\"%1$s\" adlı məqalənin yüklənməsi alınmadı. Xəta: Məqalənin (Url: %1$s) yüklənməsi alınmadı. Ekran - Miqyas səviyyəsi - Miqyas səviyyəsi Avtomatik Kiçik @@ -49,8 +47,6 @@ Məlumat Versiya - Miqyas quraşdırılmaları - Ekranın sağ alt küncündə miqyas düyməsini göstər Gecə rejimi Məqalələri "gecə rejimində" göstər Əvvələ qayıt @@ -58,6 +54,5 @@ Paylaş... Dil Dili seçin - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ba/strings.xml b/res/values-ba/strings.xml index e0855d326..503a14f66 100644 --- a/res/values-ba/strings.xml +++ b/res/values-ba/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Файлды асырға... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Күрһәтергә - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Мәғлүмәт Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Тел Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-be/strings.xml b/res/values-be/strings.xml index caa4b2359..9199156ef 100644 --- a/res/values-be/strings.xml +++ b/res/values-be/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Адкрыць файл ... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Паказаць - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Інфармацыя Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Мова Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-bg/strings.xml b/res/values-bg/strings.xml index ac375adaa..537d7d2fb 100644 --- a/res/values-bg/strings.xml +++ b/res/values-bg/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Отваряне на файл... @@ -39,8 +39,6 @@ Грешка: Зареждането на статия \"%1$s\" е неуспешно. Грешка: Зареждането на статия (Url: %1$s) е неуспешно. Показване - Ниво на мащабиране - Ниво на мащабиране Автоматично Малък @@ -49,8 +47,6 @@ Информация Версия - Управление на мащаба - Показване на бутон за мащабиране в долния десен ъгъл на екрана Нощен режим Показване на статии в "нощен режим" Връщане в началото @@ -58,6 +54,5 @@ Споделете чрез... Език Избиране на език - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-bm/strings.xml b/res/values-bm/strings.xml index 74e8ad17f..04189399f 100644 --- a/res/values-bm/strings.xml +++ b/res/values-bm/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fisiye dayɛlɛn @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Fili: Kunnafoni (Url: %1$s) sariziyeli tigɛra sira la. Jirayɔrɔ - Bonya/dɔgɔya hakɛ - Bonya/dɔgɔya hakɛ Automatic Small @@ -49,8 +47,6 @@ Kunnafoni Version - Bonyali/dɔgɔyali kɔlɔsili - Bonyali/dɔgɔyali butɔn dɔ jira ekaran kininfɛ seleke la, ka taa duguma. A kɛ sufɛla ɲɛ ye. Kunnafoni minnu ɲɛ cogoya yɛlɛmanen don, olu jira. Back to Top @@ -58,6 +54,5 @@ Share via Kan Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-bn/strings.xml b/res/values-bn/strings.xml index 7aabd7e78..c5e22575a 100644 --- a/res/values-bn/strings.xml +++ b/res/values-bn/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ফাইল খোলো... @@ -39,8 +39,6 @@ ত্রুটি: নিবন্ধ লোডে \"%1$s\" ব্যর্থ। ত্রুটি: নিবন্ধ লোডে (Url: %1$s) ব্যর্থ। প্রদর্শন - জুমের পর্যায় - জুমের পর্যায় স্বয়ংক্রিয় ছোট @@ -49,8 +47,6 @@ তথ্য সংস্করণ - জুম নিয়ন্ত্রণ - পর্দা নীচের অংশে ডানদিকে কোণায় অবস্থিত একটি জুম বোতাম প্রদর্শন করা হবে রাত্রি মোড প্রত্যাবর্তন রঙসহ নিবন্ধ দেখান উপরে ফিরুন @@ -58,6 +54,5 @@ শেয়ার করুন... ভাষা একটি ভাষা নির্বাচন করুন - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-br/strings.xml b/res/values-br/strings.xml index b3384e1ae..0e542ae7b 100644 --- a/res/values-br/strings.xml +++ b/res/values-br/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Digeriñ ur restr... @@ -39,8 +39,6 @@ Fazi : N\'eus ket bet gallet kargañ an draezenn \"%1$s\" Fazi : N\'eus ket bet gallet kargañ ar pennad \"%1$s\" Diskwel - Live zoum - Live zoum Emgefre Bihan @@ -49,8 +47,6 @@ Titouroù Stumm - Kontrolloù ar zoum - Diskwel ur nozelenn zoumañ e korn traoñ dehoù ar skramm Mod noz Diskouez ar pennadoù gant livioù eilpennet Distreiñ da grec\'h ar bajenn @@ -58,6 +54,5 @@ Rannañ dre... Yezh Dibabit ur yezh - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ca/strings.xml b/res/values-ca/strings.xml index 818ae2015..74e3f5175 100644 --- a/res/values-ca/strings.xml +++ b/res/values-ca/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Obrir el fitxer... @@ -39,8 +39,6 @@ Error: no s\'ha pogut carregar l\'article \"%1$s\". Error: no s\'ha pogut carregar l\'article (Url: %1$s). Visualitzar - Nivell de zoom - Nivell de zoom Automàtic Petit @@ -49,8 +47,6 @@ Informació Versió - Controls de zoom - Mostrar un botó de zoom a la part inferior dreta de la pantalla Mode nocturn Mostrar els articles amb colors invertits Tornar a dalt @@ -58,6 +54,5 @@ Compartir mitjançant... Idioma Trieu un idioma - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml index c424a1a87..0b9416815 100644 --- a/res/values-cs/strings.xml +++ b/res/values-cs/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otevřít soubor... @@ -39,8 +39,6 @@ Chyba: Načtení článku \"%1$s\" se nezdařilo. Chyba: Načtení článku (Url: %1$s ) se nezdařilo. Zobrazení - Úroveň zvětšení - Úroveň zvětšení Automatický Malý @@ -49,8 +47,6 @@ Informace Verze - Ovládání přiblížení - Zobrazit tlačítko přiblížení v pravém dolním rohu obrazovky Noční režim Zobrazuje stránky v obrácených barvách. Zpět na začátek @@ -58,6 +54,5 @@ Sdílet přes... Jazyk Vyberte jazyk - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-cv/strings.xml b/res/values-cv/strings.xml index 0eeb5bb66..30f6092dc 100644 --- a/res/values-cv/strings.xml +++ b/res/values-cv/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Файла уç @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Кăтарт - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Тӗплӗнрех Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Чĕлхе Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-cy/strings.xml b/res/values-cy/strings.xml index 1dad3da78..331ce3574 100644 --- a/res/values-cy/strings.xml +++ b/res/values-cy/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Agor ffeil... @@ -39,8 +39,6 @@ Gwall: Methwyd a llwytho\'r erthygl: \"%1$s\". Gwall: Methwyd a llwytho\'r erthygl: (Url: %1$s). Golwg - Lefel pellhau - Lefel pellhau Otomatig Bach @@ -49,8 +47,6 @@ Gwybodaeth Fersiwn - Rheolaeth pellter - Arddangos botwm chwyddo yn y gornel dde ar waelod y sgrîn. Modd nos Dangos erthyglau gyda lliwiau croes Nôl i\'r brig @@ -58,6 +54,5 @@ Rhannwch drwy Iaith Dewis iaith - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml index e070dd230..80efd8dc8 100644 --- a/res/values-da/strings.xml +++ b/res/values-da/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Åbn fil... @@ -39,8 +39,6 @@ Fejl: Indlæsning af artikel \"%1$s\" mislykkedes. Fejl: Indlæsning af artikel (Url: %1$s) mislykkedes. Vis - Zoom-niveau - Zoom-niveau Automatisk Lille @@ -49,8 +47,6 @@ Information Version - Zoom kontrol - Få vist en zoom-knap i skærmens nederste højre hjørne Nat-tilstand Vis artikler med inverterede farver Tilbage til toppen @@ -58,6 +54,5 @@ Del via... Sprog Vælg et sprog - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml index d7109affe..43380590d 100644 --- a/res/values-de/strings.xml +++ b/res/values-de/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Datei öffnen … @@ -39,8 +39,6 @@ Fehler: Das Laden des Artikels \"%1$s\" ist fehlgeschlagen. Fehler: Das Laden des Artikels (URL: %1$s) ist fehlgeschlagen. Bildschirm - Vergrößerungsstufe - Vergrößerungsstufe Automatisch Klein @@ -49,8 +47,6 @@ Information Version - Zoom-Steuerung - Einen Zoombutton in der rechten unteren Ecke anzeigen Nachtmodus Artikel mit umgekehrten Farben ansehen Zurück nach oben @@ -58,6 +54,5 @@ Teilen über … Sprache Eine Sprache auswählen - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-el/strings.xml b/res/values-el/strings.xml index abe010d04..a7cbaf117 100644 --- a/res/values-el/strings.xml +++ b/res/values-el/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Άνοιγμα αρχείου... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Εμφάνιση - Zoom level - Zoom level Αυτόματη Μικρό @@ -49,8 +47,6 @@ Πληροφορίες Έκδοση - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Γλώσσα Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-eo/strings.xml b/res/values-eo/strings.xml index 8f584a692..cbb66e9bf 100644 --- a/res/values-eo/strings.xml +++ b/res/values-eo/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Malfermi dosieron... @@ -39,8 +39,6 @@ Eraro: Ŝargado de la artikolo \"%1$s\" fiaskis. Eraro: Ŝargado de la artikolo (Url: %1$s) fiaskis. Montri - Zomnivelo - Zomnivelo Aŭtomate Malgranda @@ -49,8 +47,6 @@ Informo Versio - Zomregiloj - Montri zombutonon en la malsupra dekstra ekranangulo Nokta reĝimo Montri artikolojn inverskolore Reiri al Supro @@ -58,6 +54,5 @@ Kundividi per... Lingvo Elektu lingvon - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml index 8f262bda5..b6693ee5f 100644 --- a/res/values-es/strings.xml +++ b/res/values-es/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Abrir un archivo… @@ -39,8 +39,6 @@ Error: falló la carga del artículo «%1$s». Error: falló la carga del artículo (URL: %1$s). Mostrar - Nivel de ampliación - Nivel de ampliación Automático Pequeño @@ -49,8 +47,6 @@ Información Versión - Controles de ampliación - Mostrar un botón de ampliación en la esquina inferior derecha de la pantalla Modo nocturno Mostrar artículos con colores invertidos Volver al principio @@ -58,6 +54,5 @@ Compartir a través de... Idioma Elige un idioma - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-et/strings.xml b/res/values-et/strings.xml index e9b42e7af..44d8b01be 100644 --- a/res/values-et/strings.xml +++ b/res/values-et/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Ava fail... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Vaade - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Teave Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Keel Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-fa/strings.xml b/res/values-fa/strings.xml index 646973212..57fb381d7 100644 --- a/res/values-fa/strings.xml +++ b/res/values-fa/strings.xml @@ -1,4 +1,4 @@ - + Kiwix گشودن پرونده... @@ -39,8 +39,6 @@ حطا: بارگیری مقالهٔ «%1$s» شکست خورد. حطا: بارگیری مقالهٔ (نشانی: %1$s) شکست خورد. نمایش - سطح بزرگ/کوچک‌نمایی - سطح بزرگ/کوچک‌نمایی خودکار کوچک @@ -49,8 +47,6 @@ اطلاعات نسخه - کنترل‌های بزرگ/کوچک‌نمایی - نمایش یک دکمهٔ بزرگ/کوچک‌نمایی در گوشهٔ سمت راست پایین صفحه حالت شبانه نمایش مقاله‌ها با رنگ‌های معکوس‌شده بازگشت به بالای صفحه @@ -58,6 +54,5 @@ اشتراک از طریق... تغییر زبان انتخاب زبان - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-fi/strings.xml b/res/values-fi/strings.xml index f47590c82..c06719feb 100644 --- a/res/values-fi/strings.xml +++ b/res/values-fi/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Avaa tiedosto... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Näytä - Zoom level - Zoom level Automaattinen Pieni @@ -49,8 +47,6 @@ Tiedot Versio - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Takaisin alkuun @@ -58,6 +54,5 @@ Share via Kieli Valitse kieli - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-fo/strings.xml b/res/values-fo/strings.xml index 91f7edf9d..446de17dd 100644 --- a/res/values-fo/strings.xml +++ b/res/values-fo/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Lat upp fílu... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Vís - Zoom level - Zoom level Automatic Lítil @@ -49,8 +47,6 @@ Kunning Versjón - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Mál Vel eitt mál - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml index e04fce42d..c82b02e43 100644 --- a/res/values-fr/strings.xml +++ b/res/values-fr/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Ouvrir un fichier... @@ -39,8 +39,6 @@ Erreur : Échec au chargement de l’article « %1$s ». Erreur : Le chargement de l’article (Url: %1$s) a échoué. Affichage - Niveau de zoom - Niveau de zoom Automatique Faible @@ -49,8 +47,6 @@ Information Version - Contrôles du zoom - Afficher un bouton de zoom dans le coin inférieur droit de l’écran Mode nocturne Afficher les articles en couleurs inversées Retourner au début @@ -58,6 +54,5 @@ Partager via... Langue Choisir une langue - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-gl/strings.xml b/res/values-gl/strings.xml index 04f38a5d7..b6932b60a 100644 --- a/res/values-gl/strings.xml +++ b/res/values-gl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Abrir un ficheiro... @@ -39,8 +39,6 @@ Erro: Non se puido cargar o artigo \"%1$s\". Erro: Non se puido cargar o artigo (URL: %1$s). Visualización - Nivel de zoom - Nivel de zoom Automático Pequeno @@ -49,8 +47,6 @@ Información Versión - Controis do zoom - Mostrar un botón de zoom no recuncho inferior dereito da pantalla Modo nocturno Mostrar os artigos coas cores invertidas Volver ao inicio @@ -58,6 +54,5 @@ Compartir a través de... Lingua Escolla unha lingua - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-gu/strings.xml b/res/values-gu/strings.xml index 8a4958017..3897a9d15 100644 --- a/res/values-gu/strings.xml +++ b/res/values-gu/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ફાઇલ ખોલો... @@ -39,8 +39,6 @@ ક્ષતિ: લેખ \"%1$s\" લાવવાનું નિષ્ફળ ગયું. ક્ષતિ: લેખ (Url: %1$s) લાવવાનું નિષ્ફળ થયું. દર્શાવો - Zoom level - Zoom level આપોઆપ નાનો @@ -49,8 +47,6 @@ માહિતી આવૃત્તિ - Zoom controls - Display a zoom button in the screen bottom right corner રાત્રિ સ્થિતિ ઉલ્ટા રંગો વડે લેખો દર્શાવો ટોપ પર પાછા જાઓ @@ -58,6 +54,5 @@ આના વડે વહેંચો... ભાષા ભાષા પસંદ કરો - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-he/strings.xml b/res/values-he/strings.xml index f949e31b7..7c9026316 100644 --- a/res/values-he/strings.xml +++ b/res/values-he/strings.xml @@ -1,4 +1,4 @@ - + Kiwix פתיחת קובץ... @@ -39,8 +39,6 @@ שגיאה: טעינת הערך \"%1$s\" נכשלה. שגיאה: טעינת הערך נכשלה (כתובת: %1$s). תצוגה - רמת התקריב - רמת התקריב אוטומטי קטן @@ -49,8 +47,6 @@ מידע גרסה - בקרת תקריב - הצגת קפתור תקריב בפינה השמאלית התחתונה של המסך מצב לילה הצגת ערכים עם צבעים הפוכים חזרה למעלה @@ -58,6 +54,5 @@ שיתוף דרך... שפה בחירת שפה - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-hi/strings.xml b/res/values-hi/strings.xml index ac13f8a7f..5af872564 100644 --- a/res/values-hi/strings.xml +++ b/res/values-hi/strings.xml @@ -1,4 +1,4 @@ - + Kiwix फ़ाइल खोलें... @@ -39,8 +39,6 @@ त्रुटि: आलेख \ " %1$s \" लोड करना विफल रहा। त्रुटि: आलेख (Url: %1$s ) लोड करना विफल रहा। डिस्प्ले - ज़ूम स्तर - ज़ूम स्तर स्वतः लघु @@ -49,8 +47,6 @@ जानकारी संस्करण - ज़ूम नियंत्रण - स्क्रीन के नीचे दायें कोने में ज़ूम बटन दिखाएँ रात्रि मोड उल्टे रंगों के साथ लेख दिखाएँ वापस शीर्ष पे जाएँ @@ -58,6 +54,5 @@ अलग माध्यम से बांटे भाषा भाषा चुनें - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-hr/strings.xml b/res/values-hr/strings.xml index 520d31eaf..e9268422b 100644 --- a/res/values-hr/strings.xml +++ b/res/values-hr/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otvori datoteku... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Prikaz - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Informacija Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Jezik Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-hu/strings.xml b/res/values-hu/strings.xml index c7410d64c..2ec351eee 100644 --- a/res/values-hu/strings.xml +++ b/res/values-hu/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fájl megnyitása... @@ -39,8 +39,6 @@ Hiba: A(z) \"%1$s\" cikk betöltése nem sikerült. Hiba: A(z) (Url: %1$s) cikk betöltése nem sikerült. Megjelenítés - Nagyítási szint - Nagyítási szint Automatikus Kicsi @@ -49,8 +47,6 @@ Információ Verzió - Nagyítási vezérlők - Nagyítás gomb megjelenítése a képernyő jobb alsó sarkában Éjszakai mód Inverz színek használata a cikkek megjelenítéséhez Vissza a lap tetejére @@ -58,6 +54,5 @@ Megosztás ezzel... Nyelv Válassz nyelvet - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ia/strings.xml b/res/values-ia/strings.xml index 7c065e6ef..57b726588 100644 --- a/res/values-ia/strings.xml +++ b/res/values-ia/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Aperir file... @@ -39,8 +39,6 @@ Error: Le cargamento del articulo \"%1$s\" ha fallite. Error: Le cargamento del articulo (Url: %1$s) ha fallite. Visualisation - Nivello de zoom - Nivello de zoom Automatic Micre @@ -49,8 +47,6 @@ Information Version - Controlos de zoom - Monstrar un button de zoom in le angulo inferior dextre del schermo Modo nocturne Monstrar articulos in colores invertite Initio del pagina @@ -58,6 +54,5 @@ Divider via... Lingua Selige un lingua - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-id/strings.xml b/res/values-id/strings.xml index c9065094e..dabdedafa 100644 --- a/res/values-id/strings.xml +++ b/res/values-id/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Buka berkas... @@ -39,8 +39,6 @@ Galat: Pemuatan artikel \"%1$s\" gagal. Galat: Pemuatan artikel (Url: %1$s) gagal. Tampilan - Tingkat perbesaran - Tingkat perbesaran Otomatis Kecil @@ -49,8 +47,6 @@ Informasi Versi - Kontrol perbesaran - Tampilkan tombol perbesaran di sudut kanan bagian bawah layar Modus malam Tampilkan artikel dengan warna terbalik Kembali ke Atas @@ -58,6 +54,5 @@ Berbagi melalui... Bahasa Pilih bahasa - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ie/strings.xml b/res/values-ie/strings.xml index a3933afe9..2e48a2b44 100644 --- a/res/values-ie/strings.xml +++ b/res/values-ie/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Aperter figura... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Exposition - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Information Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Retro a supra @@ -58,6 +54,5 @@ Share via Lingue Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml index a3c466f12..7844c52d7 100644 --- a/res/values-it/strings.xml +++ b/res/values-it/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Apri... @@ -39,8 +39,6 @@ Errore: caricamento della voce \"%1$s\" non riuscito. Errore: caricamento della voce (url: %1$s) non riuscito. Visualizza - Livello di zoom - Livello di zoom Automatico Piccolo @@ -49,8 +47,6 @@ Informazioni Versione - Controlli zoom - Visualizza un pulsante di zoom nell\'angolo inferiore destro dello schermo Modalità notte Visualizza le voci con colori invertiti Torna all\'inizio @@ -58,6 +54,5 @@ Condividi tramite... Lingua Scegli la lingua - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml index c4c328004..907d493eb 100644 --- a/res/values-ja/strings.xml +++ b/res/values-ja/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ファイルを開く... @@ -39,8 +39,6 @@ エラー: 記事「%1$s」を読み込めませんでした。 エラー: 記事 (URL: %1$s) を読み込めませんでした。 表示 - ズーム レベル - ズーム レベル 自動 @@ -49,8 +47,6 @@ 情報 バージョン - ズーム コントロール - 画面右下隅にズーム ボタンを表示する 夜モード 記事を反転色で表示する トップに戻る @@ -58,6 +54,5 @@ Share via 言語 言語を選択 - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-jv/strings.xml b/res/values-jv/strings.xml index ffdb2cb51..a83eaf146 100644 --- a/res/values-jv/strings.xml +++ b/res/values-jv/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Mbukak berkas... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Pajangan - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Informasi Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Basa Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ka/strings.xml b/res/values-ka/strings.xml index 7e5109d5a..ef7df41a0 100644 --- a/res/values-ka/strings.xml +++ b/res/values-ka/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ფაილის გახსნა... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. ჩვენება - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ ინფორმაცია Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via ენა Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-km/strings.xml b/res/values-km/strings.xml index 378a3793e..cbdc0b88b 100644 --- a/res/values-km/strings.xml +++ b/res/values-km/strings.xml @@ -1,4 +1,4 @@ - + Kiwix បើកឯកសារ... @@ -39,8 +39,6 @@ កំហុស៖ ទាញយកអត្ថបទ \"%1$s\" បានបរាជ័យ។ កំហុស៖ ទាញយកអត្ថបទ (Url: %1$s) បានបរាជ័យ។ ការ​បង្ហាញ - កម្រិត​ពង្រីក​បង្រួម - កម្រិត​ពង្រីក​បង្រួម Automatic Small @@ -49,8 +47,6 @@ ព័ត៌មាន កំណែ - Zoom controls - Display a zoom button in the screen bottom right corner ម៉ូដអានពេលយប់ បង្ហាញអត្ថបទជាមួយនឹងពណ៌ដើម ត្រឡប់ទៅលើ @@ -58,6 +54,5 @@ ចែក​រំលែក​តាម... ភាសា​ Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-kn/strings.xml b/res/values-kn/strings.xml index b01f9023f..282c8b2e6 100644 --- a/res/values-kn/strings.xml +++ b/res/values-kn/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ಕಡತವನ್ನು ಉದ್ಘಾಟಿಸಿ... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. ಪ್ರದರ್ಶಿಸು - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ ಮಾಹಿತಿ Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via ಭಾಷೆ Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml index c7b454e65..f90a85017 100644 --- a/res/values-ko/strings.xml +++ b/res/values-ko/strings.xml @@ -1,4 +1,4 @@ - + Kiwix 파일 열기... @@ -39,8 +39,6 @@ 오류: \"%1$s\" 문서를 불러오는 데 실패했습니다. 오류: 문서(Url: %1$s)를 불러오는 데 실패했습니다. 보기 - 확대/축소 수준 - 확대/축소 수준 자동 작게 @@ -49,8 +47,6 @@ 정보 버전 - 확대 컨트롤 - 화면 아래 오른쪽 모서리에 있는 확대 버튼을 보여줍니다 야간 모드 되돌린 색으로 문서를 보여줍니다 맨 위로 돌아가기 @@ -58,6 +54,5 @@ ...을 통해 공유 언어 언어 선택 - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ky/strings.xml b/res/values-ky/strings.xml index 104db2881..5d759d086 100644 --- a/res/values-ky/strings.xml +++ b/res/values-ky/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Файлды ачуу... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Көрсөтүү - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Маалымат Версия - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Булл аркылуу бөлүшүү... Тил Тилин тандаңыз - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-lb/strings.xml b/res/values-lb/strings.xml index 8e2bac9e9..ef175fe9a 100644 --- a/res/values-lb/strings.xml +++ b/res/values-lb/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fichier opmaachen... @@ -39,8 +39,6 @@ Feeler: D\'Luede vum Artikel \"%1$s\" huet net funktionéiert. Feeler: D\'Luede vum Artikel (URL: %1$s) huet net funktionéiert. Ausgesinn - Niveau vum Zoom - Niveau vum Zoom Automatesch Kleng @@ -49,8 +47,6 @@ Informatioun Versioun - Zoom-Steierung - Zoom-Knäppche riets ënnen am Eck vum Schierm uweisen Nuetsmodus Artikelen an invertéierte Faarwen weisen Zréck no uewen @@ -58,6 +54,5 @@ Deelen iwwer ... Sprooch Sicht eng Sprooch eraus - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-li/strings.xml b/res/values-li/strings.xml index c517a5478..628851876 100644 --- a/res/values-li/strings.xml +++ b/res/values-li/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Besjtand äöpene... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Bild - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Infermasie Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Sjpraok Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-lt/strings.xml b/res/values-lt/strings.xml index 78a51a1b7..d214c955b 100644 --- a/res/values-lt/strings.xml +++ b/res/values-lt/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Atidaryti failą... @@ -39,8 +39,6 @@ Klaida: nepavyko įkelti straipsnio \"%1$s\" . Klaida: nepavyko įkelti straipsnio (Url: %1$s). Rodyti - Mastelio keitimo lygis - Mastelio keitimo lygis Automatinis Mažas @@ -49,8 +47,6 @@ Informacija Versija - Mastelio keitimo kontrolė - Rodyti mastelio keitimo mygtuką ekrano dešiniajame apatiniame kampe Naktinis režimas Rodyti straipsnius su ankstesnėmis spalvomis Atgal į viršų @@ -58,6 +54,5 @@ Dalintis per... Kalba Pasirinkite kalbą - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-lv/strings.xml b/res/values-lv/strings.xml index b337347a4..ceb391a18 100644 --- a/res/values-lv/strings.xml +++ b/res/values-lv/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Atvērt failu... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Displejs - Zoom level - Zoom level Automātiskā Mazs @@ -49,8 +47,6 @@ Informācija Versija - Zoom controls - Display a zoom button in the screen bottom right corner Nakts režīms Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Valoda Izvēlies valodu - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-mg/strings.xml b/res/values-mg/strings.xml index ef5002a70..38fa08915 100644 --- a/res/values-mg/strings.xml +++ b/res/values-mg/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Hanokatra rakitra @@ -39,8 +39,6 @@ Hadisoana: Tsy nahafahana ilay lahatsoratra "%1$s". Hadisoana: tsy nahafahana ilay lahatsoratra (Url: %1$s). Fiseho - Lentan\'ny zoom - Lentan\'ny zoom Automatic Kely @@ -49,8 +47,6 @@ Fampahalalana Versiona - Famehezana zoom - Aseho amin\'ny sisiny ambany havanan\'ny fikandra ny bokotra zoom Fiseho amin\'ny alina Haneho lahatsoratra amin\'ny loko mivadika Hiverina any an-tampony @@ -58,6 +54,5 @@ Hizara amin\'ny alalan\'i... Tenim-pirenena Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-mk/strings.xml b/res/values-mk/strings.xml index 3bf02be3b..7f58f8de8 100644 --- a/res/values-mk/strings.xml +++ b/res/values-mk/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Отвори податотека... @@ -39,8 +39,6 @@ Грешка: Не успеав да ја вчитам статијата \"%1$s\". Грешка: Не успеав да ја вчитам статијата (URL: %1$s). Приказ - Ниво на приближеност - Ниво на приближеност Автоматски Мал @@ -49,8 +47,6 @@ Информации Верзија - Контроли за размер - Прикажуваај копче за приближување во долниот десен агол Ноќен режим Прикажувај ги статиите во обратни бои Најгоре @@ -58,6 +54,5 @@ Сподели преку... Јазик Изберете јазик - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ml/strings.xml b/res/values-ml/strings.xml index 283ee49be..1c4563da5 100644 --- a/res/values-ml/strings.xml +++ b/res/values-ml/strings.xml @@ -1,4 +1,4 @@ - + Kiwix പ്രമാണം തുറക്കുക... @@ -39,8 +39,6 @@ പിഴവ്: \"%1$s\" - ലോഡ് ചെയ്യൽ പരാജയം പിഴവ്: (Url: %1$s) എന്ന ലേഖനം ലോഡ് ചെയ്യുന്നത് പരാജയപ്പെട്ടു. കാഴ്ച - സൂം നിലവാരം - സൂം നിലവാരം Automatic ചെറുത് @@ -49,8 +47,6 @@ വിവരം പതിപ്പ് - സൂം നിയന്ത്രണങ്ങൾ - സ്ക്രീനിനു താഴെ വലതു മൂലയിലായി ഒരു സൂം ബട്ടൺ കാണിക്കുക രാത്രികാല മോഡ് ലേഖനങ്ങളുടെ നിറം നേർവിപരീതമാക്കുക തിരികെ മുകളിലേക്ക് @@ -58,6 +54,5 @@ ഇതുവഴി പങ്ക് വെയ്ക്കുക ഭാഷ ഭാഷ തിരഞ്ഞെടുക്കുക - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-mn/strings.xml b/res/values-mn/strings.xml index bb85134e8..d75b77c41 100644 --- a/res/values-mn/strings.xml +++ b/res/values-mn/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Файл нээх... @@ -39,8 +39,6 @@ Алдаа: \"%1$s\" нийтлэлийг уншихад алдаа. Алдаа: (Url: %1$s) нийтлэлийг уншихад алдаа. Үзүүлэх - Татах ойр хол - Татах ойр хол Автомат Жижиг @@ -49,8 +47,6 @@ Мэдээлэл Хувилбар - Ойртуулах, холдуулах тохиргоо - Дэлгэцийн баруун доод буланд zoom -ын товч байрлуулах Night mode Нийтлэлийн үсгийн өнгийг эсрэгээр харуулах Хамгийн дээр оч @@ -58,6 +54,5 @@ Хуваалцах сайтууд... Хэл Хэлээ сонгоно уу - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ms/strings.xml b/res/values-ms/strings.xml index b736e6e87..9f3cac646 100644 --- a/res/values-ms/strings.xml +++ b/res/values-ms/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Buka fail... @@ -39,8 +39,6 @@ Ralat: Rencana \"%1$s\" gagal dimuatkan. Ralat: Rencana (Url: %1$s) gagal dimuatkan. Paparan - Takat zum - Takat zum Automatik Kecil @@ -49,8 +47,6 @@ Maklumat Versi - Kawalan zum - Paparkan butang zum pada sudut kanan bawah skrin Mod malam Paparkan rencana yang diterbalikkan warnanya Kembali ke Atas @@ -58,6 +54,5 @@ Kongsi melalui... Bahasa Pilih bahasa - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-mt/strings.xml b/res/values-mt/strings.xml index d2079c0c6..fc35cfdeb 100644 --- a/res/values-mt/strings.xml +++ b/res/values-mt/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Iftaħ il-fajl... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Viżwal - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Informazzjoni Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Lingwa Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-my/strings.xml b/res/values-my/strings.xml index d5a04699e..a2ed83f79 100644 --- a/res/values-my/strings.xml +++ b/res/values-my/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ဖိုင်ဖွင့်... @@ -39,8 +39,6 @@ အမှားသတိပေးချက် − \"%1$s\" ဆောင်းပါးထည့်သွင်းခြင်း မအောင်မြင်ပါ။ အမှားသတိပေးချက် − (Url: %1$s) ဆောင်းပါးထည့်သွင်းခြင်း မအောင်မြင်ပါ။ မြင်ကွင်း - ချဲ့ကြည့်သည့်အဆင့် - ချဲ့ကြည့်သည့်အဆင့် အလိုအလျောက် သေးသေး @@ -49,8 +47,6 @@ သတင်းအချက်အလက် မူ - ချဲ့ကြည့်ရာတွင် ထိန်းချုပ်မှုများ - ချဲ့ကြည့်သည့်ခလုတ်ကို စကရင်၏ အောက်ခြေ ညာဘက်ထောင့်တွင် ပြပါ။ ညကြည့်ပုံစံ ဆောင်းပါးများကို အရောင်ပြောင်းပြန်သုံး၍ ပြရန် ထိပ်ဆုံးသို့ ပြန်သွားရန် @@ -58,6 +54,5 @@ ဤသည်မှတဆင့် မျှဝေပါ... ဘာသာစကား ဘာသာစကားရွေးချယ်ရန် - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml index 44f6b4dcc..14946271f 100644 --- a/res/values-nb/strings.xml +++ b/res/values-nb/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Åpne fil … @@ -39,8 +39,6 @@ Feil: Kunne ikke laste inn artikkelen \"%1$s\". Feil: Kunne ikke laste inn artikkelen (Url: %1$s). Skjerm - Zoom-nivå - Zoom-nivå Automatisk Liten @@ -49,8 +47,6 @@ Informasjon Versjon - Zoom-kontroller - Vis en zoom-knapp nede til høyre i skjermbildet Nattmodus Vis artikler med inverterte farger Tilbake til toppen @@ -58,6 +54,5 @@ Del via... Språk Velg et språk - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ne/strings.xml b/res/values-ne/strings.xml index d23f6601b..7171b7b94 100644 --- a/res/values-ne/strings.xml +++ b/res/values-ne/strings.xml @@ -1,4 +1,4 @@ - + Kiwix फाइल खोल्ने @@ -39,8 +39,6 @@ त्रुटी: लेख \"%1$s\" खोल्न असफल भयो। त्रुटी: लेख खोल्न असफल । (Url: %1$s) दृश्य - जुम स्तर - जुम स्तर Automatic सानो @@ -49,8 +47,6 @@ जानकारी संस्करण - जुम नियन्त्रणहरू - स्क्रिनको निम्न दाहिने कुनामा जुम बटन देखाउने रात्री मूड उल्ट्याइएको रङका लेखहरू देखाउने सुरुमा जानुहोस् @@ -58,6 +54,5 @@ सझेदारी गर्ने माध्यम भाषा भाषा चुन्ने - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml index 649c286e7..34a017fd6 100644 --- a/res/values-nl/strings.xml +++ b/res/values-nl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Bestand openen... @@ -39,8 +39,6 @@ Fout: Het laden van de pagina \"%1$s\" is mislukt. Fout: Het laden van de pagina (URL: %1$s) is mislukt. Beeld - Zoomniveau - Zoomniveau Automatisch Klein @@ -49,8 +47,6 @@ Informatie Versie - Besturingselementen voor zoomen - Rechtsonder een zoomknop weergeven Nachtmodus Pagina\'s weergeven met omgekeerde kleuren Terug naar boven @@ -58,6 +54,5 @@ Delen... Taal Taal kiezen - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-nn/strings.xml b/res/values-nn/strings.xml index a21a07b83..94443704a 100644 --- a/res/values-nn/strings.xml +++ b/res/values-nn/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Åpne fil... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Skjerm - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Informasjon Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Språk Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-oc/strings.xml b/res/values-oc/strings.xml index b722db63a..9b9c44f99 100644 --- a/res/values-oc/strings.xml +++ b/res/values-oc/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Dobrir un fichièr... @@ -39,8 +39,6 @@ Error : Fracàs al cargament de l’article « %1$s ». Error : Lo cargament de l’article (Url: %1$s) a fracassat. Afichar - Nivèl de zoom - Nivèl de zoom Automatic Pichon @@ -49,8 +47,6 @@ Informacion Version - Contraròtles del zoom - Afichar un boton de zoom dins lo canton inferior drech de l’ecran Mòde nocturne Afichar los articles en colors inversadas Retorn al començament @@ -58,6 +54,5 @@ Partejar via... Lenga Causir una lenga - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-or/strings.xml b/res/values-or/strings.xml index 8f26bd8be..b9b40fd25 100644 --- a/res/values-or/strings.xml +++ b/res/values-or/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ଫାଇଲଟି ଖୋଲିବେ... @@ -39,8 +39,6 @@ ଅସୁବିଧା: \"%1$s\" ପ୍ରସଙ୍ଗଟି ଖୋଲିବାରେ ବିଫଳ ହେଲୁ । ଅସୁବିଧା: (Url: %1$s) ପ୍ରସଙ୍ଗ ଖୋଲିବାରେ ବିଫଳ ହେଲୁ । ଦେଖଣା - ଜୁମ ବଢ଼ାଇବା/କମାଇବା - ଜୁମ ବଢ଼ାଇବା/କମାଇବା Automatic ଛୋଟ @@ -49,8 +47,6 @@ ସୂଚନା ସଂସ୍କରଣ - ଜୁମ ବଢ଼ାଇବା/କମାଇବା - ସ୍କ୍ରିନର ତଳେ ଡାହାଣ ପଟେ ଏକ ଜୁମ ବଟନ ଦେଖାଇବେ ରାତି ମୋଡ଼ ରଙ୍ଗର ଓଲଟା କ୍ରମରେ ପ୍ରସଙ୍ଗମାନ ଦେଖାଇବେ ଉପରକୁ ଫେରିବେ @@ -58,6 +54,5 @@ କାହା ଦ୍ୱାରା ବାକିମାନଙ୍କୁ ଜଣାଇବେ... ଭାଷା ଭାଷା ଚୟନ କରନ୍ତୁ - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml index 9124d2155..67ec4bc2c 100644 --- a/res/values-pl/strings.xml +++ b/res/values-pl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otwórz plik... @@ -39,8 +39,6 @@ Błąd: Ładowanie artykułu \ " %1$s \" się nie powiodło. Błąd: Ładowanie artykułu (Url: %1$s ) się nie powiodło. Widok - Poziom powiększenia - Poziom powiększenia Automatycznie Mały @@ -49,8 +47,6 @@ Informacje Wersja - Zarządzanie skali - Wyświetl przycisk skali w prawym rogu ekranu Tryb nocny Pokaż artykuły w trybie nocnym Powrót do góry @@ -58,6 +54,5 @@ Podziel się za pośrednictwem... Język Wybierz język - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ps/strings.xml b/res/values-ps/strings.xml index 978179cce..f3d4c5fc0 100644 --- a/res/values-ps/strings.xml +++ b/res/values-ps/strings.xml @@ -1,4 +1,4 @@ - + Kiwix دوتنه پرانيستل... @@ -39,8 +39,6 @@ تېروتنه: ليکنه برسېرېدنه \"%1$s\" نابريالۍ شوه. تېروتنه: ليکنه برسېرېدنه (يو آر ال: %1$s) نابريالئ شوه. ښکارېدنه - لوډېرولو کچه - لوډېرولو کچه اتوماتيک وړوکی @@ -49,8 +47,6 @@ مالومات بڼه - لوډېرولو مهارونې - د لوډېرولو يوه تڼۍ د پردې لانديني ښي گوټ کې ښکاره کول د شپې بڼه رنگ اړول شوې ليکنې ښکاره کول بېرته سر ته @@ -58,6 +54,5 @@ د شريکولو لار ... ژبه يوه ژبه وټاکئ - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml index b836008bc..ebf2cb77f 100644 --- a/res/values-pt/strings.xml +++ b/res/values-pt/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Abrir ficheiro... @@ -39,8 +39,6 @@ Erro com: carregamento do artigo \"%1$s\" falhou. Erro com: carregamento do artigo, ligação (Url: %1$s) falhou. Ver - Nível de Zoom - Nível de Zoom Automático Pouco @@ -49,8 +47,6 @@ Informação Versão - Controlos de Zoom - Exibir o botão de Zoom no canto inferior direito da imagem Modo nocturno Mostrat artigos com cores invetidas Voltar ao Topo @@ -58,6 +54,5 @@ Compartilhar via... Língua Escolha um idioma - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-qu/strings.xml b/res/values-qu/strings.xml index 1d77ef70c..e10da2ca6 100644 --- a/res/values-qu/strings.xml +++ b/res/values-qu/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Willañiqita kichariy... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Qhawachiy - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Willay Version - Zoom controls - Display a zoom button in the screen bottom right corner Tuta laya Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Rimay Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-rm/strings.xml b/res/values-rm/strings.xml index 78a21dab9..8df1fddfe 100644 --- a/res/values-rm/strings.xml +++ b/res/values-rm/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Avrir ina datoteca… @@ -39,8 +39,6 @@ Errur: chargiar il artitgel \"%1$s\" n\'a betg funcziunà. Errur: chargiar il artitgel (Url: %1$s) n\'a betg funcziunà. Vista - Nivel da zoom - Nivel da zoom Automatic Small @@ -49,8 +47,6 @@ Infurmaziun Versiun - Controlla d\'il zoom - Mussar in buttun da zoom en il chantun engiu dretg d\'il maletg Modus da notg Mussar artitgels cun colurs invertidas Enavos a l\'entschatta @@ -58,6 +54,5 @@ Parter tras... Lingua Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ro/strings.xml b/res/values-ro/strings.xml index c9127f5a4..b53c67155 100644 --- a/res/values-ro/strings.xml +++ b/res/values-ro/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Deschide un fișier... @@ -39,8 +39,6 @@ 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 - Nivel de zoom Automat Scăzut @@ -49,8 +47,6 @@ 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 Începutul paginii @@ -58,6 +54,5 @@ Distribuire prin... Limbă Alegeți o limbă - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml index b6e4be738..92ac6d3b6 100644 --- a/res/values-ru/strings.xml +++ b/res/values-ru/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Открыть файл… @@ -39,8 +39,6 @@ Ошибка: Загрузка статьи \«%1$s\» не удалась. Ошибка: Загрузка статьи (Url: %1$s) не удалась. Показать - Уровень масштабирования - Уровень масштабирования Автоматически Маленький @@ -49,8 +47,6 @@ Информация Версия - Управления масштабированием - Отображать кнопку масштабирования в правом нижнем углу экрана Ночной режим Показать статьи в «ночном режиме» Вернуться наверх @@ -58,6 +54,5 @@ Поделиться через… Язык Выберите язык - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-sa/strings.xml b/res/values-sa/strings.xml index 7a28fbf4c..59c050415 100644 --- a/res/values-sa/strings.xml +++ b/res/values-sa/strings.xml @@ -1,4 +1,4 @@ - + Kiwix सञ्चिका उद्घाट्यताम्... @@ -39,8 +39,6 @@ दोषः : \"%1$s\" लेखस्य अवारोपणं विफलम् अभवत् । दोषः : (Url: %1$s) लेखस्य अवारोपणं विफलम् अभवत् । प्रदर्श्यताम् - वीक्षणस्य (zoom) स्तरम् - वीक्षणस्य (zoom) स्तरम् Automatic लघु @@ -49,8 +47,6 @@ सूचना संस्करणम् - वीक्षण(zoom)नियन्त्रकानि - पटलस्य दक्षिणविभागे अधः वीक्षणकुड्णलं (zoom button) स्थापयतु रात्र्यवस्था विपरितरङ्गैः लेखः दृश्यताम् साक्षात् उपरि गच्छतु @@ -58,6 +54,5 @@ द्वारा विभज्यताम्.... भाषा Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-sh/strings.xml b/res/values-sh/strings.xml index 8dce820cd..174c1996e 100644 --- a/res/values-sh/strings.xml +++ b/res/values-sh/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otvori datoteku... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Prikaži - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Informacija Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Jezik Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-si/strings.xml b/res/values-si/strings.xml index ed3bbfc1f..fb5bf3589 100644 --- a/res/values-si/strings.xml +++ b/res/values-si/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ගොනුව විවෘත කරන්න... @@ -39,8 +39,6 @@ දෝෂය: \"%1$s\" ලිපිය පූරණය වීම අසාර්ථකයි. දෝෂය: (Url: %1$s) ලිපිය පූරණය වීම අසාර්ථකයි. පෙන්වීම - විශාලන මට්ටම - විශාලන මට්ටම ස්වයංක්‍රීය කුඩා @@ -49,8 +47,6 @@ තොරතුරු අනුවාදය - විශාලන පාලක - තිරයේ පහළ දකුණු කෙළවර විශාලන බොත්තමක් පෙන්වන්න රාත්‍රී ආකාරය ප්‍රතිවර්තිත වර්ණ සමග ලිපි පෙන්වන්න නැවත උඩට @@ -58,6 +54,5 @@ මගින් හුවමාරු කරන්න... භාෂාව භාෂාවක් තෝරාගන්න - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-sk/strings.xml b/res/values-sk/strings.xml index d4970a3b8..db19de763 100644 --- a/res/values-sk/strings.xml +++ b/res/values-sk/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otvoriť súbor... @@ -39,8 +39,6 @@ Chyba: Načítavanie článku \"%1$s\" sa nepodarilo. Chyba: Načítavanie článku (Url: %1$s) sa nepodarilo. Zobrazenie - Úroveň lupy - Úroveň lupy Automaticky Malé @@ -49,8 +47,6 @@ Informácie Verzia - Ovládanie prvky lupy - Zobraziť tlačidlo lupy na obrazovke v dolnom pravom rohu. Nočný režim Zobraziť články s otočenými farbami Späť na začiatok @@ -58,6 +54,5 @@ Zdielať cez... Jazyk Zvoliť jazyk - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-sl/strings.xml b/res/values-sl/strings.xml index 59ae5b509..2563d79bf 100644 --- a/res/values-sl/strings.xml +++ b/res/values-sl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Odpri datoteko ... @@ -39,8 +39,6 @@ Napaka: Nalaganje članka \"%1$s\" je spodletelo. Napaka: nalaganje članka (url: %1$s) ni uspelo. Prikaz - Raven zumiranja - Raven zumiranja Samodejno Majhno @@ -49,8 +47,6 @@ Informacije Različica - Kontrolniki zumiranja - V spodnjem desnem vogalu zaslona prikaži gumb za zumiranje Nočni način Prikaz člankov z obrnjenimi barvami Nazaj na vrh @@ -58,6 +54,5 @@ Deli na ... Jezik Izberite jezik - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-so/strings.xml b/res/values-so/strings.xml index 607058474..d2a7c1eeb 100644 --- a/res/values-so/strings.xml +++ b/res/values-so/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fur galka @@ -39,8 +39,6 @@ Qalad: Galinta maqaalka \"%1$s\" waa lagu fashilmay. Qalad: Galinta maqaalka (Url: %1$s) ma galin. Qaab aragga - Heelka weynaynta - Heelka weynaynta Talantaali Yar @@ -49,8 +47,6 @@ Macluumaad Nuqul - Weynayn hagista - Batoonka Muuq weyneeyaha ee xagasha midig hoose ee shaashadda Habka habeenkii Show articles with reverted colors Ku laabo kor @@ -58,6 +54,5 @@ La wadaag dhanka... Luqad Dooro luqad - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-sq/strings.xml b/res/values-sq/strings.xml index 0351dfa8b..19aa08cdb 100644 --- a/res/values-sq/strings.xml +++ b/res/values-sq/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Hap dosjen @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Shfaq - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Informacione Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Gjuha Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-su/strings.xml b/res/values-su/strings.xml index 2678f9a12..e8cc6b761 100644 --- a/res/values-su/strings.xml +++ b/res/values-su/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Buka berkas... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Panémbong - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Émbaran Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Basa Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-sv/strings.xml b/res/values-sv/strings.xml index cead61d3a..06f96b43e 100644 --- a/res/values-sv/strings.xml +++ b/res/values-sv/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Öppna fil... @@ -39,8 +39,6 @@ Fel: Kunde inte läsa in artikeln \"%1$s\". Fel: Inläsning av artikel (url: %1$s) misslyckades. Visa - Zoomnivå - Zoomnivå Automatiskt Liten @@ -49,8 +47,6 @@ Information Version - Zoomkontrollerna - Visa en zoomknapp längst ned i det högra hörnet på skärmen Nattläge Visa artiklar med inverterade färger Tillbaka till toppen @@ -58,6 +54,5 @@ Dela via... Språk Välj ett språk - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-sw/strings.xml b/res/values-sw/strings.xml index 13febad58..6a6f9aaf0 100644 --- a/res/values-sw/strings.xml +++ b/res/values-sw/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fungua faili ... @@ -39,8 +39,6 @@ Hitilafu: Upakuzi wa makala umefeli \"%1$s\" Hitilafu:Upakiaji wa makala umefeli (Url: %1$s) Onesha - Kiwango cha ukuzi - Kiwango cha ukuzi otomatiki ndogo @@ -49,8 +47,6 @@ Maarifa Toleo - Vidhibiti vya ukuzi - Onyesha kidude cha ukuzi katika sehemu ya kona ya kulia kwenye skrini Hali ya Usiku Onyesha makala yakiwa na rangi kubatilishwa Rudi kwenye kichwa cha ukurasa @@ -58,6 +54,5 @@ Shiriki kupitia... Lugha Chagua lugha - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ta/strings.xml b/res/values-ta/strings.xml index 026e46642..619c0ce55 100644 --- a/res/values-ta/strings.xml +++ b/res/values-ta/strings.xml @@ -1,4 +1,4 @@ - + Kiwix கோப்பை திறக்கவும்... @@ -39,8 +39,6 @@ பிழை: \"%1$s\" கட்டுரையை ஏற்றித்துவங்க தவறிவிட்டது பிழை: (Url: %1$s) கட்டுரையை ஏற்றித்துவங்க தவறிவிட்டது காண்பி - உரு அளவு நிலை - உரு அளவு நிலை தன்னியக்கம் சிறிய @@ -49,8 +47,6 @@ தகவல் பதிப்பு - உரு அளவு கட்டுப்படுத்திகள் - உரு அளவு மாற்றும் பொத்தானை, திரையின் வலப்புற கீழ்ப்பகுதியில், தெரியும்படி வை இரவுத்தோற்றம் கட்டுரைகளை தலைகீழ் நிறங்களில் காண்பி மேலே செல்லவும் @@ -58,6 +54,5 @@ இவ்வழியாக பகிர்.... மொழி மொழியைத் தேர்ந்தெடு - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-te/strings.xml b/res/values-te/strings.xml index d11253f18..76cf82578 100644 --- a/res/values-te/strings.xml +++ b/res/values-te/strings.xml @@ -1,4 +1,4 @@ - + Kiwix దస్త్రాన్ని తెరువు... @@ -39,8 +39,6 @@ దోషం : \"%1$s\" వ్యాసం లోడ్ చెయ్యడం విఫలమయింది. దోషం : వ్యాసం (Url: %1$s) ను లోడ్ చెయ్యడం విఫలమయింది. వీక్షణం - అతిరూపణ స్థాయి - అతిరూపణ స్థాయి స్వయంచాలితం చిన్న @@ -49,8 +47,6 @@ సమాచారం సంచిక - అతిరూపణ నియంత్రణలు - అతిరూపణ బొత్తమును స్క్రీనుకు కింద కుడి మూలన చూపండి చీకటి రీతి వ్యాసాలను వ్యతిరేక రంగులలో చూపించు తిరిగి పైకి @@ -58,6 +54,5 @@ పంచుకోండి ... భాష భాషను ఎంచుకోండి - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-th/strings.xml b/res/values-th/strings.xml index e811d8ecc..e5ee96314 100644 --- a/res/values-th/strings.xml +++ b/res/values-th/strings.xml @@ -1,4 +1,4 @@ - + Kiwix เปิดแฟ้ม... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. แสดงผล - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ ข้อมูล Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via ภาษา Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-tl/strings.xml b/res/values-tl/strings.xml index dd51db61c..468592375 100644 --- a/res/values-tl/strings.xml +++ b/res/values-tl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Buksan ang talaksan... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Palitawin - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Kabatiran Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Bumalik sa itaas @@ -58,6 +54,5 @@ Share via Wika Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-tr/strings.xml b/res/values-tr/strings.xml index 378501d3f..0c6c9abe4 100644 --- a/res/values-tr/strings.xml +++ b/res/values-tr/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Dosya aç... @@ -39,8 +39,6 @@ Hata: \"%1$s\" makalesinin yüklemesi başarısız oldu. Hata: (Url: %1$s) makalesinin yüklemesi başarısız. Göster - Zum seviyesi - Zum seviyesi Otomatik Küçük @@ -49,8 +47,6 @@ Bilgi Sürüm - Zum kontrolleri - Ekranın sağ alt köşesinde bir zum butonu görüntüle Gece modu Makaleleri dönüştürülmüş renklerle göster Başa dön @@ -58,6 +54,5 @@ Üzerinden paylaşın... Dil Bir dil seçin - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-uk/strings.xml b/res/values-uk/strings.xml index 588c43cf5..904ea0a93 100644 --- a/res/values-uk/strings.xml +++ b/res/values-uk/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Відкрити файл ... @@ -39,8 +39,6 @@ Помилка: завантаження статті \"%1$s\" не вдалося. Помилка: завантаження статті (Url: %1$s) не вдалося. Показати - Рівень масштабування - Рівень масштабування Автоматично Малий @@ -49,8 +47,6 @@ Інформація Версія - Управління масштабом - Відображати кнопку масштаб у нижньому правому куті екрану Нічний режим Показати статті з повернутими кольорами Наверх @@ -58,6 +54,5 @@ Поділитися через… Мова Оберіть мову - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-ur/strings.xml b/res/values-ur/strings.xml index 28339722c..9b179468d 100644 --- a/res/values-ur/strings.xml +++ b/res/values-ur/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ملف کھولیں @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. تظاہرہ - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ معلومات Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via زبان Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-uz/strings.xml b/res/values-uz/strings.xml index a3a55b4c6..a769b774c 100644 --- a/res/values-uz/strings.xml +++ b/res/values-uz/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Faylni ochish... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Koʻrsatish - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Axborot Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Til Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-vi/strings.xml b/res/values-vi/strings.xml index 5a2a0387d..e1b9f8192 100644 --- a/res/values-vi/strings.xml +++ b/res/values-vi/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Mở Tập tin… @@ -39,8 +39,6 @@ Lỗi: Thất bại khi tải bài viết “%1$s”. Lỗi: Việc tải bài (URL: %1$s) bị thất bại. Hiển thị - Mức thu phóng - Mức thu phóng Tự động Nhỏ @@ -49,8 +47,6 @@ Thông tin Phiên bản - Điều khiển thu phóng - Hiện nút thu phóng ở góc phải bên dưới của màn hình Chế độ ban đêm Đảo ngược màu sắc trong bài Trở lên Đầu trang @@ -58,6 +54,5 @@ Chia sẻ qua… Ngôn ngữ Chọn ngôn ngữ - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-yi/strings.xml b/res/values-yi/strings.xml index 05047ac6d..6d724e950 100644 --- a/res/values-yi/strings.xml +++ b/res/values-yi/strings.xml @@ -1,4 +1,4 @@ - + Kiwix עפֿענען טעקע… @@ -39,8 +39,6 @@ טעות: לאדן ארטיקל \"%1$s\" דורגעפאלן. טעות: לאדן ארטיקל (Url: %1$s) דורכגעפאלן. אויסשטעלונג - פארגרעסערונג ניווא - פארגרעסערונג ניווא אויטאמאטיש קליין @@ -49,8 +47,6 @@ אינפֿארמאציע ווערסיע - Zoom controls - Display a zoom button in the screen bottom right corner נאכטמאדע Show articles with reverted colors צוריק אויבן @@ -58,6 +54,5 @@ טיילן דורך… שפראַך קלויבט א שפראך - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-yo/strings.xml b/res/values-yo/strings.xml index d54146db2..a897206be 100644 --- a/res/values-yo/strings.xml +++ b/res/values-yo/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Ṣí fáìlì... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Ìmúhàn - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Ìfitọ́nilétí Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via Èdè Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values-zh/strings.xml b/res/values-zh/strings.xml index b85fa1310..6034d153b 100644 --- a/res/values-zh/strings.xml +++ b/res/values-zh/strings.xml @@ -1,4 +1,4 @@ - + Kiwix 打开文件... @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. 显示 - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ 信息 Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,6 +54,5 @@ Share via 语言 Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - + \ No newline at end of file diff --git a/res/values/strings.xml b/res/values/strings.xml index 65eb53417..e9ba37582 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Open File @@ -39,8 +39,6 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Display - Zoom level - Zoom level Automatic Small @@ -49,8 +47,6 @@ Information Version - Zoom controls - Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -58,7 +54,6 @@ Share via Language Choose a language - Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. "Could not find an installed application for this type of file" - + \ No newline at end of file diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml index 09caa7650..e00b514d6 100644 --- a/res/xml/preferences.xml +++ b/res/xml/preferences.xml @@ -3,18 +3,6 @@ android:key="pref_display" android:title="@string/pref_display_title"> - - Date: Thu, 4 Jun 2015 10:45:40 +0200 Subject: [PATCH 03/10] Add PreferenceDialog --- res/layout/slider_preference_dialog.xml | 25 +++ res/values/attrs.xml | 9 ++ res/xml/preferences.xml | 7 + .../kiwixmobile/KiwixMobileFragment.java | 34 ++--- .../settings/SliderPreference.java | 143 ++++++++++++++++++ 5 files changed, 198 insertions(+), 20 deletions(-) create mode 100644 res/layout/slider_preference_dialog.xml create mode 100644 res/values/attrs.xml create mode 100644 src/org/kiwix/kiwixmobile/settings/SliderPreference.java diff --git a/res/layout/slider_preference_dialog.xml b/res/layout/slider_preference_dialog.xml new file mode 100644 index 000000000..6219334da --- /dev/null +++ b/res/layout/slider_preference_dialog.xml @@ -0,0 +1,25 @@ + + + + + + + + + \ No newline at end of file diff --git a/res/values/attrs.xml b/res/values/attrs.xml new file mode 100644 index 000000000..1d241cc78 --- /dev/null +++ b/res/values/attrs.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml index e00b514d6..e9d97557f 100644 --- a/res/xml/preferences.xml +++ b/res/xml/preferences.xml @@ -14,6 +14,13 @@ android:summary="@string/pref_backtotop_summary" android:defaultValue="false"/> + + = Configuration.SCREENLAYOUT_SIZE_LARGE; - } - public void hideSearchBar() { // Hide searchbar articleSearchBar.setVisibility(View.GONE); @@ -1268,20 +1263,19 @@ public class KiwixMobileFragment extends SherlockFragment { } } - String viewPortJs = "javascript:" - + "viewport = document.querySelector(\"meta[name=viewport]\");\n" - + "\n" - + "if (!viewport) {\n" - + " var viewPortTag = document.createElement('meta');\n" - + " viewPortTag.id = \"viewport\";\n" - + " viewPortTag.name = \"viewport\";\n" - + " viewPortTag.content = \"width=device-width, initial-scale=1.0, " - + "\";\n" - + " document.getElementsByTagName('head')[0].appendChild(viewPortTag);\n" - + "\n" - + "}"; - - webView.loadUrl(viewPortJs); +// String viewPortJs = "javascript:" +// + "viewport = document.querySelector(\"meta[name=viewport]\");\n" +// + "\n" +// + "if (!viewport) {\n" +// + " var viewPortTag = document.createElement('meta');\n" +// + " viewPortTag.id = \"viewport\";\n" +// + " viewPortTag.name = \"viewport\";\n" +// + " viewPortTag.content = \"width=device-width, initial-scale=1.0\";\n" +// + " document.getElementsByTagName('head')[0].appendChild(viewPortTag);\n" +// + "\n" +// + "}"; +// +// //webView.loadUrl(viewPortJs); } } } diff --git a/src/org/kiwix/kiwixmobile/settings/SliderPreference.java b/src/org/kiwix/kiwixmobile/settings/SliderPreference.java new file mode 100644 index 000000000..ddb3767dd --- /dev/null +++ b/src/org/kiwix/kiwixmobile/settings/SliderPreference.java @@ -0,0 +1,143 @@ +package org.kiwix.kiwixmobile.settings; + +import org.kiwix.kiwixmobile.R; + +import android.content.Context; +import android.content.res.TypedArray; +import android.preference.DialogPreference; +import android.util.AttributeSet; +import android.view.View; +import android.widget.SeekBar; + +public class SliderPreference extends DialogPreference { + + protected final static int SEEKBAR_RESOLUTION = 10000; + + protected float mValue; + + protected int mSeekBarValue; + + protected CharSequence[] mSummaries; + + /** + * @param context + * @param attrs + */ + public SliderPreference(Context context, AttributeSet attrs) { + super(context, attrs); + setup(context, attrs); + } + + /** + * @param context + * @param attrs + * @param defStyle + */ + public SliderPreference(Context context, AttributeSet attrs, int defStyle) { + super(context, attrs, defStyle); + setup(context, attrs); + } + + private void setup(Context context, AttributeSet attrs) { + setDialogLayoutResource(R.layout.slider_preference_dialog); + TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.SliderPreference); + try { + setSummary(a.getTextArray(R.styleable.SliderPreference_android_summary)); + } catch (Exception e) { + // Do nothing + } + a.recycle(); + } + + @Override + protected Object onGetDefaultValue(TypedArray a, int index) { + return a.getFloat(index, 0); + } + + @Override + protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { + setValue(restoreValue ? getPersistedFloat(mValue) : (Float) defaultValue); + } + + @Override + public CharSequence getSummary() { + if (mSummaries != null && mSummaries.length > 0) { + int index = (int) (mValue * mSummaries.length); + index = Math.min(index, mSummaries.length - 1); + return mSummaries[index]; + } else { + return super.getSummary(); + } + } + + public void setSummary(CharSequence[] summaries) { + mSummaries = summaries; + } + + @Override + public void setSummary(CharSequence summary) { + super.setSummary(summary); + mSummaries = null; + } + + @Override + public void setSummary(int summaryResId) { + try { + //noinspection ResourceType + setSummary(getContext().getResources().getStringArray(summaryResId)); + } catch (Exception e) { + super.setSummary(summaryResId); + } + } + + public float getValue() { + return mValue; + } + + public void setValue(float value) { + value = Math.max(0, Math.min(value, 1)); // clamp to [0, 1] + if (shouldPersist()) { + persistFloat(value); + } + if (value != mValue) { + mValue = value; + notifyChanged(); + } + } + + @Override + protected View onCreateDialogView() { + mSeekBarValue = (int) (mValue * SEEKBAR_RESOLUTION); + View view = super.onCreateDialogView(); + SeekBar seekbar = (SeekBar) view.findViewById(R.id.slider_preference_seekbar); + seekbar.setMax(SEEKBAR_RESOLUTION); + seekbar.setProgress(mSeekBarValue); + seekbar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { + + @Override + public void onStopTrackingTouch(SeekBar seekBar) { + } + + @Override + public void onStartTrackingTouch(SeekBar seekBar) { + } + + @Override + public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { + if (fromUser) { + SliderPreference.this.mSeekBarValue = progress; + } + } + }); + return view; + } + + @Override + protected void onDialogClosed(boolean positiveResult) { + final float newValue = (float) mSeekBarValue / SEEKBAR_RESOLUTION; + if (positiveResult && callChangeListener(newValue)) { + setValue(newValue); + } + super.onDialogClosed(positiveResult); + } +} \ No newline at end of file From 0733d240c6837d5b096d793a5584c6d5d987357b Mon Sep 17 00:00:00 2001 From: Rashiq Date: Thu, 4 Jun 2015 13:49:05 +0200 Subject: [PATCH 04/10] Revert "Delete unused string resources" This reverts commit 4ea7dc6dae09ecd11b16a18b87f4eb497519c824. --- res/layout/slider_preference_dialog.xml | 23 +++++----- res/values-af/strings.xml | 9 +++- res/values-am/strings.xml | 9 +++- res/values-ar/strings.xml | 9 +++- res/values-as/strings.xml | 9 +++- res/values-az/strings.xml | 9 +++- res/values-ba/strings.xml | 9 +++- res/values-be/strings.xml | 9 +++- res/values-bg/strings.xml | 9 +++- res/values-bm/strings.xml | 9 +++- res/values-bn/strings.xml | 9 +++- res/values-br/strings.xml | 9 +++- res/values-ca/strings.xml | 9 +++- res/values-cs/strings.xml | 9 +++- res/values-cv/strings.xml | 9 +++- res/values-cy/strings.xml | 9 +++- res/values-da/strings.xml | 9 +++- res/values-de/strings.xml | 9 +++- res/values-el/strings.xml | 9 +++- res/values-eo/strings.xml | 9 +++- res/values-es/strings.xml | 9 +++- res/values-et/strings.xml | 9 +++- res/values-fa/strings.xml | 9 +++- res/values-fi/strings.xml | 9 +++- res/values-fo/strings.xml | 9 +++- res/values-fr/strings.xml | 9 +++- res/values-gl/strings.xml | 9 +++- res/values-gu/strings.xml | 9 +++- res/values-he/strings.xml | 9 +++- res/values-hi/strings.xml | 9 +++- res/values-hr/strings.xml | 9 +++- res/values-hu/strings.xml | 9 +++- res/values-ia/strings.xml | 9 +++- res/values-id/strings.xml | 9 +++- res/values-ie/strings.xml | 9 +++- res/values-it/strings.xml | 9 +++- res/values-ja/strings.xml | 9 +++- res/values-jv/strings.xml | 9 +++- res/values-ka/strings.xml | 9 +++- res/values-km/strings.xml | 9 +++- res/values-kn/strings.xml | 9 +++- res/values-ko/strings.xml | 9 +++- res/values-ky/strings.xml | 9 +++- res/values-lb/strings.xml | 9 +++- res/values-li/strings.xml | 9 +++- res/values-lt/strings.xml | 9 +++- res/values-lv/strings.xml | 9 +++- res/values-mg/strings.xml | 9 +++- res/values-mk/strings.xml | 9 +++- res/values-ml/strings.xml | 9 +++- res/values-mn/strings.xml | 9 +++- res/values-ms/strings.xml | 9 +++- res/values-mt/strings.xml | 9 +++- res/values-my/strings.xml | 9 +++- res/values-nb/strings.xml | 9 +++- res/values-ne/strings.xml | 9 +++- res/values-nl/strings.xml | 9 +++- res/values-nn/strings.xml | 9 +++- res/values-oc/strings.xml | 9 +++- res/values-or/strings.xml | 9 +++- res/values-pl/strings.xml | 9 +++- res/values-ps/strings.xml | 9 +++- res/values-pt/strings.xml | 9 +++- res/values-qu/strings.xml | 9 +++- res/values-rm/strings.xml | 9 +++- res/values-ro/strings.xml | 9 +++- res/values-ru/strings.xml | 9 +++- res/values-sa/strings.xml | 9 +++- res/values-sh/strings.xml | 9 +++- res/values-si/strings.xml | 9 +++- res/values-sk/strings.xml | 9 +++- res/values-sl/strings.xml | 9 +++- res/values-so/strings.xml | 9 +++- res/values-sq/strings.xml | 9 +++- res/values-su/strings.xml | 9 +++- res/values-sv/strings.xml | 9 +++- res/values-sw/strings.xml | 9 +++- res/values-ta/strings.xml | 9 +++- res/values-te/strings.xml | 9 +++- res/values-th/strings.xml | 9 +++- res/values-tl/strings.xml | 9 +++- res/values-tr/strings.xml | 9 +++- res/values-uk/strings.xml | 9 +++- res/values-ur/strings.xml | 9 +++- res/values-uz/strings.xml | 9 +++- res/values-vi/strings.xml | 9 +++- res/values-yi/strings.xml | 9 +++- res/values-yo/strings.xml | 9 +++- res/values-zh/strings.xml | 9 +++- res/values/strings.xml | 9 +++- res/values/strings_nontranslatable.xml | 9 ++++ res/xml/preferences.xml | 17 +++++-- .../kiwixmobile/KiwixMobileFragment.java | 46 ++++++++----------- .../settings/SliderPreference.java | 42 ++++++++++------- 94 files changed, 700 insertions(+), 238 deletions(-) create mode 100644 res/values/strings_nontranslatable.xml diff --git a/res/layout/slider_preference_dialog.xml b/res/layout/slider_preference_dialog.xml index 6219334da..f7cd7b73e 100644 --- a/res/layout/slider_preference_dialog.xml +++ b/res/layout/slider_preference_dialog.xml @@ -2,24 +2,25 @@ + android:paddingLeft="16dp" + android:paddingRight="16dp" + android:paddingBottom="8dp" + android:paddingTop="8dp"> + android:id="@+id/message" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center"/> + android:paddingBottom="12dp" + android:paddingTop="12dp"/> \ No newline at end of file diff --git a/res/values-af/strings.xml b/res/values-af/strings.xml index e926345ee..24dbfebbc 100644 --- a/res/values-af/strings.xml +++ b/res/values-af/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Maak lêer oop... @@ -39,6 +39,8 @@ Fout: Laai van bladsy \"%1$s\" het gefaal. Fout: Laai van bladsy (URL: %1$s) het gefaal. Wys + Zoom-vlak + Zoom-vlak Outomaties Klein @@ -47,6 +49,8 @@ Inligting Weergawe + Zoom-instellings + Wys \'n zoom-knop regs onder op die skerm Nag-modus Wys artikels met omgekeerde kleure Terug na bo @@ -54,5 +58,6 @@ Deel... Taal Kies \'n taal + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-am/strings.xml b/res/values-am/strings.xml index 0817b41d5..e44cc2885 100644 --- a/res/values-am/strings.xml +++ b/res/values-am/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ፋይልን ለመክፈት... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Display + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Information Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via ቋንቋ Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ar/strings.xml b/res/values-ar/strings.xml index ae5cd299e..179d22419 100644 --- a/res/values-ar/strings.xml +++ b/res/values-ar/strings.xml @@ -1,4 +1,4 @@ - + Kiwix افتح ملفًا... @@ -39,6 +39,8 @@ خطأ: تحميل المقالة \"%1$s\" لم يتم بنجاح. خطأ: تحميل المقالة (Url: %1$s) لم يتم بنجاح. عرض + مستوى التكبير/التصغير + مستوى التكبير/التصغير آلي صغير @@ -47,6 +49,8 @@ معلومة نسخة + تحكم التكبير/التصغير + عرض زر تكبير/تصغير في الزاوية اليمنى أسفل الشاشة الوضع الليلي إظهار المقالات مع الألوان المسترجعة ارجع إلى الأعلى @@ -54,5 +58,6 @@ شارك عبر... اللغة اختر لغة + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-as/strings.xml b/res/values-as/strings.xml index 385b8ab10..7ba6268ac 100644 --- a/res/values-as/strings.xml +++ b/res/values-as/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ফাইল খুলক... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. প্রদর্শন + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ বিবৰণ Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via ভাষা Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-az/strings.xml b/res/values-az/strings.xml index 9d3e16f43..1d3dbc00d 100644 --- a/res/values-az/strings.xml +++ b/res/values-az/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Faylı aç... @@ -39,6 +39,8 @@ Xəta:\"%1$s\" adlı məqalənin yüklənməsi alınmadı. Xəta: Məqalənin (Url: %1$s) yüklənməsi alınmadı. Ekran + Miqyas səviyyəsi + Miqyas səviyyəsi Avtomatik Kiçik @@ -47,6 +49,8 @@ Məlumat Versiya + Miqyas quraşdırılmaları + Ekranın sağ alt küncündə miqyas düyməsini göstər Gecə rejimi Məqalələri "gecə rejimində" göstər Əvvələ qayıt @@ -54,5 +58,6 @@ Paylaş... Dil Dili seçin + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ba/strings.xml b/res/values-ba/strings.xml index 503a14f66..e0855d326 100644 --- a/res/values-ba/strings.xml +++ b/res/values-ba/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Файлды асырға... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Күрһәтергә + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Мәғлүмәт Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Тел Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-be/strings.xml b/res/values-be/strings.xml index 9199156ef..caa4b2359 100644 --- a/res/values-be/strings.xml +++ b/res/values-be/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Адкрыць файл ... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Паказаць + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Інфармацыя Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Мова Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-bg/strings.xml b/res/values-bg/strings.xml index 537d7d2fb..ac375adaa 100644 --- a/res/values-bg/strings.xml +++ b/res/values-bg/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Отваряне на файл... @@ -39,6 +39,8 @@ Грешка: Зареждането на статия \"%1$s\" е неуспешно. Грешка: Зареждането на статия (Url: %1$s) е неуспешно. Показване + Ниво на мащабиране + Ниво на мащабиране Автоматично Малък @@ -47,6 +49,8 @@ Информация Версия + Управление на мащаба + Показване на бутон за мащабиране в долния десен ъгъл на екрана Нощен режим Показване на статии в "нощен режим" Връщане в началото @@ -54,5 +58,6 @@ Споделете чрез... Език Избиране на език + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-bm/strings.xml b/res/values-bm/strings.xml index 04189399f..74e8ad17f 100644 --- a/res/values-bm/strings.xml +++ b/res/values-bm/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fisiye dayɛlɛn @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Fili: Kunnafoni (Url: %1$s) sariziyeli tigɛra sira la. Jirayɔrɔ + Bonya/dɔgɔya hakɛ + Bonya/dɔgɔya hakɛ Automatic Small @@ -47,6 +49,8 @@ Kunnafoni Version + Bonyali/dɔgɔyali kɔlɔsili + Bonyali/dɔgɔyali butɔn dɔ jira ekaran kininfɛ seleke la, ka taa duguma. A kɛ sufɛla ɲɛ ye. Kunnafoni minnu ɲɛ cogoya yɛlɛmanen don, olu jira. Back to Top @@ -54,5 +58,6 @@ Share via Kan Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-bn/strings.xml b/res/values-bn/strings.xml index c5e22575a..7aabd7e78 100644 --- a/res/values-bn/strings.xml +++ b/res/values-bn/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ফাইল খোলো... @@ -39,6 +39,8 @@ ত্রুটি: নিবন্ধ লোডে \"%1$s\" ব্যর্থ। ত্রুটি: নিবন্ধ লোডে (Url: %1$s) ব্যর্থ। প্রদর্শন + জুমের পর্যায় + জুমের পর্যায় স্বয়ংক্রিয় ছোট @@ -47,6 +49,8 @@ তথ্য সংস্করণ + জুম নিয়ন্ত্রণ + পর্দা নীচের অংশে ডানদিকে কোণায় অবস্থিত একটি জুম বোতাম প্রদর্শন করা হবে রাত্রি মোড প্রত্যাবর্তন রঙসহ নিবন্ধ দেখান উপরে ফিরুন @@ -54,5 +58,6 @@ শেয়ার করুন... ভাষা একটি ভাষা নির্বাচন করুন + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-br/strings.xml b/res/values-br/strings.xml index 0e542ae7b..b3384e1ae 100644 --- a/res/values-br/strings.xml +++ b/res/values-br/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Digeriñ ur restr... @@ -39,6 +39,8 @@ Fazi : N\'eus ket bet gallet kargañ an draezenn \"%1$s\" Fazi : N\'eus ket bet gallet kargañ ar pennad \"%1$s\" Diskwel + Live zoum + Live zoum Emgefre Bihan @@ -47,6 +49,8 @@ Titouroù Stumm + Kontrolloù ar zoum + Diskwel ur nozelenn zoumañ e korn traoñ dehoù ar skramm Mod noz Diskouez ar pennadoù gant livioù eilpennet Distreiñ da grec\'h ar bajenn @@ -54,5 +58,6 @@ Rannañ dre... Yezh Dibabit ur yezh + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ca/strings.xml b/res/values-ca/strings.xml index 74e3f5175..818ae2015 100644 --- a/res/values-ca/strings.xml +++ b/res/values-ca/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Obrir el fitxer... @@ -39,6 +39,8 @@ Error: no s\'ha pogut carregar l\'article \"%1$s\". Error: no s\'ha pogut carregar l\'article (Url: %1$s). Visualitzar + Nivell de zoom + Nivell de zoom Automàtic Petit @@ -47,6 +49,8 @@ Informació Versió + Controls de zoom + Mostrar un botó de zoom a la part inferior dreta de la pantalla Mode nocturn Mostrar els articles amb colors invertits Tornar a dalt @@ -54,5 +58,6 @@ Compartir mitjançant... Idioma Trieu un idioma + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml index 0b9416815..c424a1a87 100644 --- a/res/values-cs/strings.xml +++ b/res/values-cs/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otevřít soubor... @@ -39,6 +39,8 @@ Chyba: Načtení článku \"%1$s\" se nezdařilo. Chyba: Načtení článku (Url: %1$s ) se nezdařilo. Zobrazení + Úroveň zvětšení + Úroveň zvětšení Automatický Malý @@ -47,6 +49,8 @@ Informace Verze + Ovládání přiblížení + Zobrazit tlačítko přiblížení v pravém dolním rohu obrazovky Noční režim Zobrazuje stránky v obrácených barvách. Zpět na začátek @@ -54,5 +58,6 @@ Sdílet přes... Jazyk Vyberte jazyk + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-cv/strings.xml b/res/values-cv/strings.xml index 30f6092dc..0eeb5bb66 100644 --- a/res/values-cv/strings.xml +++ b/res/values-cv/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Файла уç @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Кăтарт + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Тӗплӗнрех Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Чĕлхе Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-cy/strings.xml b/res/values-cy/strings.xml index 331ce3574..1dad3da78 100644 --- a/res/values-cy/strings.xml +++ b/res/values-cy/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Agor ffeil... @@ -39,6 +39,8 @@ Gwall: Methwyd a llwytho\'r erthygl: \"%1$s\". Gwall: Methwyd a llwytho\'r erthygl: (Url: %1$s). Golwg + Lefel pellhau + Lefel pellhau Otomatig Bach @@ -47,6 +49,8 @@ Gwybodaeth Fersiwn + Rheolaeth pellter + Arddangos botwm chwyddo yn y gornel dde ar waelod y sgrîn. Modd nos Dangos erthyglau gyda lliwiau croes Nôl i\'r brig @@ -54,5 +58,6 @@ Rhannwch drwy Iaith Dewis iaith + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml index 80efd8dc8..e070dd230 100644 --- a/res/values-da/strings.xml +++ b/res/values-da/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Åbn fil... @@ -39,6 +39,8 @@ Fejl: Indlæsning af artikel \"%1$s\" mislykkedes. Fejl: Indlæsning af artikel (Url: %1$s) mislykkedes. Vis + Zoom-niveau + Zoom-niveau Automatisk Lille @@ -47,6 +49,8 @@ Information Version + Zoom kontrol + Få vist en zoom-knap i skærmens nederste højre hjørne Nat-tilstand Vis artikler med inverterede farver Tilbage til toppen @@ -54,5 +58,6 @@ Del via... Sprog Vælg et sprog + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml index 43380590d..d7109affe 100644 --- a/res/values-de/strings.xml +++ b/res/values-de/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Datei öffnen … @@ -39,6 +39,8 @@ Fehler: Das Laden des Artikels \"%1$s\" ist fehlgeschlagen. Fehler: Das Laden des Artikels (URL: %1$s) ist fehlgeschlagen. Bildschirm + Vergrößerungsstufe + Vergrößerungsstufe Automatisch Klein @@ -47,6 +49,8 @@ Information Version + Zoom-Steuerung + Einen Zoombutton in der rechten unteren Ecke anzeigen Nachtmodus Artikel mit umgekehrten Farben ansehen Zurück nach oben @@ -54,5 +58,6 @@ Teilen über … Sprache Eine Sprache auswählen + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-el/strings.xml b/res/values-el/strings.xml index a7cbaf117..abe010d04 100644 --- a/res/values-el/strings.xml +++ b/res/values-el/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Άνοιγμα αρχείου... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Εμφάνιση + Zoom level + Zoom level Αυτόματη Μικρό @@ -47,6 +49,8 @@ Πληροφορίες Έκδοση + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Γλώσσα Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-eo/strings.xml b/res/values-eo/strings.xml index cbb66e9bf..8f584a692 100644 --- a/res/values-eo/strings.xml +++ b/res/values-eo/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Malfermi dosieron... @@ -39,6 +39,8 @@ Eraro: Ŝargado de la artikolo \"%1$s\" fiaskis. Eraro: Ŝargado de la artikolo (Url: %1$s) fiaskis. Montri + Zomnivelo + Zomnivelo Aŭtomate Malgranda @@ -47,6 +49,8 @@ Informo Versio + Zomregiloj + Montri zombutonon en la malsupra dekstra ekranangulo Nokta reĝimo Montri artikolojn inverskolore Reiri al Supro @@ -54,5 +58,6 @@ Kundividi per... Lingvo Elektu lingvon + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml index b6693ee5f..8f262bda5 100644 --- a/res/values-es/strings.xml +++ b/res/values-es/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Abrir un archivo… @@ -39,6 +39,8 @@ Error: falló la carga del artículo «%1$s». Error: falló la carga del artículo (URL: %1$s). Mostrar + Nivel de ampliación + Nivel de ampliación Automático Pequeño @@ -47,6 +49,8 @@ Información Versión + Controles de ampliación + Mostrar un botón de ampliación en la esquina inferior derecha de la pantalla Modo nocturno Mostrar artículos con colores invertidos Volver al principio @@ -54,5 +58,6 @@ Compartir a través de... Idioma Elige un idioma + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-et/strings.xml b/res/values-et/strings.xml index 44d8b01be..e9b42e7af 100644 --- a/res/values-et/strings.xml +++ b/res/values-et/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Ava fail... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Vaade + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Teave Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Keel Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-fa/strings.xml b/res/values-fa/strings.xml index 57fb381d7..646973212 100644 --- a/res/values-fa/strings.xml +++ b/res/values-fa/strings.xml @@ -1,4 +1,4 @@ - + Kiwix گشودن پرونده... @@ -39,6 +39,8 @@ حطا: بارگیری مقالهٔ «%1$s» شکست خورد. حطا: بارگیری مقالهٔ (نشانی: %1$s) شکست خورد. نمایش + سطح بزرگ/کوچک‌نمایی + سطح بزرگ/کوچک‌نمایی خودکار کوچک @@ -47,6 +49,8 @@ اطلاعات نسخه + کنترل‌های بزرگ/کوچک‌نمایی + نمایش یک دکمهٔ بزرگ/کوچک‌نمایی در گوشهٔ سمت راست پایین صفحه حالت شبانه نمایش مقاله‌ها با رنگ‌های معکوس‌شده بازگشت به بالای صفحه @@ -54,5 +58,6 @@ اشتراک از طریق... تغییر زبان انتخاب زبان + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-fi/strings.xml b/res/values-fi/strings.xml index c06719feb..f47590c82 100644 --- a/res/values-fi/strings.xml +++ b/res/values-fi/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Avaa tiedosto... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Näytä + Zoom level + Zoom level Automaattinen Pieni @@ -47,6 +49,8 @@ Tiedot Versio + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Takaisin alkuun @@ -54,5 +58,6 @@ Share via Kieli Valitse kieli + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-fo/strings.xml b/res/values-fo/strings.xml index 446de17dd..91f7edf9d 100644 --- a/res/values-fo/strings.xml +++ b/res/values-fo/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Lat upp fílu... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Vís + Zoom level + Zoom level Automatic Lítil @@ -47,6 +49,8 @@ Kunning Versjón + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Mál Vel eitt mál + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml index c82b02e43..e04fce42d 100644 --- a/res/values-fr/strings.xml +++ b/res/values-fr/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Ouvrir un fichier... @@ -39,6 +39,8 @@ Erreur : Échec au chargement de l’article « %1$s ». Erreur : Le chargement de l’article (Url: %1$s) a échoué. Affichage + Niveau de zoom + Niveau de zoom Automatique Faible @@ -47,6 +49,8 @@ Information Version + Contrôles du zoom + Afficher un bouton de zoom dans le coin inférieur droit de l’écran Mode nocturne Afficher les articles en couleurs inversées Retourner au début @@ -54,5 +58,6 @@ Partager via... Langue Choisir une langue + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-gl/strings.xml b/res/values-gl/strings.xml index b6932b60a..04f38a5d7 100644 --- a/res/values-gl/strings.xml +++ b/res/values-gl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Abrir un ficheiro... @@ -39,6 +39,8 @@ Erro: Non se puido cargar o artigo \"%1$s\". Erro: Non se puido cargar o artigo (URL: %1$s). Visualización + Nivel de zoom + Nivel de zoom Automático Pequeno @@ -47,6 +49,8 @@ Información Versión + Controis do zoom + Mostrar un botón de zoom no recuncho inferior dereito da pantalla Modo nocturno Mostrar os artigos coas cores invertidas Volver ao inicio @@ -54,5 +58,6 @@ Compartir a través de... Lingua Escolla unha lingua + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-gu/strings.xml b/res/values-gu/strings.xml index 3897a9d15..8a4958017 100644 --- a/res/values-gu/strings.xml +++ b/res/values-gu/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ફાઇલ ખોલો... @@ -39,6 +39,8 @@ ક્ષતિ: લેખ \"%1$s\" લાવવાનું નિષ્ફળ ગયું. ક્ષતિ: લેખ (Url: %1$s) લાવવાનું નિષ્ફળ થયું. દર્શાવો + Zoom level + Zoom level આપોઆપ નાનો @@ -47,6 +49,8 @@ માહિતી આવૃત્તિ + Zoom controls + Display a zoom button in the screen bottom right corner રાત્રિ સ્થિતિ ઉલ્ટા રંગો વડે લેખો દર્શાવો ટોપ પર પાછા જાઓ @@ -54,5 +58,6 @@ આના વડે વહેંચો... ભાષા ભાષા પસંદ કરો + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-he/strings.xml b/res/values-he/strings.xml index 7c9026316..f949e31b7 100644 --- a/res/values-he/strings.xml +++ b/res/values-he/strings.xml @@ -1,4 +1,4 @@ - + Kiwix פתיחת קובץ... @@ -39,6 +39,8 @@ שגיאה: טעינת הערך \"%1$s\" נכשלה. שגיאה: טעינת הערך נכשלה (כתובת: %1$s). תצוגה + רמת התקריב + רמת התקריב אוטומטי קטן @@ -47,6 +49,8 @@ מידע גרסה + בקרת תקריב + הצגת קפתור תקריב בפינה השמאלית התחתונה של המסך מצב לילה הצגת ערכים עם צבעים הפוכים חזרה למעלה @@ -54,5 +58,6 @@ שיתוף דרך... שפה בחירת שפה + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-hi/strings.xml b/res/values-hi/strings.xml index 5af872564..ac13f8a7f 100644 --- a/res/values-hi/strings.xml +++ b/res/values-hi/strings.xml @@ -1,4 +1,4 @@ - + Kiwix फ़ाइल खोलें... @@ -39,6 +39,8 @@ त्रुटि: आलेख \ " %1$s \" लोड करना विफल रहा। त्रुटि: आलेख (Url: %1$s ) लोड करना विफल रहा। डिस्प्ले + ज़ूम स्तर + ज़ूम स्तर स्वतः लघु @@ -47,6 +49,8 @@ जानकारी संस्करण + ज़ूम नियंत्रण + स्क्रीन के नीचे दायें कोने में ज़ूम बटन दिखाएँ रात्रि मोड उल्टे रंगों के साथ लेख दिखाएँ वापस शीर्ष पे जाएँ @@ -54,5 +58,6 @@ अलग माध्यम से बांटे भाषा भाषा चुनें + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-hr/strings.xml b/res/values-hr/strings.xml index e9268422b..520d31eaf 100644 --- a/res/values-hr/strings.xml +++ b/res/values-hr/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otvori datoteku... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Prikaz + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Informacija Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Jezik Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-hu/strings.xml b/res/values-hu/strings.xml index 2ec351eee..c7410d64c 100644 --- a/res/values-hu/strings.xml +++ b/res/values-hu/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fájl megnyitása... @@ -39,6 +39,8 @@ Hiba: A(z) \"%1$s\" cikk betöltése nem sikerült. Hiba: A(z) (Url: %1$s) cikk betöltése nem sikerült. Megjelenítés + Nagyítási szint + Nagyítási szint Automatikus Kicsi @@ -47,6 +49,8 @@ Információ Verzió + Nagyítási vezérlők + Nagyítás gomb megjelenítése a képernyő jobb alsó sarkában Éjszakai mód Inverz színek használata a cikkek megjelenítéséhez Vissza a lap tetejére @@ -54,5 +58,6 @@ Megosztás ezzel... Nyelv Válassz nyelvet + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ia/strings.xml b/res/values-ia/strings.xml index 57b726588..7c065e6ef 100644 --- a/res/values-ia/strings.xml +++ b/res/values-ia/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Aperir file... @@ -39,6 +39,8 @@ Error: Le cargamento del articulo \"%1$s\" ha fallite. Error: Le cargamento del articulo (Url: %1$s) ha fallite. Visualisation + Nivello de zoom + Nivello de zoom Automatic Micre @@ -47,6 +49,8 @@ Information Version + Controlos de zoom + Monstrar un button de zoom in le angulo inferior dextre del schermo Modo nocturne Monstrar articulos in colores invertite Initio del pagina @@ -54,5 +58,6 @@ Divider via... Lingua Selige un lingua + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-id/strings.xml b/res/values-id/strings.xml index dabdedafa..c9065094e 100644 --- a/res/values-id/strings.xml +++ b/res/values-id/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Buka berkas... @@ -39,6 +39,8 @@ Galat: Pemuatan artikel \"%1$s\" gagal. Galat: Pemuatan artikel (Url: %1$s) gagal. Tampilan + Tingkat perbesaran + Tingkat perbesaran Otomatis Kecil @@ -47,6 +49,8 @@ Informasi Versi + Kontrol perbesaran + Tampilkan tombol perbesaran di sudut kanan bagian bawah layar Modus malam Tampilkan artikel dengan warna terbalik Kembali ke Atas @@ -54,5 +58,6 @@ Berbagi melalui... Bahasa Pilih bahasa + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ie/strings.xml b/res/values-ie/strings.xml index 2e48a2b44..a3933afe9 100644 --- a/res/values-ie/strings.xml +++ b/res/values-ie/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Aperter figura... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Exposition + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Information Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Retro a supra @@ -54,5 +58,6 @@ Share via Lingue Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml index 7844c52d7..a3c466f12 100644 --- a/res/values-it/strings.xml +++ b/res/values-it/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Apri... @@ -39,6 +39,8 @@ Errore: caricamento della voce \"%1$s\" non riuscito. Errore: caricamento della voce (url: %1$s) non riuscito. Visualizza + Livello di zoom + Livello di zoom Automatico Piccolo @@ -47,6 +49,8 @@ Informazioni Versione + Controlli zoom + Visualizza un pulsante di zoom nell\'angolo inferiore destro dello schermo Modalità notte Visualizza le voci con colori invertiti Torna all\'inizio @@ -54,5 +58,6 @@ Condividi tramite... Lingua Scegli la lingua + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml index 907d493eb..c4c328004 100644 --- a/res/values-ja/strings.xml +++ b/res/values-ja/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ファイルを開く... @@ -39,6 +39,8 @@ エラー: 記事「%1$s」を読み込めませんでした。 エラー: 記事 (URL: %1$s) を読み込めませんでした。 表示 + ズーム レベル + ズーム レベル 自動 @@ -47,6 +49,8 @@ 情報 バージョン + ズーム コントロール + 画面右下隅にズーム ボタンを表示する 夜モード 記事を反転色で表示する トップに戻る @@ -54,5 +58,6 @@ Share via 言語 言語を選択 + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-jv/strings.xml b/res/values-jv/strings.xml index a83eaf146..ffdb2cb51 100644 --- a/res/values-jv/strings.xml +++ b/res/values-jv/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Mbukak berkas... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Pajangan + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Informasi Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Basa Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ka/strings.xml b/res/values-ka/strings.xml index ef7df41a0..7e5109d5a 100644 --- a/res/values-ka/strings.xml +++ b/res/values-ka/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ფაილის გახსნა... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. ჩვენება + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ ინფორმაცია Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via ენა Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-km/strings.xml b/res/values-km/strings.xml index cbdc0b88b..378a3793e 100644 --- a/res/values-km/strings.xml +++ b/res/values-km/strings.xml @@ -1,4 +1,4 @@ - + Kiwix បើកឯកសារ... @@ -39,6 +39,8 @@ កំហុស៖ ទាញយកអត្ថបទ \"%1$s\" បានបរាជ័យ។ កំហុស៖ ទាញយកអត្ថបទ (Url: %1$s) បានបរាជ័យ។ ការ​បង្ហាញ + កម្រិត​ពង្រីក​បង្រួម + កម្រិត​ពង្រីក​បង្រួម Automatic Small @@ -47,6 +49,8 @@ ព័ត៌មាន កំណែ + Zoom controls + Display a zoom button in the screen bottom right corner ម៉ូដអានពេលយប់ បង្ហាញអត្ថបទជាមួយនឹងពណ៌ដើម ត្រឡប់ទៅលើ @@ -54,5 +58,6 @@ ចែក​រំលែក​តាម... ភាសា​ Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-kn/strings.xml b/res/values-kn/strings.xml index 282c8b2e6..b01f9023f 100644 --- a/res/values-kn/strings.xml +++ b/res/values-kn/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ಕಡತವನ್ನು ಉದ್ಘಾಟಿಸಿ... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. ಪ್ರದರ್ಶಿಸು + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ ಮಾಹಿತಿ Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via ಭಾಷೆ Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml index f90a85017..c7b454e65 100644 --- a/res/values-ko/strings.xml +++ b/res/values-ko/strings.xml @@ -1,4 +1,4 @@ - + Kiwix 파일 열기... @@ -39,6 +39,8 @@ 오류: \"%1$s\" 문서를 불러오는 데 실패했습니다. 오류: 문서(Url: %1$s)를 불러오는 데 실패했습니다. 보기 + 확대/축소 수준 + 확대/축소 수준 자동 작게 @@ -47,6 +49,8 @@ 정보 버전 + 확대 컨트롤 + 화면 아래 오른쪽 모서리에 있는 확대 버튼을 보여줍니다 야간 모드 되돌린 색으로 문서를 보여줍니다 맨 위로 돌아가기 @@ -54,5 +58,6 @@ ...을 통해 공유 언어 언어 선택 + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ky/strings.xml b/res/values-ky/strings.xml index 5d759d086..104db2881 100644 --- a/res/values-ky/strings.xml +++ b/res/values-ky/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Файлды ачуу... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Көрсөтүү + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Маалымат Версия + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Булл аркылуу бөлүшүү... Тил Тилин тандаңыз + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-lb/strings.xml b/res/values-lb/strings.xml index ef175fe9a..8e2bac9e9 100644 --- a/res/values-lb/strings.xml +++ b/res/values-lb/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fichier opmaachen... @@ -39,6 +39,8 @@ Feeler: D\'Luede vum Artikel \"%1$s\" huet net funktionéiert. Feeler: D\'Luede vum Artikel (URL: %1$s) huet net funktionéiert. Ausgesinn + Niveau vum Zoom + Niveau vum Zoom Automatesch Kleng @@ -47,6 +49,8 @@ Informatioun Versioun + Zoom-Steierung + Zoom-Knäppche riets ënnen am Eck vum Schierm uweisen Nuetsmodus Artikelen an invertéierte Faarwen weisen Zréck no uewen @@ -54,5 +58,6 @@ Deelen iwwer ... Sprooch Sicht eng Sprooch eraus + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-li/strings.xml b/res/values-li/strings.xml index 628851876..c517a5478 100644 --- a/res/values-li/strings.xml +++ b/res/values-li/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Besjtand äöpene... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Bild + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Infermasie Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Sjpraok Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-lt/strings.xml b/res/values-lt/strings.xml index d214c955b..78a51a1b7 100644 --- a/res/values-lt/strings.xml +++ b/res/values-lt/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Atidaryti failą... @@ -39,6 +39,8 @@ Klaida: nepavyko įkelti straipsnio \"%1$s\" . Klaida: nepavyko įkelti straipsnio (Url: %1$s). Rodyti + Mastelio keitimo lygis + Mastelio keitimo lygis Automatinis Mažas @@ -47,6 +49,8 @@ Informacija Versija + Mastelio keitimo kontrolė + Rodyti mastelio keitimo mygtuką ekrano dešiniajame apatiniame kampe Naktinis režimas Rodyti straipsnius su ankstesnėmis spalvomis Atgal į viršų @@ -54,5 +58,6 @@ Dalintis per... Kalba Pasirinkite kalbą + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-lv/strings.xml b/res/values-lv/strings.xml index ceb391a18..b337347a4 100644 --- a/res/values-lv/strings.xml +++ b/res/values-lv/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Atvērt failu... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Displejs + Zoom level + Zoom level Automātiskā Mazs @@ -47,6 +49,8 @@ Informācija Versija + Zoom controls + Display a zoom button in the screen bottom right corner Nakts režīms Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Valoda Izvēlies valodu + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-mg/strings.xml b/res/values-mg/strings.xml index 38fa08915..ef5002a70 100644 --- a/res/values-mg/strings.xml +++ b/res/values-mg/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Hanokatra rakitra @@ -39,6 +39,8 @@ Hadisoana: Tsy nahafahana ilay lahatsoratra "%1$s". Hadisoana: tsy nahafahana ilay lahatsoratra (Url: %1$s). Fiseho + Lentan\'ny zoom + Lentan\'ny zoom Automatic Kely @@ -47,6 +49,8 @@ Fampahalalana Versiona + Famehezana zoom + Aseho amin\'ny sisiny ambany havanan\'ny fikandra ny bokotra zoom Fiseho amin\'ny alina Haneho lahatsoratra amin\'ny loko mivadika Hiverina any an-tampony @@ -54,5 +58,6 @@ Hizara amin\'ny alalan\'i... Tenim-pirenena Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-mk/strings.xml b/res/values-mk/strings.xml index 7f58f8de8..3bf02be3b 100644 --- a/res/values-mk/strings.xml +++ b/res/values-mk/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Отвори податотека... @@ -39,6 +39,8 @@ Грешка: Не успеав да ја вчитам статијата \"%1$s\". Грешка: Не успеав да ја вчитам статијата (URL: %1$s). Приказ + Ниво на приближеност + Ниво на приближеност Автоматски Мал @@ -47,6 +49,8 @@ Информации Верзија + Контроли за размер + Прикажуваај копче за приближување во долниот десен агол Ноќен режим Прикажувај ги статиите во обратни бои Најгоре @@ -54,5 +58,6 @@ Сподели преку... Јазик Изберете јазик + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ml/strings.xml b/res/values-ml/strings.xml index 1c4563da5..283ee49be 100644 --- a/res/values-ml/strings.xml +++ b/res/values-ml/strings.xml @@ -1,4 +1,4 @@ - + Kiwix പ്രമാണം തുറക്കുക... @@ -39,6 +39,8 @@ പിഴവ്: \"%1$s\" - ലോഡ് ചെയ്യൽ പരാജയം പിഴവ്: (Url: %1$s) എന്ന ലേഖനം ലോഡ് ചെയ്യുന്നത് പരാജയപ്പെട്ടു. കാഴ്ച + സൂം നിലവാരം + സൂം നിലവാരം Automatic ചെറുത് @@ -47,6 +49,8 @@ വിവരം പതിപ്പ് + സൂം നിയന്ത്രണങ്ങൾ + സ്ക്രീനിനു താഴെ വലതു മൂലയിലായി ഒരു സൂം ബട്ടൺ കാണിക്കുക രാത്രികാല മോഡ് ലേഖനങ്ങളുടെ നിറം നേർവിപരീതമാക്കുക തിരികെ മുകളിലേക്ക് @@ -54,5 +58,6 @@ ഇതുവഴി പങ്ക് വെയ്ക്കുക ഭാഷ ഭാഷ തിരഞ്ഞെടുക്കുക + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-mn/strings.xml b/res/values-mn/strings.xml index d75b77c41..bb85134e8 100644 --- a/res/values-mn/strings.xml +++ b/res/values-mn/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Файл нээх... @@ -39,6 +39,8 @@ Алдаа: \"%1$s\" нийтлэлийг уншихад алдаа. Алдаа: (Url: %1$s) нийтлэлийг уншихад алдаа. Үзүүлэх + Татах ойр хол + Татах ойр хол Автомат Жижиг @@ -47,6 +49,8 @@ Мэдээлэл Хувилбар + Ойртуулах, холдуулах тохиргоо + Дэлгэцийн баруун доод буланд zoom -ын товч байрлуулах Night mode Нийтлэлийн үсгийн өнгийг эсрэгээр харуулах Хамгийн дээр оч @@ -54,5 +58,6 @@ Хуваалцах сайтууд... Хэл Хэлээ сонгоно уу + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ms/strings.xml b/res/values-ms/strings.xml index 9f3cac646..b736e6e87 100644 --- a/res/values-ms/strings.xml +++ b/res/values-ms/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Buka fail... @@ -39,6 +39,8 @@ Ralat: Rencana \"%1$s\" gagal dimuatkan. Ralat: Rencana (Url: %1$s) gagal dimuatkan. Paparan + Takat zum + Takat zum Automatik Kecil @@ -47,6 +49,8 @@ Maklumat Versi + Kawalan zum + Paparkan butang zum pada sudut kanan bawah skrin Mod malam Paparkan rencana yang diterbalikkan warnanya Kembali ke Atas @@ -54,5 +58,6 @@ Kongsi melalui... Bahasa Pilih bahasa + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-mt/strings.xml b/res/values-mt/strings.xml index fc35cfdeb..d2079c0c6 100644 --- a/res/values-mt/strings.xml +++ b/res/values-mt/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Iftaħ il-fajl... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Viżwal + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Informazzjoni Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Lingwa Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-my/strings.xml b/res/values-my/strings.xml index a2ed83f79..d5a04699e 100644 --- a/res/values-my/strings.xml +++ b/res/values-my/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ဖိုင်ဖွင့်... @@ -39,6 +39,8 @@ အမှားသတိပေးချက် − \"%1$s\" ဆောင်းပါးထည့်သွင်းခြင်း မအောင်မြင်ပါ။ အမှားသတိပေးချက် − (Url: %1$s) ဆောင်းပါးထည့်သွင်းခြင်း မအောင်မြင်ပါ။ မြင်ကွင်း + ချဲ့ကြည့်သည့်အဆင့် + ချဲ့ကြည့်သည့်အဆင့် အလိုအလျောက် သေးသေး @@ -47,6 +49,8 @@ သတင်းအချက်အလက် မူ + ချဲ့ကြည့်ရာတွင် ထိန်းချုပ်မှုများ + ချဲ့ကြည့်သည့်ခလုတ်ကို စကရင်၏ အောက်ခြေ ညာဘက်ထောင့်တွင် ပြပါ။ ညကြည့်ပုံစံ ဆောင်းပါးများကို အရောင်ပြောင်းပြန်သုံး၍ ပြရန် ထိပ်ဆုံးသို့ ပြန်သွားရန် @@ -54,5 +58,6 @@ ဤသည်မှတဆင့် မျှဝေပါ... ဘာသာစကား ဘာသာစကားရွေးချယ်ရန် + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml index 14946271f..44f6b4dcc 100644 --- a/res/values-nb/strings.xml +++ b/res/values-nb/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Åpne fil … @@ -39,6 +39,8 @@ Feil: Kunne ikke laste inn artikkelen \"%1$s\". Feil: Kunne ikke laste inn artikkelen (Url: %1$s). Skjerm + Zoom-nivå + Zoom-nivå Automatisk Liten @@ -47,6 +49,8 @@ Informasjon Versjon + Zoom-kontroller + Vis en zoom-knapp nede til høyre i skjermbildet Nattmodus Vis artikler med inverterte farger Tilbake til toppen @@ -54,5 +58,6 @@ Del via... Språk Velg et språk + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ne/strings.xml b/res/values-ne/strings.xml index 7171b7b94..d23f6601b 100644 --- a/res/values-ne/strings.xml +++ b/res/values-ne/strings.xml @@ -1,4 +1,4 @@ - + Kiwix फाइल खोल्ने @@ -39,6 +39,8 @@ त्रुटी: लेख \"%1$s\" खोल्न असफल भयो। त्रुटी: लेख खोल्न असफल । (Url: %1$s) दृश्य + जुम स्तर + जुम स्तर Automatic सानो @@ -47,6 +49,8 @@ जानकारी संस्करण + जुम नियन्त्रणहरू + स्क्रिनको निम्न दाहिने कुनामा जुम बटन देखाउने रात्री मूड उल्ट्याइएको रङका लेखहरू देखाउने सुरुमा जानुहोस् @@ -54,5 +58,6 @@ सझेदारी गर्ने माध्यम भाषा भाषा चुन्ने + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml index 34a017fd6..649c286e7 100644 --- a/res/values-nl/strings.xml +++ b/res/values-nl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Bestand openen... @@ -39,6 +39,8 @@ Fout: Het laden van de pagina \"%1$s\" is mislukt. Fout: Het laden van de pagina (URL: %1$s) is mislukt. Beeld + Zoomniveau + Zoomniveau Automatisch Klein @@ -47,6 +49,8 @@ Informatie Versie + Besturingselementen voor zoomen + Rechtsonder een zoomknop weergeven Nachtmodus Pagina\'s weergeven met omgekeerde kleuren Terug naar boven @@ -54,5 +58,6 @@ Delen... Taal Taal kiezen + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-nn/strings.xml b/res/values-nn/strings.xml index 94443704a..a21a07b83 100644 --- a/res/values-nn/strings.xml +++ b/res/values-nn/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Åpne fil... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Skjerm + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Informasjon Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Språk Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-oc/strings.xml b/res/values-oc/strings.xml index 9b9c44f99..b722db63a 100644 --- a/res/values-oc/strings.xml +++ b/res/values-oc/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Dobrir un fichièr... @@ -39,6 +39,8 @@ Error : Fracàs al cargament de l’article « %1$s ». Error : Lo cargament de l’article (Url: %1$s) a fracassat. Afichar + Nivèl de zoom + Nivèl de zoom Automatic Pichon @@ -47,6 +49,8 @@ Informacion Version + Contraròtles del zoom + Afichar un boton de zoom dins lo canton inferior drech de l’ecran Mòde nocturne Afichar los articles en colors inversadas Retorn al començament @@ -54,5 +58,6 @@ Partejar via... Lenga Causir una lenga + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-or/strings.xml b/res/values-or/strings.xml index b9b40fd25..8f26bd8be 100644 --- a/res/values-or/strings.xml +++ b/res/values-or/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ଫାଇଲଟି ଖୋଲିବେ... @@ -39,6 +39,8 @@ ଅସୁବିଧା: \"%1$s\" ପ୍ରସଙ୍ଗଟି ଖୋଲିବାରେ ବିଫଳ ହେଲୁ । ଅସୁବିଧା: (Url: %1$s) ପ୍ରସଙ୍ଗ ଖୋଲିବାରେ ବିଫଳ ହେଲୁ । ଦେଖଣା + ଜୁମ ବଢ଼ାଇବା/କମାଇବା + ଜୁମ ବଢ଼ାଇବା/କମାଇବା Automatic ଛୋଟ @@ -47,6 +49,8 @@ ସୂଚନା ସଂସ୍କରଣ + ଜୁମ ବଢ଼ାଇବା/କମାଇବା + ସ୍କ୍ରିନର ତଳେ ଡାହାଣ ପଟେ ଏକ ଜୁମ ବଟନ ଦେଖାଇବେ ରାତି ମୋଡ଼ ରଙ୍ଗର ଓଲଟା କ୍ରମରେ ପ୍ରସଙ୍ଗମାନ ଦେଖାଇବେ ଉପରକୁ ଫେରିବେ @@ -54,5 +58,6 @@ କାହା ଦ୍ୱାରା ବାକିମାନଙ୍କୁ ଜଣାଇବେ... ଭାଷା ଭାଷା ଚୟନ କରନ୍ତୁ + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml index 67ec4bc2c..9124d2155 100644 --- a/res/values-pl/strings.xml +++ b/res/values-pl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otwórz plik... @@ -39,6 +39,8 @@ Błąd: Ładowanie artykułu \ " %1$s \" się nie powiodło. Błąd: Ładowanie artykułu (Url: %1$s ) się nie powiodło. Widok + Poziom powiększenia + Poziom powiększenia Automatycznie Mały @@ -47,6 +49,8 @@ Informacje Wersja + Zarządzanie skali + Wyświetl przycisk skali w prawym rogu ekranu Tryb nocny Pokaż artykuły w trybie nocnym Powrót do góry @@ -54,5 +58,6 @@ Podziel się za pośrednictwem... Język Wybierz język + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ps/strings.xml b/res/values-ps/strings.xml index f3d4c5fc0..978179cce 100644 --- a/res/values-ps/strings.xml +++ b/res/values-ps/strings.xml @@ -1,4 +1,4 @@ - + Kiwix دوتنه پرانيستل... @@ -39,6 +39,8 @@ تېروتنه: ليکنه برسېرېدنه \"%1$s\" نابريالۍ شوه. تېروتنه: ليکنه برسېرېدنه (يو آر ال: %1$s) نابريالئ شوه. ښکارېدنه + لوډېرولو کچه + لوډېرولو کچه اتوماتيک وړوکی @@ -47,6 +49,8 @@ مالومات بڼه + لوډېرولو مهارونې + د لوډېرولو يوه تڼۍ د پردې لانديني ښي گوټ کې ښکاره کول د شپې بڼه رنگ اړول شوې ليکنې ښکاره کول بېرته سر ته @@ -54,5 +58,6 @@ د شريکولو لار ... ژبه يوه ژبه وټاکئ + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml index ebf2cb77f..b836008bc 100644 --- a/res/values-pt/strings.xml +++ b/res/values-pt/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Abrir ficheiro... @@ -39,6 +39,8 @@ Erro com: carregamento do artigo \"%1$s\" falhou. Erro com: carregamento do artigo, ligação (Url: %1$s) falhou. Ver + Nível de Zoom + Nível de Zoom Automático Pouco @@ -47,6 +49,8 @@ Informação Versão + Controlos de Zoom + Exibir o botão de Zoom no canto inferior direito da imagem Modo nocturno Mostrat artigos com cores invetidas Voltar ao Topo @@ -54,5 +58,6 @@ Compartilhar via... Língua Escolha um idioma + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-qu/strings.xml b/res/values-qu/strings.xml index e10da2ca6..1d77ef70c 100644 --- a/res/values-qu/strings.xml +++ b/res/values-qu/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Willañiqita kichariy... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Qhawachiy + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Willay Version + Zoom controls + Display a zoom button in the screen bottom right corner Tuta laya Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Rimay Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-rm/strings.xml b/res/values-rm/strings.xml index 8df1fddfe..78a21dab9 100644 --- a/res/values-rm/strings.xml +++ b/res/values-rm/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Avrir ina datoteca… @@ -39,6 +39,8 @@ Errur: chargiar il artitgel \"%1$s\" n\'a betg funcziunà. Errur: chargiar il artitgel (Url: %1$s) n\'a betg funcziunà. Vista + Nivel da zoom + Nivel da zoom Automatic Small @@ -47,6 +49,8 @@ Infurmaziun Versiun + Controlla d\'il zoom + Mussar in buttun da zoom en il chantun engiu dretg d\'il maletg Modus da notg Mussar artitgels cun colurs invertidas Enavos a l\'entschatta @@ -54,5 +58,6 @@ Parter tras... Lingua Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ro/strings.xml b/res/values-ro/strings.xml index b53c67155..c9127f5a4 100644 --- a/res/values-ro/strings.xml +++ b/res/values-ro/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Deschide un fișier... @@ -39,6 +39,8 @@ 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 + Nivel de zoom Automat Scăzut @@ -47,6 +49,8 @@ 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 Începutul paginii @@ -54,5 +58,6 @@ Distribuire prin... Limbă Alegeți o limbă + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml index 92ac6d3b6..b6e4be738 100644 --- a/res/values-ru/strings.xml +++ b/res/values-ru/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Открыть файл… @@ -39,6 +39,8 @@ Ошибка: Загрузка статьи \«%1$s\» не удалась. Ошибка: Загрузка статьи (Url: %1$s) не удалась. Показать + Уровень масштабирования + Уровень масштабирования Автоматически Маленький @@ -47,6 +49,8 @@ Информация Версия + Управления масштабированием + Отображать кнопку масштабирования в правом нижнем углу экрана Ночной режим Показать статьи в «ночном режиме» Вернуться наверх @@ -54,5 +58,6 @@ Поделиться через… Язык Выберите язык + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-sa/strings.xml b/res/values-sa/strings.xml index 59c050415..7a28fbf4c 100644 --- a/res/values-sa/strings.xml +++ b/res/values-sa/strings.xml @@ -1,4 +1,4 @@ - + Kiwix सञ्चिका उद्घाट्यताम्... @@ -39,6 +39,8 @@ दोषः : \"%1$s\" लेखस्य अवारोपणं विफलम् अभवत् । दोषः : (Url: %1$s) लेखस्य अवारोपणं विफलम् अभवत् । प्रदर्श्यताम् + वीक्षणस्य (zoom) स्तरम् + वीक्षणस्य (zoom) स्तरम् Automatic लघु @@ -47,6 +49,8 @@ सूचना संस्करणम् + वीक्षण(zoom)नियन्त्रकानि + पटलस्य दक्षिणविभागे अधः वीक्षणकुड्णलं (zoom button) स्थापयतु रात्र्यवस्था विपरितरङ्गैः लेखः दृश्यताम् साक्षात् उपरि गच्छतु @@ -54,5 +58,6 @@ द्वारा विभज्यताम्.... भाषा Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-sh/strings.xml b/res/values-sh/strings.xml index 174c1996e..8dce820cd 100644 --- a/res/values-sh/strings.xml +++ b/res/values-sh/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otvori datoteku... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Prikaži + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Informacija Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Jezik Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-si/strings.xml b/res/values-si/strings.xml index fb5bf3589..ed3bbfc1f 100644 --- a/res/values-si/strings.xml +++ b/res/values-si/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ගොනුව විවෘත කරන්න... @@ -39,6 +39,8 @@ දෝෂය: \"%1$s\" ලිපිය පූරණය වීම අසාර්ථකයි. දෝෂය: (Url: %1$s) ලිපිය පූරණය වීම අසාර්ථකයි. පෙන්වීම + විශාලන මට්ටම + විශාලන මට්ටම ස්වයංක්‍රීය කුඩා @@ -47,6 +49,8 @@ තොරතුරු අනුවාදය + විශාලන පාලක + තිරයේ පහළ දකුණු කෙළවර විශාලන බොත්තමක් පෙන්වන්න රාත්‍රී ආකාරය ප්‍රතිවර්තිත වර්ණ සමග ලිපි පෙන්වන්න නැවත උඩට @@ -54,5 +58,6 @@ මගින් හුවමාරු කරන්න... භාෂාව භාෂාවක් තෝරාගන්න + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-sk/strings.xml b/res/values-sk/strings.xml index db19de763..d4970a3b8 100644 --- a/res/values-sk/strings.xml +++ b/res/values-sk/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Otvoriť súbor... @@ -39,6 +39,8 @@ Chyba: Načítavanie článku \"%1$s\" sa nepodarilo. Chyba: Načítavanie článku (Url: %1$s) sa nepodarilo. Zobrazenie + Úroveň lupy + Úroveň lupy Automaticky Malé @@ -47,6 +49,8 @@ Informácie Verzia + Ovládanie prvky lupy + Zobraziť tlačidlo lupy na obrazovke v dolnom pravom rohu. Nočný režim Zobraziť články s otočenými farbami Späť na začiatok @@ -54,5 +58,6 @@ Zdielať cez... Jazyk Zvoliť jazyk + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-sl/strings.xml b/res/values-sl/strings.xml index 2563d79bf..59ae5b509 100644 --- a/res/values-sl/strings.xml +++ b/res/values-sl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Odpri datoteko ... @@ -39,6 +39,8 @@ Napaka: Nalaganje članka \"%1$s\" je spodletelo. Napaka: nalaganje članka (url: %1$s) ni uspelo. Prikaz + Raven zumiranja + Raven zumiranja Samodejno Majhno @@ -47,6 +49,8 @@ Informacije Različica + Kontrolniki zumiranja + V spodnjem desnem vogalu zaslona prikaži gumb za zumiranje Nočni način Prikaz člankov z obrnjenimi barvami Nazaj na vrh @@ -54,5 +58,6 @@ Deli na ... Jezik Izberite jezik + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-so/strings.xml b/res/values-so/strings.xml index d2a7c1eeb..607058474 100644 --- a/res/values-so/strings.xml +++ b/res/values-so/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fur galka @@ -39,6 +39,8 @@ Qalad: Galinta maqaalka \"%1$s\" waa lagu fashilmay. Qalad: Galinta maqaalka (Url: %1$s) ma galin. Qaab aragga + Heelka weynaynta + Heelka weynaynta Talantaali Yar @@ -47,6 +49,8 @@ Macluumaad Nuqul + Weynayn hagista + Batoonka Muuq weyneeyaha ee xagasha midig hoose ee shaashadda Habka habeenkii Show articles with reverted colors Ku laabo kor @@ -54,5 +58,6 @@ La wadaag dhanka... Luqad Dooro luqad + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-sq/strings.xml b/res/values-sq/strings.xml index 19aa08cdb..0351dfa8b 100644 --- a/res/values-sq/strings.xml +++ b/res/values-sq/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Hap dosjen @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Shfaq + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Informacione Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Gjuha Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-su/strings.xml b/res/values-su/strings.xml index e8cc6b761..2678f9a12 100644 --- a/res/values-su/strings.xml +++ b/res/values-su/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Buka berkas... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Panémbong + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Émbaran Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Basa Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-sv/strings.xml b/res/values-sv/strings.xml index 06f96b43e..cead61d3a 100644 --- a/res/values-sv/strings.xml +++ b/res/values-sv/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Öppna fil... @@ -39,6 +39,8 @@ Fel: Kunde inte läsa in artikeln \"%1$s\". Fel: Inläsning av artikel (url: %1$s) misslyckades. Visa + Zoomnivå + Zoomnivå Automatiskt Liten @@ -47,6 +49,8 @@ Information Version + Zoomkontrollerna + Visa en zoomknapp längst ned i det högra hörnet på skärmen Nattläge Visa artiklar med inverterade färger Tillbaka till toppen @@ -54,5 +58,6 @@ Dela via... Språk Välj ett språk + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-sw/strings.xml b/res/values-sw/strings.xml index 6a6f9aaf0..13febad58 100644 --- a/res/values-sw/strings.xml +++ b/res/values-sw/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Fungua faili ... @@ -39,6 +39,8 @@ Hitilafu: Upakuzi wa makala umefeli \"%1$s\" Hitilafu:Upakiaji wa makala umefeli (Url: %1$s) Onesha + Kiwango cha ukuzi + Kiwango cha ukuzi otomatiki ndogo @@ -47,6 +49,8 @@ Maarifa Toleo + Vidhibiti vya ukuzi + Onyesha kidude cha ukuzi katika sehemu ya kona ya kulia kwenye skrini Hali ya Usiku Onyesha makala yakiwa na rangi kubatilishwa Rudi kwenye kichwa cha ukurasa @@ -54,5 +58,6 @@ Shiriki kupitia... Lugha Chagua lugha + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ta/strings.xml b/res/values-ta/strings.xml index 619c0ce55..026e46642 100644 --- a/res/values-ta/strings.xml +++ b/res/values-ta/strings.xml @@ -1,4 +1,4 @@ - + Kiwix கோப்பை திறக்கவும்... @@ -39,6 +39,8 @@ பிழை: \"%1$s\" கட்டுரையை ஏற்றித்துவங்க தவறிவிட்டது பிழை: (Url: %1$s) கட்டுரையை ஏற்றித்துவங்க தவறிவிட்டது காண்பி + உரு அளவு நிலை + உரு அளவு நிலை தன்னியக்கம் சிறிய @@ -47,6 +49,8 @@ தகவல் பதிப்பு + உரு அளவு கட்டுப்படுத்திகள் + உரு அளவு மாற்றும் பொத்தானை, திரையின் வலப்புற கீழ்ப்பகுதியில், தெரியும்படி வை இரவுத்தோற்றம் கட்டுரைகளை தலைகீழ் நிறங்களில் காண்பி மேலே செல்லவும் @@ -54,5 +58,6 @@ இவ்வழியாக பகிர்.... மொழி மொழியைத் தேர்ந்தெடு + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-te/strings.xml b/res/values-te/strings.xml index 76cf82578..d11253f18 100644 --- a/res/values-te/strings.xml +++ b/res/values-te/strings.xml @@ -1,4 +1,4 @@ - + Kiwix దస్త్రాన్ని తెరువు... @@ -39,6 +39,8 @@ దోషం : \"%1$s\" వ్యాసం లోడ్ చెయ్యడం విఫలమయింది. దోషం : వ్యాసం (Url: %1$s) ను లోడ్ చెయ్యడం విఫలమయింది. వీక్షణం + అతిరూపణ స్థాయి + అతిరూపణ స్థాయి స్వయంచాలితం చిన్న @@ -47,6 +49,8 @@ సమాచారం సంచిక + అతిరూపణ నియంత్రణలు + అతిరూపణ బొత్తమును స్క్రీనుకు కింద కుడి మూలన చూపండి చీకటి రీతి వ్యాసాలను వ్యతిరేక రంగులలో చూపించు తిరిగి పైకి @@ -54,5 +58,6 @@ పంచుకోండి ... భాష భాషను ఎంచుకోండి + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-th/strings.xml b/res/values-th/strings.xml index e5ee96314..e811d8ecc 100644 --- a/res/values-th/strings.xml +++ b/res/values-th/strings.xml @@ -1,4 +1,4 @@ - + Kiwix เปิดแฟ้ม... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. แสดงผล + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ ข้อมูล Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via ภาษา Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-tl/strings.xml b/res/values-tl/strings.xml index 468592375..dd51db61c 100644 --- a/res/values-tl/strings.xml +++ b/res/values-tl/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Buksan ang talaksan... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Palitawin + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Kabatiran Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Bumalik sa itaas @@ -54,5 +58,6 @@ Share via Wika Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-tr/strings.xml b/res/values-tr/strings.xml index 0c6c9abe4..378501d3f 100644 --- a/res/values-tr/strings.xml +++ b/res/values-tr/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Dosya aç... @@ -39,6 +39,8 @@ Hata: \"%1$s\" makalesinin yüklemesi başarısız oldu. Hata: (Url: %1$s) makalesinin yüklemesi başarısız. Göster + Zum seviyesi + Zum seviyesi Otomatik Küçük @@ -47,6 +49,8 @@ Bilgi Sürüm + Zum kontrolleri + Ekranın sağ alt köşesinde bir zum butonu görüntüle Gece modu Makaleleri dönüştürülmüş renklerle göster Başa dön @@ -54,5 +58,6 @@ Üzerinden paylaşın... Dil Bir dil seçin + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-uk/strings.xml b/res/values-uk/strings.xml index 904ea0a93..588c43cf5 100644 --- a/res/values-uk/strings.xml +++ b/res/values-uk/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Відкрити файл ... @@ -39,6 +39,8 @@ Помилка: завантаження статті \"%1$s\" не вдалося. Помилка: завантаження статті (Url: %1$s) не вдалося. Показати + Рівень масштабування + Рівень масштабування Автоматично Малий @@ -47,6 +49,8 @@ Інформація Версія + Управління масштабом + Відображати кнопку масштаб у нижньому правому куті екрану Нічний режим Показати статті з повернутими кольорами Наверх @@ -54,5 +58,6 @@ Поділитися через… Мова Оберіть мову + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-ur/strings.xml b/res/values-ur/strings.xml index 9b179468d..28339722c 100644 --- a/res/values-ur/strings.xml +++ b/res/values-ur/strings.xml @@ -1,4 +1,4 @@ - + Kiwix ملف کھولیں @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. تظاہرہ + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ معلومات Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via زبان Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-uz/strings.xml b/res/values-uz/strings.xml index a769b774c..a3a55b4c6 100644 --- a/res/values-uz/strings.xml +++ b/res/values-uz/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Faylni ochish... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Koʻrsatish + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Axborot Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Til Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-vi/strings.xml b/res/values-vi/strings.xml index e1b9f8192..5a2a0387d 100644 --- a/res/values-vi/strings.xml +++ b/res/values-vi/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Mở Tập tin… @@ -39,6 +39,8 @@ Lỗi: Thất bại khi tải bài viết “%1$s”. Lỗi: Việc tải bài (URL: %1$s) bị thất bại. Hiển thị + Mức thu phóng + Mức thu phóng Tự động Nhỏ @@ -47,6 +49,8 @@ Thông tin Phiên bản + Điều khiển thu phóng + Hiện nút thu phóng ở góc phải bên dưới của màn hình Chế độ ban đêm Đảo ngược màu sắc trong bài Trở lên Đầu trang @@ -54,5 +58,6 @@ Chia sẻ qua… Ngôn ngữ Chọn ngôn ngữ + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-yi/strings.xml b/res/values-yi/strings.xml index 6d724e950..05047ac6d 100644 --- a/res/values-yi/strings.xml +++ b/res/values-yi/strings.xml @@ -1,4 +1,4 @@ - + Kiwix עפֿענען טעקע… @@ -39,6 +39,8 @@ טעות: לאדן ארטיקל \"%1$s\" דורגעפאלן. טעות: לאדן ארטיקל (Url: %1$s) דורכגעפאלן. אויסשטעלונג + פארגרעסערונג ניווא + פארגרעסערונג ניווא אויטאמאטיש קליין @@ -47,6 +49,8 @@ אינפֿארמאציע ווערסיע + Zoom controls + Display a zoom button in the screen bottom right corner נאכטמאדע Show articles with reverted colors צוריק אויבן @@ -54,5 +58,6 @@ טיילן דורך… שפראַך קלויבט א שפראך + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-yo/strings.xml b/res/values-yo/strings.xml index a897206be..d54146db2 100644 --- a/res/values-yo/strings.xml +++ b/res/values-yo/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Ṣí fáìlì... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Ìmúhàn + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Ìfitọ́nilétí Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via Èdè Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values-zh/strings.xml b/res/values-zh/strings.xml index 6034d153b..b85fa1310 100644 --- a/res/values-zh/strings.xml +++ b/res/values-zh/strings.xml @@ -1,4 +1,4 @@ - + Kiwix 打开文件... @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. 显示 + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ 信息 Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,5 +58,6 @@ Share via 语言 Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. - \ No newline at end of file + diff --git a/res/values/strings.xml b/res/values/strings.xml index e9ba37582..65eb53417 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1,4 +1,4 @@ - + Kiwix Open File @@ -39,6 +39,8 @@ Error: Loading article \"%1$s\" failed. Error: Loading article (Url: %1$s) failed. Display + Zoom level + Zoom level Automatic Small @@ -47,6 +49,8 @@ Information Version + Zoom controls + Display a zoom button in the screen bottom right corner Night mode Show articles with reverted colors Back to Top @@ -54,6 +58,7 @@ Share via Language Choose a language + Couldn\'t connect to the internet. The language of this page is not supported, or appropriate language data was not installed. The article may not be properly read. "Could not find an installed application for this type of file" - \ No newline at end of file + diff --git a/res/values/strings_nontranslatable.xml b/res/values/strings_nontranslatable.xml new file mode 100644 index 000000000..56b0e163d --- /dev/null +++ b/res/values/strings_nontranslatable.xml @@ -0,0 +1,9 @@ + + + + small + medium + large + + + \ No newline at end of file diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml index e9d97557f..48dcd4bfb 100644 --- a/res/xml/preferences.xml +++ b/res/xml/preferences.xml @@ -14,12 +14,19 @@ android:summary="@string/pref_backtotop_summary" android:defaultValue="false"/> + + + android:key="pref_zoom" + android:title="@string/pref_zoom_title" + android:summary="@array/pref_zoom_entryvalues" + android:dialogMessage="0" + android:defaultValue="100.0" + android:enabled="false"/> diff --git a/src/org/kiwix/kiwixmobile/KiwixMobileFragment.java b/src/org/kiwix/kiwixmobile/KiwixMobileFragment.java index 5b7e59df5..268720f5c 100644 --- a/src/org/kiwix/kiwixmobile/KiwixMobileFragment.java +++ b/src/org/kiwix/kiwixmobile/KiwixMobileFragment.java @@ -112,13 +112,9 @@ public class KiwixMobileFragment extends SherlockFragment { private static final String PREF_BACKTOTOP = "pref_backtotop"; - private static final String AUTOMATIC = "automatic"; + private static final String PREF_ZOOM = "pref_zoom"; - private static final String MEDIUM = "medium"; - - private static final String SMALL = "small"; - - private static final String LARGE = "large"; + private static final String PREF_ZOOM_ENABLED = "pref_zoom_enabled"; private static final int ZIMFILESELECT_REQUEST_CODE = 1234; @@ -144,9 +140,9 @@ public class KiwixMobileFragment extends SherlockFragment { protected int requestWebReloadOnFinished; - private boolean isBacktotopEnabled; + private boolean mIsBacktotopEnabled; - private SharedPreferences mySharedPreferences; + private SharedPreferences mSharedPreferences; private ArrayAdapter adapter; @@ -160,6 +156,8 @@ public class KiwixMobileFragment extends SherlockFragment { private KiwixTextToSpeech tts; + private boolean mIsZoomEnabled; + @SuppressLint("SetJavaScriptEnabled") @Override public void onCreate(Bundle savedInstanceState) { @@ -173,7 +171,7 @@ public class KiwixMobileFragment extends SherlockFragment { requestWebReloadOnFinished = 0; requestInitAllMenuItems = false; nightMode = false; - isBacktotopEnabled = false; + mIsBacktotopEnabled = false; isFullscreenOpened = false; } @@ -471,7 +469,7 @@ public class KiwixMobileFragment extends SherlockFragment { @Override public void onPageChanged(int page, int maxPages) { - if (isBacktotopEnabled) { + if (mIsBacktotopEnabled) { if (webView.getScrollY() > 200) { if (mBackToTopButton.getVisibility() == View.INVISIBLE) { mBackToTopButton.setText(R.string.button_backtotop); @@ -748,11 +746,17 @@ public class KiwixMobileFragment extends SherlockFragment { public void loadPrefs() { - mySharedPreferences = PreferenceManager.getDefaultSharedPreferences(getActivity()); - boolean nightMode = mySharedPreferences.getBoolean(PREF_NIGHTMODE, false); - isBacktotopEnabled = mySharedPreferences.getBoolean(PREF_BACKTOTOP, false); + mSharedPreferences = PreferenceManager.getDefaultSharedPreferences(getActivity()); + boolean nightMode = mSharedPreferences.getBoolean(PREF_NIGHTMODE, false); + mIsBacktotopEnabled = mSharedPreferences.getBoolean(PREF_BACKTOTOP, false); + mIsZoomEnabled = mSharedPreferences.getBoolean(PREF_ZOOM_ENABLED, false); - if (!isBacktotopEnabled) { + if (mIsZoomEnabled) { + int zoomScale = (int) mSharedPreferences.getFloat(PREF_ZOOM, 100.0f); + webView.setInitialScale(zoomScale); + } + + if (!mIsBacktotopEnabled) { mBackToTopButton.setVisibility(View.INVISIBLE); } @@ -1262,20 +1266,6 @@ public class KiwixMobileFragment extends SherlockFragment { view.reload(); } } - -// String viewPortJs = "javascript:" -// + "viewport = document.querySelector(\"meta[name=viewport]\");\n" -// + "\n" -// + "if (!viewport) {\n" -// + " var viewPortTag = document.createElement('meta');\n" -// + " viewPortTag.id = \"viewport\";\n" -// + " viewPortTag.name = \"viewport\";\n" -// + " viewPortTag.content = \"width=device-width, initial-scale=1.0\";\n" -// + " document.getElementsByTagName('head')[0].appendChild(viewPortTag);\n" -// + "\n" -// + "}"; -// -// //webView.loadUrl(viewPortJs); } } } diff --git a/src/org/kiwix/kiwixmobile/settings/SliderPreference.java b/src/org/kiwix/kiwixmobile/settings/SliderPreference.java index ddb3767dd..b31494bbe 100644 --- a/src/org/kiwix/kiwixmobile/settings/SliderPreference.java +++ b/src/org/kiwix/kiwixmobile/settings/SliderPreference.java @@ -6,19 +6,21 @@ import android.content.Context; import android.content.res.TypedArray; import android.preference.DialogPreference; import android.util.AttributeSet; +import android.util.Log; import android.view.View; import android.widget.SeekBar; +import android.widget.TextView; public class SliderPreference extends DialogPreference { - protected final static int SEEKBAR_RESOLUTION = 10000; - - protected float mValue; + protected final static int SEEKBAR_MAX = 300; protected int mSeekBarValue; protected CharSequence[] mSummaries; + private TextView mMessage; + /** * @param context * @param attrs @@ -40,6 +42,10 @@ public class SliderPreference extends DialogPreference { private void setup(Context context, AttributeSet attrs) { setDialogLayoutResource(R.layout.slider_preference_dialog); + updateSummaryText(context, attrs); + } + + public void updateSummaryText(Context context, AttributeSet attrs) { TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.SliderPreference); try { setSummary(a.getTextArray(R.styleable.SliderPreference_android_summary)); @@ -56,14 +62,16 @@ public class SliderPreference extends DialogPreference { @Override protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { - setValue(restoreValue ? getPersistedFloat(mValue) : (Float) defaultValue); + setValue(restoreValue ? getPersistedFloat(mSeekBarValue) : (Float) defaultValue); } @Override public CharSequence getSummary() { if (mSummaries != null && mSummaries.length > 0) { - int index = (int) (mValue * mSummaries.length); - index = Math.min(index, mSummaries.length - 1); + double piece = SEEKBAR_MAX / mSummaries.length; + Log.e("yolol", piece + ""); + int index = (int) (mSeekBarValue / piece); + Log.e("yolol", index + " " + mSeekBarValue); return mSummaries[index]; } else { return super.getSummary(); @@ -91,26 +99,28 @@ public class SliderPreference extends DialogPreference { } public float getValue() { - return mValue; + return mSeekBarValue; } public void setValue(float value) { - value = Math.max(0, Math.min(value, 1)); // clamp to [0, 1] + //value = Math.max(0, Math.min(value, 1)); // clamp to [0, 1] if (shouldPersist()) { persistFloat(value); } - if (value != mValue) { - mValue = value; + if (value != mSeekBarValue) { + mSeekBarValue = (int) value; notifyChanged(); + } } @Override protected View onCreateDialogView() { - mSeekBarValue = (int) (mValue * SEEKBAR_RESOLUTION); View view = super.onCreateDialogView(); + mMessage = (TextView) view.findViewById(R.id.message); + mMessage.setText(String.valueOf(mSeekBarValue)); SeekBar seekbar = (SeekBar) view.findViewById(R.id.slider_preference_seekbar); - seekbar.setMax(SEEKBAR_RESOLUTION); + seekbar.setMax(SEEKBAR_MAX); seekbar.setProgress(mSeekBarValue); seekbar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { @@ -125,7 +135,8 @@ public class SliderPreference extends DialogPreference { @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { if (fromUser) { - SliderPreference.this.mSeekBarValue = progress; + mSeekBarValue = progress; + mMessage.setText(String.valueOf(mSeekBarValue)); } } }); @@ -134,9 +145,8 @@ public class SliderPreference extends DialogPreference { @Override protected void onDialogClosed(boolean positiveResult) { - final float newValue = (float) mSeekBarValue / SEEKBAR_RESOLUTION; - if (positiveResult && callChangeListener(newValue)) { - setValue(newValue); + if (positiveResult && callChangeListener(mSeekBarValue)) { + setValue(mSeekBarValue); } super.onDialogClosed(positiveResult); } From ed5b214095a63d0ce2215054b9196c4387a9c1ce Mon Sep 17 00:00:00 2001 From: Rashiq Date: Thu, 4 Jun 2015 14:33:29 +0200 Subject: [PATCH 05/10] =?UTF-8?q?Minimum=20SDK=20version=20=3D=2014=20?= =?UTF-8?q?=F0=9F=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AndroidManifest.xml | 16 +------- build.gradle | 8 ++-- res/menu/fileselector.xml | 5 ++- res/menu/main.xml | 33 +++++++++-------- res/menu/webview_menu.xml | 7 ++-- res/values/styles.xml | 8 +--- .../CompatFindActionModeCallback.java | 6 +-- .../kiwixmobile/KiwixMobileActivity.java | 17 +++------ .../kiwixmobile/KiwixMobileFragment.java | 35 ++++++++---------- .../kiwixmobile/ZimFileSelectActivity.java | 12 +++--- .../settings/KiwixSettingsActivityGB.java | 37 ------------------- .../settings/KiwixSettingsActivityHC.java | 6 +-- 12 files changed, 65 insertions(+), 125 deletions(-) delete mode 100644 src/org/kiwix/kiwixmobile/settings/KiwixSettingsActivityGB.java diff --git a/AndroidManifest.xml b/AndroidManifest.xml index d58a8ddc6..d244a76a3 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -16,19 +16,15 @@ - - + android:hardwareAccelerated="true" + android:theme="@style/AppStyle"> @@ -90,13 +86,6 @@ - - - diff --git a/build.gradle b/build.gradle index 3c15575f8..2f37015d2 100644 --- a/build.gradle +++ b/build.gradle @@ -6,9 +6,11 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:1.2+' + classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+' } } +apply plugin: 'android-sdk-manager' apply plugin: 'com.android.application' repositories { @@ -16,8 +18,8 @@ repositories { } dependencies { - compile 'com.android.support:support-v4:21.0.3' - compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' + compile 'com.android.support:appcompat-v7:22.2.0' + compile 'com.android.support:support-v4:22.2.0' compile files("$buildDir/native-libs/native-libs.jar") } @@ -27,7 +29,7 @@ android { buildToolsVersion "21.1.2" defaultConfig { - minSdkVersion 9 + minSdkVersion 14 targetSdkVersion 21 } diff --git a/res/menu/fileselector.xml b/res/menu/fileselector.xml index 14edd4f71..05a26b85d 100644 --- a/res/menu/fileselector.xml +++ b/res/menu/fileselector.xml @@ -1,11 +1,12 @@ - + + app:showAsAction="always"/> \ No newline at end of file diff --git a/res/menu/main.xml b/res/menu/main.xml index 6f2e1c200..43a69cd75 100644 --- a/res/menu/main.xml +++ b/res/menu/main.xml @@ -1,94 +1,95 @@ - + + app:showAsAction="ifRoom"/> + app:showAsAction="ifRoom"/> + android:visible="false" + app:showAsAction="always"/> + app:showAsAction="ifRoom"/> + app:showAsAction="ifRoom"/> + app:showAsAction="ifRoom"/> + app:showAsAction="never"/> + app:showAsAction="never"/> + app:showAsAction="never"/> + app:showAsAction="never"/> + app:showAsAction="never"/> + app:showAsAction="never"/> + app:showAsAction="ifRoom"/> + app:showAsAction="never"/> diff --git a/res/menu/webview_menu.xml b/res/menu/webview_menu.xml index d21921207..0d9c3c7cb 100644 --- a/res/menu/webview_menu.xml +++ b/res/menu/webview_menu.xml @@ -14,14 +14,15 @@ limitations under the License. --> - + + app:showAsAction="always"/> + app:showAsAction="always"/> diff --git a/res/values/styles.xml b/res/values/styles.xml index aa4826155..27091bbbf 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -1,12 +1,6 @@ - - - +