From 71f5dc2f7ce5b8183421586e6a77be65040a4dff Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Mon, 1 Jan 2018 23:22:51 -0500 Subject: Format everything and use reified generics --- .../kotlin/ca/allanwang/kau/email/EmailBuilder.kt | 2 +- .../src/main/kotlin/ca/allanwang/kau/kotlin/Zip.kt | 3 +- .../ca/allanwang/kau/kpref/KPrefSingleDelegate.kt | 2 +- .../kotlin/ca/allanwang/kau/swipe/SwipeListener.kt | 2 + .../ca/allanwang/kau/ui/views/RippleCanvas.kt | 2 +- .../kotlin/ca/allanwang/kau/utils/AnimUtils.kt | 21 ++-- .../kotlin/ca/allanwang/kau/utils/FileUtils.kt | 1 - .../kotlin/ca/allanwang/kau/utils/IIconUtils.kt | 3 +- .../kotlin/ca/allanwang/kau/utils/PackageUtils.kt | 9 +- .../ca/allanwang/kau/utils/TransitionUtils.kt | 12 +- .../main/kotlin/ca/allanwang/kau/utils/Utils.kt | 1 - .../kotlin/ca/allanwang/kau/utils/ViewUtils.kt | 60 ++++++---- .../main/kotlin/ca/allanwang/kau/xml/Changelog.kt | 3 +- core/src/main/kotlin/ca/allanwang/kau/xml/FAQ.kt | 3 +- .../res-public/values-de-rDE/strings_commons.xml | 130 ++++++++++----------- .../res-public/values-es-rES/strings_commons.xml | 130 ++++++++++----------- .../res-public/values-fr-rFR/strings_commons.xml | 130 ++++++++++----------- .../res-public/values-gl-rES/strings_commons.xml | 130 ++++++++++----------- .../res-public/values-hu-rHU/strings_commons.xml | 130 ++++++++++----------- .../res-public/values-it-rIT/strings_commons.xml | 130 ++++++++++----------- .../res-public/values-ko-rKR/strings_commons.xml | 122 ++++++++++--------- .../res-public/values-no-rNO/strings_commons.xml | 130 ++++++++++----------- .../res-public/values-pt-rBR/strings_commons.xml | 130 ++++++++++----------- .../res-public/values-vi-rVN/strings_commons.xml | 122 ++++++++++--------- .../res-public/values-zh-rCN/strings_commons.xml | 122 ++++++++++--------- core/src/main/res-public/values/public.xml | 2 +- .../src/main/res-public/values/strings_commons.xml | 3 +- core/src/main/res-public/values/styles.xml | 3 +- .../main/res-public/values/styles_animations.xml | 1 + core/src/main/res/values/attr.xml | 12 +- core/src/main/res/values/ids.xml | 36 +++--- 31 files changed, 799 insertions(+), 788 deletions(-) (limited to 'core/src/main') diff --git a/core/src/main/kotlin/ca/allanwang/kau/email/EmailBuilder.kt b/core/src/main/kotlin/ca/allanwang/kau/email/EmailBuilder.kt index 94a79ab..6576657 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/email/EmailBuilder.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/email/EmailBuilder.kt @@ -60,7 +60,7 @@ class EmailBuilder(val email: String, val subject: String) { .append("\nApp Version Name: ").append(appInfo.versionName) .append("\nApp Version Code: ").append(appInfo.versionCode).append("\n") } catch (e: PackageManager.NameNotFoundException) { - KL.e{"EmailBuilder packageInfo not found"} + KL.e { "EmailBuilder packageInfo not found" } } } diff --git a/core/src/main/kotlin/ca/allanwang/kau/kotlin/Zip.kt b/core/src/main/kotlin/ca/allanwang/kau/kotlin/Zip.kt index cff520f..80cab09 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/kotlin/Zip.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/kotlin/Zip.kt @@ -79,8 +79,7 @@ inline fun Collection<(ZipEmptyCallback) -> Unit>.zip(crossinline onFinished: () */ inline fun Collection<() -> Unit>.zipAsync(crossinline onFinished: () -> Unit) { map { synchronousFun -> - { - callback: ZipEmptyCallback -> + { callback: ZipEmptyCallback -> doAsync { synchronousFun() callback() diff --git a/core/src/main/kotlin/ca/allanwang/kau/kpref/KPrefSingleDelegate.kt b/core/src/main/kotlin/ca/allanwang/kau/kpref/KPrefSingleDelegate.kt index af5c59b..ff08e3c 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/kpref/KPrefSingleDelegate.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/kpref/KPrefSingleDelegate.kt @@ -6,7 +6,7 @@ fun KPref.kprefSingle(key: String) = KPrefSingleDelegate(key, this) /** * Created by Allan Wang on 2017-06-07. - * + * * Singular KPref Delegate for booleans * When the shared pref is not initialized, it will return true then set the pref to false * All subsequent retrievals will be false diff --git a/core/src/main/kotlin/ca/allanwang/kau/swipe/SwipeListener.kt b/core/src/main/kotlin/ca/allanwang/kau/swipe/SwipeListener.kt index 36a4445..3ea62b5 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/swipe/SwipeListener.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/swipe/SwipeListener.kt @@ -6,10 +6,12 @@ interface SwipeListener { * Percent is capped at 1.0, even if there is a slight overscroll for the pages */ fun onScroll(percent: Float, px: Int, edgeFlag: Int) + /** * Invoked when page first consumes the scroll events */ fun onEdgeTouch() + /** * Invoked when scroll percent over the threshold for the first time */ diff --git a/core/src/main/kotlin/ca/allanwang/kau/ui/views/RippleCanvas.kt b/core/src/main/kotlin/ca/allanwang/kau/ui/views/RippleCanvas.kt index f587e60..86aba6e 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/ui/views/RippleCanvas.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/ui/views/RippleCanvas.kt @@ -83,7 +83,7 @@ class RippleCanvas @JvmOverloads constructor( if (callback != null) animator.addListener(object : AnimatorListenerAdapter() { override fun onAnimationCancel(animation: Animator?) = callback() - override fun onAnimationEnd(animation: Animator?) = callback() + override fun onAnimationEnd(animation: Animator?) = callback() }) animator.start() } diff --git a/core/src/main/kotlin/ca/allanwang/kau/utils/AnimUtils.kt b/core/src/main/kotlin/ca/allanwang/kau/utils/AnimUtils.kt index 5cef0ac..a287cf2 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/utils/AnimUtils.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/utils/AnimUtils.kt @@ -18,7 +18,8 @@ import android.widget.TextView */ @SuppressLint("NewApi") -@KauUtils fun View.circularReveal(x: Int = 0, y: Int = 0, offset: Long = 0L, radius: Float = -1.0f, duration: Long = 500L, onStart: (() -> Unit)? = null, onFinish: (() -> Unit)? = null) { +@KauUtils +fun View.circularReveal(x: Int = 0, y: Int = 0, offset: Long = 0L, radius: Float = -1.0f, duration: Long = 500L, onStart: (() -> Unit)? = null, onFinish: (() -> Unit)? = null) { if (!isAttachedToWindow) { onStart?.invoke() visible() @@ -45,7 +46,8 @@ import android.widget.TextView } @SuppressLint("NewApi") -@KauUtils fun View.circularHide(x: Int = 0, y: Int = 0, offset: Long = 0L, radius: Float = -1.0f, duration: Long = 500L, onStart: (() -> Unit)? = null, onFinish: (() -> Unit)? = null) { +@KauUtils +fun View.circularHide(x: Int = 0, y: Int = 0, offset: Long = 0L, radius: Float = -1.0f, duration: Long = 500L, onStart: (() -> Unit)? = null, onFinish: (() -> Unit)? = null) { if (!isAttachedToWindow) { onStart?.invoke() invisible() @@ -72,7 +74,8 @@ import android.widget.TextView anim.start() } -@KauUtils fun View.fadeIn(offset: Long = 0L, duration: Long = 200L, onStart: (() -> Unit)? = null, onFinish: (() -> Unit)? = null) { +@KauUtils +fun View.fadeIn(offset: Long = 0L, duration: Long = 200L, onStart: (() -> Unit)? = null, onFinish: (() -> Unit)? = null) { if (!isAttachedToWindow) { onStart?.invoke() visible() @@ -93,7 +96,8 @@ import android.widget.TextView startAnimation(anim) } -@KauUtils fun View.fadeOut(offset: Long = 0L, duration: Long = 200L, onStart: (() -> Unit)? = null, onFinish: (() -> Unit)? = null) { +@KauUtils +fun View.fadeOut(offset: Long = 0L, duration: Long = 200L, onStart: (() -> Unit)? = null, onFinish: (() -> Unit)? = null) { if (!isAttachedToWindow) { onStart?.invoke() invisible() @@ -117,13 +121,16 @@ import android.widget.TextView startAnimation(anim) } -@KauUtils fun TextView.setTextWithFade(text: String, duration: Long = 200, onFinish: (() -> Unit)? = null) { +@KauUtils +fun TextView.setTextWithFade(text: String, duration: Long = 200, onFinish: (() -> Unit)? = null) { fadeOut(duration = duration, onFinish = { setText(text) fadeIn(duration = duration, onFinish = onFinish) }) } -@KauUtils fun TextView.setTextWithFade(@StringRes textId: Int, duration: Long = 200, onFinish: (() -> Unit)? = null) = setTextWithFade(context.getString(textId), duration, onFinish) +@KauUtils +fun TextView.setTextWithFade(@StringRes textId: Int, duration: Long = 200, onFinish: (() -> Unit)? = null) = setTextWithFade(context.getString(textId), duration, onFinish) -@KauUtils fun ViewPropertyAnimator.scaleXY(value: Float) = scaleX(value).scaleY(value) \ No newline at end of file +@KauUtils +fun ViewPropertyAnimator.scaleXY(value: Float) = scaleX(value).scaleY(value) \ No newline at end of file diff --git a/core/src/main/kotlin/ca/allanwang/kau/utils/FileUtils.kt b/core/src/main/kotlin/ca/allanwang/kau/utils/FileUtils.kt index 65c28f7..b97f4aa 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/utils/FileUtils.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/utils/FileUtils.kt @@ -1,6 +1,5 @@ package ca.allanwang.kau.utils -import android.os.Bundle import java.io.File import java.io.InputStream diff --git a/core/src/main/kotlin/ca/allanwang/kau/utils/IIconUtils.kt b/core/src/main/kotlin/ca/allanwang/kau/utils/IIconUtils.kt index 4c71945..a8c710e 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/utils/IIconUtils.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/utils/IIconUtils.kt @@ -11,7 +11,8 @@ import com.mikepenz.iconics.typeface.IIcon /** * Created by Allan Wang on 2017-05-29. */ -@KauUtils fun IIcon.toDrawable(c: Context, sizeDp: Int = 24, @ColorInt color: Int = Color.WHITE, builder: IconicsDrawable.() -> Unit = {}): Drawable { +@KauUtils +fun IIcon.toDrawable(c: Context, sizeDp: Int = 24, @ColorInt color: Int = Color.WHITE, builder: IconicsDrawable.() -> Unit = {}): Drawable { val state = ColorStateList.valueOf(color) val icon = IconicsDrawable(c).icon(this).sizeDp(sizeDp).color(state) icon.builder() diff --git a/core/src/main/kotlin/ca/allanwang/kau/utils/PackageUtils.kt b/core/src/main/kotlin/ca/allanwang/kau/utils/PackageUtils.kt index ebd7161..77750d3 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/utils/PackageUtils.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/utils/PackageUtils.kt @@ -17,7 +17,8 @@ import android.provider.Settings * @param packageName packageId * @return true if installed with activity, false otherwise */ -@KauUtils fun Context.isAppInstalled(packageName: String): Boolean { +@KauUtils +fun Context.isAppInstalled(packageName: String): Boolean { try { packageManager.getPackageInfo(packageName, PackageManager.GET_ACTIVITIES) return true @@ -26,7 +27,8 @@ import android.provider.Settings } } -@KauUtils fun Context.isAppEnabled(packageName: String): Boolean { +@KauUtils +fun Context.isAppEnabled(packageName: String): Boolean { try { return packageManager.getApplicationInfo(packageName, 0).enabled } catch (e: Exception) { @@ -34,7 +36,8 @@ import android.provider.Settings } } -@KauUtils fun Context.showAppInfo(packageName: String) { +@KauUtils +fun Context.showAppInfo(packageName: String) { try { //Open the specific App Info page: val intent = Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS) diff --git a/core/src/main/kotlin/ca/allanwang/kau/utils/TransitionUtils.kt b/core/src/main/kotlin/ca/allanwang/kau/utils/TransitionUtils.kt index 1f4536b..ec206ee 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/utils/TransitionUtils.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/utils/TransitionUtils.kt @@ -23,7 +23,8 @@ class TransitionEndListener(val onEnd: (transition: Transition) -> Unit) : Trans } @RequiresApi(Build.VERSION_CODES.LOLLIPOP) -@KauUtils fun Transition.addEndListener(onEnd: (transition: Transition) -> Unit) { +@KauUtils +fun Transition.addEndListener(onEnd: (transition: Transition) -> Unit) { addListener(TransitionEndListener(onEnd)) } @@ -37,18 +38,21 @@ class SupportTransitionEndListener(val onEnd: (transition: SupportTransition) -> } @RequiresApi(Build.VERSION_CODES.LOLLIPOP) -@KauUtils fun SupportTransition.addEndListener(onEnd: (transition: SupportTransition) -> Unit) { +@KauUtils +fun SupportTransition.addEndListener(onEnd: (transition: SupportTransition) -> Unit) { addListener(SupportTransitionEndListener(onEnd)) } -@KauUtils fun ViewGroup.transitionAuto(builder: AutoTransition.() -> Unit = {}) { +@KauUtils +fun ViewGroup.transitionAuto(builder: AutoTransition.() -> Unit = {}) { if (!buildIsLollipopAndUp) return val transition = AutoTransition() transition.builder() TransitionManager.beginDelayedTransition(this, transition) } -@KauUtils fun ViewGroup.transitionDelayed(@TransitionRes id: Int, builder: android.support.transition.Transition.() -> Unit = {}) { +@KauUtils +fun ViewGroup.transitionDelayed(@TransitionRes id: Int, builder: android.support.transition.Transition.() -> Unit = {}) { if (!buildIsLollipopAndUp) return val transition = TransitionInflater.from(context).inflateTransition(id) transition.builder() diff --git a/core/src/main/kotlin/ca/allanwang/kau/utils/Utils.kt b/core/src/main/kotlin/ca/allanwang/kau/utils/Utils.kt index 8b32894..9a70ae7 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/utils/Utils.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/utils/Utils.kt @@ -6,7 +6,6 @@ import android.graphics.Bitmap import android.graphics.Canvas import android.graphics.drawable.BitmapDrawable import android.graphics.drawable.Drawable -import android.os.Bundle import android.os.Handler import android.os.Looper import android.support.annotation.IntRange diff --git a/core/src/main/kotlin/ca/allanwang/kau/utils/ViewUtils.kt b/core/src/main/kotlin/ca/allanwang/kau/utils/ViewUtils.kt index f6a541b..1946dbc 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/utils/ViewUtils.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/utils/ViewUtils.kt @@ -72,11 +72,13 @@ fun View.snackbar(text: String, duration: Int = Snackbar.LENGTH_LONG, builder: S fun View.snackbar(@StringRes textId: Int, duration: Int = Snackbar.LENGTH_LONG, builder: Snackbar.() -> Unit = {}) = snackbar(context.string(textId), duration, builder) -@KauUtils fun TextView.setTextIfValid(@StringRes id: Int) { +@KauUtils +fun TextView.setTextIfValid(@StringRes id: Int) { if (id > 0) text = context.string(id) } -@KauUtils fun ImageView.setIcon(icon: IIcon?, sizeDp: Int = 24, @ColorInt color: Int = Color.WHITE, builder: IconicsDrawable.() -> Unit = {}) { +@KauUtils +fun ImageView.setIcon(icon: IIcon?, sizeDp: Int = 24, @ColorInt color: Int = Color.WHITE, builder: IconicsDrawable.() -> Unit = {}) { if (icon == null) return setImageDrawable(icon.toDrawable(context, sizeDp = sizeDp, color = color, builder = builder)) } @@ -87,42 +89,50 @@ fun FloatingActionButton.showIf(show: Boolean) = if (show) show() else hide() fun FloatingActionButton.hideIf(hide: Boolean) = if (hide) hide() else show() -@KauUtils fun ViewGroup.inflate(layoutId: Int, attachToRoot: Boolean = false): View = LayoutInflater.from(context).inflate(layoutId, this, attachToRoot) +@KauUtils +fun ViewGroup.inflate(layoutId: Int, attachToRoot: Boolean = false): View = LayoutInflater.from(context).inflate(layoutId, this, attachToRoot) /** * Set left margin to a value in px */ -@KauUtils fun View.setMarginLeft(margin: Int) = setMargins(margin, KAU_LEFT) +@KauUtils +fun View.setMarginLeft(margin: Int) = setMargins(margin, KAU_LEFT) /** * Set top margin to a value in px */ -@KauUtils fun View.setMarginTop(margin: Int) = setMargins(margin, KAU_TOP) +@KauUtils +fun View.setMarginTop(margin: Int) = setMargins(margin, KAU_TOP) /** * Set right margin to a value in px */ -@KauUtils fun View.setMarginRight(margin: Int) = setMargins(margin, KAU_RIGHT) +@KauUtils +fun View.setMarginRight(margin: Int) = setMargins(margin, KAU_RIGHT) /** * Set bottom margin to a value in px */ -@KauUtils fun View.setMarginBottom(margin: Int) = setMargins(margin, KAU_BOTTOM) +@KauUtils +fun View.setMarginBottom(margin: Int) = setMargins(margin, KAU_BOTTOM) /** * Set left and right margins to a value in px */ -@KauUtils fun View.setMarginHorizontal(margin: Int) = setMargins(margin, KAU_HORIZONTAL) +@KauUtils +fun View.setMarginHorizontal(margin: Int) = setMargins(margin, KAU_HORIZONTAL) /** * Set top and bottom margins to a value in px */ -@KauUtils fun View.setMarginVertical(margin: Int) = setMargins(margin, KAU_VERTICAL) +@KauUtils +fun View.setMarginVertical(margin: Int) = setMargins(margin, KAU_VERTICAL) /** * Set all margins to a value in px */ -@KauUtils fun View.setMargin(margin: Int) = setMargins(margin, KAU_ALL) +@KauUtils +fun View.setMargin(margin: Int) = setMargins(margin, KAU_ALL) /** * Base margin setter @@ -142,37 +152,44 @@ fun FloatingActionButton.hideIf(hide: Boolean) = if (hide) hide() else show() /** * Set left padding to a value in px */ -@KauUtils fun View.setPaddingLeft(padding: Int) = setPadding(padding, KAU_LEFT) +@KauUtils +fun View.setPaddingLeft(padding: Int) = setPadding(padding, KAU_LEFT) /** * Set top padding to a value in px */ -@KauUtils fun View.setPaddingTop(padding: Int) = setPadding(padding, KAU_TOP) +@KauUtils +fun View.setPaddingTop(padding: Int) = setPadding(padding, KAU_TOP) /** * Set right padding to a value in px */ -@KauUtils fun View.setPaddingRight(padding: Int) = setPadding(padding, KAU_RIGHT) +@KauUtils +fun View.setPaddingRight(padding: Int) = setPadding(padding, KAU_RIGHT) /** * Set bottom padding to a value in px */ -@KauUtils fun View.setPaddingBottom(padding: Int) = setPadding(padding, KAU_BOTTOM) +@KauUtils +fun View.setPaddingBottom(padding: Int) = setPadding(padding, KAU_BOTTOM) /** * Set left and right padding to a value in px */ -@KauUtils fun View.setPaddingHorizontal(padding: Int) = setPadding(padding, KAU_HORIZONTAL) +@KauUtils +fun View.setPaddingHorizontal(padding: Int) = setPadding(padding, KAU_HORIZONTAL) /** * Set top and bottom padding to a value in px */ -@KauUtils fun View.setPaddingVertical(padding: Int) = setPadding(padding, KAU_VERTICAL) +@KauUtils +fun View.setPaddingVertical(padding: Int) = setPadding(padding, KAU_VERTICAL) /** * Set all padding to a value in px */ -@KauUtils fun View.setPadding(padding: Int) = setPadding(padding, KAU_ALL) +@KauUtils +fun View.setPadding(padding: Int) = setPadding(padding, KAU_ALL) /** * Base padding setter @@ -186,19 +203,22 @@ fun FloatingActionButton.hideIf(hide: Boolean) = if (hide) hide() else show() ) } -@KauUtils fun View.hideKeyboard() { +@KauUtils +fun View.hideKeyboard() { clearFocus() (context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager).hideSoftInputFromWindow(windowToken, 0) } -@KauUtils fun View.showKeyboard() { +@KauUtils +fun View.showKeyboard() { requestFocus() (context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager).showSoftInput(this, InputMethodManager.SHOW_IMPLICIT) } @RequiresApi(Build.VERSION_CODES.LOLLIPOP) -@KauUtils fun View.setRippleBackground(@ColorInt foregroundColor: Int, @ColorInt backgroundColor: Int) { +@KauUtils +fun View.setRippleBackground(@ColorInt foregroundColor: Int, @ColorInt backgroundColor: Int) { background = createSimpleRippleDrawable(foregroundColor, backgroundColor) } diff --git a/core/src/main/kotlin/ca/allanwang/kau/xml/Changelog.kt b/core/src/main/kotlin/ca/allanwang/kau/xml/Changelog.kt index 58f1ccc..cbebd55 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/xml/Changelog.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/xml/Changelog.kt @@ -70,8 +70,7 @@ internal class ChangelogAdapter(val items: List>, @C internal fun parse(context: Context, @XmlRes xmlRes: Int): List> { val items = mutableListOf>() - context.resources.getXml(xmlRes).use { - parser: XmlResourceParser -> + context.resources.getXml(xmlRes).use { parser: XmlResourceParser -> var eventType = parser.eventType while (eventType != XmlPullParser.END_DOCUMENT) { if (eventType == XmlPullParser.START_TAG) diff --git a/core/src/main/kotlin/ca/allanwang/kau/xml/FAQ.kt b/core/src/main/kotlin/ca/allanwang/kau/xml/FAQ.kt index 07a0287..f804b70 100644 --- a/core/src/main/kotlin/ca/allanwang/kau/xml/FAQ.kt +++ b/core/src/main/kotlin/ca/allanwang/kau/xml/FAQ.kt @@ -28,8 +28,7 @@ fun Context.kauParseFaq( callback: (items: List) -> Unit) { doAsync { val items = mutableListOf() - resources.getXml(xmlRes).use { - parser: XmlResourceParser -> + resources.getXml(xmlRes).use { parser: XmlResourceParser -> var eventType = parser.eventType var question: Spanned? = null var flag = -1 //-1, 0, 1 -> invalid, question, answer diff --git a/core/src/main/res-public/values-de-rDE/strings_commons.xml b/core/src/main/res-public/values-de-rDE/strings_commons.xml index 2bc2666..015b612 100644 --- a/core/src/main/res-public/values-de-rDE/strings_commons.xml +++ b/core/src/main/res-public/values-de-rDE/strings_commons.xml @@ -1,71 +1,69 @@ - - - - Über diese App - Über %s - Konto hinzufügen - Zurück - Abbrechen - Änderungsprotokoll - Schließen - Kontaktiere uns - Kopieren - Benutzerdefiniert - Dunkel - Standard - Nicht mehr anzeigen - Fertig - Fehler - Beenden - Bist du sicher, dass du die App verlassen möchtest? - Bist du sicher, dass du die App verlassen möchtest? %s? - Glas - Verstanden - Großartig - Verstecken - Hell - Anmelden - Abmelden - Sind Sie sicher, dass Sie als %s abmelden wollen? - Konto verwalten - Vielleicht - Menü - Nein - Keine Ergebnisse gefunden - Keine - Ok - Play Store - Bewerten - Einen Fehler melden - Suchen - Feedback senden - Senden via - Einstellungen - Teilen - Text in Zwischenablage kopiert. - Danke - Huch - Warnung - - %d Tag - %d Tage - - - %d Stunde - %d Stunden - - - %d Minute - %d Minuten - - - %d Sekunde - %d Sekunden - - Ja - Zugriff verweigert + Über diese App + Über %s + Konto hinzufügen + Zurück + Abbrechen + Änderungsprotokoll + Schließen + Kontaktiere uns + Kopieren + Benutzerdefiniert + Dunkel + Standard + Nicht mehr anzeigen + Fertig + Fehler + Beenden + Bist du sicher, dass du die App verlassen möchtest? + Bist du sicher, dass du die App verlassen möchtest? %s? + Glas + Verstanden + Großartig + Verstecken + Hell + Anmelden + Abmelden + Sind Sie sicher, dass Sie als %s abmelden wollen? + Konto verwalten + Vielleicht + Menü + Nein + Keine Ergebnisse gefunden + Keine + Ok + Play Store + Bewerten + Einen Fehler melden + Suchen + Feedback senden + Senden via + Einstellungen + Teilen + Text in Zwischenablage kopiert. + Danke + Huch + Warnung + + %d Tag + %d Tage + + + %d Stunde + %d Stunden + + + %d Minute + %d Minuten + + + %d Sekunde + %d Sekunden + + Ja + Zugriff verweigert diff --git a/core/src/main/res-public/values-es-rES/strings_commons.xml b/core/src/main/res-public/values-es-rES/strings_commons.xml index 823fd03..7cab287 100644 --- a/core/src/main/res-public/values-es-rES/strings_commons.xml +++ b/core/src/main/res-public/values-es-rES/strings_commons.xml @@ -1,71 +1,69 @@ - - - - Acerca de la aplicación - Acerca de %s - Agregar cuenta - Atrás - Cancelar - Registro de cambios - Cerrar - Contáctanos - Copiar - Personalizado - Oscuro - Predeterminado - No mostrar de nuevo - Listo - Error - Salir - ¿Estás seguro de querer salir? - ¿Estás seguro de querer salir de %s? - Cristal - Entendido - Genial - Ocultar - Claro - Iniciar sesión - Cerrar sesión - ¿Estás seguro de que quieres cerrar sesión %s? - Administrar cuenta - Quizás - Menú - No - No se encontraron resultados - Ninguno - OK - Play Store - Calificar - Informar de un error - Buscar - Enviar comentarios - Enviar vía - Configuración - Compartir - Texto copiado al portapapeles. - Gracias - Oh, oh - Advertencia - - %d día - %d días - - - %d hora - %d horas - - - %d minuto - %d minutos - - - %d segundo - %d segundos - - - Permiso denegado + Acerca de la aplicación + Acerca de %s + Agregar cuenta + Atrás + Cancelar + Registro de cambios + Cerrar + Contáctanos + Copiar + Personalizado + Oscuro + Predeterminado + No mostrar de nuevo + Listo + Error + Salir + ¿Estás seguro de querer salir? + ¿Estás seguro de querer salir de %s? + Cristal + Entendido + Genial + Ocultar + Claro + Iniciar sesión + Cerrar sesión + ¿Estás seguro de que quieres cerrar sesión %s? + Administrar cuenta + Quizás + Menú + No + No se encontraron resultados + Ninguno + OK + Play Store + Calificar + Informar de un error + Buscar + Enviar comentarios + Enviar vía + Configuración + Compartir + Texto copiado al portapapeles. + Gracias + Oh, oh + Advertencia + + %d día + %d días + + + %d hora + %d horas + + + %d minuto + %d minutos + + + %d segundo + %d segundos + + + Permiso denegado diff --git a/core/src/main/res-public/values-fr-rFR/strings_commons.xml b/core/src/main/res-public/values-fr-rFR/strings_commons.xml index b9b2dca..2d681ff 100644 --- a/core/src/main/res-public/values-fr-rFR/strings_commons.xml +++ b/core/src/main/res-public/values-fr-rFR/strings_commons.xml @@ -1,71 +1,69 @@ - - - - À propos de l\'application - À propos de %s - Ajouter un compte - Retour - Annuler - Historiques des changements - Annuler - Contactez nous - Copier - Personnalisé - Sombre - Défaut - Ne plus afficher ce message - Terminé - Erreur - Quitter - Êtes-vous sûr de vouloir quitter ? - Êtes-vous sûr de vouloir Quitter %s? - Transparent - J\'ai compris - Super - Masquer - Clair - Connexion - Déconnexion - Êtes-vous sûr(e) de vouloir vous déconnecter %s? - Gérer compte - Peut-être - Menu - Non - Aucun résultat trouvé - Aucun - OK - Play Store - Noter - Signaler un bug - Recherche - Envoyer un commentaire - Envoyer via - Options - Partager - Texte copié dans le Presse-papiers. - Merci - Oups - Attention - - %d jour - %d jours - - - %d heure - %d heures - - - %d minute - %d minutes - - - %d seconde - %d secondes - - Oui - Autorisation refusée + À propos de l\'application + À propos de %s + Ajouter un compte + Retour + Annuler + Historiques des changements + Annuler + Contactez nous + Copier + Personnalisé + Sombre + Défaut + Ne plus afficher ce message + Terminé + Erreur + Quitter + Êtes-vous sûr de vouloir quitter ? + Êtes-vous sûr de vouloir Quitter %s? + Transparent + J\'ai compris + Super + Masquer + Clair + Connexion + Déconnexion + Êtes-vous sûr(e) de vouloir vous déconnecter %s? + Gérer compte + Peut-être + Menu + Non + Aucun résultat trouvé + Aucun + OK + Play Store + Noter + Signaler un bug + Recherche + Envoyer un commentaire + Envoyer via + Options + Partager + Texte copié dans le Presse-papiers. + Merci + Oups + Attention + + %d jour + %d jours + + + %d heure + %d heures + + + %d minute + %d minutes + + + %d seconde + %d secondes + + Oui + Autorisation refusée diff --git a/core/src/main/res-public/values-gl-rES/strings_commons.xml b/core/src/main/res-public/values-gl-rES/strings_commons.xml index cb5f2e3..b9a5564 100644 --- a/core/src/main/res-public/values-gl-rES/strings_commons.xml +++ b/core/src/main/res-public/values-gl-rES/strings_commons.xml @@ -1,71 +1,69 @@ - - - - Acerca da aplicación - Acerca de %s - Engadir conta - Volver - Cancelar - Rexistro de cambios - Pechar - Contacta connosco - Copiar - Personalizar - Escuro - Predefinido - Non volver mostrar máis - Feito - Erro - Saír - Tes a certeza de querer saír? - Tes a certeza de querer saír de %s? - Cristal - De acordo - Xenial - Agochar - Claro - Iniciar sesión - Pechar sesión - Tes a certeza de querer saír como %s? - Administrar conta - Quizais - Menú - Non - Non se atoparon resultados - Ningún - Aceptar - Play Store - Valorar - Informar dun erro - Procurar - Enviar comentarios - Enviar vía - Axustes - Compartir - Texto copiado no portapapeis. - Grazas - Vaites! - Aviso - - %d día - %d días - - - %d hora - %d horas - - - %d minuto - %d minutos - - - %d segundo - %d segundos - - Si - Permiso denegado + Acerca da aplicación + Acerca de %s + Engadir conta + Volver + Cancelar + Rexistro de cambios + Pechar + Contacta connosco + Copiar + Personalizar + Escuro + Predefinido + Non volver mostrar máis + Feito + Erro + Saír + Tes a certeza de querer saír? + Tes a certeza de querer saír de %s? + Cristal + De acordo + Xenial + Agochar + Claro + Iniciar sesión + Pechar sesión + Tes a certeza de querer saír como %s? + Administrar conta + Quizais + Menú + Non + Non se atoparon resultados + Ningún + Aceptar + Play Store + Valorar + Informar dun erro + Procurar + Enviar comentarios + Enviar vía + Axustes + Compartir + Texto copiado no portapapeis. + Grazas + Vaites! + Aviso + + %d día + %d días + + + %d hora + %d horas + + + %d minuto + %d minutos + + + %d segundo + %d segundos + + Si + Permiso denegado diff --git a/core/src/main/res-public/values-hu-rHU/strings_commons.xml b/core/src/main/res-public/values-hu-rHU/strings_commons.xml index 67fdbbc..5488f1d 100644 --- a/core/src/main/res-public/values-hu-rHU/strings_commons.xml +++ b/core/src/main/res-public/values-hu-rHU/strings_commons.xml @@ -1,71 +1,69 @@ - - - - Az appról - Erről: %s - Fiók hozzáadása - Vissza - Mégse - Újdonságok - Bezárás - Lépjen kapcsolatba velünk - Másolás - Egyéni - Sötét - Alapértelmezett - Ne jelenjen meg többet - Rendben - Hiba - Kilépés - Biztosan ki akarsz lépni? - Biztosan kilépsz a következőből: %s? - Üveg - Értem - Nagyszerű - Elrejtés - Világos - Bejelentkezés - Kijelentkezés - Biztosan ki szeretnél jelentkezni a következőből: %s? - Fiók kezelése - Talán - Menü - Nem - Nincs találat - Egyik sem - OK - Play Áruház - Értékelés - Hibajelentés - Keresés - Visszajelzés küldése - Küldés a következővel - Beállítások - Megosztás - A szöveg vágólapra másolva. - Köszönjük - Ajaj - Figyelmeztetés - - %d nap - %d nap - - - %d óra - %d óra - - - %d perc - %d perc - - - %d másodperc - %d másodperc - - Igen - Hozzáférés megtagadva + Az appról + Erről: %s + Fiók hozzáadása + Vissza + Mégse + Újdonságok + Bezárás + Lépjen kapcsolatba velünk + Másolás + Egyéni + Sötét + Alapértelmezett + Ne jelenjen meg többet + Rendben + Hiba + Kilépés + Biztosan ki akarsz lépni? + Biztosan kilépsz a következőből: %s? + Üveg + Értem + Nagyszerű + Elrejtés + Világos + Bejelentkezés + Kijelentkezés + Biztosan ki szeretnél jelentkezni a következőből: %s? + Fiók kezelése + Talán + Menü + Nem + Nincs találat + Egyik sem + OK + Play Áruház + Értékelés + Hibajelentés + Keresés + Visszajelzés küldése + Küldés a következővel + Beállítások + Megosztás + A szöveg vágólapra másolva. + Köszönjük + Ajaj + Figyelmeztetés + + %d nap + %d nap + + + %d óra + %d óra + + + %d perc + %d perc + + + %d másodperc + %d másodperc + + Igen + Hozzáférés megtagadva diff --git a/core/src/main/res-public/values-it-rIT/strings_commons.xml b/core/src/main/res-public/values-it-rIT/strings_commons.xml index 054fcf9..821191e 100644 --- a/core/src/main/res-public/values-it-rIT/strings_commons.xml +++ b/core/src/main/res-public/values-it-rIT/strings_commons.xml @@ -1,71 +1,69 @@ - - - - Info sull\'app - Informazioni su %s - Aggiungi Account - Indietro - Annulla - Novità - Chiudi - Contattaci - Copia - Personalizzato - Scuro - Predefinito - Non mostrare più - Fatto - Errore - Esci - Confermi di voler uscire? - Confermi di voler uscire da %s? - Vetro - Tutto chiaro - Ottimo - Nascondi - Chiaro - Accedi - Disconnetti - Confermi di voler disconnettere %s? - Gestisci Account - Forse - Menu - No - Nessun risultato trovato - Nulla - OK - Play Store - Recensisci - Segnala un malfunzionamento - Cerca - Invia feedback - Invia tramite - Impostazioni - Condividi - Testo copiato negli appunti. - Grazie - Uh Oh - Attenzione - - %d giorno - %d giorni - - - %d ora - %d ore - - - %d minuto - %d minuti - - - %d secondo - %d secondi - - - Permesso negato + Info sull\'app + Informazioni su %s + Aggiungi Account + Indietro + Annulla + Novità + Chiudi + Contattaci + Copia + Personalizzato + Scuro + Predefinito + Non mostrare più + Fatto + Errore + Esci + Confermi di voler uscire? + Confermi di voler uscire da %s? + Vetro + Tutto chiaro + Ottimo + Nascondi + Chiaro + Accedi + Disconnetti + Confermi di voler disconnettere %s? + Gestisci Account + Forse + Menu + No + Nessun risultato trovato + Nulla + OK + Play Store + Recensisci + Segnala un malfunzionamento + Cerca + Invia feedback + Invia tramite + Impostazioni + Condividi + Testo copiato negli appunti. + Grazie + Uh Oh + Attenzione + + %d giorno + %d giorni + + + %d ora + %d ore + + + %d minuto + %d minuti + + + %d secondo + %d secondi + + + Permesso negato diff --git a/core/src/main/res-public/values-ko-rKR/strings_commons.xml b/core/src/main/res-public/values-ko-rKR/strings_commons.xml index 685efac..112e8d5 100644 --- a/core/src/main/res-public/values-ko-rKR/strings_commons.xml +++ b/core/src/main/res-public/values-ko-rKR/strings_commons.xml @@ -1,67 +1,65 @@ - - - - 이 앱에 대하여 - %s 에 대하여 - 계정 추가 - 뒤로 - 취소 - 변경 사항 - 닫기 - 문의하기 - 복사 - 사용자 지정 - 어두움 - 기본 - 다시 보지 않기 - 완료 - 오류 - 나가기 - 정말로 종료하시겠습니까? - 정말로 %s 를 종료하시겠습니까? - 유리 - 확인 - 좋아요 - 숨기기 - 밝음 - 로그인 - 로그아웃 - %s 를 로그아웃 하시겠습니까? - 계정 관리 - 애매함 - 메뉴 - 아니요 - 결과를 찾을 수 없습니다. - 없음 - 확인 - Play 스토어 - 평가 - 버그 제보 - 검색 - 피드백 전송 - 전송 방법 - 설정 - 공유 - 텍스트가 클립보드에 복사되었습니다. - 감사합니다 - 이런 - 경고 - - %d 일 - - - %d 시간 - - - %d 분 - - - %d 초 - - - 권한이 없습니다. + 이 앱에 대하여 + %s 에 대하여 + 계정 추가 + 뒤로 + 취소 + 변경 사항 + 닫기 + 문의하기 + 복사 + 사용자 지정 + 어두움 + 기본 + 다시 보지 않기 + 완료 + 오류 + 나가기 + 정말로 종료하시겠습니까? + 정말로 %s 를 종료하시겠습니까? + 유리 + 확인 + 좋아요 + 숨기기 + 밝음 + 로그인 + 로그아웃 + %s 를 로그아웃 하시겠습니까? + 계정 관리 + 애매함 + 메뉴 + 아니요 + 결과를 찾을 수 없습니다. + 없음 + 확인 + Play 스토어 + 평가 + 버그 제보 + 검색 + 피드백 전송 + 전송 방법 + 설정 + 공유 + 텍스트가 클립보드에 복사되었습니다. + 감사합니다 + 이런 + 경고 + + %d 일 + + + %d 시간 + + + %d 분 + + + %d 초 + + + 권한이 없습니다. diff --git a/core/src/main/res-public/values-no-rNO/strings_commons.xml b/core/src/main/res-public/values-no-rNO/strings_commons.xml index c9e00ef..c18b439 100644 --- a/core/src/main/res-public/values-no-rNO/strings_commons.xml +++ b/core/src/main/res-public/values-no-rNO/strings_commons.xml @@ -1,71 +1,69 @@ - - - - Om appen - Om %s - Legg til en konto - Tilbake - Avbryt - Endringslogg - Lukk - Kontakt oss - Kopiér - Tilpass - Mørkt - Standard - Ikke vis meg dette igjen - Ferdig - Feil - Avslutt - Er du sikker på at du vil avslutte? - Er du sikker på at du vil avslutte %s? - Glass - Har det - Flott - Gjem - Lyst - Logg inn - Logg ut - Er du sikker på at du vil logge ut som %s? - Administrér konto - Kanskje - Meny - Nei - Ingen resultater funnet - Ingen - OK - Play Butikk - Vurdér - Rapportér en feil - Søk - Send en tilbakemelding - Send via - Innstillinger - Del - Tekst kopiert til utklippstavlen. - Tusen takk - Uff da - Advarsel - - %d dag - %d dager - - - %d time - %d timer - - - %d minutt - %d minutter - - - %d sekund - %d sekunder - - Ja - Adgang nektet + Om appen + Om %s + Legg til en konto + Tilbake + Avbryt + Endringslogg + Lukk + Kontakt oss + Kopiér + Tilpass + Mørkt + Standard + Ikke vis meg dette igjen + Ferdig + Feil + Avslutt + Er du sikker på at du vil avslutte? + Er du sikker på at du vil avslutte %s? + Glass + Har det + Flott + Gjem + Lyst + Logg inn + Logg ut + Er du sikker på at du vil logge ut som %s? + Administrér konto + Kanskje + Meny + Nei + Ingen resultater funnet + Ingen + OK + Play Butikk + Vurdér + Rapportér en feil + Søk + Send en tilbakemelding + Send via + Innstillinger + Del + Tekst kopiert til utklippstavlen. + Tusen takk + Uff da + Advarsel + + %d dag + %d dager + + + %d time + %d timer + + + %d minutt + %d minutter + + + %d sekund + %d sekunder + + Ja + Adgang nektet diff --git a/core/src/main/res-public/values-pt-rBR/strings_commons.xml b/core/src/main/res-public/values-pt-rBR/strings_commons.xml index fde08cf..716e373 100644 --- a/core/src/main/res-public/values-pt-rBR/strings_commons.xml +++ b/core/src/main/res-public/values-pt-rBR/strings_commons.xml @@ -1,71 +1,69 @@ - - - - Sobre o Aplicativo - Sobre %s - Adicionar Conta - Voltar - Cancelar - Histórico de Alterações - Fechar - Fale Conosco - Copiar - Personalizado - Escuro - Padrão - Não mostrar novamente - Pronto - Erro - Sair - Tem certeza que deseja sair? - Tem certeza que deseja sair do %s? - Vidro - Entendi - Ótimo - Esconder - Claro - Entrar - Sair - Tem certeza que deseja sair como %s? - Gerenciar Conta - Talvez - Menu - Não - Nenhum Resultado Encontrado - Nenhum - OK - Play Store - Avaliar - Relatar um Bug - Pesquisar - Enviar Feedback - Enviar via - Configurações - Compartilhar - Texto copiado para área de transferência. - Obrigado - Uh Oh - Aviso - - %d dia - %d dias - - - %d hora - %d horas - - - %d minuto - %d minutos - - - %d segundo - %d segundos - - Sim - Permissão negada + Sobre o Aplicativo + Sobre %s + Adicionar Conta + Voltar + Cancelar + Histórico de Alterações + Fechar + Fale Conosco + Copiar + Personalizado + Escuro + Padrão + Não mostrar novamente + Pronto + Erro + Sair + Tem certeza que deseja sair? + Tem certeza que deseja sair do %s? + Vidro + Entendi + Ótimo + Esconder + Claro + Entrar + Sair + Tem certeza que deseja sair como %s? + Gerenciar Conta + Talvez + Menu + Não + Nenhum Resultado Encontrado + Nenhum + OK + Play Store + Avaliar + Relatar um Bug + Pesquisar + Enviar Feedback + Enviar via + Configurações + Compartilhar + Texto copiado para área de transferência. + Obrigado + Uh Oh + Aviso + + %d dia + %d dias + + + %d hora + %d horas + + + %d minuto + %d minutos + + + %d segundo + %d segundos + + Sim + Permissão negada diff --git a/core/src/main/res-public/values-vi-rVN/strings_commons.xml b/core/src/main/res-public/values-vi-rVN/strings_commons.xml index e42087d..767e628 100644 --- a/core/src/main/res-public/values-vi-rVN/strings_commons.xml +++ b/core/src/main/res-public/values-vi-rVN/strings_commons.xml @@ -1,67 +1,65 @@ - - - - Giới thiệu - Giới thiệu về %s - Thêm tài khoản - Quay lại - Bỏ - Nhật ký thay đổi - Đóng - Liên hệ với chúng tôi - Sao chép - Khác - Tối - Mặc định - Không hiện lại - Xong - Lỗi - Thoát - Bạn chắc chắn muốn thoát? - Bạn chắc chắn muốn thoát %s? - Trong suốt - Được rồi - Tuyệt - Ẩn - Sáng - Đăng nhập - Đăng xuất - Bạn chắc chắn muốn đăng xuất %s? - Quản lý tài khoản - Có thể - Menu - Không - Không tìm thấy kết quả nào - Trống - OK - Cửa hàng Play - Đánh giá - Báo cáo lỗi - Tìm - Gửi phản hồi - Gửi bằng - Thiết lập - Chia sẻ - Đã chép vào bộ nhớ tạm. - Cảm ơn - Ồ… - Cảnh báo - - %d ngày - - - %d giờ - - - %d phút - - - %d giây - - Đồng ý - Quyền bị từ chối + Giới thiệu + Giới thiệu về %s + Thêm tài khoản + Quay lại + Bỏ + Nhật ký thay đổi + Đóng + Liên hệ với chúng tôi + Sao chép + Khác + Tối + Mặc định + Không hiện lại + Xong + Lỗi + Thoát + Bạn chắc chắn muốn thoát? + Bạn chắc chắn muốn thoát %s? + Trong suốt + Được rồi + Tuyệt + Ẩn + Sáng + Đăng nhập + Đăng xuất + Bạn chắc chắn muốn đăng xuất %s? + Quản lý tài khoản + Có thể + Menu + Không + Không tìm thấy kết quả nào + Trống + OK + Cửa hàng Play + Đánh giá + Báo cáo lỗi + Tìm + Gửi phản hồi + Gửi bằng + Thiết lập + Chia sẻ + Đã chép vào bộ nhớ tạm. + Cảm ơn + Ồ… + Cảnh báo + + %d ngày + + + %d giờ + + + %d phút + + + %d giây + + Đồng ý + Quyền bị từ chối diff --git a/core/src/main/res-public/values-zh-rCN/strings_commons.xml b/core/src/main/res-public/values-zh-rCN/strings_commons.xml index aa8de17..47ddbda 100644 --- a/core/src/main/res-public/values-zh-rCN/strings_commons.xml +++ b/core/src/main/res-public/values-zh-rCN/strings_commons.xml @@ -1,67 +1,65 @@ - - - - 关于应用程序 - 关于 %s - 添加帐户 - 后退 - 取消 - 更新日志​​​​​ - 关闭 - 联系我们 - 复制 - 自定义 - - 默认 - 不再显示 - 完成 - 错误 - 退出 - 您确定要退出吗? - 您确定要退出%s吗? - 玻璃 - 已了解 - 太棒了 - 隐藏 - - 登录 - 注销 - 您确定要退出%s吗? - 管理帐户 - 可能吧 - 菜单 - - 未找到任何結果 - - 确定 - Play 商店 - 评分 - 报告Bug - 搜索 - 发送反馈信息 - 发送至 - 设置 - 分享 - 文本已复制到剪贴板。 - 谢谢 - 啊呃! - 警告 - - %d 天 - - - %d 小时 - - - %d 分钟 - - - %d 秒 - - 是的 - 权限被拒绝 + 关于应用程序 + 关于 %s + 添加帐户 + 后退 + 取消 + 更新日志​​​​​ + 关闭 + 联系我们 + 复制 + 自定义 + + 默认 + 不再显示 + 完成 + 错误 + 退出 + 您确定要退出吗? + 您确定要退出%s吗? + 玻璃 + 已了解 + 太棒了 + 隐藏 + + 登录 + 注销 + 您确定要退出%s吗? + 管理帐户 + 可能吧 + 菜单 + + 未找到任何結果 + + 确定 + Play 商店 + 评分 + 报告Bug + 搜索 + 发送反馈信息 + 发送至 + 设置 + 分享 + 文本已复制到剪贴板。 + 谢谢 + 啊呃! + 警告 + + %d 天 + + + %d 小时 + + + %d 分钟 + + + %d 秒 + + 是的 + 权限被拒绝 diff --git a/core/src/main/res-public/values/public.xml b/core/src/main/res-public/values/public.xml index f831c6d..c309a70 100644 --- a/core/src/main/res-public/values/public.xml +++ b/core/src/main/res-public/values/public.xml @@ -1,5 +1,5 @@ - + diff --git a/core/src/main/res-public/values/strings_commons.xml b/core/src/main/res-public/values/strings_commons.xml index bb95d23..7dc32e7 100644 --- a/core/src/main/res-public/values/strings_commons.xml +++ b/core/src/main/res-public/values/strings_commons.xml @@ -1,5 +1,4 @@ - - diff --git a/core/src/main/res-public/values/styles.xml b/core/src/main/res-public/values/styles.xml index bdbc84f..318c427 100644 --- a/core/src/main/res-public/values/styles.xml +++ b/core/src/main/res-public/values/styles.xml @@ -1,6 +1,7 @@ -