updated translations

This commit is contained in:
Mariotaku Lee 2017-01-27 15:43:25 +08:00
parent 1f7f586f1a
commit 6d72791c0d
No known key found for this signature in database
GPG Key ID: 15C10F89D7C33535
49 changed files with 285 additions and 569 deletions

View File

@ -30,7 +30,6 @@ import android.os.AsyncTask;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.util.SimpleArrayMap;
import android.util.Log;
import com.squareup.otto.Bus;
import com.squareup.otto.Subscribe;
@ -53,7 +52,6 @@ import org.mariotaku.microblog.library.twitter.model.User;
import org.mariotaku.microblog.library.twitter.model.UserList;
import org.mariotaku.microblog.library.twitter.model.UserListUpdate;
import org.mariotaku.sqliteqb.library.Expression;
import org.mariotaku.twidere.BuildConfig;
import org.mariotaku.twidere.R;
import org.mariotaku.twidere.annotation.AccountType;
import org.mariotaku.twidere.extension.model.AccountDetailsExtensionsKt;
@ -809,7 +807,7 @@ public class AsyncTwitterWrapper extends TwitterWrapper {
@Override
protected void onPostExecute(final SingleResponse<SavedSearch> result) {
if (result.hasData()) {
final String message = context.getString(R.string.message_search_name_saved, result.getData().getQuery());
final String message = context.getString(R.string.message_toast_search_name_saved, result.getData().getQuery());
Utils.showOkMessage(context, message, false);
} else if (result.hasException()) {
final Exception exception = result.getException();
@ -1188,7 +1186,7 @@ public class AsyncTwitterWrapper extends TwitterWrapper {
tweetEvent.setAction(TweetEvent.Action.UNFAVORITE);
HotMobiLogger.getInstance(getContext()).log(mAccountKey, tweetEvent);
// END HotMobi
Utils.showInfoMessage(context, R.string.message_status_unfavorited, false);
Utils.showInfoMessage(context, R.string.message_toast_status_unfavorited, false);
} else {
taskEvent.setSucceeded(false);
Utils.showErrorMessage(context, R.string.action_unfavoriting, result.getException(), true);
@ -1225,7 +1223,7 @@ public class AsyncTwitterWrapper extends TwitterWrapper {
@Override
protected void onPostExecute(final SingleResponse<SavedSearch> result) {
if (result.hasData()) {
final String message = context.getString(R.string.message_search_name_deleted, result.getData().getQuery());
final String message = context.getString(R.string.message_toast_search_name_deleted, result.getData().getQuery());
Utils.showOkMessage(context, message, false);
getBus().post(new SavedSearchDestroyedEvent(mAccountKey, mSearchId));
} else {

View File

@ -79,7 +79,7 @@ public class ErrorInfoStore {
}
case CODE_NETWORK_ERROR: {
return new DisplayErrorInfo(code, R.drawable.ic_info_error_generic,
context.getString(R.string.message_network_error));
context.getString(R.string.message_toast_network_error));
}
case CODE_TIMESTAMP_ERROR: {
return new DisplayErrorInfo(code, R.drawable.ic_info_error_generic,

View File

@ -98,7 +98,6 @@ import org.mariotaku.sqliteqb.library.Columns;
import org.mariotaku.sqliteqb.library.Columns.Column;
import org.mariotaku.sqliteqb.library.Expression;
import org.mariotaku.sqliteqb.library.Selectable;
import org.mariotaku.twidere.BuildConfig;
import org.mariotaku.twidere.Constants;
import org.mariotaku.twidere.R;
import org.mariotaku.twidere.annotation.CustomTabType;
@ -142,8 +141,6 @@ import java.util.Map.Entry;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.net.ssl.SSLException;
import edu.tsinghua.hotmobi.HotMobiLogger;
import edu.tsinghua.hotmobi.model.NotificationEvent;
@ -785,7 +782,7 @@ public final class Utils implements Constants {
final String msg = StatusCodeMessageUtils.getTwitterErrorMessage(context, te.getErrorCode());
return getErrorMessage(context, action, msg != null ? msg : trimLineBreak(te.getMessage()));
} else if (te.getCause() instanceof IOException)
return getErrorMessage(context, action, context.getString(R.string.message_network_error));
return getErrorMessage(context, action, context.getString(R.string.message_toast_network_error));
else if (te.getCause() instanceof JSONException)
return getErrorMessage(context, action, context.getString(R.string.message_api_data_corrupted));
else
@ -1090,7 +1087,7 @@ public final class Utils implements Constants {
trimLineBreak(te.getErrorMessage()));
} else if (te.getCause() instanceof IOException) {
message = context.getString(R.string.error_message_with_action, action,
context.getString(R.string.message_network_error));
context.getString(R.string.message_toast_network_error));
} else {
message = context.getString(R.string.error_message_with_action, action,
trimLineBreak(te.getMessage()));

View File

@ -865,7 +865,7 @@ class UserFragment : BaseFragment(), OnClickListener, OnLinkClickListener,
if (userRelationship == null) return true
if (userRelationship.filtering) {
DataStoreUtils.removeFromFilter(context, listOf(user))
Utils.showInfoMessage(activity, R.string.message_user_unmuted, false)
Utils.showInfoMessage(activity, R.string.message_toast_user_filters_removed, false)
getFriendship()
} else {
AddUserFilterDialogFragment.show(fragmentManager, user)

View File

@ -64,9 +64,9 @@ class DestroyStatusTask(
if (result.hasData()) {
val status = result.data!!
if (status.retweet_id != null) {
Utils.showInfoMessage(context, R.string.message_retweet_cancelled, false)
Utils.showInfoMessage(context, R.string.message_toast_retweet_cancelled, false)
} else {
Utils.showInfoMessage(context, R.string.message_status_deleted, false)
Utils.showInfoMessage(context, R.string.message_toast_status_deleted, false)
}
bus.post(StatusDestroyedEvent(status))
} else {

View File

@ -132,7 +132,7 @@ class MultiSelectEventHandler(
ContentResolverUtils.bulkDelete(resolver, Filters.Users.CONTENT_URI,
Filters.Users.USER_KEY, userIds, null)
ContentResolverUtils.bulkInsert(resolver, Filters.Users.CONTENT_URI, valuesList)
Toast.makeText(activity, R.string.message_users_muted, Toast.LENGTH_SHORT).show()
Toast.makeText(activity, R.string.message_toast_users_filters_added, Toast.LENGTH_SHORT).show()
mode.finish()
}
R.id.block -> {

View File

@ -23,12 +23,12 @@
<!-- Enhanced (paid) features title -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!-- Next item (tweet, user etc.) -->
<!-- Previous item (tweet, user etc.) -->
<!-- Normally you don't need to translate this -->

View File

@ -23,12 +23,12 @@
<!-- Enhanced (paid) features title -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!-- Next item (tweet, user etc.) -->
<!-- Previous item (tweet, user etc.) -->
<!-- Normally you don't need to translate this -->

View File

@ -339,19 +339,7 @@
<string name="message_blocked_user">حُظِر <xliff:g id="user">%s</xliff:g>.</string>
<string name="message_direct_message_deleted">حُذفت الرسالة الخاصة.</string>
<string name="message_direct_message_sent">أُرسلت الرسالة الخاصة.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">خطأ في الشبكة.</string>
<string name="message_please_wait">يرجى الإنتظار.</string>
<string name="message_retweet_cancelled">إعادة التغريد ملغاة.</string>
<string name="message_search_deleted">حُذِف البحث.</string>
<string name="message_search_name_deleted">حُذِف البحث \"<xliff:g id="name">%s</xliff:g>\".</string>
<string name="message_search_name_saved">حُفظ البحث \"<xliff:g id="name">%s</xliff:g>\".</string>
<string name="message_search_saved">حُفظ البحث.</string>
<string name="message_status_deleted">حُذفت التغريدة.</string>
<string name="message_status_favorited">فضّلت التغريدة.</string>
<string name="message_status_retweeted">أُعيدت التغريدة.</string>
<string name="message_status_unfavorited">لم تعد التغريدة مفضلة.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -359,19 +347,17 @@
<string name="message_toast_accepted_users_follow_request">قَبِل <xliff:g id="user">%s</xliff:g> متابعتك.</string>
<string name="message_toast_cannot_get_location">لا يمكن تحديد الموقع.</string>
<string name="message_toast_error_occurred">حدث خطأ، يرجى إعادة المحاولة لاحقاً</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">تم نسخ الرابط إلى الحافظة</string>
<string name="message_toast_livewp_daydream_enabled_message">قليلاً هنا موجودة لك، تجد في إعدادات النظام الخاص بك:)</string>
<string name="message_toast_login_verification_failed">فشل التحقق من صحة تسجيل الدخول.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account_selected">لم تختر حسابًا.</string>
<string name="message_toast_profile_banner_image_updated">تم تحدث الصورة العلوية للملف الشخصي.</string>
<string name="message_toast_saved_to_gallery">حفظت في المعرض.</string>
<string name="message_toast_status_saved_to_draft">حُفظت التغريدةُ مسودةً.</string>
<string name="message_toast_status_updated">أُرسلت التغريدة.</string>
<string name="message_toast_wrong_api_key">رابط API أو شيفرة consumer key/secret غير صحيحة ، تأكد منها مرة أخرى.</string>
<string name="message_user_muted">أضيف الحساب لقائمة الكتم لن تظهر لديك تغريدات هذا المستخدم في الخط الزمني الرئيسي / الإشارات.</string>
<string name="message_user_unmuted">تمت إزالة الشخص من قائمة الكتم.</string>
<string name="message_users_muted">أضيف الحساب لقائمة الكتم لن تظهر لديك تغريدات هذا المستخدم في الخط الزمني الرئيسي / الإشارات.</string>
<string name="more">المزيد</string>
<string name="multi_select">تحديد متعدد</string>
<string name="mute_user">كتم <xliff:g id="name">%s</xliff:g></string>
<string name="muted_user">كُتِم <xliff:g id="name">%s</xliff:g></string>

View File

@ -434,23 +434,10 @@
<string name="message_direct_message_deleted">Desanicióse\'l mensaxe direutu.</string>
<string name="message_direct_message_sent">Unvióse\'l mensaxe direutu.</string>
<string name="message_error_invalid_account">Toyéronse dellos datos de la cuenta, agora Twidere desniciarálos pa evitar que casque.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Fallu de rede.</string>
<string name="message_permission_request_compose_location">Twidere precisa\'l permisu d\'allugamientu p\'amestar l\'allugamientu a los tuits.</string>
<string name="message_permission_request_save_media">Twidere precisa\'l permisu d\'almacenamientu pa guardar multimedia.</string>
<string name="message_permission_request_share_media">Twidere precisa\'l permisu d\'almacenamientu pa compartir medios con delles aplicaciones.</string>
<string name="message_please_wait">Espera, por favor.</string>
<string name="message_retweet_cancelled">Encaboxóse\'l retuit.</string>
<string name="message_search_deleted">Desanicióse la gueta.</string>
<string name="message_search_name_deleted">Desanicióse la gueta «<xliff:g id="name">%s</xliff:g>».</string>
<string name="message_search_name_saved">Guardóse la gueta «<xliff:g id="name">%s</xliff:g>».</string>
<string name="message_search_saved">Guardóse la gueta.</string>
<string name="message_status_deleted">Desanicióse\'l tuit.</string>
<string name="message_status_favorited">Marcóse\'l tuit como favoritu.</string>
<string name="message_status_like_removed">Desanicióse\'l préstame.</string>
<string name="message_status_retweeted">Retuitióse.</string>
<string name="message_status_unfavorited">Desmarcóse\'l tuit como favoritu.</string>
<string name="message_sync_data_synced_with_name">Agora Twidere ta sincronizáu con <xliff:g example="ownCloud" id="name">%s</xliff:g></string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
@ -460,9 +447,12 @@
<string name="message_toast_already_logged_in">Yá aniciesti sesión.</string>
<string name="message_toast_cannot_get_location">Nun pue consiguise\'l to allugamientu.</string>
<string name="message_toast_error_occurred">Asocedió un fallu. Téntalo de nueves, por favor.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Copióse l\'enllaz al cartafueyu</string>
<string name="message_toast_livewp_daydream_enabled_message">Equí hai un regalu pequeñu pa ti, alcuéntralu nos axustes del sistema :)</string>
<string name="message_toast_login_verification_failed">Fallu na verificación del aniciu de sesión.</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">Fallu de rede</string>
<string name="message_toast_no_account">Ensin cuentes</string>
<string name="message_toast_no_account_selected">Nun s\'esbilló cuenta dala.</string>
<string name="message_toast_no_user_selected">Nun s\'esbillaron usuarios</string>
@ -476,10 +466,6 @@
<string name="message_toast_status_updated">Unvióse\'l tuit.</string>
<string name="message_toast_wrong_api_key">URL d\'API o clave/secretu de consumidor incorreutos. Compruébalos de nueves, por favor.</string>
<string name="message_toast_wrong_username_password">Nome d\'usuariu/contraseña incorreutos</string>
<string name="message_user_muted">Amestóse esti usuariu al llistáu de peñera. Nun verás los sos tuits nel to llistáu de menciones/llinia temporal.</string>
<string name="message_user_unmuted">Desanicióse esti usuariu del llistáu de peñera.</string>
<string name="message_users_muted">Amestáronse los usuarios al llistáu de peñera. Nun verás los sos tuits nel to llistáu de menciones/llinia temporal.</string>
<string name="more">Más</string>
<string name="multi_select">Esbilla múltiple</string>
<string name="mute_user">Silenciar <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">¿Silenciar a <xliff:g id="name">%s</xliff:g>? Nun verás más los tuits d\'esti usuariu entrín teas siguiéndolu.</string>

View File

@ -405,19 +405,7 @@
<string name="message_blocked_user">S\'ha bloquejat <xliff:g id="user">%s</xliff:g>.</string>
<string name="message_direct_message_deleted">S\'ha esborrat el missatge directe.</string>
<string name="message_direct_message_sent">S\'ha enviat el missatge directe.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Hi ha un error de connexió.</string>
<string name="message_please_wait">Espereu, si us plau.</string>
<string name="message_retweet_cancelled">S\'ha canceŀlat la repiulada.</string>
<string name="message_search_deleted">La cerca ha estat esborrada.</string>
<string name="message_search_name_deleted">La cerca «<xliff:g id="name">%s</xliff:g>» ha estat esborrada.</string>
<string name="message_search_name_saved">La cerca «<xliff:g id="name">%s</xliff:g>» ha estat desada.</string>
<string name="message_search_saved">Cerca desada.</string>
<string name="message_status_deleted">S\'ha esborrat la piulada.</string>
<string name="message_status_favorited">S\'ha marcat com a preferida la piulada.</string>
<string name="message_status_retweeted">S\'ha repiulat.</string>
<string name="message_status_unfavorited">S\'ha desmarcat com a preferida la piulada.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -426,9 +414,11 @@
<string name="message_toast_already_logged_in">Ja esteu identificat.</string>
<string name="message_toast_cannot_get_location">No es pot obtenir la teva localització.</string>
<string name="message_toast_error_occurred">S\'ha produit un error, proveu-ho de nou.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">S\'ha copiat l\'enllaç al porta-retalls</string>
<string name="message_toast_livewp_daydream_enabled_message">Aquí teniu un regalet. El podreu trobar en els paràmetres del vostre sistema :)</string>
<string name="message_toast_login_verification_failed">La verificació de l\'inici de sessió ha fallat.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Sense compte</string>
<string name="message_toast_no_account_selected">No hi ha cap compte seleccionat.</string>
<string name="message_toast_press_again_to_close">Torna a prémer per tancar</string>
@ -440,10 +430,6 @@
<string name="message_toast_status_saved_to_draft">S\'ha desat la piulada com a esborrany.</string>
<string name="message_toast_status_updated">S\'ha enviat la piulada.</string>
<string name="message_toast_wrong_api_key">La URL de l\'API o bé el parell clau de consumidor - secret és incorrecte. Si us plau, comproveu-los.</string>
<string name="message_user_muted">S\'ha afegit aquest usuari a la llista de filtrat. No veureu les piulades d\'aquest usuari a la vostra cronologia ni a la llista de mencions.</string>
<string name="message_user_unmuted">Usuari eliminat de la llista de filtres.</string>
<string name="message_users_muted">S\'han afegit usuaris a la llista de filtrat. No veureu les piulades d\'aquests usuaris a la vostra cronologia ni a la llista de mencions.</string>
<string name="more">Més</string>
<string name="multi_select">Selecció múltiple</string>
<string name="mute_user">Silenciar <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Emmudeix <xliff:g id="name">%s</xliff:g>? No veureu pas més piulades d\'aquest usuari mentre continueu de seguir aquest usuari.</string>

View File

@ -193,9 +193,6 @@
<string name="long_click_to_open_menu">Dlouhým stiskem zobrazíte menu</string>
<string name="mark_as_sensitive">Označit jako citlivé</string>
<string name="members">Členové</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Chyba sítě.</string>
<string name="message_please_wait">Počkejte prosím.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
@ -204,12 +201,13 @@
<string name="message_toast_already_logged_in">Jste již přihlášeni.</string>
<string name="message_toast_cannot_get_location">Nelze získat vaši polohu.</string>
<string name="message_toast_error_occurred">Stala se chyba, zkuste to, prosím, znovu.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Odkaz zkopírován do schránky</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Žádný účet</string>
<string name="message_toast_no_account_selected">Nevybrán žádný účet.</string>
<string name="message_toast_saved_to_gallery">Uloženo do galerie.</string>
<string name="message_toast_status_updated">Tweet odeslán.</string>
<string name="more">Více</string>
<string name="name_retweeted"><xliff:g id="user_name">%s</xliff:g> retweetován</string>
<string name="name_with_nickname"><xliff:g id="name">%1$s </xliff:g> (<xliff:g id="nickname">%2$s </xliff:g>)</string>
<string name="navigation">Navigace</string>

View File

@ -145,8 +145,6 @@
<string name="media_uploader_default">Standard (Twitter)</string>
<string name="mention_this_user">Nævn denne bruger</string>
<string name="mention_user_name">Nævn <xliff:g id="name">%1$s</xliff:g></string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_please_wait">Vent venligst.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
@ -155,12 +153,10 @@
<string name="message_toast_already_logged_in">Du har allerede logget ud.</string>
<string name="message_toast_cannot_get_location">Kunne ikke finde din placering.</string>
<string name="message_toast_error_occurred">En fejl opstod, prøv igen.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_toast_no_account_selected">Ingen konto valgt.</string>
<string name="message_toast_saved_to_gallery">Gemte til galleri.</string>
<string name="message_user_muted">Tilføjede denne bruger til filterliste. Du vil ikke se tweets fra denne bruger i din hjem tidslinje/nævnelsesliste.</string>
<string name="message_user_unmuted">Fjernede denne bruger fra filterliste.</string>
<string name="message_users_muted">Tilføjede brugere til filterliste. Du vil ikke se tweets fra denne bruger i din hjem tidslinje/nævnelsesliste.</string>
<string name="more">Mere</string>
<string name="name_and_another_retweeted"><xliff:g id="user_name">%1$s</xliff:g> og en anden retweetede</string>
<string name="name_and_count_retweeted"><xliff:g id="user_name">%1$s</xliff:g> og <xliff:g id="retweet_count">%2$d</xliff:g> andre retweetede</string>
<string name="name_retweeted"><xliff:g id="user_name">%s</xliff:g> retweetede</string>

View File

@ -454,25 +454,10 @@
<string name="message_direct_message_deleted">Direktnachricht gelöscht.</string>
<string name="message_direct_message_sent">Direktnachricht gesendet.</string>
<string name="message_error_invalid_account">Einige Kontodaten sind beschädigt, Twidere entfernt diese Konten um einen Absturz zu verhindern.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_extra_features_not_purchased">Erweiterte Funktionen nicht gekauft</string>
<!-- Toast message for network errors -->
<string name="message_network_error">Netzwerkfehler</string>
<string name="message_permission_request_compose_location">Twidere benötigt die Standortberechtigung um in Tweets den Standort hinzuzufügen.</string>
<string name="message_permission_request_save_media">Twidere benötigt die Speicherberechtigung um Medien zu speichern.</string>
<string name="message_permission_request_share_media">Twidere benötigt die Speicherberechtigung um Medien mit anderen Apps zu teilen.</string>
<string name="message_please_wait">Bitte warten.</string>
<string name="message_retweet_cancelled">Retweet abgebrochen.</string>
<string name="message_search_deleted">Suche gelöscht.</string>
<string name="message_search_name_deleted">Suche \"<xliff:g id="name">%s</xliff:g>\" gelöscht.</string>
<string name="message_search_name_saved">Suche \"<xliff:g id="name">%s</xliff:g>\" gespeichert.</string>
<string name="message_search_saved">Suche gespeichert.</string>
<string name="message_status_deleted">Tweet gelöscht.</string>
<string name="message_status_favorited">Tweet favorisiert.</string>
<string name="message_status_like_removed">Like entfernt.</string>
<string name="message_status_liked">Tweet gefällt.</string>
<string name="message_status_retweeted">Retweeted.</string>
<string name="message_status_unfavorited">Tweet nicht favorisiert.</string>
<string name="message_sync_data_connect_hint">Twidere mit einem Netzwerkspeicher zur Datensynchronisation verbinden</string>
<string name="message_sync_data_synced_with_name">Twidere ist jetzt mit <xliff:g example="ownCloud" id="name">%s </xliff:g> synchronisiert</string>
<string name="message_sync_disconnect_from_name_confirm">Trennen von <xliff:g example="ownCloud" id="name">%s </xliff:g>?</string>
@ -488,28 +473,41 @@
<string name="message_toast_cannot_get_location">Ort konnte nicht gefunden werden.</string>
<string name="message_toast_compose_write_storage_no_permission">Es ist eine Berechtigung erforderlich, um die aufgenommenen Fotos/Videos zu löschen</string>
<string name="message_toast_error_occurred">Ein Fehler ist aufgetreten, versuche es erneut</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_extra_features_not_purchased">Erweiterte Funktionen nicht gekauft</string>
<string name="message_toast_link_copied_to_clipboard">Link in die Zwischenablage kopiert</string>
<string name="message_toast_livewp_daydream_enabled_message">Ich hab ein kleines Geschenk für dich in den Systemeinstellungen versteckt :)</string>
<string name="message_toast_login_verification_failed">Login-Verifizierung fehlgeschlagen.</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">Netzwerkfehler</string>
<string name="message_toast_no_account">Kein Konto</string>
<string name="message_toast_no_account_selected">Kein Konto ausgewählt.</string>
<string name="message_toast_no_user_selected">Kein Benutzer ausgewählt</string>
<string name="message_toast_press_again_to_close">Drücke zum Schließen nochmal</string>
<string name="message_toast_profile_banner_image_updated">Profilbanner aktualisiert.</string>
<string name="message_toast_retweet_cancelled">Retweet abgebrochen.</string>
<string name="message_toast_save_media_no_storage_permission">Speicherberechtigung notwendig um Bilder und Videos zu speichern.</string>
<string name="message_toast_saved_to_gallery">In der Galerie gespeichert.</string>
<string name="message_toast_search_deleted">Suche gelöscht.</string>
<string name="message_toast_search_name_deleted">Suche \"<xliff:g id="name">%s</xliff:g>\" gelöscht.</string>
<string name="message_toast_search_name_saved">Suche \"<xliff:g id="name">%s</xliff:g>\" gespeichert.</string>
<string name="message_toast_search_saved">Suche gespeichert.</string>
<string name="message_toast_select_file_no_storage_permission">Speicherberechtigung notwendig um Dateien auszuwählen.</string>
<string name="message_toast_share_media_no_storage_permission">Die Anwendung erfordert die Speicherberechtigung, um Medien zu teilen.</string>
<string name="message_toast_status_deleted">Tweet gelöscht.</string>
<string name="message_toast_status_favorited">Tweet favorisiert.</string>
<string name="message_toast_status_like_removed">Like entfernt.</string>
<string name="message_toast_status_liked">Tweet gefällt.</string>
<string name="message_toast_status_retweeted">Retweeted.</string>
<string name="message_toast_status_saved_to_draft">Tweet als Entwurf gespeichert.</string>
<string name="message_toast_status_unfavorited">Tweet nicht favorisiert.</string>
<string name="message_toast_status_updated">Tweet gesendet.</string>
<string name="message_toast_user_filters_removed">Der Benutzer wurde von der Filterliste entfernt.</string>
<string name="message_toast_users_filters_added">Benutzer wurden zur Filterliste hinzugefügt. Du wirst keine Tweets von diesen Benutzern in Deiner Timeline-/Erwähnungsliste sehen.</string>
<string name="message_toast_wrong_api_key">Inkorrekte API URL oder Consumer Key/Secret. Bitte nochmals prüfen.</string>
<string name="message_toast_wrong_username_password">Falscher Benutzername/Passwort</string>
<string name="message_user_muted">Dieser Benutzer wurde zur Filterliste hinzugefügt. Du wirst keine Tweets von diesem Benutzer in Deiner Timeline-/Erwähnungen-Liste sehen.</string>
<string name="message_user_unmuted">Der Benutzer wurde von der Filterliste entfernt.</string>
<string name="message_users_muted">Benutzer wurden zur Filterliste hinzugefügt. Du wirst keine Tweets von diesen Benutzern in Deiner Timeline-/Erwähnungsliste sehen.</string>
<string name="message_video_too_long">Das Video ist zu lang</string>
<string name="message_video_too_short">Das Video ist zu kurz</string>
<string name="more">Mehr</string>
<string name="multi_select">Mehrfachauswahl</string>
<string name="mute_user"><xliff:g id="name">%s</xliff:g> stummschalten</string>
<string name="mute_user_confirm_message"><xliff:g id="name">%s</xliff:g> stummschalten? Du wirst keine weiteren Tweets von diesem Nutzer sehen, ihm aber weiter folgen.</string>

View File

@ -81,13 +81,13 @@
<string name="label_data_provider">Πάροχος βάσης δεδομένων του Twidere</string>
<string name="label_refresh_service">Ανανέωση υπηρεσίας</string>
<string name="label_streaming_service">Υπηρεσία streaming</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<string name="message_toast_already_logged_in">Είσαι ήδη συνδεδεμένος.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_toast_no_account_selected">Δεν έχει επιλεγεί λογαριασμός.</string>
<string name="name_and_another_retweeted"><xliff:g id="user_name">%1$s</xliff:g> και κάποιος άλλος έκανε ρετουϊτ</string>
<string name="name_and_count_retweeted"><xliff:g id="user_name">%1$s</xliff:g> και <xliff:g id="retweet_count">%2$d</xliff:g> άλλοι έκαναν ρετουϊτ</string>

View File

@ -90,18 +90,15 @@
<string name="label_refresh_and_sync_service">Refresh &amp; Sync service</string>
<string name="label_refresh_service">Refresh service</string>
<string name="label_streaming_service">Streaming service</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_status_favorited">Tweet favourited.</string>
<string name="message_status_unfavorited">Tweet favourited.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<string name="message_toast_already_logged_in">You have already logged in.</string>
<string name="message_toast_error_occurred">An error occurred, please try again.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_toast_no_account_selected">No account selected.</string>
<string name="more">More</string>
<string name="name_retweeted"><xliff:g id="user_name">%s</xliff:g> retweeted</string>
<!-- Next item (tweet, user etc.) -->
<string name="notification_light_color">Light Colour</string>

View File

@ -454,25 +454,10 @@
<string name="message_direct_message_deleted">Mensaje directo eliminado.</string>
<string name="message_direct_message_sent">Mensaje directo enviado.</string>
<string name="message_error_invalid_account">Los datos de algunas cuentas están dañados, Twidere quitará esas cuentas para evitar fallos.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_extra_features_not_purchased">Características extra no compradas</string>
<!-- Toast message for network errors -->
<string name="message_network_error">Error de red.</string>
<string name="message_permission_request_compose_location">Twidere necesita permiso de ubicación para agregar la ubicación a los twits.</string>
<string name="message_permission_request_save_media">Twidere necesita permiso de almacenamiento para guardar los archivos.</string>
<string name="message_permission_request_share_media">Twidere necesita permiso de almacenamiento para el intercambio de archivos con otras aplicaciones.</string>
<string name="message_please_wait">Por favor espera.</string>
<string name="message_retweet_cancelled">Retweet cancelado.</string>
<string name="message_search_deleted">Búsqueda borrada.</string>
<string name="message_search_name_deleted">Búsqueda \"<xliff:g id="name">%s</xliff:g>\" borrada.</string>
<string name="message_search_name_saved">Búsqueda \"<xliff:g id="name">%s</xliff:g>\" salvada.</string>
<string name="message_search_saved">Búsqueda guardada.</string>
<string name="message_status_deleted">Tweet eliminado.</string>
<string name="message_status_favorited">Tweet marcado como favorito.</string>
<string name="message_status_like_removed">\"Me gusta\" borrado.</string>
<string name="message_status_liked">El twit ha gustado.</string>
<string name="message_status_retweeted">Retwitteado.</string>
<string name="message_status_unfavorited">Tweet desmarcado como favorito.</string>
<string name="message_sync_data_connect_hint">Conectar Twidere con la red para sincronizar los datos</string>
<string name="message_sync_data_synced_with_name">Twidere se ha conectado con <xliff:g example="ownCloud" id="name">%s</xliff:g></string>
<string name="message_sync_disconnect_from_name_confirm">¿Desconectar de <xliff:g example="ownCloud" id="name">%s</xliff:g>?</string>
@ -488,28 +473,41 @@
<string name="message_toast_cannot_get_location">No puede obtener su ubicación.</string>
<string name="message_toast_compose_write_storage_no_permission">Se requiere este permiso para borrar fotos/vídeos realizados</string>
<string name="message_toast_error_occurred">A ocurrido un error, inténtelo de nuevo.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_extra_features_not_purchased">Características extra no compradas</string>
<string name="message_toast_link_copied_to_clipboard">Enlace copiado al portapapeles</string>
<string name="message_toast_livewp_daydream_enabled_message">Aquí hay un pequeño regalo para ti, encuéntralo en los ajustes del sistema :)</string>
<string name="message_toast_login_verification_failed">Verificación de inicio de sesión fallida.</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">Error de red</string>
<string name="message_toast_no_account">Sin cuenta</string>
<string name="message_toast_no_account_selected">No se seleccionó ninguna cuenta.</string>
<string name="message_toast_no_user_selected">Ningún usuario seleccionado.</string>
<string name="message_toast_no_user_selected">Ningún usuario seleccionado</string>
<string name="message_toast_press_again_to_close">Presione de nuevo para cerrar</string>
<string name="message_toast_profile_banner_image_updated">Imagen de cabecera del perfil actualizada.</string>
<string name="message_toast_retweet_cancelled">Retweet cancelado</string>
<string name="message_toast_save_media_no_storage_permission">Se necesita permiso de almacenamiento para guardar archivos.</string>
<string name="message_toast_saved_to_gallery">Guardado en la galería.</string>
<string name="message_toast_search_deleted">Búsqueda borrada</string>
<string name="message_toast_search_name_deleted">Búsqueda \"<xliff:g id="name">%s</xliff:g>\" borrada</string>
<string name="message_toast_search_name_saved">Búsqueda \"<xliff:g id="name">%s</xliff:g>\" salvada</string>
<string name="message_toast_search_saved">Búsqueda guardada</string>
<string name="message_toast_select_file_no_storage_permission">Se necesita permiso de almacenamiento para seleccionar un archivo.</string>
<string name="message_toast_share_media_no_storage_permission">Alguna aplicación requiere permisos de almacenamiento para compartir los datos.</string>
<string name="message_toast_status_deleted">Tweet eliminado</string>
<string name="message_toast_status_favorited">Tweet marcado como favorito</string>
<string name="message_toast_status_like_removed">\"Me gusta\" borrado</string>
<string name="message_toast_status_liked">El twit ha gustado</string>
<string name="message_toast_status_retweeted">Retwitteado</string>
<string name="message_toast_status_saved_to_draft">Tweet guardado en borradores.</string>
<string name="message_toast_status_unfavorited">Tweet desmarcado como favorito</string>
<string name="message_toast_status_updated">Tweet enviado.</string>
<string name="message_toast_user_filters_removed">Eliminar este usuario de la lista filtrada</string>
<string name="message_toast_users_filters_added">Usuarios añadidos a la lista de filtros</string>
<string name="message_toast_wrong_api_key">Url de la API o clave de consumidor/secreto incorrectos, por favor compruébalo de nuevo.</string>
<string name="message_toast_wrong_username_password">Usuario/contraseña incorrectos</string>
<string name="message_user_muted">Usuario añadido a la lista de filtros. No verás tweets de estos usuarios en tu cronología ni en tu lista de menciones.</string>
<string name="message_user_unmuted">Eliminar este usuario de la lista filtrada.</string>
<string name="message_users_muted">Usuarios añadidos a la lista de filtros. No verás tweets de estos usuarios en tu cronología ni en tu lista de menciones.</string>
<string name="message_video_too_long">Vídeo demasiado largo</string>
<string name="message_video_too_short">Vídeo demasiado corto</string>
<string name="more">Más</string>
<string name="multi_select">Selección múltiple</string>
<string name="mute_user">Silenciar <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Silenciar <xliff:g id="name">%s</xliff:g>? Ya no verás los tweets de este usuario, mientras lo estés siguiendo.</string>

View File

@ -422,24 +422,10 @@
<string name="message_blocked_user"><xliff:g id="user">%s</xliff:g> مسدود شد.</string>
<string name="message_direct_message_deleted">پیام مستقیم حذف شد.</string>
<string name="message_direct_message_sent">پیام مستقیم ارسال شد.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">خطای شبکه.</string>
<string name="message_permission_request_compose_location">توییدر برای افزودن موقعیّت به توییت‌ها، نیاز به دسترسی موقعیّت دارد.</string>
<string name="message_permission_request_save_media">توییدر برای ذخیرهٔ رسانه، نیاز به دسترسی ذخیره دارد.</string>
<string name="message_permission_request_share_media">توییدر برای هم‌رسانی رسانه با برخی کاره‌ها، نیاز به دسترسی ذخیره دارد.</string>
<string name="message_please_wait">لطفاً صبر کنید.</string>
<string name="message_retweet_cancelled">بازتوییت لغو شد.</string>
<string name="message_search_deleted">جست‌وجو حذف شد.</string>
<string name="message_search_name_deleted">جست‌وجوی «<xliff:g id="name">%s</xliff:g>» حذف شد.</string>
<string name="message_search_name_saved">جست‌وجوی «<xliff:g id="name">%s</xliff:g>» ذخیره شد.</string>
<string name="message_search_saved">جست‌وجو ذخیره شد.</string>
<string name="message_status_deleted">توییت حذف شد.</string>
<string name="message_status_favorited">توییت برگزیده شد.</string>
<string name="message_status_like_removed">پسند برداشته شد.</string>
<string name="message_status_liked">توییت پسندیده شد.</string>
<string name="message_status_retweeted">بازتوییت شد.</string>
<string name="message_status_unfavorited">توییت برگزیده نشد.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -449,9 +435,11 @@
<string name="message_toast_already_logged_in">هم‌اکنون وارد شده‌اید.</string>
<string name="message_toast_cannot_get_location">نمی‌توان موقعیّتتان را گرفت.</string>
<string name="message_toast_error_occurred">مشکلی پیش آمد، لطفاً دوباره امتحان کنید.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">پیوند در حافظه رونوشت شد</string>
<string name="message_toast_livewp_daydream_enabled_message">هدیهٔ کوچکی برای شما وجود دارد. آن را در تنظیمات سامانه پیدا کنید (:</string>
<string name="message_toast_login_verification_failed">تأیید هویت ورود شکست خورد.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">بدون حساب</string>
<string name="message_toast_no_account_selected">هیچ حسابی گزینش نشده است.</string>
<string name="message_toast_press_again_to_close">برای بستن، دوباره فشار دهید</string>
@ -463,10 +451,6 @@
<string name="message_toast_status_saved_to_draft">توییت در چرک‌نویس‌ها ذخیره شد.</string>
<string name="message_toast_status_updated">توییت فرستاده شد.</string>
<string name="message_toast_wrong_api_key">نشانی API یا کلید/رمز مصرف‌کنندهٔ نادرست است، لطفاً دوباره آن‌ها را بررسی کنید.</string>
<string name="message_user_muted">این کاربر به فهرست پالایه افزوده شد. دیگر هیچ توییتی از این کاربر در خط زمان/فهرست اشارهٔ خود نخواهید دید.</string>
<string name="message_user_unmuted">این کاربر از فهرست پالایه برداشته شد.</string>
<string name="message_users_muted">کاربران به فهرست پالایه افزوده شدند. دیگر هیچ توییتی از این کاربران در خط زمان/فهرست اشارهٔ خود نخواهید دید.</string>
<string name="more">بیش‌تر</string>
<string name="multi_select">انتخاب چندگانه</string>
<string name="mute_user">بی‌صدا کردن <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message"><xliff:g id="name">%s</xliff:g> بی‌صدا شود؟ شما در حالی که هم‌چنان این کاربر را دنبال می‌کنید، دیگر توییت‌هایش را نمی‌بینید.</string>

View File

@ -402,21 +402,7 @@
<string name="message_blocked_user"><xliff:g id="user">%s</xliff:g> estetty.</string>
<string name="message_direct_message_deleted">Yksityisviesti poistettu.</string>
<string name="message_direct_message_sent">Yksityisviesti lähetetty.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Verkkovirhe.</string>
<string name="message_please_wait">Odota.</string>
<string name="message_retweet_cancelled">Uudelleentwiittaus peruttu.</string>
<string name="message_search_deleted">Haku poistettu.</string>
<string name="message_search_name_deleted">Haku \"<xliff:g id="name">%s</xliff:g>\" poistettu.</string>
<string name="message_search_name_saved">Haku \"<xliff:g id="name">%s</xliff:g>\" tallennettu.</string>
<string name="message_search_saved">Haku tallennettu.</string>
<string name="message_status_deleted">Twiitti poistettu.</string>
<string name="message_status_favorited">Twiitti lisätty suosikkeihin.</string>
<string name="message_status_like_removed">Tykkäys poistettu.</string>
<string name="message_status_liked">Tykkäsit twiitistä.</string>
<string name="message_status_retweeted">Uudelleentwiitattu.</string>
<string name="message_status_unfavorited">Twiitti poistettu suosikeista.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -424,9 +410,11 @@
<string name="message_toast_accepted_users_follow_request">Käyttäjän <xliff:g id="user">%s</xliff:g> seurauspyyntö on hyväksytty.</string>
<string name="message_toast_cannot_get_location">Sijaintiasi ei voida määrittää.</string>
<string name="message_toast_error_occurred">Tapahtui virhe, yritä uudelleen.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Linkki on kopioitu leikepöydälle</string>
<string name="message_toast_livewp_daydream_enabled_message">Sinulle on pieni yllätys. Etsi se järjestelmäasetuksista :)</string>
<string name="message_toast_login_verification_failed">Kirjautumisen varmennuspyyntö epäonnistui.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Ei tiliä</string>
<string name="message_toast_no_account_selected">Tiliä ei ole valittu.</string>
<string name="message_toast_press_again_to_close">Paina uudelleen sulkeaksesi</string>
@ -438,10 +426,6 @@
<string name="message_toast_status_saved_to_draft">Twiitti tallennettu luonnoksiin.</string>
<string name="message_toast_status_updated">Twiitti lähetetty.</string>
<string name="message_toast_wrong_api_key">Virheellinen API-osoite tai kulutusavain/salaus. Tarkista vielä kyseiset kentät.</string>
<string name="message_user_muted">Käyttäjä lisättiin suodatusluetteloon. Et näe tämän käyttäjän twiittejä omalla aikajanallasi tai maininnoissasi.</string>
<string name="message_user_unmuted">Tämä käyttäjä poistettiin suodatuslistasta.</string>
<string name="message_users_muted">Käyttäjät lisättiin suodatusluetteloon. Et näe näiden käyttäjien twiittejä omalla aikajanallasi tai maininnoissasi.</string>
<string name="more">Lisää</string>
<string name="multi_select">Monivalinta</string>
<string name="mute_user">Hiljennä <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Hiljennetäänkö <xliff:g id="name">%s</xliff:g>? Et näe enää twiittejä tältä käyttäjältä, vaikka seuraatkin häntä.</string>

View File

@ -454,25 +454,10 @@
<string name="message_direct_message_deleted">Message supprimé.</string>
<string name="message_direct_message_sent">Message envoyé.</string>
<string name="message_error_invalid_account">Certaines données de compte sont corrompues, Twidere va supprimer ces comptes pour éviter de planter.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_extra_features_not_purchased">Fonctionnalité avancée, non disponible sans achat</string>
<!-- Toast message for network errors -->
<string name="message_network_error">Erreur réseau.</string>
<string name="message_permission_request_compose_location">Twidere a besoin que vous autorisiez la localisation pour ajouter la position de vos tweets.</string>
<string name="message_permission_request_save_media">Twidere a besoin que vous autorisiez l\'accès aux fichiers pour sauver les médias.</string>
<string name="message_permission_request_share_media">Twidere nécessite des autorisations de stockage pour le partage de médias à certaines applications.</string>
<string name="message_please_wait">Veuillez patienter.</string>
<string name="message_retweet_cancelled">Retweet annulé.</string>
<string name="message_search_deleted">Recherche supprimée.</string>
<string name="message_search_name_deleted">Recherche \"<xliff:g id="name">%s</xliff:g>\" supprimée.</string>
<string name="message_search_name_saved">Recherche \"<xliff:g id="name">%s</xliff:g>\" sauvegardée.</string>
<string name="message_search_saved">Recherche sauvegardée.</string>
<string name="message_status_deleted">Tweet supprimé.</string>
<string name="message_status_favorited">Tweet ajouté aux favoris.</string>
<string name="message_status_like_removed">« J\'aime » supprimé.</string>
<string name="message_status_liked">Tweet aimé.</string>
<string name="message_status_retweeted">Retweeté.</string>
<string name="message_status_unfavorited">Tweet supprimé des favoris.</string>
<string name="message_sync_data_connect_hint">Connecter Twidere à un stockage réseau pour synchroniser les données</string>
<string name="message_sync_data_synced_with_name">Twidere est maintenant synchronisé avec <xliff:g example="ownCloud" id="name">%s</xliff:g></string>
<string name="message_sync_disconnect_from_name_confirm">Se déconnecter de <xliff:g example="ownCloud" id="name">%s</xliff:g>?</string>
@ -488,28 +473,41 @@
<string name="message_toast_cannot_get_location">Impossible d\'acquérir votre position.</string>
<string name="message_toast_compose_write_storage_no_permission">Une permission est requise pour supprimer une photo/vidéo prise</string>
<string name="message_toast_error_occurred">Une erreur s\'est produite, veuillez réessayer.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_extra_features_not_purchased">Fonctionnalité avancée, non disponible sans achat</string>
<string name="message_toast_link_copied_to_clipboard">Lien copié dans le presse-papier</string>
<string name="message_toast_livewp_daydream_enabled_message">Voici un petit cadeau pour vous, trouvez le dans vos paramètres du système :)</string>
<string name="message_toast_login_verification_failed">Échec lors de la vérification de la connexion.</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">Erreur réseau</string>
<string name="message_toast_no_account">Aucun compte</string>
<string name="message_toast_no_account_selected">Aucun compte sélectionné.</string>
<string name="message_toast_no_user_selected">Pas d\'utilisateur sélectionné</string>
<string name="message_toast_press_again_to_close">Appuyer une nouvelle fois pour fermer</string>
<string name="message_toast_profile_banner_image_updated">Image d\'entête du profil mise à jour.</string>
<string name="message_toast_retweet_cancelled">Retweet annulé</string>
<string name="message_toast_save_media_no_storage_permission">Les autorisations de stockage sont nécessaires pour sauvegarder les médias.</string>
<string name="message_toast_saved_to_gallery">Sauvegardé dans la galerie.</string>
<string name="message_toast_search_deleted">Recherche supprimée</string>
<string name="message_toast_search_name_deleted">Recherche \"<xliff:g id="name">%s</xliff:g>\" supprimée</string>
<string name="message_toast_search_name_saved">Recherche \"<xliff:g id="name">%s</xliff:g>\" sauvegardée</string>
<string name="message_toast_search_saved">Recherche sauvegardée</string>
<string name="message_toast_select_file_no_storage_permission">Les autorisations de stockage sont nécessaires pour sélectionner un fichier.</string>
<string name="message_toast_share_media_no_storage_permission">Une application nécessite lautorisation de stockage pour partager des médias.</string>
<string name="message_toast_status_deleted">Tweet supprimé</string>
<string name="message_toast_status_favorited">Tweet ajouté aux favoris</string>
<string name="message_toast_status_like_removed">« J\'aime » supprimé</string>
<string name="message_toast_status_liked">Tweet aimé</string>
<string name="message_toast_status_retweeted">Retweeté</string>
<string name="message_toast_status_saved_to_draft">Tweet sauvegardé dans les brouillons.</string>
<string name="message_toast_status_unfavorited">Tweet supprimé des favoris</string>
<string name="message_toast_status_updated">Tweet envoyé.</string>
<string name="message_toast_user_filters_removed">Utilisateur supprimé de la liste de filtres</string>
<string name="message_toast_users_filters_added">Ajouté au filtres</string>
<string name="message_toast_wrong_api_key">L\'URL de l\'API ou la clé utilisateur est incorrecte, merci de vérifier à nouveau.</string>
<string name="message_toast_wrong_username_password">Mauvais nom d\'utilisateur/mot de passe</string>
<string name="message_user_muted">Utilisateur ajouté au filtre. Les tweets de cet utilisateur napparaîtront plus dans votre fil d\'actualité ni dans vos mentions.</string>
<string name="message_user_unmuted">Utilisateur supprimé de la liste de filtres.</string>
<string name="message_users_muted">Utilisateurs ajoutés au filtre. Les tweets de ces utilisateurs napparaîtront plus dans votre fil d\'actualité ni dans vos mentions.</string>
<string name="message_video_too_long">Vidéo trop longue</string>
<string name="message_video_too_short">Vidéo trop courte</string>
<string name="more">Plus</string>
<string name="multi_select">Sélection multiple</string>
<string name="mute_user">Masquer <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Mettre en sourdine <xliff:g id="name">%s</xliff:g> ? Vous ne verrez plus les tweets de cet utilisateur tout en continuant de le suivre.</string>

View File

@ -406,19 +406,7 @@
<string name="message_blocked_user"><xliff:g id="user">%s</xliff:g> bloqueado.</string>
<string name="message_direct_message_deleted">Mensaxe directa eliminada.</string>
<string name="message_direct_message_sent">Mensaxe directa enviada.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Erro de rede.</string>
<string name="message_please_wait">Agarda, por favor.</string>
<string name="message_retweet_cancelled">Rechouchío cancelado.</string>
<string name="message_search_deleted">Busca eliminada.</string>
<string name="message_search_name_deleted">Eliminada a busca \"<xliff:g id="name">%s</xliff:g>\".</string>
<string name="message_search_name_saved">Gardada a busca \"<xliff:g id="name">%s</xliff:g>\".</string>
<string name="message_search_saved">Busca gardada.</string>
<string name="message_status_deleted">Chío eliminado.</string>
<string name="message_status_favorited">Chío marcado favorito.</string>
<string name="message_status_retweeted">Rechouchiado.</string>
<string name="message_status_unfavorited">Chío desmarcado favorito.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -427,9 +415,11 @@
<string name="message_toast_already_logged_in">Xa tes iniciada sesión.</string>
<string name="message_toast_cannot_get_location">Non se conseguiu acadar a túa localización.</string>
<string name="message_toast_error_occurred">Ocorreu un erro, por favor, téntao de novo.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Ligazón copiada no portapapeis</string>
<string name="message_toast_livewp_daydream_enabled_message">Aquí hai un pequeno agasallo para ti, atópao na configuración do sistema :)</string>
<string name="message_toast_login_verification_failed">Fallou a verificación de entrada.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Sen conta</string>
<string name="message_toast_no_account_selected">Sen conta seleccionada.</string>
<string name="message_toast_press_again_to_close">Preme outra vez para pechar</string>
@ -441,10 +431,6 @@
<string name="message_toast_status_saved_to_draft">Chío gardado en borradores.</string>
<string name="message_toast_status_updated">Chío enviado.</string>
<string name="message_toast_wrong_api_key">URL da API ou clave cliente incorrectas, por favor comproba de novo.</string>
<string name="message_user_muted">Usuario engadido á lista filtrada. Non verás os chíos deste usuario na túa liña de tempo ou mencións.</string>
<string name="message_user_unmuted">Usuario eliminado da lista filtrada.</string>
<string name="message_users_muted">Usuarios engadidos á lista filtrada. Non verás os chíos destes usuarios na túa liña de tempo ou mencións.</string>
<string name="more">Máis</string>
<string name="multi_select">Selección múltiple</string>
<string name="mute_user">Silenciar a <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Silenciar a <xliff:g id="name">%s</xliff:g>? Non verás máis chíos deste usuario pero mantés o seguimento.</string>

View File

@ -90,8 +90,6 @@
<string name="load_item_limit">लोड आइटम सीमा</string>
<string name="load_item_limit_summary">सेट आइटम लोड प्रति सीमा|</string>
<string name="mention_this_user">इस उपयोगकर्ता का उल्लेख करे</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_please_wait">कृपया प्रतीक्षा करें |</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
@ -99,8 +97,9 @@
-->
<string name="message_toast_cannot_get_location">आपके स्थान को प्राप्त नहीं कर सकते.</string>
<string name="message_toast_error_occurred">एक एर्रोर हुई है, फिर कोशिश करें |</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_toast_no_account_selected">कोई खाता चयन नहीं किया गया.</string>
<string name="more">अधिक</string>
<!-- Next item (tweet, user etc.) -->
<string name="notifications">सूचनाएँ</string>
<string name="notifications_type">सूचना प्रकार</string>

View File

@ -327,19 +327,7 @@
<string name="message_blocked_user"><xliff:g id="user">%s</xliff:g> blokiran/-a.</string>
<string name="message_direct_message_deleted">Izravna poruka obrisana.</string>
<string name="message_direct_message_sent">Izravna poruka poslana.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Greška mreže.</string>
<string name="message_please_wait">Molimo pričekajte.</string>
<string name="message_retweet_cancelled">Retweet poništen.</string>
<string name="message_search_deleted">Pretraga obrisana.</string>
<string name="message_search_name_deleted">Pretraga \"<xliff:g id="name">%s</xliff:g>\" obrisana.</string>
<string name="message_search_name_saved">Pretraga \"<xliff:g id="name">%s</xliff:g>\" spremljena.</string>
<string name="message_search_saved">Pretraga spremljena.</string>
<string name="message_status_deleted">Tweet obrisan.</string>
<string name="message_status_favorited">Tweet označen kao favorit.</string>
<string name="message_status_retweeted">Retweetano.</string>
<string name="message_status_unfavorited">Tweet više nije favorit.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -348,7 +336,9 @@
<string name="message_toast_already_logged_in">Već ste prijavljeni.</string>
<string name="message_toast_cannot_get_location">Nije moguće dobiti lokaciju.</string>
<string name="message_toast_error_occurred">Došlo je do greške, pokušajte ponovno.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_livewp_daydream_enabled_message">Evo malog poklona za vas, potražite ga u sistemskim postavkama :)</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Nema računa</string>
<string name="message_toast_no_account_selected">Račun nije odabran.</string>
<string name="message_toast_press_again_to_close">Pritisnite ponovno za izlaz</string>
@ -357,10 +347,6 @@
<string name="message_toast_status_saved_to_draft">Tweet spremljen u skicu.</string>
<string name="message_toast_status_updated">Tweet poslan.</string>
<string name="message_toast_wrong_api_key">Nevaljani API url ili korisnički ključ/tajna, provjerite ih opet.</string>
<string name="message_user_muted">Korisnik dodan na listu s filtrima. Nećete vidjeti tweetove ovog korisnika na svom polaznom timelineu/listi spominjanja.</string>
<string name="message_user_unmuted">Korisnik uklonjen s liste s filtrima.</string>
<string name="message_users_muted">Korisnici dodani na listu s filtrima. Nećete vidjeti tweetove ovih korisnika na svom polaznom timelineu/listi spominjanja.</string>
<string name="more">Više</string>
<string name="multi_select">Višestruki odabir</string>
<string name="mute_user">Utišaj <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Ušutjeti <xliff:g id="name">%s</xliff:g>? Više nećete vidjeti tweetove od ovog korisnika sve dok ga pratite.</string>

View File

@ -399,19 +399,7 @@
<string name="message_blocked_user"><xliff:g id="user">%s</xliff:g> blokkolva.</string>
<string name="message_direct_message_deleted">Privát üzenet törölve.</string>
<string name="message_direct_message_sent">Privát üzenet elküldve.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Hálózati hiba.</string>
<string name="message_please_wait">Kérem várjon.</string>
<string name="message_retweet_cancelled">Retweet megszakítva.</string>
<string name="message_search_deleted">Keresés törölve.</string>
<string name="message_search_name_deleted">A keresés, \"<xliff:g id="name">%s</xliff:g>\" törölve.</string>
<string name="message_search_name_saved">A keresés, \"<xliff:g id="name">%s</xliff:g>\" elmentve.</string>
<string name="message_search_saved">Keresés elmentve.</string>
<string name="message_status_deleted">Tweet törölve.</string>
<string name="message_status_favorited">Tweet kedvencnek bejelölve.</string>
<string name="message_status_retweeted">Retweetelve.</string>
<string name="message_status_unfavorited">Tweet kedvencek közül eltávolítva.</string>
<string name="message_sync_last_synced_time">Utolsó szinkronizálás: <xliff:g example="2017/1/1 12:00" id="time">%s </xliff:g></string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
@ -421,9 +409,12 @@
<string name="message_toast_already_logged_in">Ön már be van jelentkezve.</string>
<string name="message_toast_cannot_get_location">Helyzet meghatározása sikertelen.</string>
<string name="message_toast_error_occurred">Hiba lépett fel, kérem próbálja újra.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Link a vágólapra másolva</string>
<string name="message_toast_livewp_daydream_enabled_message">Íme egy kis ajándék neked, keresd a rendszer beállításokban :)</string>
<string name="message_toast_login_verification_failed">Bejelentkezési ellenőrzés sikertelen.</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">Hálózati hiba</string>
<string name="message_toast_no_account">Nincs fiók</string>
<string name="message_toast_no_account_selected">Nincs fiók kiválasztva.</string>
<string name="message_toast_press_again_to_close">Nyomd meg újra a bezáráshoz</string>
@ -435,10 +426,6 @@
<string name="message_toast_status_updated">Tweet elküldve.</string>
<string name="message_toast_wrong_api_key">Érvénytelen API hivatkozás, vagy felhasználói kulcs/jelszó. Kérlek ellenőrizd őket újra.</string>
<string name="message_toast_wrong_username_password">Nem megfelelő felhasználónév/jelszó</string>
<string name="message_user_muted">A felhasználó hozzá lett adva a szűrőlistához. Nem fogsz több tweetet látni ettől a felhasználótól az idővonaladon/említési listádon.</string>
<string name="message_user_unmuted">Ez a felhasználó el lett távolítva a szűrőlistáról.</string>
<string name="message_users_muted">A felhasználók hozzá lettek adva a szűrőlistához. Nem fogsz több tweetet látni ezektől a felhasználóktól az idővonaladon/említési listádon.</string>
<string name="more">Tovább</string>
<string name="multi_select">Többszörös kijelölés</string>
<string name="mute_user"><xliff:g id="name">%s</xliff:g> némítása</string>
<string name="mute_user_confirm_message">Némítsam <xliff:g id="name">%s</xliff:g> felhasználót? Nem látod többé a tweetjeit, de továbbra is követője leszel .</string>

View File

@ -328,7 +328,7 @@
<string name="filter_type_links">Tautan</string>
<string name="filter_type_sources">Sumber</string>
<string name="filter_type_users">Pengguna</string>
<string name="filter_user_confirm_message">Tambahkan <xliff:g example="Username" id="name"></xliff:g> pada penyaringan?</string>
<string name="filter_user_confirm_message">Tambahkan <xliff:g example="Username" id="name"/> pada penyaringan?</string>
<string name="follow_request_sent">Permintaan mengikuti terkirim</string>
<string name="followed_user"><xliff:g id="user">%s</xliff:g> diikuti.</string>
<string name="following_only">Pengikut Anda saja</string>
@ -447,25 +447,10 @@
<string name="message_direct_message_deleted">Direct message dihapus.</string>
<string name="message_direct_message_sent">Direct meesage terkirim.</string>
<string name="message_error_invalid_account">Beberapa data akun rusak, Twidere akan menghapus akun tersebut untuk mencegah kerusakan.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_extra_features_not_purchased">Fitur yang disempurnakan tidak dibeli</string>
<!-- Toast message for network errors -->
<string name="message_network_error">Masalah Jaringan.</string>
<string name="message_permission_request_compose_location">Twidere meminta ijin untuk menambahkan lokasi pada cuitan.</string>
<string name="message_permission_request_save_media">Twidere meminta ijin untuk menyimpan media pada ruang penyimpanan.</string>
<string name="message_permission_request_share_media">Twidere meminta ijin untuk membagikan media pada beberapa aplikasi.</string>
<string name="message_please_wait">Tunggu sebentar.</string>
<string name="message_retweet_cancelled">Retweet dibatalkan.</string>
<string name="message_search_deleted">Pencarian terhapus.</string>
<string name="message_search_name_deleted">Pencarian \"<xliff:g id="name">%s</xliff:g>\" terhapus.</string>
<string name="message_search_name_saved">Pencarian \"<xliff:g id="name">%s</xliff:g>\" tersimpan.</string>
<string name="message_search_saved">Pencarian tersimpan.</string>
<string name="message_status_deleted">Twit dihapus.</string>
<string name="message_status_favorited">Twit difavoritkan.</string>
<string name="message_status_like_removed">Hapus tanda suka.</string>
<string name="message_status_liked">Cuitan disukai.</string>
<string name="message_status_retweeted">Di-retweet.</string>
<string name="message_status_unfavorited">Twit batal difavoritkan.</string>
<string name="message_sync_data_connect_hint">Sambungkan Twidere dengan penyimpanan jaringan untuk sinkronisasi data</string>
<string name="message_sync_data_synced_with_name">Twidere telah disinkronisasikan dengan <xliff:g example="ownCloud" id="name">%s</xliff:g></string>
<string name="message_sync_disconnect_from_name_confirm">Putuskan dari <xliff:g example="ownCloud" id="name">%s</xliff:g>?</string>
@ -479,26 +464,39 @@
<string name="message_toast_already_logged_in">Anda sudah login.</string>
<string name="message_toast_cannot_get_location">Tidak bisa mendapatkan lokasi anda.</string>
<string name="message_toast_error_occurred">Terjadi kesalahan, silahkan coba lagi.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_extra_features_not_purchased">Fitur yang disempurnakan tidak dibeli</string>
<string name="message_toast_link_copied_to_clipboard">Tautan disalin ke clipboard</string>
<string name="message_toast_livewp_daydream_enabled_message">Ini sedikit hadiah untukmu, temukan sendiri di Pengaturan Sistem :)</string>
<string name="message_toast_login_verification_failed">Gagal Menverifikasi Login.</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">Masalah Jaringan.</string>
<string name="message_toast_no_account">Tidak ada akun</string>
<string name="message_toast_no_account_selected">Tidak ada akun yang dipilih.</string>
<string name="message_toast_no_user_selected">Tidak ada pengguna yang dipilih</string>
<string name="message_toast_press_again_to_close">Tekan sekali lagi untuk keluar</string>
<string name="message_toast_profile_banner_image_updated">Gambar banner profil telah diperbarui.</string>
<string name="message_toast_retweet_cancelled">Retweet dibatalkan.</string>
<string name="message_toast_save_media_no_storage_permission">Izin penyimpanan diperlukan untuk menyelesaikan media.</string>
<string name="message_toast_saved_to_gallery">Simpan ke galeri.</string>
<string name="message_toast_search_deleted">Pencarian terhapus.</string>
<string name="message_toast_search_name_deleted">Pencarian \"<xliff:g id="name">%s</xliff:g>\" terhapus.</string>
<string name="message_toast_search_name_saved">Pencarian \"<xliff:g id="name">%s</xliff:g>\" tersimpan.</string>
<string name="message_toast_search_saved">Pencarian tersimpan.</string>
<string name="message_toast_select_file_no_storage_permission">Izin penyimpanan diperlukan untuk memilih file.</string>
<string name="message_toast_share_media_no_storage_permission">Beberapa aplikasi memerlukan ijin penyimpanan untuk membagikan media.</string>
<string name="message_toast_status_deleted">Twit dihapus.</string>
<string name="message_toast_status_favorited">Twit difavoritkan.</string>
<string name="message_toast_status_like_removed">Hapus tanda suka.</string>
<string name="message_toast_status_liked">Cuitan disukai.</string>
<string name="message_toast_status_retweeted">Di-retweet.</string>
<string name="message_toast_status_saved_to_draft">Twit disimpan di draf.</string>
<string name="message_toast_status_unfavorited">Twit batal difavoritkan.</string>
<string name="message_toast_status_updated">Twit terkirim.</string>
<string name="message_toast_user_filters_removed">Hapus pengguna ini dari daftar saring.</string>
<string name="message_toast_users_filters_added">Menambahkan para pengguna ini ke daftar filter. Anda tidak akan lagi melihat tweet dari pengguna ini di linimasa home/daftar mention anda.</string>
<string name="message_toast_wrong_api_key">Kesalahan pada API url atau consumer key/secret, coba cek kembali.</string>
<string name="message_toast_wrong_username_password">Nama pengguna atau kata sandi salah</string>
<string name="message_user_muted">Pengguna telah ditambah ke daftar saringan. Anda tidak akan melihat tweet-nya di timeline/mention.</string>
<string name="message_user_unmuted">Hapus pengguna ini dari daftar saring.</string>
<string name="message_users_muted">Menambahkan para pengguna ini ke daftar filter. Anda tidak akan lagi melihat tweet dari pengguna ini di linimasa home/daftar mention anda.</string>
<string name="more">Lebih</string>
<string name="multi_select">Pilih banyak</string>
<string name="mute_user">Senyapkan <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Mute <xliff:g id="name">%s</xliff:g>? Anda tidak akan lagi melihat tweet dari pengguna ini selama anda mengikuti pengguna ini.</string>

View File

@ -402,19 +402,7 @@
<string name="message_blocked_user">Bloccato <xliff:g id="user">%s</xliff:g>.</string>
<string name="message_direct_message_deleted">Messaggio diretto cancellato.</string>
<string name="message_direct_message_sent">Messaggio diretto inviato.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Errore di rete.</string>
<string name="message_please_wait">Attendere prego.</string>
<string name="message_retweet_cancelled">Retweet annullato.</string>
<string name="message_search_deleted">Ricerca eliminata.</string>
<string name="message_search_name_deleted">Ricerca \"<xliff:g id="name">%s</xliff:g>\" eliminata.</string>
<string name="message_search_name_saved">Ricerca \"<xliff:g id="name">%s</xliff:g>\" salvata.</string>
<string name="message_search_saved">Ricerca salvata.</string>
<string name="message_status_deleted">Tweet eliminato.</string>
<string name="message_status_favorited">Tweet inserito tra i preferito.</string>
<string name="message_status_retweeted">Ritwittato.</string>
<string name="message_status_unfavorited">Tweet rimosso dai preferiti.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -423,9 +411,11 @@
<string name="message_toast_already_logged_in">Hai già effettuato il login.</string>
<string name="message_toast_cannot_get_location">Non è possibile ottenere la tua posizione.</string>
<string name="message_toast_error_occurred">Si è verificato un errore, riprova.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Link copiato negli appunti</string>
<string name="message_toast_livewp_daydream_enabled_message">Ecco un regalino per te, trovalo tra le impostazioni di sistema :)</string>
<string name="message_toast_login_verification_failed">Verifica di login fallita.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Nessun account</string>
<string name="message_toast_no_account_selected">Nessun account selezionato.</string>
<string name="message_toast_press_again_to_close">Premi di nuovo per chiudere</string>
@ -437,10 +427,6 @@
<string name="message_toast_status_saved_to_draft">Tweet salvato in bozze.</string>
<string name="message_toast_status_updated">Tweet inviato.</string>
<string name="message_toast_wrong_api_key">URL delle API non corretto, o consumer key/secret errata. Per favore, controllale.</string>
<string name="message_user_muted">Utente aggiunto alla lista dei filtrati. Non vedrai i suoi tweet nella timeline o tra le menzioni.</string>
<string name="message_user_unmuted">Rimuovi questo utente dal filtro lista.</string>
<string name="message_users_muted">Utenti aggiunti alla lista dei filtrati. Non vedrai i loro tweet nella timeline o tra le menzioni.</string>
<string name="more">Altro</string>
<string name="multi_select">Selezione multipla</string>
<string name="mute_user">Muto <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Silenziare <xliff:g id="name">%s</xliff:g>? Non vedrai più i tweets di questo utente ma continuerai a seguirlo.</string>

View File

@ -243,30 +243,23 @@
<string name="message_blocked_user">המשתמש <xliff:g id="user">%s</xliff:g> נחסם.</string>
<string name="message_direct_message_deleted">ההודעה הישירה נמחקה.</string>
<string name="message_direct_message_sent">ההודעה הישירה נשלחה.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">שגיאת רשת.</string>
<string name="message_please_wait">המתן בבקשה.</string>
<string name="message_search_deleted">החיפוש נמחק.</string>
<string name="message_search_name_deleted">החיפוש \"<xliff:g id="name">%s</xliff:g>\" נמחק.</string>
<string name="message_search_name_saved">החיפוש \"<xliff:g id="name">%s</xliff:g>\" נשמר.</string>
<string name="message_search_saved">החיפוש נשמר.</string>
<string name="message_status_deleted">הציוץ נמחק.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<string name="message_toast_cannot_get_location">לא ניתן לאתר את מיקומך.</string>
<string name="message_toast_error_occurred">שגיאה ארעה, נא נסה שנית.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">הקישור הועתק אל הלוח</string>
<string name="message_toast_login_verification_failed">אימות כניסה נכשל.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account_selected">לא נבחר חשבון.</string>
<string name="message_toast_profile_banner_image_updated">תמונת הכותרת של הפרופיל עודכנה.</string>
<string name="message_toast_saved_to_gallery">נשמר לגלריה.</string>
<string name="message_toast_status_saved_to_draft">הציוץ נשמר לטיוטה.</string>
<string name="message_toast_status_updated">הציוץ נשלח.</string>
<string name="message_toast_wrong_api_key">כתובת URL שגויה לAPI או מפתח/סוד שגויים, אנא בדוק/י אותם שוב.</string>
<string name="more">עוד</string>
<string name="multi_select">בחירה מרובה</string>
<string name="name_first">הצג שם בהתחלה</string>
<string name="name_first_summary_on">הצג שם בהתחלה</string>

View File

@ -454,25 +454,10 @@
<string name="message_direct_message_deleted">DMを削除しました。</string>
<string name="message_direct_message_sent">DMを送信しました。</string>
<string name="message_error_invalid_account">いくつかのアカウントのデータが破損しています。Twidere のクラッシュを防ぐために、これらのアカウントを削除します。</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_extra_features_not_purchased">追加機能パックは未購入です。</string>
<!-- Toast message for network errors -->
<string name="message_network_error">ネットワークエラー</string>
<string name="message_permission_request_compose_location">位置情報の権限は、ツイートに位置情報を追加するために必要です。</string>
<string name="message_permission_request_save_media">ストレージの権限は、Twidere がメディアを保存するために必要です。</string>
<string name="message_permission_request_share_media">ストレージの権限は、Twidere がメディアを他のアプリに共有するために必要です。</string>
<string name="message_please_wait">しばらくお待ちください…</string>
<string name="message_retweet_cancelled">リツイートをキャンセルしました。</string>
<string name="message_search_deleted">検索を削除しました。</string>
<string name="message_search_name_deleted">検索 \"<xliff:g id="name">%s</xliff:g>\"を削除しました。</string>
<string name="message_search_name_saved">検索 \"<xliff:g id="name">%s</xliff:g>\"を保存しました。</string>
<string name="message_search_saved">検索を保存しました。</string>
<string name="message_status_deleted">ツイートを削除しました。</string>
<string name="message_status_favorited">ツイートをいいねしました。</string>
<string name="message_status_like_removed">いいねを取り消しました</string>
<string name="message_status_liked">ツイートをいいねしました</string>
<string name="message_status_retweeted">リツイートしました。</string>
<string name="message_status_unfavorited">ツイートのいいねを解除しました。</string>
<string name="message_sync_data_connect_hint">データを同期するために Twidere をネットワークストレージに接続する</string>
<string name="message_sync_data_synced_with_name">Twidere が <xliff:g example="ownCloud" id="name">%s</xliff:g> と同期されました</string>
<string name="message_sync_disconnect_from_name_confirm"><xliff:g example="ownCloud" id="name">%s</xliff:g> から切断しますか?</string>
@ -482,34 +467,47 @@
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<string name="message_toast_accepted_users_follow_request"><xliff:g id="user">%s</xliff:g>さんのフォローリクエストを許可しました</string>
<string name="message_toast_accepted_users_follow_request"><xliff:g id="user">%s</xliff:g>さんのフォローリクエストを許可しました</string>
<string name="message_toast_added_to_filter">フィルターに追加しました</string>
<string name="message_toast_already_logged_in">あなたはすでにログインしています</string>
<string name="message_toast_cannot_get_location">位置情報が取得できません</string>
<string name="message_toast_compose_write_storage_no_permission">撮影した写真/動画を削除するには権限が必要です</string>
<string name="message_toast_error_occurred">エラーが発生しました。もう一度お試しください。</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_extra_features_not_purchased">追加機能パックは未購入です。</string>
<string name="message_toast_link_copied_to_clipboard">リンクがクリップボードにコピーされました</string>
<string name="message_toast_livewp_daydream_enabled_message">システム設定のどこかにプレゼントを隠したぜ!</string>
<string name="message_toast_login_verification_failed">ログイン認証に失敗しました</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">ネットワークエラー</string>
<string name="message_toast_no_account">アカウント無し</string>
<string name="message_toast_no_account_selected">アカウントが選択されていません</string>
<string name="message_toast_no_user_selected">ユーザを選択してください</string>
<string name="message_toast_press_again_to_close">閉じるにはもう一度押して下さい</string>
<string name="message_toast_profile_banner_image_updated">ヘッダー画像を更新しました</string>
<string name="message_toast_retweet_cancelled">リツイートをキャンセルしました。</string>
<string name="message_toast_save_media_no_storage_permission">ストレージアクセス許可は、メディアを保存するために必要とされます。</string>
<string name="message_toast_saved_to_gallery">ギャラリーに保存しました</string>
<string name="message_toast_search_deleted">検索を削除しました。</string>
<string name="message_toast_search_name_deleted">検索 \"<xliff:g id="name">%s</xliff:g>\"を削除しました。</string>
<string name="message_toast_search_name_saved">検索 \"<xliff:g id="name">%s</xliff:g>\"を保存しました。</string>
<string name="message_toast_search_saved">検索を保存しました。</string>
<string name="message_toast_select_file_no_storage_permission">ストレージアクセス許可は、ファイルを選択するために必要とされます。</string>
<string name="message_toast_share_media_no_storage_permission">一部のアプリケーションでは、メディアを共有するためのストレージのアクセス許可が要求されます。</string>
<string name="message_toast_status_deleted">ツイートを削除しました。</string>
<string name="message_toast_status_favorited">ツイートをいいねしました。</string>
<string name="message_toast_status_like_removed">いいねを取り消しました</string>
<string name="message_toast_status_liked">ツイートをいいねしました</string>
<string name="message_toast_status_retweeted">リツイートしました。</string>
<string name="message_toast_status_saved_to_draft">ツイートは下書きに保存されました</string>
<string name="message_toast_status_unfavorited">ツイートのいいねを解除しました。</string>
<string name="message_toast_status_updated">ツイートを送信しました。</string>
<string name="message_toast_user_filters_removed">フィルターリストから削除しました。</string>
<string name="message_toast_users_filters_added">複数のユーザーをフィルターリストに追加する。</string>
<string name="message_toast_wrong_api_key">API URL または consumer key/secret が正しくありません。もう一度確認してください。</string>
<string name="message_toast_wrong_username_password">間違ったユーザー名/パスワードです</string>
<string name="message_user_muted">このユーザーをフィルターリストに追加します。ホーム / つながり でこのユーザーのツイートを非表示にします。</string>
<string name="message_user_unmuted">フィルターリストから削除しました。</string>
<string name="message_users_muted">複数のユーザーをフィルターリストに追加する。ホーム / つながり にこのユーザーのツイートを非表示にする。</string>
<string name="message_toast_wrong_username_password">間違ったユーザー名/パスワードです。</string>
<string name="message_video_too_long">動画が長すぎます</string>
<string name="message_video_too_short">動画が短すぎます</string>
<string name="more">設定</string>
<string name="multi_select">複数選択</string>
<string name="mute_user"><xliff:g id="name">%s</xliff:g>さんをミュート</string>
<string name="mute_user_confirm_message"><xliff:g id="name">%s</xliff:g>さんをミュートしますか?フォローしたままで、このユーザーのツイートが表示されなくなります。</string>

View File

@ -409,19 +409,7 @@
<string name="message_blocked_user"><xliff:g id="user">%s</xliff:g>님을 차단했습니다.</string>
<string name="message_direct_message_deleted">쪽지가 삭제되었습니다.</string>
<string name="message_direct_message_sent">쪽지가 전송되었습니다.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">네트워크 오류입니다.</string>
<string name="message_please_wait">기다려 주세요.</string>
<string name="message_retweet_cancelled">리트윗이 취소되었습니다.</string>
<string name="message_search_deleted">검색어가 삭제되었습니다.</string>
<string name="message_search_name_deleted">\"<xliff:g id="name">%s</xliff:g>\" 검색어가 삭제되었습니다.</string>
<string name="message_search_name_saved">\"<xliff:g id="name">%s</xliff:g>\" 검색어가 저장되었습니다.</string>
<string name="message_search_saved">검색어가 저장되었습니다.</string>
<string name="message_status_deleted">트윗이 삭제되었습니다.</string>
<string name="message_status_favorited">트윗이 관심글로 담겼습니다.</string>
<string name="message_status_retweeted">리트윗되었습니다.</string>
<string name="message_status_unfavorited">트윗이 관심글에서 제외되었습니다.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -431,9 +419,11 @@
<string name="message_toast_already_logged_in">이미 로그인되어 있습니다.</string>
<string name="message_toast_cannot_get_location">위치를 찾을 수 없습니다.</string>
<string name="message_toast_error_occurred">오류가 발생했습니다. 다시 시도해 주십시오.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">링크가 클립보드로 복사되었습니다.</string>
<string name="message_toast_livewp_daydream_enabled_message">작은 선물을 드립니다. 시스템 설정에서 찾아보세요 :)</string>
<string name="message_toast_login_verification_failed">로그인 인증을 실패하였습니다.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">계정 없음</string>
<string name="message_toast_no_account_selected">계정이 선택되지 않았습니다.</string>
<string name="message_toast_press_again_to_close">다시 한번 누르면 닫힙니다</string>
@ -445,10 +435,6 @@
<string name="message_toast_status_saved_to_draft">트윗이 보관함에 저장되었습니다.</string>
<string name="message_toast_status_updated">트윗이 전송되었습니다.</string>
<string name="message_toast_wrong_api_key">부정확한 APL 주소 또는 컨슈머 키/시크릿입니다. 다시 한 번 확인해 주세요.</string>
<string name="message_user_muted">이 사용자 필터 리스트에 추가했습니다. 당신의 홈 타임라인/멘션 리스트에서 이 유저의 트윗이 보이지 않게 됩니다.</string>
<string name="message_user_unmuted">이 사용자를 필터에서 제외하였습니다.</string>
<string name="message_users_muted">이 사용자들을 필터에 추가했습니다. 메인 타임라인과 멘션 목록에서 이 사용자의 트윗이 보이지 않게 됩니다.</string>
<string name="more">기타</string>
<string name="multi_select">여러개 선택</string>
<string name="mute_user"><xliff:g id="name">%s</xliff:g> 뮤트하기</string>
<string name="mute_user_confirm_message"><xliff:g id="name">%s</xliff:g>를 뮤트하시겠습니까? 이 사용자를 계속 팔로우하면서 트윗은 보지 않으실 수 있습니다.</string>

View File

@ -23,12 +23,12 @@
<!-- Enhanced (paid) features title -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!-- Next item (tweet, user etc.) -->
<!-- Previous item (tweet, user etc.) -->
<!-- Normally you don't need to translate this -->

View File

@ -88,15 +88,14 @@
<string name="lists">Senarai</string>
<string name="media_uploader">Pemuat naik Media</string>
<string name="media_uploader_default">Lalai (Twitter)</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_please_wait">Sila tunggu.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_toast_no_account_selected">Tiada akaun dipilih.</string>
<string name="more">Lagi</string>
<string name="network">Rangkaian</string>
<!-- Next item (tweet, user etc.) -->
<string name="next_item">Selepas</string>

View File

@ -413,19 +413,7 @@
<string name="message_blocked_user"><xliff:g id="user">%s</xliff:g> Geblokkeerd.</string>
<string name="message_direct_message_deleted">Bericht verwijderd.</string>
<string name="message_direct_message_sent">Bericht verzonden.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Netwerkfout</string>
<string name="message_please_wait">Een ogenblik geduld.</string>
<string name="message_retweet_cancelled">Retweet geannuleerd.</string>
<string name="message_search_deleted">Zoekopdracht verwijderd.</string>
<string name="message_search_name_deleted">Zoekopdracht \"<xliff:g id="name">%s</xliff:g>\" verwijderd.</string>
<string name="message_search_name_saved">Zoekopdracht \"<xliff:g id="name">%s</xliff:g>\" opgeslagen.</string>
<string name="message_search_saved">Zoekopdracht opgeslagen.</string>
<string name="message_status_deleted">Tweet verwijderd.</string>
<string name="message_status_favorited">Tweet opgeslagen in favorieten.</string>
<string name="message_status_retweeted">Retweeted.</string>
<string name="message_status_unfavorited">Tweet verwijderd uit favorieten.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -433,9 +421,11 @@
<string name="message_toast_accepted_users_follow_request">Volgaanvraag van <xliff:g id="user">%s</xliff:g> aanvaard.</string>
<string name="message_toast_cannot_get_location">Kan uw locatie niet verkrijgen.</string>
<string name="message_toast_error_occurred">Er is iets misgegaan, probeer opnieuw.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Link naar plakbord gekopieerd</string>
<string name="message_toast_livewp_daydream_enabled_message">Hier is een klein cadeautje voor je, vind het in je systeeminstellingen :)</string>
<string name="message_toast_login_verification_failed">Inlogcontrole is mislukt.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Geen account</string>
<string name="message_toast_no_account_selected">Geen account geselecteerd.</string>
<string name="message_toast_press_again_to_close">Druk opnieuw om af te sluiten</string>
@ -447,10 +437,6 @@
<string name="message_toast_status_saved_to_draft">Tweet opgeslagen als ontwerp.</string>
<string name="message_toast_status_updated">Tweet verzonden.</string>
<string name="message_toast_wrong_api_key">Onjuiste API url of consument sleutel/geheim, controleer ze nog een keer.</string>
<string name="message_user_muted">Gebruiker toegevoegd aan filter lijst. Je zult geen tweets van deze gebruiker in je tijdlijn/vermeldingen zien.</string>
<string name="message_user_unmuted">Gebeuiker verwijderd van filter lijst.</string>
<string name="message_users_muted">Gebruiker toegevoegd aan filter lijst. Je zult geen tweets van deze gebruiker in je tijdlijn/vermeldingen zien.</string>
<string name="more">Meer</string>
<string name="multi_select">Select meerdere</string>
<string name="mute_user">Demp <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message"><xliff:g id="name">%s</xliff:g> dempen? Je ziet niet langer meer tweets van deze gebruiker, maar je volgt de gebruiker nog wel.</string>

View File

@ -354,19 +354,7 @@
<string name="message_blocked_user">Blokkerte <xliff:g id="user">%s</xliff:g>.</string>
<string name="message_direct_message_deleted">Direktemelding slettet.</string>
<string name="message_direct_message_sent">Direktemelding sendt.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Nettverksfeil.</string>
<string name="message_please_wait">Vennligst vent.</string>
<string name="message_retweet_cancelled">Retweet avbrutt.</string>
<string name="message_search_deleted">Søk slettet.</string>
<string name="message_search_name_deleted">Søket «<xliff:g id="name">%s</xliff:g>» er slettet.</string>
<string name="message_search_name_saved">Søket «<xliff:g id="name">%s</xliff:g>» er lagret.</string>
<string name="message_search_saved">Søk lagret.</string>
<string name="message_status_deleted">Tweet slettet.</string>
<string name="message_status_favorited">Tweet favorittmarkert.</string>
<string name="message_status_retweeted">Retweetet.</string>
<string name="message_status_unfavorited">Fjernet tweetens favorittmarkering.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -375,7 +363,9 @@
<string name="message_toast_already_logged_in">Du er allerede logget inn.</string>
<string name="message_toast_cannot_get_location">Kan ikke finne din posisjon.</string>
<string name="message_toast_error_occurred">Det oppstod en feil, prøv igjen.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_livewp_daydream_enabled_message">Her er en liten gave til deg, finn den i systeminnstillingene :)</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Ingen konto</string>
<string name="message_toast_no_account_selected">Ingen konto valgt.</string>
<string name="message_toast_press_again_to_close">Trykk igjen for å lukke</string>
@ -386,10 +376,6 @@
<string name="message_toast_status_saved_to_draft">Tweet lagret til utkast.</string>
<string name="message_toast_status_updated">Tweet sendt.</string>
<string name="message_toast_wrong_api_key">Feil API-URL eller brukernøkkel/passord. Sjekk at de er riktig skrevet.</string>
<string name="message_user_muted">La brukeren til filtreringslisten. Du vil ikke se tweets fra denne brukeren på tidslinjen eller som omtalelser.</string>
<string name="message_user_unmuted">Fjernet brukeren fra filterlisten.</string>
<string name="message_users_muted">La brukerne til filtreringslisten. Du vil ikke se tweets fra disse brukerne på tidslinjen eller som omtalelser.</string>
<string name="more">Mer</string>
<string name="multi_select">Flervalg</string>
<string name="mute_user">Skjul <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Skjule <xliff:g id="name">%s</xliff:g>? Du vil ikke lenger se tweets fra denne brukeren men du fortsetter å følge den.</string>

View File

@ -286,19 +286,7 @@
<string name="message_blocked_user">Zablokowano <xliff:g id="user">%s</xliff:g>.</string>
<string name="message_direct_message_deleted">Wiadomość bezpośrednia usunięta.</string>
<string name="message_direct_message_sent">Wiadomość bezpośrednia wysłana.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Błąd sieci.</string>
<string name="message_please_wait">Proszę czekać...</string>
<string name="message_retweet_cancelled">Przesyłanie dalej anulowane.</string>
<string name="message_search_deleted">Wyszukiwanie usunięte.</string>
<string name="message_search_name_deleted">Wyszukiwanie \"<xliff:g id="name">%s</xliff:g>\" usunięte.</string>
<string name="message_search_name_saved">Wyszukiwanie \"<xliff:g id="name">%s</xliff:g>\" zapisane.</string>
<string name="message_search_saved">Wyszukiwanie zapisane.</string>
<string name="message_status_deleted">Tweet usunięty.</string>
<string name="message_status_favorited">Tweet polubiony.</string>
<string name="message_status_retweeted">Przesłano dalej.</string>
<string name="message_status_unfavorited">Tweet usunięty z ulubionych.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -306,7 +294,9 @@
<string name="message_toast_accepted_users_follow_request">Zaakceptowano żądanie obserwowania od <xliff:g id="user">%s</xliff:g>.</string>
<string name="message_toast_cannot_get_location">Nie można wyszukać lokalizacji.</string>
<string name="message_toast_error_occurred">Wystąpił błąd, spróbuj ponownie.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_livewp_daydream_enabled_message">Oto mały prezent dla Ciebie, znajdź go w ustawieniach :)</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account_selected">Nie wybrano żadnego konta.</string>
<string name="message_toast_press_again_to_close">Naciśnij ponownie aby zamknąć</string>
<string name="message_toast_profile_banner_image_updated">Zdjęcie nagłówka profilu zaktualizowane.</string>
@ -314,10 +304,6 @@
<string name="message_toast_status_saved_to_draft">Tweet zapisany jako szkic.</string>
<string name="message_toast_status_updated">Tweet wysłany.</string>
<string name="message_toast_wrong_api_key">Nieprawidłowy adres API lub klucz/hasło klienta, proszę sprawdzić dane ponownie.</string>
<string name="message_user_muted">Dodano tego użytkownika do listy filtrów. Nie zobaczysz jego tweetów w strumieniu głównym i we wzmiankach.</string>
<string name="message_user_unmuted">Usunięto użytkownika z listy filtrów.</string>
<string name="message_users_muted">Dodano użytkowników do listy filtrów. Nie zobaczysz ich tweetów w strumieniu głównym i we wzmiankach.</string>
<string name="more">Więcej</string>
<string name="multi_select">Zaznaczanie wielokrotne</string>
<string name="mute_user">Wycisz <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Wyciszyć <xliff:g id="name">%s</xliff:g>? Nadal będziesz śledził tego użytkownika, jednak nie zobaczysz jego tweetów.</string>

View File

@ -415,21 +415,7 @@
<string name="message_blocked_user">Bloqueou <xliff:g id="user">%s</xliff:g>.</string>
<string name="message_direct_message_deleted">Mensagem direta excluída.</string>
<string name="message_direct_message_sent">Mensagem direta enviada.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Erro de rede.</string>
<string name="message_please_wait">Por favor, espere.</string>
<string name="message_retweet_cancelled">Retweet cancelado.</string>
<string name="message_search_deleted">Pesquisa excluída.</string>
<string name="message_search_name_deleted">Pesquisa \"<xliff:g id="name">%s</xliff:g>\" excluída.</string>
<string name="message_search_name_saved">Busca \"<xliff:g id="name">%s</xliff:g>\" salva.</string>
<string name="message_search_saved">Pesquisa salva.</string>
<string name="message_status_deleted">Tweet excluído.</string>
<string name="message_status_favorited">Tweet marcado como favorito.</string>
<string name="message_status_like_removed">Curtida removida.</string>
<string name="message_status_liked">Tweet curtido.</string>
<string name="message_status_retweeted">Retweetado.</string>
<string name="message_status_unfavorited">Tweet desmarcado como favorito.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -437,9 +423,12 @@
<string name="message_toast_accepted_users_follow_request">Foi aceita solicitação de seguidor de <xliff:g id="user">%s</xliff:g>.</string>
<string name="message_toast_cannot_get_location">Não foi possível obter sua localização.</string>
<string name="message_toast_error_occurred">Ocorreu um erro, por favor tente novamente.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Link copiado para a área de transferência</string>
<string name="message_toast_livewp_daydream_enabled_message">Aqui vai um pequeno presente, encontre-o nas configurações de sistema :)</string>
<string name="message_toast_login_verification_failed">A verificação do login falhou.</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">Erro de rede</string>
<string name="message_toast_no_account">Sem conta</string>
<string name="message_toast_no_account_selected">Nenhuma conta selecionada.</string>
<string name="message_toast_press_again_to_close">Carregar outra vez para fechar</string>
@ -452,10 +441,6 @@
<string name="message_toast_status_updated">Tweet enviado.</string>
<string name="message_toast_wrong_api_key">URL da API ou chave de usuário incorreta, verifique novamente.</string>
<string name="message_toast_wrong_username_password">Usuário/senha incorretos</string>
<string name="message_user_muted">Adicionar este usuário a lista de filtros. Você não verá tweets deste usuário em sua timeline/lista de menções.</string>
<string name="message_user_unmuted">Usuário removido da lista de filtros.</string>
<string name="message_users_muted">Usuários adicionados aos filtros. Você não verá tweets destes usuários em sua timeline e lista de menções.</string>
<string name="more">Mais</string>
<string name="multi_select">Multisseleção</string>
<string name="mute_user">Silenciar <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Silenciar <xliff:g id="name">%s</xliff:g>? Você não será capaz de ver tweets deste usuário enquanto continuar seguindo-o.</string>

View File

@ -35,12 +35,12 @@
<!-- Enhanced (paid) features title -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!-- Next item (tweet, user etc.) -->
<string name="other_settings">Alte configurări</string>
<string name="overwrite">Suprascrie</string>

View File

@ -449,25 +449,10 @@
<string name="message_direct_message_deleted">Личное сообщение удалено</string>
<string name="message_direct_message_sent">Личное сообщение отправлено</string>
<string name="message_error_invalid_account">Некоторые учетные данные были повреждены, Twidere удалит эти учетные записи для предотвращения ошибок.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_extra_features_not_purchased">Расширенные возможности не приобретены</string>
<!-- Toast message for network errors -->
<string name="message_network_error">Ошибка сети</string>
<string name="message_permission_request_compose_location">Twidere требуется разрешение расположения для добавления его в твиты.</string>
<string name="message_permission_request_save_media">Twidere требуется разрешение хранения для сохранения мультимедиа.</string>
<string name="message_permission_request_share_media">Twidere необходимо разрешение хранения для совместного использования мультимедиа для некоторых приложений.</string>
<string name="message_please_wait">Пожалуйста, подождите.</string>
<string name="message_retweet_cancelled">Ретвит отменен</string>
<string name="message_search_deleted">Запрос удалён</string>
<string name="message_search_name_deleted">Запрос \"<xliff:g id="name">%s</xliff:g>\" удалён</string>
<string name="message_search_name_saved">Запрос \"<xliff:g id="name">%s</xliff:g>\" сохранён</string>
<string name="message_search_saved">Запрос сохранён</string>
<string name="message_status_deleted">Твит удален</string>
<string name="message_status_favorited">Твит добавлен в избранное</string>
<string name="message_status_like_removed">Лайк удалён.</string>
<string name="message_status_liked">Твит нравится.</string>
<string name="message_status_retweeted">Ретвит выполнен</string>
<string name="message_status_unfavorited">Твит удален из избранного</string>
<string name="message_sync_data_connect_hint">Подключение Twidere к сетевому хранилищу для синхронизации</string>
<string name="message_sync_data_synced_with_name">Twidere теперь синхронизирован с <xliff:g example="ownCloud" id="name">%s </xliff:g></string>
<string name="message_sync_disconnect_from_name_confirm">Отключиться от <xliff:g example="ownCloud" id="name">%s </xliff:g>?</string>
@ -480,28 +465,41 @@
<string name="message_toast_added_to_filter">Добавлено в фильтр.</string>
<string name="message_toast_cannot_get_location">Не удается получить ваше местоположение.</string>
<string name="message_toast_error_occurred">Произошла ошибка, пожалуйста, попробуйте еще раз.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_extra_features_not_purchased">Расширенные возможности не приобретены</string>
<string name="message_toast_link_copied_to_clipboard">Ссылка скопирована в буфер обмена</string>
<string name="message_toast_livewp_daydream_enabled_message">Небольшой подарок для тебя, поищи его в настройках заставки (daydream) ;)</string>
<string name="message_toast_login_verification_failed">Ошибка проверки входа.</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">Ошибка сети</string>
<string name="message_toast_no_account">Нет аккаунтов</string>
<string name="message_toast_no_account_selected">Аккаунт не выбран.</string>
<string name="message_toast_no_user_selected">Пользователь не выбран</string>
<string name="message_toast_press_again_to_close">Нажмите снова, чтобы закрыть</string>
<string name="message_toast_profile_banner_image_updated">Изображение шапки профиля обновлено</string>
<string name="message_toast_retweet_cancelled">Ретвит отменен</string>
<string name="message_toast_save_media_no_storage_permission">Доступ к хранилищу необходим, чтобы сохранять медиафайлы.</string>
<string name="message_toast_saved_to_gallery">Сохранено в галерее</string>
<string name="message_toast_search_deleted">Запрос удалён</string>
<string name="message_toast_search_name_deleted">Запрос \"<xliff:g id="name">%s</xliff:g>\" удалён</string>
<string name="message_toast_search_name_saved">Запрос \"<xliff:g id="name">%s</xliff:g>\" сохранён</string>
<string name="message_toast_search_saved">Запрос сохранён</string>
<string name="message_toast_select_file_no_storage_permission">Доступ к хранилищу необходим, чтобы выбирать файлы.</string>
<string name="message_toast_share_media_no_storage_permission">Некоторые приложения требуют разрешения хранения для совместного использования мультимедиа.</string>
<string name="message_toast_status_deleted">Твит удален</string>
<string name="message_toast_status_favorited">Твит добавлен в избранное</string>
<string name="message_toast_status_like_removed">Лайк удалён.</string>
<string name="message_toast_status_liked">Твит нравится.</string>
<string name="message_toast_status_retweeted">Ретвит выполнен</string>
<string name="message_toast_status_saved_to_draft">Твит сохранен в черновик</string>
<string name="message_toast_status_unfavorited">Твит удален из избранного</string>
<string name="message_toast_status_updated">Твит отправлен</string>
<string name="message_toast_user_filters_removed">Этот пользователь удален из списка фильтров.</string>
<string name="message_toast_users_filters_added">Пользователи добавлены в фильтр. Теперь вы не увидите его твитов в ленте/упоминаниях.</string>
<string name="message_toast_wrong_api_key">Неправильный url-адрес API или пользовательский ключ/пароль, пожалуйста проверьте снова.</string>
<string name="message_toast_wrong_username_password">Неправильное имя пользователя или пароль</string>
<string name="message_user_muted">Пользователь добавлен в фильтры. Теперь вы не увидите его твитов в ленте/упоминаниях.</string>
<string name="message_user_unmuted">Этот пользователь удален из списка фильтров.</string>
<string name="message_users_muted">Пользователи добавлены в фильтр. Теперь вы не увидите его твитов в ленте/упоминаниях.</string>
<string name="message_video_too_long">Видео слишком длинное</string>
<string name="message_video_too_short">Видео слишком короткое</string>
<string name="more">Еще</string>
<string name="multi_select">Выбрать несколько</string>
<string name="mute_user">Заблокировать <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Игнорировать <xliff:g id="name">%s</xliff:g>? Вы больше не будете видеть твиты от этого пользователя, пока продолжите читать его.</string>

View File

@ -23,12 +23,12 @@
<!-- Enhanced (paid) features title -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!-- Next item (tweet, user etc.) -->
<!-- Previous item (tweet, user etc.) -->
<!-- Normally you don't need to translate this -->

View File

@ -23,12 +23,12 @@
<!-- Enhanced (paid) features title -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!-- Next item (tweet, user etc.) -->
<!-- Previous item (tweet, user etc.) -->
<!-- Normally you don't need to translate this -->

View File

@ -265,9 +265,6 @@
<string name="mention_user">Nämn <xliff:g id="user">%s</xliff:g></string>
<string name="mention_user_name">Omnämn <xliff:g id="name">%1$s</xliff:g></string>
<string name="message_api_data_corrupted">API-data korrupt.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Network error.</string>
<string name="message_please_wait">Snälla vänta.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
@ -276,13 +273,11 @@
<string name="message_toast_already_logged_in">Du har redan loggat in.</string>
<string name="message_toast_cannot_get_location">Det går inte att hitta din position.</string>
<string name="message_toast_error_occurred">Ett fel inträffade, var god försök igen.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_toast_no_account_selected">Inget konto valt.</string>
<string name="message_toast_saved_to_gallery">Sparade till galleriet.</string>
<string name="message_toast_status_saved_to_draft">Tweetet sparades till utkastet</string>
<string name="message_user_muted">Den här användaren är tillagd i filterlistan. Du kommer inte att se tweets från den här användaren i din tidslinje eller i dina omnämningar.</string>
<string name="message_user_unmuted">Användaren är borttagen ur filterlistan.</string>
<string name="message_users_muted">Lade till användare till filter lista. Du kommer inte att se tweets from de här användarna på hem tidslinje/mentions lista.</string>
<string name="more">Mer</string>
<string name="name_and_another_retweeted"><xliff:g id="user_name">%1$s</xliff:g> och en annan retweeted</string>
<string name="name_and_count_retweeted"><xliff:g id="user_name">%1$s</xliff:g> och <xliff:g id="retweet_count">%2$d</xliff:g> andra retweeted</string>
<string name="name_first">Visa namn först</string>

View File

@ -23,12 +23,12 @@
<!-- Enhanced (paid) features title -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!-- Next item (tweet, user etc.) -->
<!-- Previous item (tweet, user etc.) -->
<!-- Normally you don't need to translate this -->

View File

@ -413,19 +413,7 @@
<string name="message_blocked_user">บล็อค <xliff:g id="user">%s</xliff:g> แล้ว</string>
<string name="message_direct_message_deleted">ลบข้อความส่วนตัวแล้ว</string>
<string name="message_direct_message_sent">ส่งข้อความส่วนตัวแล้ว</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">ข้อผิดพลาดของเครือข่าย</string>
<string name="message_please_wait">กรุณารอ</string>
<string name="message_retweet_cancelled">ยกเลิกรีทวีตแล้ว</string>
<string name="message_search_deleted">ลบการค้นหาแล้ว</string>
<string name="message_search_name_deleted">ลบการค้นหา \"<xliff:g id="name">%s</xliff:g>\" แล้ว</string>
<string name="message_search_name_saved">บันทึกการค้นหา \"<xliff:g id="name">%s</xliff:g>\" แล้ว</string>
<string name="message_search_saved">บันทึกการค้นหาแล้ว</string>
<string name="message_status_deleted">ข้อความถูกลบแล้ว</string>
<string name="message_status_favorited">ถูกใจทวีตแล้ว</string>
<string name="message_status_retweeted">รีทวีตแล้ว</string>
<string name="message_status_unfavorited">เลิกถูกใจทวีตแล้ว</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -434,9 +422,11 @@
<string name="message_toast_already_logged_in">คุณเข้าสู่ระบบอยู่แล้ว</string>
<string name="message_toast_cannot_get_location">ไม่สามารถรับที่อยู่ได้</string>
<string name="message_toast_error_occurred">มีข้อผิดพลาดเกิดขึ้น กรุณาลองอีกครั้ง</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">คัดลอกลิงค์ไปยังคลิปบอร์ดแล้ว</string>
<string name="message_toast_livewp_daydream_enabled_message">เรามีของขวัญเล็กๆ น้อยๆ จะให้คุณ หาให้เจอในการตั้งค่าระบบ :)</string>
<string name="message_toast_login_verification_failed">การยืนยันการล็อคอินล้มเหลว</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">ไม่มีแอคเคาท์</string>
<string name="message_toast_no_account_selected">ไม่มีบัญชีผู้ใช้ที่เลือกไว้</string>
<string name="message_toast_press_again_to_close">กดอีกครั้งเพื่อปิด</string>
@ -448,10 +438,6 @@
<string name="message_toast_status_saved_to_draft">บันทึกข้อความร่างแล้ว</string>
<string name="message_toast_status_updated">ข้อความถูกส่งแล้ว</string>
<string name="message_toast_wrong_api_key">API URL หรือ consumer key/secret ไม่ถูกต้อง โปรดตรวจสอบอีกครั้ง</string>
<string name="message_user_muted">เพิ่มผู้ใช้นี้ลงในรายการฟิลเตอร์แล้ว คุณจะไม่เห็นทวีตใดๆจากผู้ใช้นี้ในหน้าหลักและหน้าเมนชั่น</string>
<string name="message_user_unmuted">ลบผู้ใช้ออกจากรายการฟิลเตอร์แล้ว</string>
<string name="message_users_muted">เพิ่มผู้ใช้เหล่านี้ลงในรายการฟิลเตอร์แล้ว คุณจะไม่เห็นทวีตใดๆจากผู้ใช้เหล่านี้ในหน้าหลักและหน้าเมนชั่น.</string>
<string name="more">เพิ่มเติม</string>
<string name="multi_select">เลือกหลายอัน</string>
<string name="mute_user">มิ้ว <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">มิ้ว <xliff:g id="name">%s</xliff:g> หรือไม่ คุณจะไม่ได้เห็นทวีตจากผู้ใช้รายนี้ในขณะที่คุณยังติดตามผู้ใช้รายนี้อยู่</string>

View File

@ -412,19 +412,7 @@
<string name="message_blocked_user"><xliff:g id="user">%s</xliff:g> engelledi.</string>
<string name="message_direct_message_deleted">Doğrudan mesaj silindi.</string>
<string name="message_direct_message_sent">Doğrudan mesaj gönderildi.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Bağlantı hatası.</string>
<string name="message_please_wait">Lütfen bekleyin.</string>
<string name="message_retweet_cancelled">Retweet iptal edildi.</string>
<string name="message_search_deleted">Arama silindi.</string>
<string name="message_search_name_deleted">Arama \"<xliff:g id="name">%s</xliff:g>\" silindi.</string>
<string name="message_search_name_saved">Arama \"<xliff:g id="name">%s</xliff:g>\" kaydedildi.</string>
<string name="message_search_saved">Arama kaydedildi.</string>
<string name="message_status_deleted">Tweet silindi.</string>
<string name="message_status_favorited">Tweet favorilere eklendi.</string>
<string name="message_status_retweeted">Retweet\'lendi.</string>
<string name="message_status_unfavorited">Tweet favorilerden çıkarıldı.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -433,9 +421,11 @@
<string name="message_toast_already_logged_in">Zaten giriş yaptınız</string>
<string name="message_toast_cannot_get_location">Konumunuz alınamıyor.</string>
<string name="message_toast_error_occurred">Bir hata oluştu, lütfen daha sonra deneyin.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Bağlantı panoya kopyalandı</string>
<string name="message_toast_livewp_daydream_enabled_message">Ayarlar\'a girerek sizin için hazırladığımız küçük hediyeyi bulabilirsiniz :)</string>
<string name="message_toast_login_verification_failed">Giriş doğrulaması başarısız oldu.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Hesap yok</string>
<string name="message_toast_no_account_selected">Hesap seçilmedi.</string>
<string name="message_toast_press_again_to_close">Kapatmak için tekrar basın</string>
@ -447,10 +437,6 @@
<string name="message_toast_status_saved_to_draft">Tweet taslaklara kaydedildi.</string>
<string name="message_toast_status_updated">Tweet gönderildi.</string>
<string name="message_toast_wrong_api_key">Geçersiz API url\'si veya müşteri anahtar\'ı/gizli\'si, Lütfen onları tekrar kontrol edin.</string>
<string name="message_user_muted">Bu kullanıcı filtre listesine eklendi. Bu kullanıcıdan gelen tweetleri zaman akışınızda /bahsedenler listenizde görmeyeceksiniz.</string>
<string name="message_user_unmuted">Bu kullanıcı filtreden çıkarılmış.</string>
<string name="message_users_muted">Kullanıcılar filtre listesine eklendi. Bu kullanıcılardan gelen tweetleri zaman akışınızda /bahsedenler listenizde görmeyeceksiniz.</string>
<string name="more">Dahası</string>
<string name="multi_select">Çoklu seçim</string>
<string name="mute_user">Sustur <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message"><xliff:g id="name">%s</xliff:g>\'i sessize al? Artık zaman akışınızda bu kişinin Tweetlerini görmeyeceksiniz.</string>

View File

@ -413,19 +413,7 @@
<string name="message_blocked_user">Заблоковано <xliff:g id="user">%s</xliff:g>.</string>
<string name="message_direct_message_deleted">Видалено пряме повідомлення.</string>
<string name="message_direct_message_sent">Надіслано пряме повідомлення.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">Помилка мережі.</string>
<string name="message_please_wait">Зачекайте.</string>
<string name="message_retweet_cancelled">Ретвіт скасовано.</string>
<string name="message_search_deleted">Пошук вилучено.</string>
<string name="message_search_name_deleted">Пошук \"<xliff:g id="name">%s</xliff:g>\" вилучено.</string>
<string name="message_search_name_saved">Пошук \"<xliff:g id="name">%s</xliff:g>\" збережено.</string>
<string name="message_search_saved">Пошук збережено.</string>
<string name="message_status_deleted">Твіт видалено.</string>
<string name="message_status_favorited">Твіт обрано.</string>
<string name="message_status_retweeted">Ретвітнуто.</string>
<string name="message_status_unfavorited">Твіт видалено з обраних.</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -434,9 +422,11 @@
<string name="message_toast_already_logged_in">Ви вже увійшли.</string>
<string name="message_toast_cannot_get_location">Не вдається отримати ваше розташування.</string>
<string name="message_toast_error_occurred">Трапилася помилка, спробуйте ще раз.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">Посилання скопійовано до буферу обміну</string>
<string name="message_toast_livewp_daydream_enabled_message">Тут є маленький дарунок для вас, знайдіть його у ваших системних налаштуваннях :)</string>
<string name="message_toast_login_verification_failed">Не вдалося підтвердити вхід.</string>
<!-- Toast message for network errors -->
<string name="message_toast_no_account">Немає профілю</string>
<string name="message_toast_no_account_selected">Не вибрано жодного профілю.</string>
<string name="message_toast_press_again_to_close">Натисни ще раз, щоб закрити</string>
@ -448,10 +438,6 @@
<string name="message_toast_status_saved_to_draft">Твіт збережено як чернетку.</string>
<string name="message_toast_status_updated">Твіт надіслано.</string>
<string name="message_toast_wrong_api_key">Невірне API url або ключ користувача, перевірте їх ще раз.</string>
<string name="message_user_muted">Користувач доданий в фільтри. Тепер ви не побачите його твітів в стрічці/згадках.</string>
<string name="message_user_unmuted">Користувач виключений з фільтру.</string>
<string name="message_users_muted">Користувачі додані в фільтр. Тепер ви не побачите їхніх твітів в стрічці / згадках.</string>
<string name="more">Більше</string>
<string name="multi_select">Множинний вибір</string>
<string name="mute_user">Ігнорувати <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">Ігнорувати <xliff:g id="name">%s</xliff:g>? Ви більше не побачите твітів користувача, але все одно будете його читачем.</string>

View File

@ -29,12 +29,12 @@
<!-- Enhanced (paid) features title -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!-- Next item (tweet, user etc.) -->
<!-- Previous item (tweet, user etc.) -->
<!-- Normally you don't need to translate this -->

View File

@ -299,7 +299,7 @@
<string name="error_message_tweet_shorten_failed">推文缩短失败</string>
<string name="error_message_tweet_shortener_not_found">未找到推文缩短扩展,它可能已经被删除</string>
<string name="error_message_with_action"><xliff:g id="action">%1$s</xliff:g> 时发生问题:<xliff:g id="message">%2$s</xliff:g></string>
<string name="error_no_access_for_credentials">您的应用不能访问这个接口启用了“强制使用不公开API”</string>
<string name="error_no_access_for_credentials">您的应用不能访问这个接口</string>
<string name="error_no_dm_permission">没有私信权限。请检查您注册的 Twitter 应用的权限设置。</string>
<string name="error_title_device_incompatible">不兼容的设备</string>
<string name="error_too_many_photos_fanfou">饭否只能上传一张照片</string>
@ -454,25 +454,10 @@
<string name="message_direct_message_deleted">私信已删除</string>
<string name="message_direct_message_sent">私信已发送</string>
<string name="message_error_invalid_account">一些帐号数据已损坏Twidere 将删除这些帐户以避免崩溃。</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_extra_features_not_purchased">尚未购买增强功能</string>
<!-- Toast message for network errors -->
<string name="message_network_error">网络错误</string>
<string name="message_permission_request_compose_location">Twidere 需要权限来向推文添加位置</string>
<string name="message_permission_request_save_media">Twidere 需要存储权限来保存媒体</string>
<string name="message_permission_request_share_media">Twidere 需要存储权限来向一些应用分享媒体</string>
<string name="message_please_wait">请稍等</string>
<string name="message_retweet_cancelled">转推已取消</string>
<string name="message_search_deleted">搜索已删除</string>
<string name="message_search_name_deleted">搜索 “<xliff:g id="name">%s</xliff:g>” 已删除</string>
<string name="message_search_name_saved">搜索 “<xliff:g id="name">%s</xliff:g>” 已保存</string>
<string name="message_search_saved">搜索已保存</string>
<string name="message_status_deleted">推文已删除</string>
<string name="message_status_favorited">推文已收藏</string>
<string name="message_status_like_removed">已取消喜欢了推文</string>
<string name="message_status_liked">已喜欢了推文</string>
<string name="message_status_retweeted">已转推</string>
<string name="message_status_unfavorited">推文已取消收藏</string>
<string name="message_sync_data_connect_hint">将 Twidere 连接到网络存储来同步数据</string>
<string name="message_sync_data_synced_with_name">Twidere 现在已经和 <xliff:g example="ownCloud" id="name">%s</xliff:g> 同步</string>
<string name="message_sync_disconnect_from_name_confirm"><xliff:g example="ownCloud" id="name">%s</xliff:g> 断开连接?</string>
@ -488,28 +473,41 @@
<string name="message_toast_cannot_get_location">不能获得您的位置</string>
<string name="message_toast_compose_write_storage_no_permission">需要权限来删除拍摄的照片或视频</string>
<string name="message_toast_error_occurred">发生错误,请重试</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_extra_features_not_purchased">尚未购买增强功能</string>
<string name="message_toast_link_copied_to_clipboard">链接已复制到剪贴板</string>
<string name="message_toast_livewp_daydream_enabled_message">我有一份小礼物给您,去系统设置看看吧 :)</string>
<string name="message_toast_login_verification_failed">登录验证失败</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">网络错误</string>
<string name="message_toast_no_account">没有帐号</string>
<string name="message_toast_no_account_selected">没有选择帐号</string>
<string name="message_toast_no_user_selected">没有选择用户</string>
<string name="message_toast_press_again_to_close">再次按下以关闭</string>
<string name="message_toast_profile_banner_image_updated">个人资料横幅图片已更新</string>
<string name="message_toast_retweet_cancelled">转推已取消</string>
<string name="message_toast_save_media_no_storage_permission">需要存储访问权限来保存媒体</string>
<string name="message_toast_saved_to_gallery">已保存到相册</string>
<string name="message_toast_search_deleted">搜索已删除</string>
<string name="message_toast_search_name_deleted">搜索 “<xliff:g id="name">%s</xliff:g>” 已删除</string>
<string name="message_toast_search_name_saved">搜索 “<xliff:g id="name">%s</xliff:g>” 已保存</string>
<string name="message_toast_search_saved">搜索已保存</string>
<string name="message_toast_select_file_no_storage_permission">需要存储访问权限来选择文件</string>
<string name="message_toast_share_media_no_storage_permission">一些应用程序需要存储权限分享媒体</string>
<string name="message_toast_status_deleted">推文已删除</string>
<string name="message_toast_status_favorited">推文已收藏</string>
<string name="message_toast_status_like_removed">已取消喜欢了推文</string>
<string name="message_toast_status_liked">已喜欢了推文</string>
<string name="message_toast_status_retweeted">已转推</string>
<string name="message_toast_status_saved_to_draft">推文已经保存到草稿箱</string>
<string name="message_toast_status_unfavorited">推文已取消收藏</string>
<string name="message_toast_status_updated">推文已发送</string>
<string name="message_toast_user_filters_removed">从过滤器列表中删除了这位用户</string>
<string name="message_toast_users_filters_added">你过滤了这些用户,你将不会在主页/提及中看到这些用户的推文</string>
<string name="message_toast_wrong_api_key">API 设置不正确</string>
<string name="message_toast_wrong_username_password">用户名/密码错误</string>
<string name="message_user_muted">您过滤了这位用户,您将不会在主页/提及中看到这位用户的推文</string>
<string name="message_user_unmuted">从过滤器列表中删除了这位用户</string>
<string name="message_users_muted">你过滤了这些用户,你将不会在主页/提及中看到这些用户的推文</string>
<string name="message_video_too_long">视频太长</string>
<string name="message_video_too_short">视频太短</string>
<string name="more">更多</string>
<string name="multi_select">多选</string>
<string name="mute_user">隐藏 <xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">隐藏 <xliff:g id="name">%s</xliff:g> 吗?您将在保持关注这位用户的情况下,在首页看不到这位用户的推文。</string>

View File

@ -58,6 +58,7 @@
<string name="action_open_in_browser">在瀏覽器中打開</string>
<string name="action_pick_color">選取顏色</string>
<string name="action_purchase">購買</string>
<string name="action_purchase_features_pack">購買功能包</string>
<string name="action_quote">引用</string>
<string name="action_record_video">錄影</string>
<string name="action_refresh">更新</string>
@ -92,8 +93,11 @@
<string name="action_subscribe">訂閲</string>
<string name="action_subscribing_to_list">訂閲列表</string>
<!-- [verb] Connect to network storage like Dropbox and Google Drive etc -->
<string name="action_sync_connect_to_storage">連接</string>
<!-- [verb] Disconnect from network storage -->
<string name="action_sync_disconnect">斷開連接</string>
<string name="action_sync_settings">設定</string>
<string name="action_sync_sync_now">立刻同步</string>
<string name="action_take_photo">拍照</string>
<string name="action_toggle">切換</string>
<string name="action_translate">翻譯</string>
@ -379,6 +383,7 @@
<string name="keyboard_shortcut_hint">按下按鍵</string>
<string name="keyboard_shortcuts">快捷鍵</string>
<string name="keyword_filter_name">關鍵詞:<xliff:g id="name">%s</xliff:g></string>
<string name="label_account_type">帳號類型</string>
<string name="label_auth_type">驗證方式</string>
<string name="label_background_operation_service">後台操作服務</string>
<string name="label_data_provider">Twidere 資料庫存儲</string>
@ -439,21 +444,7 @@
<string name="message_blocked_user">封鎖了 <xliff:g id="user">%s</xliff:g></string>
<string name="message_direct_message_deleted">私信已刪除</string>
<string name="message_direct_message_sent">私信已發送</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<string name="message_network_error">網路錯誤</string>
<string name="message_please_wait">請稍等</string>
<string name="message_retweet_cancelled">轉推已取消</string>
<string name="message_search_deleted">搜尋已刪除</string>
<string name="message_search_name_deleted">搜尋 \"<xliff:g id="name">%s</xliff:g>\" 已刪除</string>
<string name="message_search_name_saved">搜尋 \"<xliff:g id="name">%s</xliff:g>\" 已儲存</string>
<string name="message_search_saved">搜尋已保存</string>
<string name="message_status_deleted">推文已刪除</string>
<string name="message_status_favorited">推文已收藏</string>
<string name="message_status_like_removed">已取消喜歡了推文。</string>
<string name="message_status_liked">已喜歡了推文</string>
<string name="message_status_retweeted">已轉推</string>
<string name="message_status_unfavorited">推文已取消收藏</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
@ -463,26 +454,38 @@
<string name="message_toast_already_logged_in">您已經登入</string>
<string name="message_toast_cannot_get_location">無法取得您的位置</string>
<string name="message_toast_error_occurred">發生錯誤,請重試</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_link_copied_to_clipboard">連結已複製到剪貼簿</string>
<string name="message_toast_livewp_daydream_enabled_message">我有一份小禮物給您,去系統設定裡看看吧 :)</string>
<string name="message_toast_login_verification_failed">登入驗證失敗</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">網路錯誤</string>
<string name="message_toast_no_account">沒有帳號</string>
<string name="message_toast_no_account_selected">沒有選擇帳號</string>
<string name="message_toast_no_user_selected">沒有選擇使用者</string>
<string name="message_toast_press_again_to_close">再次按下以關閉</string>
<string name="message_toast_profile_banner_image_updated">個人資料橫幅圖片已更新</string>
<string name="message_toast_retweet_cancelled">轉推已取消</string>
<string name="message_toast_save_media_no_storage_permission">保存媒體文件需要存儲許可</string>
<string name="message_toast_saved_to_gallery">已儲存到相簿。</string>
<string name="message_toast_search_deleted">搜尋已刪除</string>
<string name="message_toast_search_name_deleted">搜尋 \"<xliff:g id="name">%s</xliff:g>\" 已刪除</string>
<string name="message_toast_search_name_saved">搜尋 \"<xliff:g id="name">%s</xliff:g>\" 已儲存</string>
<string name="message_toast_search_saved">搜尋已保存</string>
<string name="message_toast_select_file_no_storage_permission">選擇文件需要存儲許可</string>
<string name="message_toast_share_media_no_storage_permission">一些應用程式需要儲存權限來分享媒體</string>
<string name="message_toast_status_deleted">推文已刪除</string>
<string name="message_toast_status_favorited">推文已收藏</string>
<string name="message_toast_status_like_removed">已取消喜歡了推文。</string>
<string name="message_toast_status_liked">已喜歡了推文</string>
<string name="message_toast_status_retweeted">已轉推</string>
<string name="message_toast_status_saved_to_draft">推文已經儲存到草稿箱</string>
<string name="message_toast_status_unfavorited">推文已取消收藏</string>
<string name="message_toast_status_updated">推文已發送</string>
<string name="message_toast_user_filters_removed">從過濾器列表中刪除了這位使用者</string>
<string name="message_toast_users_filters_added">您過濾了這些用戶,你將不會在主頁/提及中看到這些用戶的推文</string>
<string name="message_toast_wrong_api_key">API地址或者consumer key/secret不正確請檢查</string>
<string name="message_toast_wrong_username_password">帳號或密碼錯誤</string>
<string name="message_user_muted">您過濾了這個用戶,你將不會在主頁/提及中看到這個用戶的推文</string>
<string name="message_user_unmuted">從過濾器列表中刪除了這位使用者</string>
<string name="message_users_muted">您過濾了這些用戶,你將不會在主頁/提及中看到這些用戶的推文</string>
<string name="more">更多</string>
<string name="multi_select">多選</string>
<string name="mute_user">靜音<xliff:g id="name">%s</xliff:g></string>
<string name="mute_user_confirm_message">靜音 <xliff:g id="name">%s</xliff:g> 嗎?您將在保持關注這位使用者的情況下,在首頁看不到這位使用者的推文。</string>

View File

@ -23,12 +23,12 @@
<!-- Enhanced (paid) features title -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- GNU social group like https://quitter.se/group/qvitter -->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<!-- Toast message for network errors -->
<!-- Next item (tweet, user etc.) -->
<!-- Previous item (tweet, user etc.) -->
<!-- Normally you don't need to translate this -->

View File

@ -196,32 +196,32 @@
<xliff:g id="user">%1$s</xliff:g> favorited <xliff:g id="target">%2$s</xliff:g>\'s tweet.</string>
<string name="activity_by_friends_favorite_multi">
<xliff:g id="user">%1$s</xliff:g> favorited <xliff:g
id="target">%2$s</xliff:g> and <xliff:g id="other">%3$s</xliff:g>\'s tweet.</string>
id="target">%2$s</xliff:g> and <xliff:g id="other">%3$s</xliff:g>\'s tweet.</string>
<string name="activity_by_friends_follow">
<xliff:g id="user">%1$s</xliff:g> is following <xliff:g id="target">%2$s</xliff:g>.</string>
<string name="activity_by_friends_follow_multi">
<xliff:g id="user">%1$s</xliff:g> is following <xliff:g
id="target">%2$s</xliff:g> and <xliff:g id="other">%3$s</xliff:g>.</string>
id="target">%2$s</xliff:g> and <xliff:g id="other">%3$s</xliff:g>.</string>
<string name="activity_by_friends_like">
<xliff:g id="user">%1$s</xliff:g> liked <xliff:g id="target">%2$s</xliff:g>\'s tweet.</string>
<string name="activity_by_friends_like_multi">
<xliff:g id="user">%1$s</xliff:g> liked <xliff:g
id="target">%2$s</xliff:g> and <xliff:g id="other">%3$s</xliff:g>\'s tweet.</string>
id="target">%2$s</xliff:g> and <xliff:g id="other">%3$s</xliff:g>\'s tweet.</string>
<string name="activity_by_friends_list_created">
<xliff:g id="user">%1$s</xliff:g> created list <xliff:g id="target">%2$s</xliff:g>.</string>
<string name="activity_by_friends_list_created_multi">
<xliff:g id="user">%1$s</xliff:g> created list <xliff:g
id="target">%2$s</xliff:g> and <xliff:g id="other">%1$s</xliff:g>.</string>
id="target">%2$s</xliff:g> and <xliff:g id="other">%1$s</xliff:g>.</string>
<string name="activity_by_friends_list_member_added">
<xliff:g id="user">%1$s</xliff:g> added <xliff:g id="target">%2$s</xliff:g> to list.</string>
<string name="activity_by_friends_list_member_added_multi">
<xliff:g id="user">%1$s</xliff:g> added <xliff:g
id="target">%2$s</xliff:g> and <xliff:g id="other">%1$s</xliff:g> to list.</string>
id="target">%2$s</xliff:g> and <xliff:g id="other">%1$s</xliff:g> to list.</string>
<string name="activity_by_friends_retweet">
<xliff:g id="user">%1$s</xliff:g> retweeted <xliff:g id="target">%2$s</xliff:g>\'s tweet.</string>
<string name="activity_by_friends_retweet_multi">
<xliff:g id="user">%1$s</xliff:g> retweeted <xliff:g
id="target">%2$s</xliff:g> and <xliff:g id="other">%3$s</xliff:g>\'s tweet.</string>
id="target">%2$s</xliff:g> and <xliff:g id="other">%3$s</xliff:g>\'s tweet.</string>
<string name="activity_joined_twitter">
<xliff:g id="user">%s</xliff:g> joined Twitter.</string>
<string name="activity_joined_twitter_multi">
@ -237,7 +237,7 @@
<string name="add_to_list">Add to list</string>
<string name="added_user_to_list">Added <xliff:g
id="user">%1$s</xliff:g> to list \"<xliff:g id="list">%2$s</xliff:g>\".</string>
id="user">%1$s</xliff:g> to list \"<xliff:g id="list">%2$s</xliff:g>\".</string>
<string name="and_N_more">and <xliff:g id="count">%d</xliff:g> more</string>
@ -265,7 +265,7 @@
<string name="belongs_to">Belongs to</string>
<string name="block_user_confirm_message">Block <xliff:g
example="Username" id="name">%s</xliff:g>? This user won\'t be able to follow you, mention you or send you direct messages.</string>
example="Username" id="name">%s</xliff:g>? This user won\'t be able to follow you, mention you or send you direct messages.</string>
<string name="both">Both</string>
@ -353,7 +353,7 @@
</string>
<string name="delete_user_confirm_message">Delete <xliff:g id="name">%s</xliff:g>? This can\'t be undone.</string>
<string name="delete_user_from_list_confirm">Delete <xliff:g
id="user">%1$s</xliff:g> from list \"<xliff:g id="list">%2$s</xliff:g>\"?</string>
id="user">%1$s</xliff:g> from list \"<xliff:g id="list">%2$s</xliff:g>\"?</string>
<string name="delete_user_list">Delete list <xliff:g id="name">%s</xliff:g>
</string>
<string name="delete_user_list_confirm_message">Delete list <xliff:g id="name">%s</xliff:g>? This can\'t be undone.</string>
@ -361,7 +361,7 @@
<string name="deleted_list">Deleted list \"<xliff:g id="list">%s</xliff:g>\".</string>
<string name="deleted_user_from_list">Deleted <xliff:g
id="user">%1$s</xliff:g> from list \"<xliff:g id="list">%2$s</xliff:g>\".</string>
id="user">%1$s</xliff:g> from list \"<xliff:g id="list">%2$s</xliff:g>\".</string>
<string name="denied_users_follow_request">Denied <xliff:g id="user">%s</xliff:g>\'s follow request.</string>
@ -369,7 +369,7 @@
<string name="destroy_saved_search">Delete saved search \"<xliff:g id="name">%s</xliff:g>\"</string>
<string
name="destroy_saved_search_confirm_message">Delete saved search \"<xliff:g id="name">%s</xliff:g>\"? You can re-save this search later.</string>
name="destroy_saved_search_confirm_message">Delete saved search \"<xliff:g id="name">%s</xliff:g>\"? You can re-save this search later.</string>
<string name="destroy_status">Delete tweet</string>
<string name="destroy_status_confirm_message">Delete this tweet?</string>
@ -419,19 +419,19 @@
<string name="error_message_message_too_long">Message too long.</string>
<string name="error_message_no_content">No content</string>
<string
name="error_message_rate_limit">Twitter\'s rate limit exceeded, please retry <xliff:g id="time">%s</xliff:g>
name="error_message_rate_limit">Twitter\'s rate limit exceeded, please retry <xliff:g id="time">%s</xliff:g>
</string>
<string
name="error_message_rate_limit_with_action">Twitter\'s rate limit exceeded while <xliff:g
id="action">%1$s</xliff:g>, please retry <xliff:g id="time">%2$s</xliff:g>
name="error_message_rate_limit_with_action">Twitter\'s rate limit exceeded while <xliff:g
id="action">%1$s</xliff:g>, please retry <xliff:g id="time">%2$s</xliff:g>
</string>
<string name="error_message_status_too_long">Tweet too long.</string>
<string name="error_message_tweet_shorten_failed">Tweet shorten failed.</string>
<string name="error_message_tweet_shortener_not_found">Tweet shortener not found, maybe it was uninstalled.</string>
<string name="error_message_with_action">Error while <xliff:g
id="action">%1$s</xliff:g>: <xliff:g id="message">%2$s</xliff:g>
id="action">%1$s</xliff:g>: <xliff:g id="message">%2$s</xliff:g>
</string>
<string name="error_no_access_for_credentials">Your application can\'t access this resource, have you enabled \'Force using private APIs\'?</string>
<string name="error_no_access_for_credentials">Your application can\'t access this resource.</string>
<string name="error_no_dm_permission">No direct message permission, check your Twitter application permission setting.</string>
<string name="error_title_device_incompatible">Incompatible device</string>
<string name="error_too_many_photos_fanfou">Too many photos</string>
@ -475,7 +475,7 @@
<string name="filter_type_sources">Sources</string>
<string name="filter_type_users">Users</string>
<string name="filter_user_confirm_message">Add <xliff:g
example="Username" id="name">%s</xliff:g> to filter?</string>
example="Username" id="name">%s</xliff:g> to filter?</string>
<string name="follow_request_sent">Follow request sent</string>
@ -495,9 +495,9 @@
<string name="from_name">From <xliff:g id="name">%1$s</xliff:g>
</string>
<string name="from_name_and_N_others">From <xliff:g
id="name">%1$s</xliff:g> and <xliff:g id="name">%2$d</xliff:g> others</string>
id="name">%1$s</xliff:g> and <xliff:g id="name">%2$d</xliff:g> others</string>
<string name="from_name_and_name">From <xliff:g
id="name">%1$s</xliff:g> and <xliff:g id="name">%2$s</xliff:g>
id="name">%1$s</xliff:g> and <xliff:g id="name">%2$s</xliff:g>
</string>
<string name="function">Function</string>
@ -612,7 +612,7 @@
<string name="lists">Lists</string>
<string name="lists_following_user">Lists following this user</string>
<string
name="lists_following_user_with_name">Lists following <xliff:g id="name">%s</xliff:g>
name="lists_following_user_with_name">Lists following <xliff:g id="name">%s</xliff:g>
</string>
<string name="load_defaults">Load defaults</string>
@ -659,74 +659,71 @@
<string name="message_direct_message_deleted">Direct message deleted.</string>
<string name="message_direct_message_sent">Direct message sent.</string>
<string name="message_error_invalid_account">Some account data are corrupted, Twidere will remove those accounts to prevent crash.</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_extra_features_not_purchased">Enhanced features not purchased.</string>
<!-- Toast message for network errors -->
<string name="message_network_error">Network error.</string>
<string name="message_permission_request_compose_location">Twidere needs location permission for adding location to tweets.</string>
<string name="message_permission_request_save_media">Twidere needs storage permission for saving media.</string>
<string name="message_permission_request_share_media">Twidere needs storage permission for sharing media to some apps.</string>
<string name="message_please_wait">Please wait.</string>
<string name="message_retweet_cancelled">Retweet cancelled.</string>
<string name="message_search_deleted">Search deleted.</string>
<string name="message_search_name_deleted">Search \"<xliff:g id="name">%s</xliff:g>\" deleted.</string>
<string name="message_search_name_saved">Search \"<xliff:g id="name">%s</xliff:g>\" saved.</string>
<string name="message_search_saved">Search saved.</string>
<string name="message_status_deleted">Tweet deleted.</string>
<string name="message_status_favorited">Tweet favorited.</string>
<string name="message_status_like_removed">Like removed.</string>
<string name="message_status_liked">Tweet liked.</string>
<string name="message_status_retweeted">Retweeted.</string>
<string name="message_status_unfavorited">Tweet unfavorited.</string>
<string name="message_sync_data_connect_hint">Connect Twidere with network storage to sync data</string>
<string
name="message_sync_data_synced_with_name">Twidere is now synced with <xliff:g
example="ownCloud" id="name">%s</xliff:g>
name="message_sync_data_synced_with_name">Twidere is now synced with <xliff:g
example="ownCloud" id="name">%s</xliff:g>
</string>
<string
name="message_sync_disconnect_from_name_confirm">Disconnect from <xliff:g
example="ownCloud" id="name">%s</xliff:g>?</string>
name="message_sync_disconnect_from_name_confirm">Disconnect from <xliff:g
example="ownCloud" id="name">%s</xliff:g>?</string>
<string name="message_sync_last_synced_time">Last synced: <xliff:g
example="2017/1/1 12:00" id="time">%s</xliff:g>
example="2017/1/1 12:00" id="time">%s</xliff:g>
</string>
<string name="message_tab_field_is_required">Field \"<xliff:g
example="Field" id="name">%s</xliff:g>\" is required</string>
example="Field" id="name">%s</xliff:g>\" is required</string>
<!--
~ Toast messages, according to https://material.io/guidelines/style/writing.html#writing-capitalization-punctuation ,
~ periods should be omitted
-->
<eat-comment/>
<string
name="message_toast_accepted_users_follow_request">Accepted <xliff:g id="user">%s</xliff:g>\'s follow request.</string>
name="message_toast_accepted_users_follow_request">Accepted <xliff:g id="user">%s</xliff:g>\'s follow request.</string>
<string name="message_toast_added_to_filter">Added to filter</string>
<string name="message_toast_already_logged_in">You have already logged in</string>
<string name="message_toast_cannot_get_location">Can\'t get your location</string>
<string name="message_toast_compose_write_storage_no_permission">Permission required to delete taken photo/video</string>
<string name="message_toast_error_occurred">An error occurred, please try again</string>
<!-- Toast message for enhanced (paid) features not purchased while trying to restore purchase -->
<string name="message_toast_extra_features_not_purchased">Enhanced features not purchased</string>
<string name="message_toast_link_copied_to_clipboard">Link copied to clipboard</string>
<string name="message_toast_livewp_daydream_enabled_message">Here\'s a little present for you, find it in your system settings :)</string>
<string name="message_toast_login_verification_failed">Login verification failed</string>
<!-- Toast message for network errors -->
<string name="message_toast_network_error">Network error</string>
<string name="message_toast_no_account">No account</string>
<string name="message_toast_no_account_selected">No account selected</string>
<string name="message_toast_no_user_selected">No user selected</string>
<string name="message_toast_press_again_to_close">Press again to close</string>
<string name="message_toast_profile_banner_image_updated">Profile banner image updated</string>
<string name="message_toast_retweet_cancelled">Retweet cancelled</string>
<string name="message_toast_save_media_no_storage_permission">Storage permission is needed to save media</string>
<string name="message_toast_saved_to_gallery">Saved to gallery</string>
<string name="message_toast_search_deleted">Search deleted</string>
<string name="message_toast_search_name_deleted">Search \"<xliff:g id="name">%s</xliff:g>\" deleted</string>
<string name="message_toast_search_name_saved">Search \"<xliff:g id="name">%s</xliff:g>\" saved</string>
<string name="message_toast_search_saved">Search saved</string>
<string name="message_toast_select_file_no_storage_permission">Storage permission is needed to select file</string>
<string name="message_toast_share_media_no_storage_permission">Some apps requires storage permission to share media</string>
<string name="message_toast_status_deleted">Tweet deleted</string>
<string name="message_toast_status_favorited">Tweet favorited</string>
<string name="message_toast_status_like_removed">Like removed</string>
<string name="message_toast_status_liked">Tweet liked</string>
<string name="message_toast_status_retweeted">Retweeted</string>
<string name="message_toast_status_saved_to_draft">Tweet saved to draft</string>
<string name="message_toast_status_unfavorited">Tweet unfavorited</string>
<string name="message_toast_status_updated">Tweet sent</string>
<string name="message_toast_user_filters_removed">Removed from filters</string>
<string name="message_toast_users_filters_added">Added to filters</string>
<string name="message_toast_wrong_api_key">Incorrect API settings</string>
<string name="message_toast_wrong_username_password">Wrong username/password</string>
<string name="message_user_muted">Added to filters</string>
<string name="message_user_unmuted">Removed from filters</string>
<string name="message_users_muted">Added to filters</string>
<string name="message_video_too_long">Video too long</string>
<string name="message_video_too_short">Video too short</string>
<string name="more">More</string>
<string name="multi_select">Multi select</string>
<string name="mute_user">Mute <xliff:g id="name">%s</xliff:g>
@ -785,7 +782,7 @@
<xliff:g id="user">%1$s</xliff:g> sent you <xliff:g id="messages_count">%2$d</xliff:g> direct messages.</string>
<string name="notification_direct_message_multiple_users">
<xliff:g id="user">%1$s</xliff:g> and <xliff:g
id="users_count">%2$d</xliff:g> others sent you <xliff:g id="messages_count">%3$d</xliff:g> direct messages.</string>
id="users_count">%2$d</xliff:g> others sent you <xliff:g id="messages_count">%3$d</xliff:g> direct messages.</string>
<string name="notification_light_color">Light Color</string>
<string name="notification_mention">
<xliff:g id="user">%s</xliff:g> mentioned you.</string>
@ -795,7 +792,7 @@
<string name="notification_status">New tweet by <xliff:g id="user">%s</xliff:g>
</string>
<string name="notification_status_multiple">New Tweet by <xliff:g
id="user">%1$s</xliff:g> and <xliff:g id="count">%2$d</xliff:g> others</string>
id="user">%1$s</xliff:g> and <xliff:g id="count">%2$d</xliff:g> others</string>
<string name="notifications">Notifications</string>
<string name="notifications_type">Notifications type</string>
@ -927,7 +924,7 @@
<string name="quote_format">Quote format</string>
<string name="quote_format_summary">\"[TEXT]\" = Tweet text\n\"[NAME]\" = Twitter username</string>
<string name="quote_name_text">Quote <xliff:g
id="name">%1$s</xliff:g>: <xliff:g id="text">%2$s</xliff:g>
id="name">%1$s</xliff:g>: <xliff:g id="text">%2$s</xliff:g>
</string>
<string name="quote_original_status">Quote original tweet</string>
<string name="quote_protected_status_warning_message">This tweet is protected.\n\nProtected users usually don\'t want their tweets to be shared publicly.</string>
@ -962,7 +959,7 @@
<string name="reply_to">Reply to <xliff:g id="user_name">%s</xliff:g>
</string>
<string name="reply_to_name_text">Reply to <xliff:g
id="name">%1$s</xliff:g>: <xliff:g id="text">%2$s</xliff:g>
id="name">%1$s</xliff:g>: <xliff:g id="text">%2$s</xliff:g>
</string>
<string name="report_for_spam">Report spam</string>
@ -990,7 +987,7 @@
<string name="retweeted_by_name">Retweeted by <xliff:g id="user_name">%s</xliff:g>
</string>
<string name="retweeted_by_name_with_count">Retweeted by <xliff:g
id="user_name">%1$s</xliff:g> and <xliff:g id="retweet_count">%2$d</xliff:g> others</string>
id="user_name">%1$s</xliff:g> and <xliff:g id="retweet_count">%2$d</xliff:g> others</string>
<string name="retweets_of_me">Retweets of me</string>
@ -1038,7 +1035,7 @@
<string name="sensitive_content_warning">This tweet may have sensitive content, continue?</string>
<string
name="sent_follow_request_to_user">Sent follow request to <xliff:g id="user">%s</xliff:g>.</string>
name="sent_follow_request_to_user">Sent follow request to <xliff:g id="user">%s</xliff:g>.</string>
<string name="server_address">Server address</string>
@ -1097,8 +1094,8 @@
</string>
<string name="status_format_time_source">
<xliff:g example="0:00, Jan 1 2017"
id="time">%1$s</xliff:g> · <xliff:g
example="Twidere for Android" id="source">%2$s</xliff:g>
id="time">%1$s</xliff:g> · <xliff:g
example="Twidere for Android" id="source">%2$s</xliff:g>
</string>
<string name="status_hint">What\'s happening?</string>
<string name="status_is_duplicate">Your tweet is a duplicate.</string>
@ -1108,9 +1105,9 @@
<string name="status_not_updated">Tweet not sent.</string>
<string name="status_not_updated_summary">Tweet not sent, and saved to drafts.</string>
<string
name="status_share_subject_format_with_time">Tweet from <xliff:g
id="name">%1$s</xliff:g> (@<xliff:g
id="screen_name">%2$s</xliff:g>), at <xliff:g id="time">%3$s</xliff:g>
name="status_share_subject_format_with_time">Tweet from <xliff:g
id="name">%1$s</xliff:g> (@<xliff:g
id="screen_name">%2$s</xliff:g>), at <xliff:g id="time">%3$s</xliff:g>
</string>
<string name="status_share_text_format_with_link">
<xliff:g id="text">%1$s</xliff:g>\n\n<xliff:g id="link">%2$s</xliff:g>
@ -1263,17 +1260,17 @@
<string name="unread_count">Unread count</string>
<string
name="unsubscribe_from_user_list">Unsubscribe from list <xliff:g id="name">%s</xliff:g>
name="unsubscribe_from_user_list">Unsubscribe from list <xliff:g id="name">%s</xliff:g>
</string>
<string
name="unsubscribe_from_user_list_confirm_message">Unsubscribe from list <xliff:g id="name">%s</xliff:g>? You can re-subscribe to this list later.</string>
name="unsubscribe_from_user_list_confirm_message">Unsubscribe from list <xliff:g id="name">%s</xliff:g>? You can re-subscribe to this list later.</string>
<string
name="unsubscribed_from_list">Unsubscribed from list \"<xliff:g id="list">%s</xliff:g>\".</string>
name="unsubscribed_from_list">Unsubscribed from list \"<xliff:g id="list">%s</xliff:g>\".</string>
<string name="unsupported_activity_action_summary">Please report action above</string>
<string
name="unsupported_login_verification_type_name">Unsupported login verification type <xliff:g id="name">%1$s</xliff:g>, please report to support account.</string>
name="unsupported_login_verification_type_name">Unsupported login verification type <xliff:g id="name">%1$s</xliff:g>, please report to support account.</string>
<string name="update_status">Send tweet</string>