Merge tag 'v19.0' into develop

This commit is contained in:
Mike Barnes 2023-07-30 17:50:50 +10:00
commit eeeb6a8599
160 changed files with 6469 additions and 1305 deletions

View file

@ -235,6 +235,19 @@
tools:itemCount="2"
tools:listitem="@layout/item_account_field" />
<TextView
android:id="@+id/accountDateJoined"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
tools:text="April, 1971"
android:textColor="@color/textColorSecondary"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/accountFieldList"
app:layout_constraintBottom_toTopOf="@id/accountRemoveView"/>
<TextView
android:id="@+id/accountRemoveView"
android:layout_width="match_parent"
@ -245,7 +258,7 @@
android:lineSpacingMultiplier="1.1"
android:text="@string/label_remote_account"
android:visibility="gone"
app:layout_constraintTop_toBottomOf="@id/accountFieldList"
app:layout_constraintTop_toBottomOf="@id/accountDateJoined"
tools:visibility="visible" />
<androidx.constraintlayout.widget.ConstraintLayout

View file

@ -239,6 +239,7 @@
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior" />
<LinearLayout
android:id="@+id/composeBottomBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"

View file

@ -8,11 +8,13 @@
android:fitsSystemWindows="true">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/mainCoordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.keylesspalace.tusky.MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="@dimen/actionbar_elevation"
@ -75,6 +77,13 @@
<include layout="@layout/item_status_bottom_sheet" />
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
android:layout_gravity="center" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
<com.mikepenz.materialdrawer.widget.MaterialDrawerSliderView

View file

@ -16,8 +16,8 @@
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:contentInsetStartWithNavigation="0dp"
android:elevation="@dimen/actionbar_elevation"
app:contentInsetStartWithNavigation="0dp"
app:layout_scrollFlags="scroll|snap|enterAlways"
app:navigationIcon="?attr/homeAsUpIndicator" />
@ -27,8 +27,9 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabMaxWidth="0dp"
app:tabMode="fixed"
app:tabTextAppearance="@style/TuskyTabAppearance"/>
app:tabTextAppearance="@style/TuskyTabAppearance" />
</com.google.android.material.appbar.AppBarLayout>
@ -38,6 +39,6 @@
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<include layout="@layout/item_status_bottom_sheet"/>
<include layout="@layout/item_status_bottom_sheet" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View file

@ -1,48 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:padding="8dp">
android:paddingStart="16dp"
android:paddingTop="8dp"
android:paddingEnd="16dp"
android:paddingBottom="8dp">
<ImageView
android:id="@+id/avatar"
android:layout_width="42dp"
android:layout_height="42dp"
android:layout_centerVertical="true"
android:layout_marginEnd="8dp"
android:contentDescription="@null"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginEnd="24dp"
android:foregroundGravity="center_vertical"
android:importantForAccessibility="no"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:src="@drawable/avatar_default" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_toEndOf="@id/avatar"
android:gravity="center_vertical"
android:orientation="vertical">
<ImageView
android:id="@+id/avatarBadge"
android:layout_width="24dp"
android:layout_height="24dp"
android:contentDescription="@string/profile_badge_bot_text"
android:src="@drawable/bot_badge"
app:layout_constraintBottom_toBottomOf="@id/avatar"
app:layout_constraintEnd_toEndOf="@id/avatar" />
<TextView
android:id="@+id/display_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:textColor="?android:textColorPrimary"
android:textSize="?attr/status_text_large"
android:textStyle="normal|bold"
tools:text="Conny Duck" />
<TextView
android:id="@+id/displayName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="14dp"
android:ellipsize="end"
android:maxLines="1"
android:textColor="?android:textColorPrimary"
android:textSize="?attr/status_text_large"
android:textStyle="normal|bold"
app:layout_constraintBottom_toTopOf="@id/username"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/avatar"
app:layout_constraintTop_toTopOf="@id/avatar"
app:layout_constraintVertical_chainStyle="packed"
tools:text="Display name" />
<TextView
android:id="@+id/username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:textColor="?android:textColorSecondary"
android:textSize="?attr/status_text_medium"
tools:text="\@ConnyDuck" />
<TextView
android:id="@+id/username"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="14dp"
android:ellipsize="end"
android:maxLines="1"
android:textColor="?android:textColorSecondary"
android:textSize="?attr/status_text_medium"
app:layout_constraintBottom_toBottomOf="@id/avatar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/avatar"
app:layout_constraintTop_toBottomOf="@id/displayName"
tools:text="\@username" />
</LinearLayout>
</RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<View xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/status_divider" />

View file

@ -5,24 +5,24 @@
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="8dp">
tools:ignore="UseCompoundDrawables">
<ImageView
android:id="@+id/preview"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginStart="4dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="4dp"
android:layout_marginBottom="4dp"
android:contentDescription="@null"
android:padding="4dp" />
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:importantForAccessibility="no" />
<TextView
android:id="@+id/shortcode"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:layout_weight="1"
android:ellipsize="end"
android:maxLines="1"
android:textColor="?android:textColorPrimary"

View file

@ -1,11 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/hashtag"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:ellipsize="end"
android:maxLines="1"
android:paddingHorizontal="16dp"
android:paddingVertical="12dp"
android:textSize="?attr/status_text_medium"
android:textStyle="normal|bold"
app:drawableStartCompat="@drawable/ic_list"
app:drawableTint="?attr/iconColor" />
tools:text="#Tusky" />

View file

@ -319,6 +319,16 @@
app:layout_constraintTop_toBottomOf="@id/status_poll_description"
app:srcCompat="@drawable/ic_reply_24dp" />
<TextView
android:id="@+id/status_replies"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="@id/status_reply"
app:layout_constraintStart_toEndOf="@id/status_reply"
app:layout_constraintTop_toTopOf="@id/status_reply"
android:textAlignment="viewEnd"
android:textSize="?attr/status_text_medium" />
<at.connyduck.sparkbutton.SparkButton
android:id="@+id/status_inset"
android:layout_width="30dp"

View file

@ -269,7 +269,6 @@
<string name="add_account_description">إضافة حساب ماستدون جديد</string>
<string name="action_lists">القوائم</string>
<string name="title_lists">القوائم</string>
<string name="title_list_timeline">الخط الزمني للقائمة</string>
<string name="error_create_list">لا يمكن إنشاء قائمة</string>
<string name="error_rename_list">لا يمكن إعادة تسمية القائمة</string>
<string name="error_delete_list">لا يمكن حذف القائمة</string>

View file

@ -151,7 +151,6 @@
<string name="error_delete_list">Списъкът не можа да се изтрие</string>
<string name="error_create_list">Списъкът не можа да се създаде</string>
<string name="error_rename_list">Списъкът не можа да се преименува</string>
<string name="title_list_timeline">Списъчна емисия</string>
<string name="title_lists">Списъци</string>
<string name="action_lists">Списъци</string>
<string name="add_account_description">Добавяне на нов Mastodon акаунт</string>

View file

@ -75,7 +75,6 @@
<string name="error_delete_list">তালিকা মুছে ফেলা যায়নি</string>
<string name="error_rename_list">তালিকা নামকরণ করা যায়নি</string>
<string name="error_create_list">তালিকা তৈরি করা যায়নি</string>
<string name="title_list_timeline">তালিকা টাইমলাইনে রাখুন</string>
<string name="title_lists">তালিকাসমূহ</string>
<string name="action_lists">তালিকাসমূহ</string>
<string name="add_account_description">নতুন ম্যাস্টোডোন অ্যাকাউন্ট যোগ করুন</string>

View file

@ -275,7 +275,6 @@
<string name="add_account_description">নতুন ম্যাস্টোডোন অ্যাকাউন্ট যোগ করুন</string>
<string name="action_lists">তালিকাসমূহ</string>
<string name="title_lists">তালিকাসমূহ</string>
<string name="title_list_timeline">তালিকা টাইমলাইনে রাখুন</string>
<string name="error_create_list">তালিকা তৈরি করা যায়নি</string>
<string name="error_rename_list">তালিকা নামকরণ করা যায়নি</string>
<string name="error_delete_list">তালিকা মুছে ফেলা যায়নি</string>

View file

@ -275,7 +275,6 @@
<string name="add_account_description">Afegir un compte de Mastodont</string>
<string name="action_lists">Llistes</string>
<string name="title_lists">Llistes</string>
<string name="title_list_timeline">Cronologia de la llista</string>
<string name="error_create_list">És impossible crear la llista</string>
<string name="error_rename_list">Impossible reanomenar la llista</string>
<string name="error_delete_list">És impossible suprimir la llista</string>

View file

@ -403,7 +403,6 @@
<string name="error_delete_list">نەیتوانی لیستەکە بسڕێتەوە</string>
<string name="error_rename_list">نەیتوانی ناوی لیست بنووسرێ</string>
<string name="error_create_list">نەیتوانی لیست دروست بکات</string>
<string name="title_list_timeline">لیستی تایم لاین</string>
<string name="title_lists">لیستەکان</string>
<string name="action_lists">لیستەکان</string>
<string name="add_account_description">زیادکردنی ئەژمێری ماتۆدۆنی نوێ</string>

View file

@ -198,7 +198,7 @@
<string name="pref_default_post_privacy">Výchozí soukromí příspěvků</string>
<string name="pref_default_media_sensitivity">Vždy označovat média jako citlivá</string>
<string name="pref_publishing">Publikování (synchronizováno se serverem)</string>
<string name="pref_failed_to_sync">Nepodařilo se synchronizovsat nastavení</string>
<string name="pref_failed_to_sync">Nepodařilo se synchronizovat nastavení</string>
<string name="post_privacy_public">Veřejné</string>
<string name="post_privacy_unlisted">Neuvedené</string>
<string name="post_privacy_followers_only">Pouze pro sledující</string>
@ -274,7 +274,6 @@
<string name="add_account_description">Přidat nový účet Mastodon</string>
<string name="action_lists">Seznamy</string>
<string name="title_lists">Seznamy</string>
<string name="title_list_timeline">Časová osa seznamu</string>
<string name="error_create_list">Nelze vytvořit seznam</string>
<string name="error_rename_list">Nelze přejmenovat seznam</string>
<string name="error_delete_list">Nelze smazat seznam</string>
@ -484,4 +483,12 @@
<string name="pref_title_confirm_reblogs">Zobrazit dialogové okno s potvrzením při boostování</string>
<string name="notification_subscription_format">%s právě vydal</string>
<string name="title_announcements">Oznámení</string>
<string name="title_login">Přihlášení</string>
<string name="notification_sign_up_format">%s se zaregistroval</string>
<string name="title_migration_relogin">Přihlaste se znovu pro oznámení</string>
<string name="error_could_not_load_login_page">Nepodařilo se načíst stránku přihlášení.</string>
<string name="drafts_post_failed_to_send">Tento příspěvek se nepodařilo poslat!</string>
<string name="error_loading_account_details">Nepodařilo se načíst detaily účtu</string>
<string name="drafts_failed_loading_reply">Nepodařilo se načíst informace o odpovědi</string>
<string name="error_image_edit_failed">Obrázek se nepodařilo upravit.</string>
</resources>

View file

@ -236,7 +236,6 @@
<string name="add_account_description">Ychwanegu cyfrif Mastodon newydd</string>
<string name="action_lists">Rhestri</string>
<string name="title_lists">Rhestri</string>
<string name="title_list_timeline">Amserlen rhestri</string>
<string name="compose_active_account_description">Yn postio â chyfrif %1$s</string>
<string name="error_failed_set_caption">Methu gosod pennawd</string>
<string name="action_set_caption">Pennu pennawd</string>

View file

@ -256,7 +256,6 @@
<string name="add_account_description">Neues Mastodon-Konto hinzufügen</string>
<string name="action_lists">Listen</string>
<string name="title_lists">Listen</string>
<string name="title_list_timeline">Liste</string>
<string name="action_create_list">Liste erstellen</string>
<string name="action_rename_list">Liste umbenennen</string>
<string name="action_delete_list">Liste löschen</string>
@ -537,4 +536,9 @@
<string name="title_login">Anmelden</string>
<string name="error_could_not_load_login_page">Die Anmeldeseite konnte nicht geladen werden.</string>
<string name="notification_update_name">Beitragsbearbeitungen</string>
<string name="title_migration_relogin">Neuanmeldung für Push-Benachrichtigungen</string>
<string name="action_dismiss">Ablehnen</string>
<string name="dialog_push_notification_migration_other_accounts">Du hast dich erneut in dein aktuelles Konto eingeloggt, um Tusky die Genehmigung für Push-Abonnements zu erteilen. Du hast jedoch noch andere Konten, die nicht auf diese Weise migriert wurden. Wechsel zu diesen Konten und melde dich nacheinander neu an, um die Unterstützung für UnifiedPush-Benachrichtigungen zu aktivieren.</string>
<string name="dialog_push_notification_migration">Um Push-Benachrichtigungen über UnifiedPush verwenden zu können, benötigt Tusky die Erlaubnis, Benachrichtigungen auf Ihrem Mastodon-Server zu abonnieren. Dies erfordert eine erneute Anmeldung, um die Tusky gewährten OAuth-Bereiche zu ändern. Wenn du die Option zum erneuten Einloggen hier oder in den Kontoeinstellungen verwendest, bleiben alle deine lokalen Entwürfe und der Cache erhalten.</string>
<string name="tips_push_notification_migration">Melde alle Konten neu an, um die Unterstützung für Push-Benachrichtigungen zu aktivieren.</string>
</resources>

View file

@ -271,7 +271,6 @@
<string name="add_account_description">Aldoni novan Mastodon konton</string>
<string name="action_lists">Listoj</string>
<string name="title_lists">Listoj</string>
<string name="title_list_timeline">Tempolinio de la listo</string>
<string name="error_create_list">Ne povis krei la liston</string>
<string name="error_rename_list">Ne povis ŝanĝi la nomon de la listo</string>
<string name="error_delete_list">Ne povis forigi la liston</string>

View file

@ -251,7 +251,6 @@
<string name="add_account_description">Añadir cuenta de Mastodon</string>
<string name="action_lists">Listas</string>
<string name="title_lists">Listas</string>
<string name="title_list_timeline">Cronología de lista</string>
<string name="compose_active_account_description">Publicando con la cuenta %1$s</string>
<string name="error_failed_set_caption">Error al añadir leyenda</string>
<plurals name="hint_describe_for_visually_impaired">

View file

@ -235,7 +235,6 @@
<string name="add_account_description">Mastodon kontua gehitu</string>
<string name="action_lists">Zerrendak</string>
<string name="title_lists">Zerrendak</string>
<string name="title_list_timeline">Zerrenda denbora-lerroa</string>
<string name="compose_active_account_description">%1$s kontuarekin tut egiten</string>
<string name="error_failed_set_caption">Akatsa deskribapena eranstean</string>
<plurals name="hint_describe_for_visually_impaired">

View file

@ -8,22 +8,22 @@
<string name="error_authorization_unknown">خطای احراز هویت ناشناخته‌ای رخ داد.</string>
<string name="error_authorization_denied">احراز هویت رد شد.</string>
<string name="error_retrieving_oauth_token">دریافت ژتون ورود شکست خورد.</string>
<string name="error_compose_character_limit">وضعیت خیلی طولانی است!</string>
<string name="error_compose_character_limit">فرسته خیلی طولانی است!</string>
<string name="error_image_upload_size">پرونده باید کمتر از ۸ مگابایت باشد.</string>
<string name="error_video_upload_size">پرونده ویدئویی باید کمتر از ۴۰ مگابایت باشد.</string>
<string name="error_media_upload_type">این گونهٔ پرونده نمی‌تواند بارگذاری شود.</string>
<string name="error_media_upload_opening">این پرونده نتوانست گشوده شود.</string>
<string name="error_media_upload_permission">نیاز به اجازهٔ خواندن رسانه است.</string>
<string name="error_media_download_permission">نیاز به اجازهٔ ذخیرهٔ رسانه است.</string>
<string name="error_media_upload_image_or_video">تصاویر و فیلم‌ها هر دو نمی‌توانند به یک وضعیت ضمیمه شوند.</string>
<string name="error_media_upload_image_or_video">تصاویر و فیلم‌ها نمی‌توانند به یک فرسته پیوست شوند.</string>
<string name="error_media_upload_sending">بارگذاری شکست خورد.</string>
<string name="error_sender_account_gone">خطای فرستادن بوق.</string>
<string name="error_sender_account_gone">خطای فرستادن فرسته.</string>
<string name="title_home">خانه</string>
<string name="title_notifications">آگاهی‌ها</string>
<string name="title_public_local">محلّی</string>
<string name="title_public_federated">همگانی</string>
<string name="title_view_thread">بوق</string>
<string name="title_posts">فرسته</string>
<string name="title_view_thread">رشته</string>
<string name="title_posts">فرستهها</string>
<string name="title_posts_with_replies">با پاسخ‌</string>
<string name="title_follows">دنبال شونده</string>
<string name="title_followers">پی‌گیر</string>
@ -41,10 +41,10 @@
<string name="post_content_warning_show_more">نمایش بیش‌تر</string>
<string name="post_content_warning_show_less">نمایش کم‌تر</string>
<string name="post_content_show_more">گسترش</string>
<string name="post_content_show_less">بستن</string>
<string name="post_content_show_less">جمع کردن</string>
<string name="footer_empty">این‌جا هیچ‌چیز نیست. برای تازه‌سازی، به پایین بکشید!</string>
<string name="notification_reblog_format">%s بوقتان را تقویت کرد</string>
<string name="notification_favourite_format">%s بوقتان را برگزید</string>
<string name="notification_reblog_format">%s فرسته‌تان را تقویت کرد</string>
<string name="notification_favourite_format">%s فرسته‌تان را برگزید</string>
<string name="notification_follow_format">%s پی‌گیرتان شد</string>
<string name="report_username_format">گزارش @%s</string>
<string name="report_comment_hint">نظرهای اضافی؟</string>
@ -93,13 +93,13 @@
<string name="action_reject">رد</string>
<string name="action_search">جست‌وجو</string>
<string name="action_access_drafts">پیش‌نویس‌ها</string>
<string name="action_toggle_visibility">نمایانی بوق</string>
<string name="action_toggle_visibility">نمایانی فرسته</string>
<string name="action_content_warning">هشدار محتوا</string>
<string name="action_emoji_keyboard">صفحه‌کلید اموجی</string>
<string name="download_image">درحال بارگیری %1$s</string>
<string name="action_copy_link">رونوشت از پیوند</string>
<string name="send_post_link_to">هم‌رسانی نشانی بوق با…</string>
<string name="send_post_content_to">هم‌رسانی بوق با…</string>
<string name="send_post_link_to">هم‌رسانی نشانی فرسته با…</string>
<string name="send_post_content_to">هم‌رسانی فرسته با…</string>
<string name="send_media_to">هم‌رسانی رسانه با…</string>
<string name="confirmation_reported">فرستاده شد!</string>
<string name="confirmation_unblocked">کاربرنامسدود شد</string>
@ -130,7 +130,7 @@
<string name="dialog_download_image">بارگیری</string>
<string name="dialog_message_cancel_follow_request">درخواست دنبال کردن را لغو می‌کنید؟</string>
<string name="dialog_unfollow_warning">ناپیگیری این حساب؟</string>
<string name="dialog_delete_post_warning">حذف این بوق؟</string>
<string name="dialog_delete_post_warning">حذف این فرسته؟</string>
<string name="visibility_public">عمومی: فرستادن به خط زمانی‌های عمومی</string>
<string name="visibility_unlisted">فهرست‌نشده: نشان ندادن در خط زمانی‌های عمومی</string>
<string name="visibility_private">تنها دنبال‌کنندگان:پست فقط به دنبال‌کنندگان</string>
@ -156,7 +156,7 @@
<string name="pref_title_browser_settings">مرورگر</string>
<string name="pref_title_custom_tabs">استفاده از زبانه‌های سفارشی کروم</string>
<string name="pref_title_hide_follow_button">نهفتن دکمهٔ ایجاد، هنگام پیمایش</string>
<string name="pref_title_post_filter">فیلتر کردن خط زمانی</string>
<string name="pref_title_post_filter">پالایش خط زمانی</string>
<string name="pref_title_post_tabs">زبانه‌ها</string>
<string name="pref_title_show_boosts">نمایش تقویت‌ها</string>
<string name="pref_title_show_replies">نمایش پاسخ‌ها</string>
@ -173,10 +173,10 @@
<string name="post_privacy_public">عمومی</string>
<string name="post_privacy_unlisted">فهرست‌نشده</string>
<string name="post_privacy_followers_only">فقط پی‌گیران</string>
<string name="pref_post_text_size">اندازهٔ متن وضعیت</string>
<string name="pref_post_text_size">اندازهٔ متن فرسته</string>
<string name="post_text_size_smallest">کوچک‌ترین</string>
<string name="post_text_size_small">کوچک</string>
<string name="post_text_size_medium">متوسط</string>
<string name="post_text_size_medium">میانه</string>
<string name="post_text_size_large">بزرگ</string>
<string name="post_text_size_largest">بزرگ‌ترین</string>
<string name="notification_mention_name">اشاره‌های جدید</string>
@ -184,9 +184,9 @@
<string name="notification_follow_name">پی‌گیران جدید</string>
<string name="notification_follow_description">آگاهی‌ها دربارهٔ پی‌گیران جدید</string>
<string name="notification_boost_name">تقویت‌ها</string>
<string name="notification_boost_description">آگاهی‌ها هنگام تقویت شدن بوق‌هایتان</string>
<string name="notification_boost_description">آگاهی‌ها هنگام تقویت فرسته‌هایتان</string>
<string name="notification_favourite_name">برگزیدن‌ها</string>
<string name="notification_favourite_description">آگاهی‌ها هنگام برگزیده شدن بوق‌هایتان</string>
<string name="notification_favourite_description">آگاهی‌ها هنگام برگزیده شدن فرسته‌هایتان</string>
<string name="notification_mention_format">%s به شما اشاره کرد</string>
<string name="notification_summary_large">%1$s، %2$s، %3$s و %4$d دیگر</string>
<string name="notification_summary_medium">%1$s، %2$s و %3$s</string>
@ -209,8 +209,8 @@
<string name="about_bug_feature_request_site">گزارش مشکلات و درخواست ویژگی‌ها:
\n https://git.chinwag.org/chinwag/chinwag-android/issues</string>
<string name="about_tusky_account">نمایهٔ تاسکی</string>
<string name="post_share_content">هم‌رسانی محتوای بوق</string>
<string name="post_share_link">هم‌رسانی پیوند بوق</string>
<string name="post_share_content">هم‌رسانی محتوای فرسته</string>
<string name="post_share_link">هم‌رسانی پیوند فرسته</string>
<string name="post_media_images">تصویرها</string>
<string name="post_media_video">ویدیو</string>
<string name="state_follow_requested">تقاضای پیگیری شد</string>
@ -229,7 +229,6 @@
<string name="add_account_description">افزودن حساب ماستودون جدید</string>
<string name="action_lists">فهرست‌ها</string>
<string name="title_lists">فهرست‌ها</string>
<string name="title_list_timeline">خط زمانی فهرست</string>
<string name="compose_active_account_description">در حال فرستادن با حساب %1$s</string>
<string name="error_failed_set_caption">شکست در تنظیم عنوان</string>
<plurals name="hint_describe_for_visually_impaired">
@ -241,19 +240,19 @@
<string name="lock_account_label">قفل حساب</string>
<string name="lock_account_label_description">لازم است پی‌گیران را دستی تأیید کنید</string>
<string name="compose_save_draft">ذخیرهٔ پیش‌نویس؟</string>
<string name="send_post_notification_title">در حال فرستادن بوق</string>
<string name="send_post_notification_error_title">خطای فرستادن بوق</string>
<string name="send_post_notification_channel_name">در حال فرستادن بوقها</string>
<string name="send_post_notification_title">فرستادن فرسته</string>
<string name="send_post_notification_error_title">خطا در فرستادن فرسته</string>
<string name="send_post_notification_channel_name">فرستادن فرستهها</string>
<string name="send_post_notification_cancel_title">فرستادن لغو شد</string>
<string name="send_post_notification_saved_content">رونوشتی از بوق در پیش‌نویس‌هایتان ذخیره شد</string>
<string name="send_post_notification_saved_content">رونوشتی از فرسته در پیش‌نویس‌هایتان ذخیره شد</string>
<string name="action_compose_shortcut">ایجاد</string>
<string name="error_no_custom_emojis">نمونه‌تان %s هیچ اموجی سفارشی‌ای ندارد</string>
<string name="emoji_style">سبک اموجی</string>
<string name="system_default">پیش‌گزیدهٔ سامانه</string>
<string name="download_fonts">نخست باید این مجموعه‌های اموجی را بارگیری کنید</string>
<string name="performing_lookup_title">در حال جست‌وجو…</string>
<string name="expand_collapse_all_posts">گسترده/جمع کردن تمام وضعیتها</string>
<string name="action_open_post">گشودن بوق</string>
<string name="expand_collapse_all_posts">گسترش/جمع کردن تمام فرستهها</string>
<string name="action_open_post">گشودن فرسته</string>
<string name="restart_required">نیاز به آغاز دوبارهٔ کاره</string>
<string name="restart_emoji">برای اعمال این تغییرات، نیاز به شروع دوبارهٔ تاسکی دارید</string>
<string name="later">بعداً</string>
@ -279,7 +278,7 @@
<string name="error_network">یک خطای شبکه رخ داد! لطفا اتصال خود را بررسی و دوباره تلاش کنید!</string>
<string name="title_direct_messages">پیام‌های مستقیم</string>
<string name="title_tab_preferences">زبانه‌ها</string>
<string name="title_posts_pinned">سنجاقشده</string>
<string name="title_posts_pinned">سنجاق شده</string>
<string name="title_domain_mutes">دامنه‌های نهفته</string>
<string name="post_username_format">\@%s</string>
<string name="message_empty">این‌جا هیچ‌چیزی نیست.</string>
@ -305,7 +304,7 @@
<string name="download_media">بارگیری رسانه</string>
<string name="downloading_media">در حال بارگیری رسانه</string>
<string name="confirmation_domain_unmuted">%s نانهفته</string>
<string name="dialog_redraft_post_warning">می‌خواهید این بوق را پاک و بازنویسی کنید؟</string>
<string name="dialog_redraft_post_warning">حذف و بازنویسی این فرسته؟</string>
<string name="mute_domain_warning_dialog_ok">نهفتن تمام دامنه</string>
<string name="pref_title_notification_filter_poll">پایان نظرسنجی‌ها</string>
<string name="pref_title_timeline_filters">پالایه‌ها</string>
@ -321,7 +320,7 @@
<string name="abbreviated_hours_ago">%d ساعت</string>
<string name="abbreviated_minutes_ago">%d دقیقه</string>
<string name="abbreviated_seconds_ago">%d ثانیه</string>
<string name="pref_title_alway_open_spoiler">گسترش همیشگی بوق‌های علامت‌خورده با هشدار محتوا</string>
<string name="pref_title_alway_open_spoiler">گسترش همیشگی فرسته‌های علامت‌خورده با هشدار محتوا</string>
<string name="pref_title_public_filter_keywords">خط زمانی‌های عمومی</string>
<string name="pref_title_thread_filter_keywords">گفت‌وگوها</string>
<string name="filter_addition_dialog_title">افزودن پالایه</string>
@ -361,8 +360,8 @@
</plurals>
<string name="description_post_media">رسانه: %s</string>
<string name="description_post_cw">هشدار محتوا: %s</string>
<string name="description_post_media_no_description_placeholder">بدون هیچ توضیحی</string>
<string name="description_post_reblogged">بازبوقیده</string>
<string name="description_post_media_no_description_placeholder">بدون شرح</string>
<string name="description_post_reblogged">تقویت شده</string>
<string name="description_post_favourited">برگزیده</string>
<string name="description_visiblity_public">عمومی</string>
<string name="description_visiblity_unlisted">فهرست‌نشده</string>
@ -374,7 +373,7 @@
<string name="notifications_clear">پاک‌سازی</string>
<string name="notifications_apply_filter">پالایش</string>
<string name="filter_apply">اعمال</string>
<string name="compose_shortcut_long_label">ایجاد بوق</string>
<string name="compose_shortcut_long_label">ایجاد فرسته</string>
<string name="compose_shortcut_short_label">ایجاد</string>
<string name="notification_clear_text">مطمئنید می‌خواهید تمام آگاهی‌هایتان را برای همیشه پاک کنید؟</string>
<string name="poll_info_time_absolute">پایان در %s</string>
@ -401,7 +400,7 @@
<string name="hint_additional_info">نظرهای اضافی</string>
<string name="report_remote_instance">هدایت به %s</string>
<string name="failed_report">شکست در گزارش</string>
<string name="failed_fetch_posts">شکست در واکشی وضعیتها</string>
<string name="failed_fetch_posts">شکست در واکشی فرستهها</string>
<string name="title_accounts">حساب‌ها</string>
<string name="failed_search">شکست در جست‌وجو</string>
<string name="pref_title_show_notifications_filter">نمایش پالایهٔ آگاهی‌ها</string>
@ -417,10 +416,10 @@
<string name="poll_allow_multiple_choices">گزینه‌های چندگانه</string>
<string name="poll_new_choice_hint">گزینهٔ %d</string>
<string name="edit_poll">ویرایش</string>
<string name="title_scheduled_posts">بوق‌های زمان‌بسته</string>
<string name="title_scheduled_posts">فرسته‌های زمان‌بسته</string>
<string name="action_edit">ویرایش</string>
<string name="action_access_scheduled_posts">بوق‌های زمان‌بسته</string>
<string name="action_schedule_post">بوق زمان‌بسته</string>
<string name="action_access_scheduled_posts">فرسته‌های زمان‌بسته</string>
<string name="action_schedule_post">فرستهٔ زمان‌بسته</string>
<string name="action_reset_schedule">بازنشانی</string>
<string name="mute_domain_warning">مطمئنید می‌خواهید تمام %s را مسدود کنید؟ محتوای آن دامنه را در هیچ‌یک از خط زمانی‌ها یا در آگاهی‌هایتان نخواهید دید. پی‌گیرانتان از آن دامنه، برداشته خواهند شد.</string>
<string name="filter_dialog_whole_word_description">هنگامی که کلیدواژه یا عبارت، فقط حروف‌عددی باشد، فقط اگر با تمام واژه مطابق باشد، اعمال خواهد شد</string>
@ -438,7 +437,7 @@
<string name="select_list_title">گزینش فهرست</string>
<string name="list">فهرست</string>
<string name="no_drafts">هیچ پیش‌نویسی ندارید.</string>
<string name="no_scheduled_posts">هیچ وضعیت زمان‌بسته‌ای ندارید.</string>
<string name="no_scheduled_posts">هیچ فرستهٔ زمان‌بسته‌ای ندارید.</string>
<string name="warning_scheduling_interval">ماستودون، بازهٔ زمان‌بندی‌ای با کمینهٔ ۵ دقیقه دارد.</string>
<string name="pref_title_confirm_reblogs">نمایش گفت‌وگوی تأیید، پیش از تقویت</string>
<string name="pref_title_show_cards_in_timelines">پیش‌نمایش پیوندها در خط‌زمانی‌ها</string>
@ -483,7 +482,7 @@
<string name="action_unsubscribe_account">عدم اشتراک</string>
<string name="action_subscribe_account">اشتراک</string>
<string name="draft_deleted">پیش‌نویس حذف شد</string>
<string name="drafts_post_failed_to_send">فرستادن این بوق شکست خورد!</string>
<string name="drafts_post_failed_to_send">فرستادن این فرسته شکست خورد!</string>
<string name="wellbeing_hide_stats_profile">نهفتن آمار کمی روی نمایه‌ها</string>
<string name="wellbeing_hide_stats_posts">نهفتن آمار کمی روی فرسته‌ها</string>
<string name="limit_notifications">محدود کردن آگاهی‌های خط‌زمانی</string>
@ -492,17 +491,17 @@
<string name="label_duration">طول</string>
<string name="post_media_attachments">پیوست‌ها</string>
<string name="post_media_audio">صدا</string>
<string name="notification_subscription_description">آگاهی‌ها هنگام انتشار بوقی جدید از کسی که مشترکش هستید</string>
<string name="notification_subscription_name">بوق‌های جدید</string>
<string name="notification_subscription_description">آگاهی‌ها هنگام انتشار فرسته‌ای جدید از کسی که پی‌می‌گیرید</string>
<string name="notification_subscription_name">فرسته‌های جدید</string>
<string name="pref_title_animate_custom_emojis">اموجی‌های شخصی متحرّک</string>
<string name="pref_title_notification_filter_subscriptions">کسی که مشترکش شده‌ام، بوقی جدید منتشر کرد</string>
<string name="pref_title_notification_filter_subscriptions">کسی که پی‌می‌گیرم، فرسته‌ای جدید منتشر کرد</string>
<string name="notification_subscription_format">%s چیزی فرستاد</string>
<string name="drafts_post_reply_removed">بوقی که پاسخی به آن را پیش‌نویس کردید، برداشته شده</string>
<string name="drafts_post_reply_removed">فرسته‌ای که پاسخی به آن را پیش‌نویس کردید، برداشته شده</string>
<string name="drafts_failed_loading_reply">شکست در بار کردن اطّلاعات پاسخ</string>
<string name="wellbeing_mode_notice">برخی اطّلاعات که ممکن است روی سلامتی ذهنیتان تأثیر بگذارد، پنهان خواهند شد. همچون:
\n
\n - آگاهی‌های برگزیدن، تقویت و پی‌گیری
\n - شمار برگزیدن و تقویت بوقها
\n - شمار برگزیدن و تقویت فرستهها
\n - آمار پی‌گیر و فرسته روی نمایه‌ها
\n
\n فرستادن آگاهی‌ها تأثیر نمی‌پذیرد، ولی می‌توانید ترجیحات آگاهیتان را به صورت دستی بازبینی کنید.</string>
@ -515,4 +514,34 @@
<string name="follow_requests_info">با این که حسابتان قفل نیست، کارکنان %1$s فکر کردند ممکن است بخواهید درخواست‌های پی‌گیری از این حساب‌ها را دستی بازبینی کنید.</string>
<string name="dialog_delete_conversation_warning">حذف این گفت‌وگو؟</string>
<string name="action_delete_conversation">حذف گفت‌وگو</string>
<string name="account_date_joined">در %1$s پیوست</string>
<string name="title_login">ورود</string>
<string name="notification_sign_up_format">%s ثبت‌نام کرد</string>
<string name="pref_title_confirm_favourites">نمایش گفت‌وگوی تأیید پیش از برگزیدن</string>
<string name="tusky_compose_post_quicksetting_label">ایجاد فرسته</string>
<string name="tips_push_notification_migration">ورود دوباره به تمامی حساب‌ها برای به کار انداختن پشتیبانی آگاهی‌های ارسالی.</string>
<string name="notification_update_description">آگاهی‌ها هنگام ویرایش فرسته‌هایی که با آن‌ها تعامل داشته‌اید</string>
<string name="action_unbookmark">برداشن نشانک</string>
<string name="dialog_push_notification_migration_other_accounts">برای اعطای اجازهٔ اشتراک آگاهی‌های ارسالی ، دوباره به حسابتان وارد شدید. با این حال هنوز حساب‌هایی دیگر دارید که این‌گونه مهاجرت داده نشده‌اند. به آن‌ها رفته و برای به کار انداختن پشتیبانی آگاهی‌های UnifiedPush یکی‌یکی دوباره وارد شوید.</string>
<string name="action_logout_confirm">مطمئنید که می‌خواهید از حساب %1$s خارج شوید؟</string>
<string name="duration_14_days">۱۴ روز</string>
<string name="duration_30_days">۳۰ روز</string>
<string name="duration_60_days">۶۰ روز</string>
<string name="duration_90_days">۹۰ روز</string>
<string name="duration_365_days">۳۶۵ روز</string>
<string name="duration_180_days">۱۸۰ روز</string>
<string name="status_count_one_plus">۱+</string>
<string name="dialog_push_notification_migration">تاسکی برای استفاده از آگاهی‌های ارسالی با UnifiedPush نیاز به اجازهٔ اشتراک آگاهی‌ها روی کارساز ماستودنتان دارد. این کار نیازمند ورود دوباره برای تغییر حوزه‌های OAuth اعطایی به تاسکی است. استفاده از گزینهٔ ورود دوباره در این‌جا یا در ترجیحات حساب، تمامی انباره‌ها و پیش‌نویس‌های محلیتان را نگه خواهد داشت.</string>
<string name="error_could_not_load_login_page">نتوانست صفحهٔ ورود را بار کند.</string>
<string name="pref_title_notification_filter_sign_ups">کسی ثبت‌نام کرد</string>
<string name="notification_update_name">ویرایش‌های فرسته</string>
<string name="action_edit_image">ویرایش تصویر</string>
<string name="notification_update_format">%s فرسته‌اش را ویراست</string>
<string name="pref_title_notification_filter_updates">فرسته‌ای که با آن تعامل داشته‌ام ویرایش شده</string>
<string name="notification_sign_up_name">ثبت‌نام‌ها</string>
<string name="notification_sign_up_description">آگاهی‌ها دربارهٔ کاربران جدید</string>
<string name="title_migration_relogin">ورود دوباره برای آگاهی‌های ارسالی</string>
<string name="action_dismiss">رد کردن</string>
<string name="action_details">جزییات</string>
<string name="saving_draft">ذخیرهٔ پیش‌نویس…</string>
</resources>

View file

@ -27,7 +27,7 @@
<string name="title_tab_preferences">Onglets</string>
<string name="title_view_thread">Fil</string>
<string name="title_posts">Messages</string>
<string name="title_posts_with_replies">Pouets &amp; réponses</string>
<string name="title_posts_with_replies">Avec réponses</string>
<string name="title_posts_pinned">Épinglés</string>
<string name="title_follows">Abonnements</string>
<string name="title_followers">Abonné·e·s</string>
@ -42,7 +42,7 @@
<string name="post_boosted_format">%s a partagé</string>
<string name="post_sensitive_media_title">Contenu sensible</string>
<string name="post_media_hidden_title">Média caché</string>
<string name="post_sensitive_media_directions">Cliquer pour voir</string>
<string name="post_sensitive_media_directions">Appuyer pour voir</string>
<string name="post_content_warning_show_more">Voir plus</string>
<string name="post_content_warning_show_less">Voir moins</string>
<string name="post_content_show_more">Déplier</string>
@ -156,7 +156,7 @@
<string name="dialog_download_image">Télécharger</string>
<string name="dialog_message_cancel_follow_request">Révoquer la demande dabonnement ?</string>
<string name="dialog_unfollow_warning">Ne plus suivre ce compte ?</string>
<string name="dialog_delete_post_warning">Supprimer ce pouet ?</string>
<string name="dialog_delete_post_warning">Supprimer ce message \?</string>
<string name="visibility_public">Public : afficher dans les fils publics</string>
<string name="visibility_unlisted">Non listé : ne pas afficher dans les fils publics</string>
<string name="visibility_private">Abonné·e·s uniquement : seul·e·s vos abonné·e·s verront vos statuts</string>
@ -202,7 +202,7 @@
<string name="post_privacy_public">Public</string>
<string name="post_privacy_unlisted">Non listé</string>
<string name="post_privacy_followers_only">Abonné·e·s uniquement</string>
<string name="pref_post_text_size">Taille du texte pour les statuts</string>
<string name="pref_post_text_size">Taille du texte des messages</string>
<string name="post_text_size_smallest">Plus petit</string>
<string name="post_text_size_small">Petit</string>
<string name="post_text_size_medium">Moyen</string>
@ -243,17 +243,17 @@
https://git.chinwag.org/chinwag/chinwag-android/issues
</string>
<string name="about_tusky_account">Profil de Tusky</string>
<string name="post_share_content">Partager le contenu du pouet</string>
<string name="post_share_link">Partager le lien du pouet</string>
<string name="post_share_content">Partager le contenu du message</string>
<string name="post_share_link">Partager le lien du message</string>
<string name="post_media_images">Images</string>
<string name="post_media_video">Vidéo</string>
<string name="state_follow_requested">Demande dabonnement effectuée</string>
<!--These are for timestamps on statuses. For example: "16s" or "2d"-->
<string name="abbreviated_in_years">en %da</string>
<string name="abbreviated_in_days">en %dj</string>
<string name="abbreviated_in_hours">en %dh</string>
<string name="abbreviated_in_minutes">en %dm</string>
<string name="abbreviated_in_seconds">en %ds</string>
<string name="abbreviated_in_years">dans %da</string>
<string name="abbreviated_in_days">dans %dj</string>
<string name="abbreviated_in_hours">dans %dh</string>
<string name="abbreviated_in_minutes">dans %dm</string>
<string name="abbreviated_in_seconds">dans %ds</string>
<string name="abbreviated_years_ago">%da</string>
<string name="abbreviated_days_ago">%dj</string>
<string name="abbreviated_hours_ago">%dh</string>
@ -264,7 +264,7 @@
<string name="title_media">Média</string>
<string name="replying_to">Réponse à @%s</string>
<string name="load_more_placeholder_text">en charger plus</string>
<string name="pref_title_public_filter_keywords">Timelines publiques</string>
<string name="pref_title_public_filter_keywords">Fils publics</string>
<string name="pref_title_thread_filter_keywords">Conversations</string>
<string name="filter_addition_dialog_title">Ajouter un filtre</string>
<string name="filter_edit_dialog_title">Modifier un filtre</string>
@ -275,7 +275,6 @@
<string name="add_account_description">Ajouter un nouveau compte Mastodon</string>
<string name="action_lists">Listes</string>
<string name="title_lists">Listes</string>
<string name="title_list_timeline">Fil de la liste</string>
<string name="error_create_list">Impossible de créer la liste</string>
<string name="error_rename_list">Impossible de renommer la liste</string>
<string name="error_delete_list">Impossible de supprimer la liste</string>
@ -297,19 +296,19 @@
<string name="lock_account_label">Verrouiller le compte</string>
<string name="lock_account_label_description">Vous devez approuver manuellement les abonnements</string>
<string name="compose_save_draft">Enregistrer comme brouillon ?</string>
<string name="send_post_notification_title">Envoi du pouet</string>
<string name="send_post_notification_error_title">Erreur lors de lenvoi du pouet</string>
<string name="send_post_notification_channel_name">Envoi des pouets</string>
<string name="send_post_notification_title">Envoi du message</string>
<string name="send_post_notification_error_title">Erreur lors de lenvoi du message</string>
<string name="send_post_notification_channel_name">Envoi des messages</string>
<string name="send_post_notification_cancel_title">Envoi annulé</string>
<string name="send_post_notification_saved_content">Une copie du pouet a été sauvegardée dans vos brouillons</string>
<string name="send_post_notification_saved_content">Une copie du message a été sauvegardée dans vos brouillons</string>
<string name="action_compose_shortcut">Écrire</string>
<string name="error_no_custom_emojis">Votre instance %s na pas démojis personnalisés</string>
<string name="emoji_style">Style démojis</string>
<string name="system_default">Par défaut du système</string>
<string name="download_fonts">Vous devez commencer par télécharger ces jeux démojis</string>
<string name="performing_lookup_title">Recherche en cours…</string>
<string name="expand_collapse_all_posts">Déplier/replier tout les statuts</string>
<string name="action_open_post">Ouvrir le pouet</string>
<string name="expand_collapse_all_posts">Déplier/replier tout les messages</string>
<string name="action_open_post">Ouvrir le message</string>
<string name="restart_required">Un redémarrage de lapplication est nécessaire</string>
<string name="restart_emoji">Vous devrez redémarrer Tusky pour appliquer ces modifications</string>
<string name="later">Plus tard</string>
@ -351,16 +350,12 @@
<item quantity="one">maximum de %1$d onglet atteint</item>
<item quantity="other">maximum de %1$d onglets atteint</item>
</plurals>
<string name="description_post_media"> Média : %s
</string>
<string name="description_post_media">Média : %s</string>
<string name="description_post_cw"> Avertissement : %s
</string>
<string name="description_post_media_no_description_placeholder"> Pas de description
</string>
<string name="description_post_reblogged"> Reblogué
</string>
<string name="description_post_favourited"> Mis en favoris
</string>
<string name="description_post_media_no_description_placeholder">Aucune description</string>
<string name="description_post_reblogged">Partagé</string>
<string name="description_post_favourited">Mis en favoris</string>
<string name="description_visiblity_public"> Public
</string>
<string name="description_visiblity_unlisted">Non listé</string>
@ -378,7 +373,7 @@
<string name="pref_title_bot_overlay">Afficher l\'indicateur de robots</string>
<string name="notification_clear_text">Désirez-vous nettoyer toutes vos notifications de façon permanente \?</string>
<string name="action_delete_and_redraft">Effacer et ré-écrire</string>
<string name="dialog_redraft_post_warning">Effacer et ré-écrire ce pouet\?</string>
<string name="dialog_redraft_post_warning">Effacer et ré-écrire ce message\?</string>
<string name="poll_info_time_absolute">Termina à %s</string>
<string name="poll_info_closed">Terminé</string>
<string name="poll_vote">Voter</string>
@ -391,15 +386,15 @@
<item quantity="other">%d jours restants</item>
</plurals>
<plurals name="poll_timespan_hours">
<item quantity="one">%d heure restant</item>
<item quantity="one">%d heure restante</item>
<item quantity="other">%d heures restantes</item>
</plurals>
<plurals name="poll_timespan_minutes">
<item quantity="one">%d minute restant</item>
<item quantity="one">%d minute restante</item>
<item quantity="other">%d minutes restantes</item>
</plurals>
<plurals name="poll_timespan_seconds">
<item quantity="one">%d seconde restant</item>
<item quantity="one">%d seconde restante</item>
<item quantity="other">%d secondes restantes</item>
</plurals>
<string name="pref_title_animate_gif_avatars">Activer lanimation des avatars</string>
@ -419,7 +414,7 @@
<string name="hint_additional_info">Commentaires additionnels</string>
<string name="report_remote_instance">Transférer à %s</string>
<string name="failed_report">Échec du signalement</string>
<string name="failed_fetch_posts">Échec de récupération des statuts</string>
<string name="failed_fetch_posts">Échec de récupération des messages</string>
<string name="report_description_1">Le rapport sera envoyé aux modérateur·rice·s de votre instance. Vous pouvez expliquer pourquoi vous signalez le compte ci-dessous :</string>
<string name="mute_domain_warning">Êtes-vous sûr⋅e de vouloir bloquer %s en entier \? Vous ne verrez plus de contenu provenant de ce domaine, ni dans les fils publics, ni dans vos notifications. Vos abonné·e·s utilisant ce domaine seront retiré·e·s.</string>
<string name="button_done">Terminé</string>
@ -445,8 +440,8 @@
<string name="edit_poll">Éditer</string>
<string name="title_scheduled_posts">Pouets planifiés</string>
<string name="action_edit">Éditer</string>
<string name="action_access_scheduled_posts">Pouets programmés</string>
<string name="action_schedule_post">Planifier le pouet</string>
<string name="action_access_scheduled_posts">Messages programmés</string>
<string name="action_schedule_post">Planifier le message</string>
<string name="action_reset_schedule">Réinitialiser</string>
<string name="post_lookup_error_format">Erreur lors de la recherche du post %s</string>
<string name="about_powered_by_tusky">Propulsé par Tusky</string>
@ -458,7 +453,7 @@
<string name="list">Liste</string>
<string name="error_audio_upload_size">Les fichiers audio doivent avoir moins de 40 Mo.</string>
<string name="no_drafts">Vous navez aucun brouillon.</string>
<string name="no_scheduled_posts">Vous navez aucun pouet planifié.</string>
<string name="no_scheduled_posts">Vous navez aucun message planifié.</string>
<string name="warning_scheduling_interval">Lintervalle minimum de planification sur Mastodon est de 5 minutes.</string>
<string name="notification_follow_request_name">Demandes d\'abonnement</string>
<string name="dialog_block_warning">Bloquer @%s \?</string>
@ -529,7 +524,7 @@
<string name="post_media_audio">Audio</string>
<string name="pref_title_confirm_favourites">Demander confirmation avant de mettre en favoris</string>
<string name="drafts_post_reply_removed">Le message auquel répondait ce brouillon a été supprimé</string>
<string name="drafts_post_failed_to_send">Échec denvoi du pouet !</string>
<string name="drafts_post_failed_to_send">Échec denvoi du message !</string>
<string name="follow_requests_info">Bien que votre compte ne soit pas verrouillé, léquipe de %1$s a pensé que vous voudriez valider manuellement les demandes de dabonnement provenant de ces comptes.</string>
<string name="drafts_failed_loading_reply">Échec du chargement des informations de réponse</string>
<string name="duration_30_days">30 jours</string>
@ -541,11 +536,23 @@
<string name="tusky_compose_post_quicksetting_label">Rédiger un message</string>
<string name="notification_sign_up_format">%s a créé un compte</string>
<string name="notification_sign_up_name">Nouveaux comptes</string>
<string name="notification_sign_up_description">Notifications quand quelqu\'un crée un nouveau compte</string>
<string name="notification_sign_up_description">Notifications quand quelquun crée un nouveau compte</string>
<string name="pref_title_notification_filter_sign_ups">un nouveau compte a été créé</string>
<string name="notification_update_format">%s a modifié son message</string>
<string name="pref_title_notification_filter_updates">un message avec lequel j\'ai interagi est modifié</string>
<string name="pref_title_notification_filter_updates">un message avec lequel jai interagi est modifié</string>
<string name="notification_update_name">Messages modifiés</string>
<string name="notification_update_description">Notifications quand un post avec lequel vous avez interagi est modifié</string>
<string name="notification_update_description">Notifications quand un message avec lequel vous avez interagi est modifié</string>
<string name="title_login">Se connecter</string>
<string name="account_date_joined">Ici depuis %1$s</string>
<string name="action_details">Détails</string>
<string name="saving_draft">Sauvegarde du brouillon …</string>
<string name="status_count_one_plus">&gt;1</string>
<string name="dialog_push_notification_migration_other_accounts">Tusky peut maintenant recevoir les notifications instantanées de ce compte. Cependant, d\'autres de vos comptes n\'ont pas encore accès aux notifications instantanées. Basculez sur chacun de vos comptes et reconnectez les afin de recevoir les notifications avec UnifiedPush.</string>
<string name="error_could_not_load_login_page">La page de connexion ne peut être chargée.</string>
<string name="action_edit_image">Retoucher limage</string>
<string name="action_dismiss">Fermer</string>
<string name="title_migration_relogin">Se reconnecter pour recevoir les notifications instantanées</string>
<string name="dialog_push_notification_migration">Afin de recevoir les notifications via UnifiedPush, Tusky doit demander à votre serveur Mastodon la permission de sinscrire aux notifications. Ceci nécessite une reconnexion de vos comptes afin de changer les droits OAuth accordés a Tusky. En utilisant loption de reconnexion ici ou dans les préférences de compte, vos brouillons et le cache seront préservés.</string>
<string name="tips_push_notification_migration">Reconnectez tous vos comptes pour activer les notifications instantanées.</string>
<string name="error_image_edit_failed">L\'image na pas pu être retouchée.</string>
</resources>

View file

@ -310,7 +310,6 @@
<string name="failed_fetch_posts">Theip ar stádas a fháil</string>
<string name="report_description_1">Seolfar an tuarascáil chuig do mhodhnóir freastalaí. Féadfaidh tú míniú a thabhairt ar an bhfáth go bhfuil tú ag tuairisciú an chuntais seo thíos:</string>
<string name="add_account_description">Cuir Cuntas Mastodon nua leis</string>
<string name="title_list_timeline">Liostaigh amlíne</string>
<string name="error_create_list">Níorbh fhéidir liosta a chruthú</string>
<string name="error_rename_list">Níorbh fhéidir an liosta a athainmniú</string>
<string name="error_delete_list">Níorbh fhéidir an liosta a scriosadh</string>

View file

@ -270,7 +270,6 @@
<string name="error_delete_list">Cha b urrainn dhuinn an liosta a sguabadh às</string>
<string name="error_rename_list">Cha b urrainn dhut ainm ùr a thoirt air an liosta</string>
<string name="error_create_list">Cha b urrainn dhuinn an liosta a chruthachadh</string>
<string name="title_list_timeline">Loidhne-ama na liosta</string>
<string name="add_account_description">Cuir cunntas Mastodon ùr ris</string>
<string name="add_account_name">Cuir cunntas ris</string>
<string name="filter_add_description">An abairt ri chriathradh</string>
@ -557,4 +556,11 @@
<string name="title_login">Clàraich a-steach</string>
<string name="error_could_not_load_login_page">Cha b urrainn dhuinn duilleag a chlàraidh a-steach fhosgladh.</string>
<string name="saving_draft">A sàbhaladh na dreuchd…</string>
<string name="action_dismiss">Leig seachad</string>
<string name="action_details">Fiosrachadh</string>
<string name="account_date_joined">Air ballrachd fhaighinn %1$s</string>
<string name="tips_push_notification_migration">Clàraich a-steach às ùr leis a h-uile cunntas a chur na taice ri brathan putaidh an comas.</string>
<string name="title_migration_relogin">Clàraich a-steach às ùr airson brathan putaidh</string>
<string name="status_count_one_plus">1+</string>
<string name="action_edit_image">Deasaich an dealbh</string>
</resources>

View file

@ -52,8 +52,8 @@
<string name="action_block">Bloquear</string>
<string name="action_unfollow">Deixar de seguir</string>
<string name="action_follow">Seguir</string>
<string name="action_logout_confirm">Tes a certeza de que queres desconectar a conta %1$s\?</string>
<string name="action_logout">Desconectar</string>
<string name="action_logout_confirm">Tes a certeza de que queres pechar sesión da conta %1$s\?</string>
<string name="action_logout">Pechar sesión</string>
<string name="action_login">Accede con Mastodon</string>
<string name="action_compose">Redactar</string>
<string name="action_more">Máis</string>
@ -275,7 +275,6 @@
<string name="error_delete_list">Non se puido eliminar a listaxe</string>
<string name="error_rename_list">Non se puido renomear a listaxe</string>
<string name="error_create_list">Non se puido crear a listaxe</string>
<string name="title_list_timeline">Cronoloxía da listaxe</string>
<string name="title_lists">Listaxes</string>
<string name="action_lists">Listaxes</string>
<string name="add_account_description">Engadir unha nova conta Mastodon</string>
@ -522,4 +521,20 @@
<string name="pref_title_notification_filter_sign_ups">hai unha nova usuaria</string>
<string name="notification_sign_up_name">Rexistros</string>
<string name="notification_sign_up_description">Notificacións sobre novas usuarias</string>
<string name="pref_title_notification_filter_updates">Foi editada unha publicación coa que interactuei</string>
<string name="notification_update_name">Edicións da publicación</string>
<string name="account_date_joined">Creada %1$s</string>
<string name="tips_push_notification_migration">Volve a acceder con tódalas contas para activar as notificacións push.</string>
<string name="title_login">Acceder</string>
<string name="notification_update_description">Notificacións cando son editadas publicacións coas que interactuaches</string>
<string name="dialog_push_notification_migration">Para poder usar as notificacións push vía UnifiedPush, Tusky require o permiso para subscribirse ás notificacións do teu servidor Mastodon. É necesario volver a acceder para cambiar os ámbitos OAuth concedidos a Tusky. Usando aquí ou nas Preferencias da Conta a opción de volver a acceder conservarás os borradores locais e caché.</string>
<string name="dialog_push_notification_migration_other_accounts">Volveches a acceder para obter as notificacións push en Tusky. Aínda así tes algunha outra conta que non foi migrada a este modo. Cambia a esas contas e volve a conectar unha a unha para activar o soporte para notificacións de UnifiedPush.</string>
<string name="title_migration_relogin">Volve a acceder para ter notificacións push</string>
<string name="notification_update_format">%s editou a publicación</string>
<string name="action_dismiss">Desbotar</string>
<string name="action_details">Detalles</string>
<string name="error_could_not_load_login_page">Non se puido cargar a páxina de inicio.</string>
<string name="saving_draft">Gardando borrador…</string>
<string name="status_count_one_plus">1+</string>
<string name="action_edit_image">Editar imaxe</string>
</resources>

View file

@ -248,7 +248,6 @@
<string name="compose_save_draft">लिखने को सुरक्षित करें\?</string>
<string name="lock_account_label">खाता लॉक करें</string>
<string name="action_set_caption">कैप्शन सेट करें</string>
<string name="title_list_timeline">सूची टाइमलाइन</string>
<string name="add_account_name">खाता जोड़ो</string>
<string name="filter_dialog_whole_word">पूरा शब्द</string>
<string name="filter_edit_dialog_title">फ़िल्टर संपादित करें</string>

View file

@ -336,7 +336,6 @@
<string name="abbreviated_in_seconds">%dmp múlva</string>
<string name="filter_dialog_whole_word">Teljes szó</string>
<string name="filter_dialog_whole_word_description">Ha a kulcsszó csak alfanumerikus karakterekből áll, csak teljes szóra fog illeszkedni</string>
<string name="title_list_timeline">Lista idővonal</string>
<string name="hint_search_people_list">Általad követettek keresése</string>
<string name="action_add_to_list">Fiók hozzáadása a listához</string>
<string name="action_remove_from_list">Fiók eltávolítása a listából</string>
@ -534,4 +533,18 @@
<string name="notification_update_name">Bejegyzések szerkesztése</string>
<string name="notification_update_description">Értesítések olyan bejegyzések szerkesztéséről, melyekkel már dolgod volt</string>
<string name="tusky_compose_post_quicksetting_label">Bejegyzés Létrehozása</string>
<string name="title_migration_relogin">Bejelentkezés újra a leküldési értesítések érdekében</string>
<string name="action_dismiss">Elvetés</string>
<string name="action_details">Részletek</string>
<string name="account_date_joined">Csatlakozva %1$s</string>
<string name="tips_push_notification_migration">Bejelentkezés újra minden fiókkal a leküldéses értesítések engedélyezése érdekében.</string>
<string name="title_login">Bejelentkezés</string>
<string name="status_count_one_plus">1+</string>
<string name="error_could_not_load_login_page">Nem tudtuk betölteni a bejelentkező oldalt.</string>
<string name="saving_draft">Vázlat mentése…</string>
<string name="dialog_push_notification_migration">Ahhoz, hogy használhass leküldési értesítéseket a UnifiedPush szolgáltatással, a Tusky-nak fel kell iratkoznia az értesítésekre a Mastodon szervereden. Ehhez új bejelentkezésre van szükség, hogy a Tusky számára kiosztott OAuth jogosultságok megváltozzanak. Az újbóli bejelentkezés funkció használata itt vagy a Fiókbeállításoknál meg fogja őrizni a helyi piszkozataidat és a cache tartalmát.</string>
<string name="dialog_push_notification_migration_other_accounts">Újra bejelentkeztél a fiókodba, hogy feliratkoztasd a Tusky-t a leküldési értesítések használatára. Ugyanakkor vannak még fiókjaid, melyek még nem lettek így migrálva. Válts át rájuk és jelentkezz be újra mindegyikben, hogy ezekben is engedélyezd a UnifiedPush értesítések támogatását.</string>
<string name="action_edit_image">Kép szerkesztése</string>
<string name="error_image_edit_failed">A kép nem szerkeszthető.</string>
<string name="error_loading_account_details">Nem sikerült betölteni a fiókadatokat</string>
</resources>

View file

@ -288,7 +288,6 @@
<string name="filter_add_description">Frasi sem á að sía</string>
<string name="add_account_name">Bæta við aðgang</string>
<string name="add_account_description">Bæta við nýjum Mastodon-aðgangi</string>
<string name="title_list_timeline">Lista upp tímalínu</string>
<string name="error_create_list">Ekki tókst að búa til lista</string>
<string name="error_rename_list">Ekki tókst að endurnefna lista</string>
<string name="error_delete_list">Ekki tókst að eyða lista</string>
@ -526,4 +525,16 @@
<string name="notification_sign_up_description">Tilkynningar um nýja notendur</string>
<string name="notification_update_name">Breytingar á færslum</string>
<string name="notification_update_description">Tilkynningar þegar færslum sem þú hefur átt við er breytt</string>
<string name="dialog_push_notification_migration_other_accounts">Þú hefur skráð þig aftur inn í fyrirliggjandi aðganginn þinn til þess að veita heimild fyrir áskrift að ýti-tilkynningum í Tusky. Aftur á móti ertu með aðra aðganga sem ekki hafa verið yfirfærðir á þennan hátt. Skiptu yfir í þá og skráðu þig þar inn aftur til að virkja stuðning við tilkynningar í gegnum UnifiedPush.</string>
<string name="account_date_joined">Skráði sig %1$s</string>
<string name="tips_push_notification_migration">Skrá aftur inn alla aðganga til að virkja stuðning við ýti-tilkynningar.</string>
<string name="dialog_push_notification_migration">Til þess að geta sent ýti-tilkynningar í gegnum UnifiedPush, þarf Tusky heimild til að gerast áskrifandi að tilkynningum á Mastodon-netþjóninum þínum. Þetta krefst þess að skráð sé inn aftur til að breyta vægi OAuth-heimilda sem Tusky er úthlutað. Notaðu endurinnskráninguna hérna eða í kjörstillingum aðgangsins þíns til að varðveita öll drögin þín og skyndiminni á tækinu.</string>
<string name="title_login">Skrá inn</string>
<string name="status_count_one_plus">1+</string>
<string name="error_could_not_load_login_page">Gat ekki lesið innskráningarsíðuna.</string>
<string name="action_edit_image">Breyta mynd</string>
<string name="saving_draft">Vista drög…</string>
<string name="title_migration_relogin">Skráðu aftur inn fyrir ýti-tilkynningar</string>
<string name="action_dismiss">Hunsa</string>
<string name="action_details">Nánar</string>
</resources>

View file

@ -30,7 +30,7 @@
<string name="title_posts_with_replies">Con risposte</string>
<string name="title_posts_pinned">Fissati</string>
<string name="title_follows">Seguiti</string>
<string name="title_followers">Seguono</string>
<string name="title_followers">Seguaci</string>
<string name="title_favourites">Preferiti</string>
<string name="title_mutes">Utenti silenziati</string>
<string name="title_blocks">Utenti bloccati</string>
@ -39,7 +39,7 @@
<string name="title_drafts">Bozze</string>
<string name="title_licenses">Licenze</string>
<string name="post_username_format">\@%s</string>
<string name="post_boosted_format">%s ha boostato</string>
<string name="post_boosted_format">%s ha condiviso</string>
<string name="post_sensitive_media_title">Contenuto sensibile</string>
<string name="post_media_hidden_title">Media nascosto</string>
<string name="post_sensitive_media_directions">Clicca per visualizzare</string>
@ -49,15 +49,15 @@
<string name="post_content_show_less">Riduci</string>
<string name="message_empty">Qui non c\'è nulla.</string>
<string name="footer_empty">Qui non c\'è nulla. Trascina verso il basso per aggiornare!</string>
<string name="notification_reblog_format">%s ha boostato il tuo post</string>
<string name="notification_reblog_format">%s ha condiviso il tuo post</string>
<string name="notification_favourite_format">%s ha messo il tuo post nei preferiti</string>
<string name="notification_follow_format">%s ti ha seguito</string>
<string name="report_username_format">Segnala @%s</string>
<string name="report_comment_hint">Commenti aggiuntivi?</string>
<string name="action_quick_reply">Risposta veloce</string>
<string name="action_reply">Rispondi</string>
<string name="action_reblog">Boosta</string>
<string name="action_unreblog">Rimuovi boost</string>
<string name="action_reblog">Condividi</string>
<string name="action_unreblog">Rimuovi condivisione</string>
<string name="action_favourite">Aggiungi ai preferiti</string>
<string name="action_unfavourite">Rimuovi preferito</string>
<string name="action_more">Di più</string>
@ -69,8 +69,8 @@
<string name="action_unfollow">Smetti di seguire</string>
<string name="action_block">Blocca</string>
<string name="action_unblock">Sblocca</string>
<string name="action_hide_reblogs">Nascondi boost</string>
<string name="action_show_reblogs">Mostra boost</string>
<string name="action_hide_reblogs">Nascondi condivisioni</string>
<string name="action_show_reblogs">Mostra condivisioni</string>
<string name="action_report">Segnala</string>
<string name="action_delete">Elimina</string>
<string name="action_send">TOOT</string>
@ -109,8 +109,8 @@
<string name="action_links">Collegamenti</string>
<string name="action_mentions">Menzioni</string>
<string name="action_hashtags">Hashtag</string>
<string name="action_open_reblogger">Vai all\'autore del boost</string>
<string name="action_open_reblogged_by">Mostra boost</string>
<string name="action_open_reblogger">Vai all\'autore della condivisione</string>
<string name="action_open_reblogged_by">Mostra condivisioni</string>
<string name="action_open_faved_by">Mostra preferiti</string>
<string name="title_hashtags_dialog">Hashtag</string>
<string name="title_mentions_dialog">Menzioni</string>
@ -153,8 +153,8 @@
<string name="dialog_message_cancel_follow_request">Revocare la richiesta di seguire?</string>
<string name="dialog_unfollow_warning">Smettere di seguire questo account?</string>
<string name="dialog_delete_post_warning">Eliminare questo post\?</string>
<string name="visibility_public">Pubblico: visibile sulla timeline pubblica</string>
<string name="visibility_unlisted">Non in elenco: non visibile sulla timeline pubblica e locale</string>
<string name="visibility_public">Pubblico: visibile sulle timeline pubbliche</string>
<string name="visibility_unlisted">Non in elenco: non visibile sulle timeline pubbliche</string>
<string name="visibility_private">Solo follower: visibile solo dai tuoi follower</string>
<string name="visibility_direct">Diretto: visibile solo agli utenti menzionati</string>
<string name="pref_title_edit_notification_settings">Notifiche</string>
@ -166,7 +166,7 @@
<string name="pref_title_notification_filters">Notificami quando</string>
<string name="pref_title_notification_filter_mentions">vengo menzionato</string>
<string name="pref_title_notification_filter_follows">vengo seguito</string>
<string name="pref_title_notification_filter_reblogs">i miei post vengono boostati</string>
<string name="pref_title_notification_filter_reblogs">i miei post vengono condivisi</string>
<string name="pref_title_notification_filter_favourites">i miei post vengono messi nei preferiti</string>
<string name="pref_title_appearance_settings">Aspetto</string>
<string name="pref_title_app_theme">Tema dell\'app</string>
@ -183,7 +183,7 @@
<string name="pref_title_language">Lingua</string>
<string name="pref_title_post_filter">Filtraggio della timeline</string>
<string name="pref_title_post_tabs">Schede</string>
<string name="pref_title_show_boosts">Mostra boost</string>
<string name="pref_title_show_boosts">Mostra condivisioni</string>
<string name="pref_title_show_replies">Mostra risposte</string>
<string name="pref_title_show_media_preview">Mostra anteprime media</string>
<string name="pref_title_proxy_settings">Proxy</string>
@ -208,8 +208,8 @@
<string name="notification_mention_descriptions">Notifiche di quando vieni menzionato da qualcuno</string>
<string name="notification_follow_name">Nuovi follower</string>
<string name="notification_follow_description">Notifiche su nuovi follower</string>
<string name="notification_boost_name">Boost</string>
<string name="notification_boost_description">Notifiche sui tuoi post che vengono boostati</string>
<string name="notification_boost_name">Condivisioni</string>
<string name="notification_boost_description">Notifiche sui tuoi post che vengono condivisi</string>
<string name="notification_favourite_name">Preferiti</string>
<string name="notification_favourite_description">Notifiche sui tuoi post che vengono segnati come preferiti</string>
<string name="notification_mention_format">%s ti ha menzionato</string>
@ -269,7 +269,6 @@
<string name="add_account_description">Aggiungi un nuovo Account Mastodon</string>
<string name="action_lists">Liste</string>
<string name="title_lists">Liste</string>
<string name="title_list_timeline">Timeline della lista</string>
<string name="error_create_list">Non è stato possibile creare la lista</string>
<string name="error_rename_list">Non è stato possibile rinominare la lista</string>
<string name="error_delete_list">Non è stato possibile eliminare la lista</string>
@ -313,8 +312,8 @@
<string name="download_failed">Download fallito</string>
<string name="profile_badge_bot_text">Bot</string>
<string name="account_moved_description">%1$s si è spostato su:</string>
<string name="reblog_private">Boost con la visibilità del post di origine</string>
<string name="unreblog_private">Annulla boost</string>
<string name="reblog_private">Condividi con la visibilità del post originale</string>
<string name="unreblog_private">Annulla condivisione</string>
<string name="license_description">Tusky contiene codice e risorse dai seguenti progetti open source:</string>
<string name="license_apache_2">Licenziata sotto la Licenza Apache (copia sotto)</string>
<string name="license_cc_by_4">CC-BY 4.0</string>
@ -335,7 +334,7 @@
<item quantity="one">&lt;b&gt;%s&lt;/b&gt; Boost</item>
<item quantity="other">&lt;b&gt;%s&lt;/b&gt; Boost</item>
</plurals>
<string name="title_reblogged_by">Boostato da</string>
<string name="title_reblogged_by">Condiviso da</string>
<string name="title_favourited_by">Aggiunto ai preferiti da</string>
<string name="conversation_1_recipients">%1$s</string>
<string name="conversation_2_recipients">%1$s e %2$s</string>
@ -403,7 +402,7 @@
<string name="select_list_title">Scegli lista</string>
<string name="list">Lista</string>
<string name="compose_preview_image_description">Azioni per l\'immagine %s</string>
<string name="poll_ended_voted">Un sondaggio che hai votato si è concluso</string>
<string name="poll_ended_voted">Un sondaggio in cui hai votato si è concluso</string>
<string name="poll_ended_created">Un sondaggio che hai creato si è concluso</string>
<plurals name="poll_timespan_days">
<item quantity="one">%d giorno rimasto</item>
@ -471,7 +470,7 @@
<string name="account_note_saved">Salvato!</string>
<string name="account_note_hint">La tua nota privata su questo account</string>
<string name="pref_title_hide_top_toolbar">Nascondi il titolo della barra degli strumenti in alto</string>
<string name="pref_title_confirm_reblogs">Mostra la finestra di conferma prima di boostare</string>
<string name="pref_title_confirm_reblogs">Mostra la finestra di conferma prima di condividere</string>
<string name="pref_title_show_cards_in_timelines">Mostra le anteprime dei collegamenti nelle timelines</string>
<string name="warning_scheduling_interval">Mastodon ha un intervallo di programmazione minimo di 5 minuti.</string>
<string name="no_announcements">Non ci sono annunci.</string>
@ -489,7 +488,7 @@
<string name="pref_title_notification_filter_follow_requests">mi viene richiesto di seguirmi</string>
<string name="wellbeing_hide_stats_profile">Nascondi statistiche quantitative sui profili</string>
<string name="wellbeing_hide_stats_posts">Nascondi le statistiche quantitative sui post</string>
<string name="limit_notifications">Limita le notifiche dalla timeline</string>
<string name="limit_notifications">Limita notifiche riguardo statistiche quantitative</string>
<string name="review_notifications">Rivedi le notifiche</string>
<string name="pref_title_wellbeing_mode">Benessere</string>
<string name="notification_subscription_description">Notifiche di nuovi post di qualcuno a cui sei iscritto</string>
@ -516,13 +515,13 @@
<string name="action_delete_conversation">Elimina conversazione</string>
<string name="wellbeing_mode_notice">Alcune informazioni che potrebbero influenzare il tuo benessere mentale saranno nascoste. Questo include:
\n
\n - Notifiche riguardo a Preferiti/Boost/Following
\n - Conteggio dei Preferiti/Boost nei post
\n - Notifiche riguardo a Preferiti/Condivisioni/Following
\n - Conteggio dei Preferiti/Condivisioni nei post
\n - Statistiche riguardo a Preferiti/Post nei profili
\n
\n Le notifiche push non saranno influenzate, ma puoi modificare le tue impostazioni delle notifiche manualmente.</string>
<string name="action_unbookmark">Rimuovi segnalibro</string>
<string name="pref_title_confirm_favourites">Chiedi conferma prima di boostare</string>
<string name="pref_title_confirm_favourites">Chiedi conferma prima di condividere</string>
<string name="duration_14_days">14 giorni</string>
<string name="duration_30_days">30 giorni</string>
<string name="duration_60_days">60 giorni</string>
@ -541,4 +540,8 @@
<string name="notification_update_name">Modifiche ai post</string>
<string name="notification_update_description">Notifiche di quando i post con cui hai interagito vengono modificati</string>
<string name="error_could_not_load_login_page">Non è stato possibile caricare la pagina di login.</string>
<string name="action_edit_image">Modifica immagine</string>
<string name="saving_draft">Salvataggio bozza…</string>
<string name="action_dismiss">Scartare</string>
<string name="action_details">Dettagli</string>
</resources>

View file

@ -255,7 +255,6 @@
<string name="add_account_description">新しいMastodonアカウントを追加</string>
<string name="action_lists">リスト</string>
<string name="title_lists">リスト</string>
<string name="title_list_timeline">リストタイムライン</string>
<string name="error_rename_list">リスト名を変更できませんでした</string>
<string name="action_rename_list">リスト名の変更</string>
<string name="compose_active_account_description">%1$sで投稿</string>

View file

@ -282,7 +282,6 @@
<string name="add_account_description">마스토돈 계정을 추가합니다</string>
<string name="action_lists">리스트</string>
<string name="title_lists">리스트</string>
<string name="title_list_timeline">리스트 타임라인</string>
<string name="error_create_list">리스트를 만들 수 없습니다.</string>
<string name="error_rename_list">리스트의 이름을 변경할 수 없습니다.</string>
<string name="error_delete_list">리스트를 삭제할 수 없습니다.</string>

View file

@ -259,7 +259,6 @@
<string name="add_account_description">Een nieuw Mastodonaccount toevoegen</string>
<string name="action_lists">Lijsten</string>
<string name="title_lists">Lijsten</string>
<string name="title_list_timeline">Tijdlijn lijst</string>
<string name="compose_active_account_description">Aan het publiceren met account %1$s</string>
<string name="error_failed_set_caption">Toevoegen van beschrijving mislukt</string>
<plurals name="hint_describe_for_visually_impaired">

View file

@ -242,7 +242,6 @@
<string name="add_account_description">Legg til ny Mastodon-konto</string>
<string name="action_lists">Lister</string>
<string name="title_lists">Lister</string>
<string name="title_list_timeline">Listetidslinje</string>
<string name="error_create_list">Kunne ikke opprette liste</string>
<string name="error_rename_list">Kunne ikke gi liste nytt navn</string>
<string name="error_delete_list">Kunne ikke slette liste</string>
@ -528,4 +527,16 @@
<string name="notification_update_description">Varslinger når et innlegg du har hatt en interaksjon med er redigert</string>
<string name="title_login">Innlogging</string>
<string name="error_could_not_load_login_page">Klarte ikke å laste innloggingssiden.</string>
<string name="title_migration_relogin">Logg inn på nytt for pushvarsler</string>
<string name="action_dismiss">Avvis</string>
<string name="action_details">Detaljer</string>
<string name="account_date_joined">Ble med %1$s</string>
<string name="tips_push_notification_migration">Logg inn all konti på nytt for å skru på pushvarsler.</string>
<string name="dialog_push_notification_migration">For å kunne sende pushvarsler via UnifiedPush trenger Tusky tillatelse til å abonnere på varsler på Mastodon-serveren. Dette krever at du logger inn på nytt. Ved å bruke muligheten til å logge inn på nytt her eller i kontoinstillinger vil alle lokale kladder være tilgjengelig også etter at du har logget inn på nytt.</string>
<string name="dialog_push_notification_migration_other_accounts">Du har logget inn på nytt for å tillate Tusky til å sende pushvarsler, men du har fortsatt andre konti som ikke har fått den nødvendige tillatelsen. Bytt til dem og logg inn på nytt på samme måte for å skru på støtte for pushvarsler via UnifiedPush.</string>
<string name="saving_draft">Lagrer kladd…</string>
<string name="status_count_one_plus">1+</string>
<string name="action_edit_image">Rediger bilde</string>
<string name="error_image_edit_failed">Bildet kunne ikke redigeres.</string>
<string name="error_loading_account_details">Lasting av kontodetaljer feilet</string>
</resources>

View file

@ -228,7 +228,6 @@
<string name="add_account_description">Apondre un nòu compte Mastodon</string>
<string name="action_lists">Listas</string>
<string name="title_lists">Listas</string>
<string name="title_list_timeline">Flux de la lista</string>
<string name="compose_active_account_description">Publicar amb lo compte %1$s</string>
<string name="error_failed_set_caption">Fracàs en apondre una legenda</string>
<string name="action_set_caption">Apondre una legenda</string>

View file

@ -229,7 +229,6 @@
<string name="add_account_description">Dodaj nowe Konto Mastodon</string>
<string name="action_lists">Listy</string>
<string name="title_lists">Listy</string>
<string name="title_list_timeline">Oś czasu listy</string>
<string name="compose_active_account_description">Publikowanie z konta %1$s</string>
<string name="error_failed_set_caption">Nie udało się ustawić podpisu</string>
<string name="action_set_caption">Ustaw podpis</string>

View file

@ -246,7 +246,6 @@
<string name="add_account_description">Adicionar nova conta Mastodon</string>
<string name="action_lists">Listas</string>
<string name="title_lists">Listas</string>
<string name="title_list_timeline">Linha da lista</string>
<string name="compose_active_account_description">Usando a conta %1$s</string>
<string name="error_failed_set_caption">Erro ao incluir descrição</string>
<string name="action_set_caption">Descrever</string>

View file

@ -65,10 +65,10 @@
<string name="title_announcements">Anúncios</string>
<string name="title_licenses">Licenças</string>
<string name="post_username_format">\@%s</string>
<string name="post_boosted_format">%s fez boost</string>
<string name="post_boosted_format">%s deu boost</string>
<string name="message_empty">Nada aqui.</string>
<string name="footer_empty">Nada para ver aqui. Arraste para baixo para atualizar!</string>
<string name="notification_reblog_format">%s fez boost ao seu toot</string>
<string name="notification_reblog_format">%s deu boost ao seu toot</string>
<string name="notification_favourite_format">%s adicionou o seu toot aos favoritos</string>
<string name="notification_follow_format">%s está a seguir-te</string>
<string name="notification_follow_request_format">%s pediu para te seguir</string>
@ -134,7 +134,7 @@
<string name="action_open_drawer">Abrir menu</string>
<string name="action_search">Pesquisar</string>
<string name="action_access_drafts">Rascunhos</string>
<string name="action_access_scheduled_posts">Toots agendados</string>
<string name="action_access_scheduled_posts">Toots Agendados</string>
<string name="action_toggle_visibility">Privacidade do toot</string>
<string name="action_content_warning">Aviso de conteúdo</string>
<string name="action_emoji_keyboard">Teclado de emojis</string>
@ -325,7 +325,6 @@
<string name="action_lists">Listas</string>
<string name="error_rename_list">Não foi possível renomear a lista</string>
<string name="title_lists">Listas</string>
<string name="title_list_timeline">Cronologia da timeline</string>
<string name="error_create_list">Não foi possível criar a lista</string>
<string name="error_delete_list">Não foi possível apagar a lista</string>
<string name="action_create_list">Criar uma lista</string>

View file

@ -296,7 +296,6 @@
<string name="add_account_description">Добавить новый акканут Mastodon</string>
<string name="action_lists">Списки</string>
<string name="title_lists">Списки</string>
<string name="title_list_timeline">Список лент</string>
<string name="error_create_list">Не удалось создать список</string>
<string name="error_rename_list">Не удалось переименовать список</string>
<string name="error_delete_list">Не удалось удалить список</string>

View file

@ -202,7 +202,6 @@
<string name="error_rename_list">पुनः सूचिनामकरणं कर्तुमशक्यम्</string>
<string name="error_create_list">सूचिनिर्माणं कर्तुमशक्यम्</string>
<string name="dialog_message_cancel_follow_request">अनुसरणानुरोधो नश्यताम् \?</string>
<string name="title_list_timeline">सूचेः समयतालिका</string>
<string name="title_lists">सूचयः</string>
<string name="action_lists">सूचयः</string>
<string name="add_account_description">नवमास्टोडोनलेखा युज्यताम्</string>

View file

@ -247,7 +247,6 @@
<string name="add_account_description">Dodaj nov Mastodon račun</string>
<string name="action_lists">Seznami</string>
<string name="title_lists">Seznami</string>
<string name="title_list_timeline">Seznam časovnice</string>
<string name="error_create_list">Seznama ni bilo mogoče ustvariti</string>
<string name="error_rename_list">Seznama ni bilo mogoče preimenovati</string>
<string name="error_delete_list">Seznama ni bilo mogoče izbrisati</string>

View file

@ -269,7 +269,6 @@
<string name="add_account_description">Lägg till ett nytt Mastodon-konto</string>
<string name="action_lists">Listor</string>
<string name="title_lists">Listor</string>
<string name="title_list_timeline">Lista tidslinje</string>
<string name="error_create_list">Kunde inte skapa lista</string>
<string name="error_rename_list">Kunde inte byta namn på lista</string>
<string name="error_delete_list">Kunde inte radera lista</string>

View file

@ -216,7 +216,6 @@
<string name="add_account_description">புதிய Mastodon கணக்கைச் சேர்க்க</string>
<string name="action_lists">பட்டியல்கள்</string>
<string name="title_lists">பட்டியல்கள்</string>
<string name="title_list_timeline">காலவரிசை பட்டியல்</string>
<string name="compose_active_account_description">%1$s கணக்குடன் பதிவிட</string>
<string name="error_failed_set_caption">தலைப்பை அமைக்க முடியவில்லை</string>
<string name="action_set_caption">தலைப்பை அமை</string>

View file

@ -144,7 +144,6 @@
<string name="error_delete_list">ไม่สามารถลบรายการได้</string>
<string name="error_rename_list">ไม่สามารถเปลี่ยนชื่อรายการได้</string>
<string name="error_create_list">ไม่สามารถสร้างรายการได้</string>
<string name="title_list_timeline">ไทม์ไลน์ในรายการ</string>
<string name="add_account_description">เพิ่มบัญชี Mastodon ใหม่</string>
<string name="add_account_name">เพิ่มบัญชี</string>
<string name="filter_add_description">วลีที่ต้องการกรอง</string>

View file

@ -243,7 +243,6 @@
<string name="add_account_description">Yeni Mastodon hesabı ekle</string>
<string name="action_lists">Listeler</string>
<string name="title_lists">Listeler</string>
<string name="title_list_timeline">Zaman çizelgesini listele</string>
<string name="compose_active_account_description">%1$s hesabıyla gönderiliyor</string>
<plurals name="hint_describe_for_visually_impaired">
<item quantity="other">Görsel engelli için tanımla

View file

@ -285,7 +285,6 @@
<string name="error_delete_list">Не вдалося видалити список</string>
<string name="error_rename_list">Не вдалося перейменувати список</string>
<string name="error_create_list">Не вдалося створити список</string>
<string name="title_list_timeline">Стрічка списку</string>
<string name="add_account_description">Додати новий обліковий запис Mastodon</string>
<string name="add_account_name">Додати обліковий запис</string>
<string name="filter_add_description">Фільтрувати фразу</string>
@ -551,4 +550,15 @@
<string name="title_login">Вхід</string>
<string name="error_could_not_load_login_page">Не вдалося завантажити сторінку входу.</string>
<string name="saving_draft">Збереження чернетки…</string>
<string name="action_dismiss">Відхилити</string>
<string name="action_details">Подробиці</string>
<string name="title_migration_relogin">Увійдіть повторно, щоб отримувати push-сповіщення</string>
<string name="tips_push_notification_migration">Увійдіть повторно до всіх облікових записів, щоб увімкнути підтримку push-сповіщень.</string>
<string name="dialog_push_notification_migration">Щоб використовувати push-сповіщення через UnifiedPush, Tusky потребує дозволу стежити за сповіщеннями на вашому сервері Mastodon. Це вимагає повторного входу, щоб змінити області OAuth, надані Tusky. Використання параметра повторного входу тут або в налаштуваннях облікового запису збереже всі ваші локальні чернетки та кеш.</string>
<string name="dialog_push_notification_migration_other_accounts">Ви повторно увійшли до свого поточного облікового запису, щоб надати дозвіл на стеження Tusky. Однак у вас все ще є інші облікові записи, які не мігрували таким чином. Перейдіть до них і повторно увійдіть до них по одному, щоб забезпечити підтримку UnifiedPush сповіщень.</string>
<string name="account_date_joined">Приєднується %1$s</string>
<string name="action_edit_image">Редагувати зображення</string>
<string name="status_count_one_plus">1+</string>
<string name="error_image_edit_failed">Неможливо редагувати зображення.</string>
<string name="error_loading_account_details">Не вдалося завантажити подробиці облікового запису</string>
</resources>

View file

@ -448,7 +448,6 @@
<string name="action_delete_list">Xóa danh sách</string>
<string name="action_rename_list">Đổi tên danh sách</string>
<string name="action_create_list">Tạo danh sách</string>
<string name="title_list_timeline">Danh sách bảng tin</string>
<string name="add_account_description">Thêm tài khoản Mastodon</string>
<string name="add_account_name">Thêm tài khoản</string>
<string name="filter_add_description">Thêm mô tả</string>
@ -518,4 +517,15 @@
<string name="title_login">Đăng nhập</string>
<string name="error_could_not_load_login_page">Không thể tải trang đăng nhập.</string>
<string name="saving_draft">Đang lưu nháp…</string>
<string name="action_dismiss">Bỏ qua</string>
<string name="title_migration_relogin">Đăng nhập lại để hiện thông báo đẩy</string>
<string name="action_details">Chi tiết</string>
<string name="account_date_joined">Tham gia vào %1$s</string>
<string name="tips_push_notification_migration">Đăng nhập lại tất cả tài khoản để kích hoạt thông báo đẩy.</string>
<string name="dialog_push_notification_migration_other_accounts">Bạn đã đăng nhập lại vào tài khoản hiện tại của mình để cấp quyền thông báo đẩy cho Tusky. Tuy nhiên, bạn vẫn có các tài khoản khác chưa kích hoạt thông báo đẩy theo cách này. Chuyển sang chúng và đăng nhập từng cái một để cho phép hỗ trợ thông báo UnifiedPush.</string>
<string name="dialog_push_notification_migration">Để sử dụng thông báo đẩy qua UnifiedPush, Tusky cần có quyền đăng ký thông báo trên máy chủ Mastodon của bạn. Bạn hãy thoát ra rồi đăng nhập lại để thay đổi phạm vi OAuth được cấp cho Tusky. Sử dụng đăng nhập lại ở đây hoặc trong cài đặt Tài khoản sẽ bảo toàn tất cả các tút nháp và bộ nhớ đệm trên điện thoại của bạn.</string>
<string name="status_count_one_plus">1+</string>
<string name="action_edit_image">Sửa ảnh</string>
<string name="error_image_edit_failed">Hình ảnh này không thể sửa.</string>
<string name="error_loading_account_details">Không thể tải thông tin tài khoản</string>
</resources>

View file

@ -31,7 +31,7 @@
<string name="title_posts_pinned">已置顶</string>
<string name="title_follows">正在关注</string>
<string name="title_followers">关注者</string>
<string name="title_favourites">收藏</string>
<string name="title_favourites">喜欢</string>
<string name="title_mutes">被隐藏的用户</string>
<string name="title_blocks">被屏蔽的用户</string>
<string name="title_follow_requests">关注请求</string>
@ -50,7 +50,7 @@
<string name="message_empty">还没有内容。</string>
<string name="footer_empty">还没有内容,向下拉动即可刷新!</string>
<string name="notification_reblog_format">%s 转嘟了你的嘟文</string>
<string name="notification_favourite_format">%s 收藏了你的嘟文</string>
<string name="notification_favourite_format">%s 喜欢了你的嘟文</string>
<string name="notification_follow_format">%s 关注了你</string>
<string name="report_username_format">举报 @%s</string>
<string name="report_comment_hint">是否有更多信息需报告?</string>
@ -58,8 +58,8 @@
<string name="action_reply">回复</string>
<string name="action_reblog">转嘟</string>
<string name="action_unreblog">取消转嘟</string>
<string name="action_favourite">收藏</string>
<string name="action_unfavourite">取消收藏</string>
<string name="action_favourite">喜欢</string>
<string name="action_unfavourite">取消喜欢</string>
<string name="action_more">更多</string>
<string name="action_compose">发表嘟文</string>
<string name="action_login">登录 Mastodon 帐号</string>
@ -81,7 +81,7 @@
<string name="action_view_profile">个人资料</string>
<string name="action_view_preferences">设置</string>
<string name="action_view_account_preferences">帐户设置</string>
<string name="action_view_favourites">收藏</string>
<string name="action_view_favourites">喜欢</string>
<string name="action_view_mutes">被隐藏的用户</string>
<string name="action_view_blocks">被屏蔽的用户</string>
<string name="action_view_follow_requests">关注请求</string>
@ -112,7 +112,7 @@
<string name="action_hashtags">话题</string>
<string name="action_open_reblogger">打开转嘟用户主页</string>
<string name="action_open_reblogged_by">显示转嘟</string>
<string name="action_open_faved_by">显示收藏</string>
<string name="action_open_faved_by">显示喜欢</string>
<string name="title_hashtags_dialog">话题</string>
<string name="title_mentions_dialog">提及</string>
<string name="title_links_dialog">链接</string>
@ -171,7 +171,7 @@
<string name="pref_title_notification_filter_mentions">被提及</string>
<string name="pref_title_notification_filter_follows">有新的关注者</string>
<string name="pref_title_notification_filter_reblogs">嘟文被转嘟</string>
<string name="pref_title_notification_filter_favourites">嘟文被收藏</string>
<string name="pref_title_notification_filter_favourites">嘟文被喜欢</string>
<string name="pref_title_notification_filter_poll">投票已结束</string>
<string name="pref_title_appearance_settings">外观</string>
<string name="pref_title_app_theme">应用主题</string>
@ -215,8 +215,8 @@
<string name="notification_follow_description">当有用户关注我时</string>
<string name="notification_boost_name">转嘟</string>
<string name="notification_boost_description">当我的嘟文被转发时通知</string>
<string name="notification_favourite_name">收藏</string>
<string name="notification_favourite_description">当有用户收藏了我的嘟文时通知</string>
<string name="notification_favourite_name">喜欢</string>
<string name="notification_favourite_description">当有用户喜欢了我的嘟文时</string>
<string name="notification_poll_name">投票</string>
<string name="notification_poll_description">当我参与的投票结束时</string>
<string name="notification_mention_format">%s 提及了你</string>
@ -277,7 +277,6 @@
<string name="add_account_description">添加新的 Mastodon 帐号</string>
<string name="action_lists">列表</string>
<string name="title_lists">列表</string>
<string name="title_list_timeline">列表时间轴</string>
<string name="error_create_list">无法新建列表</string>
<string name="error_rename_list">无法重命名列表</string>
<string name="error_delete_list">无法删除列表</string>
@ -338,13 +337,13 @@
<string name="unpin_action">取消置顶</string>
<string name="pin_action">置顶</string>
<plurals name="favs">
<item quantity="other">&lt;b&gt;%1$s&lt;/b&gt;收藏</item>
<item quantity="other">&lt;b&gt;%1$s&lt;/b&gt;喜欢</item>
</plurals>
<plurals name="reblogs">
<item quantity="other">&lt;b&gt;%s&lt;/b&gt; 次转嘟</item>
</plurals>
<string name="title_reblogged_by">转嘟</string>
<string name="title_favourited_by">收藏</string>
<string name="title_favourited_by">喜欢</string>
<string name="conversation_1_recipients">%1$s</string>
<string name="conversation_2_recipients">%1$s 和 %2$s</string>
<string name="conversation_more_recipients">%1$s%2$s 和 %3$d 等人</string>
@ -355,7 +354,7 @@
<string name="description_post_cw">内容警告:%s</string>
<string name="description_post_media_no_description_placeholder">没有描述信息</string>
<string name="description_post_reblogged">被转嘟</string>
<string name="description_post_favourited">收藏</string>
<string name="description_post_favourited">喜欢</string>
<string name="description_visiblity_public">
公开
</string>
@ -494,12 +493,12 @@
<string name="review_notifications">反馈通知</string>
<string name="wellbeing_hide_stats_posts">隐藏嘟文的统计信息</string>
<string name="limit_notifications">限制时间线通知</string>
<string name="wellbeing_mode_notice">一些可能影响您精神状态的信息将被隐藏,这些信息包括:
\n
\n - 收藏、转发、关注通知
\n - 收藏、转发数
\n - 账号的已关注数量、嘟文数量
\n
<string name="wellbeing_mode_notice">一些可能影响您精神状态的信息将被隐藏,这些信息包括:
\n
\n - 喜欢、转发、关注通知
\n - 喜欢、转发数
\n - 账号的已关注数量、嘟文数量
\n
\n 推送通知不会被影响,但可以在通知设置中手动禁用。</string>
<string name="pref_title_wellbeing_mode">健康模式</string>
<string name="duration_indefinite">永久</string>
@ -517,7 +516,7 @@
<string name="follow_requests_info">即使您的账号未上锁,管理员 %1$s 认为您可能需要手动处理来自这些账号的关注请求。</string>
<string name="dialog_delete_conversation_warning">删除此对话吗?</string>
<string name="action_delete_conversation">删除对话</string>
<string name="pref_title_confirm_favourites">收藏前显示确认对话框</string>
<string name="pref_title_confirm_favourites">喜欢前显示确认对话框</string>
<string name="action_unbookmark">删除书签</string>
<string name="duration_30_days">30 天</string>
<string name="duration_60_days">60 天</string>
@ -537,4 +536,15 @@
<string name="notification_update_description">当你进行过互动的嘟文被编辑时发出通知</string>
<string name="error_could_not_load_login_page">无法加载登录页。</string>
<string name="saving_draft">正在保存草稿…</string>
<string name="title_migration_relogin">重新登陆以启用通知推送</string>
<string name="action_dismiss">不理会</string>
<string name="action_details">详情</string>
<string name="dialog_push_notification_migration_other_accounts">你已重新登录当前账户,向 Tusky 授予推送订阅权限。但是,你仍然有其他没有以这种方式迁移的账户。切换到它们,逐个重新登录,以启用 UnifiedPush 通知支持。</string>
<string name="account_date_joined">加入于%1$s</string>
<string name="tips_push_notification_migration">重新登录所有账户来启用推送通知支持。</string>
<string name="dialog_push_notification_migration">为了通过 UnifiedPush 使用推送通知Tusky 需要订阅你 Mastodon 服务器通知的权限。这需要重新登录来更改授予 Tusky 的 OAuth 作用域。使用此处或账户首选项中“重新登录”选项将保留你所有的本地草稿和缓存。</string>
<string name="status_count_one_plus">1+</string>
<string name="action_edit_image">编辑图片</string>
<string name="error_image_edit_failed">无法编辑图片。</string>
<string name="error_loading_account_details">加载账户详情失败</string>
</resources>

View file

@ -276,7 +276,6 @@
<string name="add_account_description">加入新的 Mastodon 帳號</string>
<string name="action_lists">列表</string>
<string name="title_lists">列表</string>
<string name="title_list_timeline">列表時間軸</string>
<string name="error_create_list">無法新建列表</string>
<string name="error_rename_list">無法重命名列表</string>
<string name="error_delete_list">無法刪除列表</string>

View file

@ -270,7 +270,6 @@
<string name="add_account_description">加入新的 Mastodon 帳號</string>
<string name="action_lists">列表</string>
<string name="title_lists">列表</string>
<string name="title_list_timeline">列表時間軸</string>
<string name="error_create_list">無法新建列表</string>
<string name="error_rename_list">無法重命名列表</string>
<string name="error_delete_list">無法刪除列表</string>

View file

@ -31,7 +31,7 @@
<string name="title_posts_pinned">已置顶</string>
<string name="title_follows">正在关注</string>
<string name="title_followers">关注者</string>
<string name="title_favourites">收藏</string>
<string name="title_favourites">喜欢</string>
<string name="title_mutes">被隐藏的用户</string>
<string name="title_blocks">被屏蔽的用户</string>
<string name="title_follow_requests">关注请求</string>
@ -50,7 +50,7 @@
<string name="message_empty">还没有内容</string>
<string name="footer_empty">还没有内容,向下拉动即可刷新</string>
<string name="notification_reblog_format">%s 转嘟了你的嘟文</string>
<string name="notification_favourite_format">%s 收藏了你的嘟文</string>
<string name="notification_favourite_format">%s 喜欢了你的嘟文</string>
<string name="notification_follow_format">%s 关注了你</string>
<string name="report_username_format">报告用户 @%s 的滥用行为</string>
<string name="report_comment_hint">报告更多信息</string>
@ -58,8 +58,8 @@
<string name="action_reply">回复</string>
<string name="action_reblog">转嘟</string>
<string name="action_unreblog">取消转嘟</string>
<string name="action_favourite">收藏</string>
<string name="action_unfavourite">取消收藏</string>
<string name="action_favourite">喜欢</string>
<string name="action_unfavourite">取消喜欢</string>
<string name="action_more">更多</string>
<string name="action_compose">新嘟文</string>
<string name="action_login">登录 Mastodon 帐号</string>
@ -81,7 +81,7 @@
<string name="action_view_profile">个人资料</string>
<string name="action_view_preferences">设置</string>
<string name="action_view_account_preferences">帐户设置</string>
<string name="action_view_favourites">收藏</string>
<string name="action_view_favourites">喜欢</string>
<string name="action_view_mutes">被隐藏的用户</string>
<string name="action_view_blocks">被屏蔽的用户</string>
<string name="action_view_follow_requests">关注请求</string>
@ -112,7 +112,7 @@
<string name="action_hashtags">话题</string>
<string name="action_open_reblogger">打开转嘟用户主页</string>
<string name="action_open_reblogged_by">显示转嘟</string>
<string name="action_open_faved_by">显示收藏</string>
<string name="action_open_faved_by">显示喜欢</string>
<string name="title_hashtags_dialog">话题</string>
<string name="title_mentions_dialog">提及</string>
<string name="title_links_dialog">链接</string>
@ -168,7 +168,7 @@
<string name="pref_title_notification_filter_mentions">被提及</string>
<string name="pref_title_notification_filter_follows">有新的关注者</string>
<string name="pref_title_notification_filter_reblogs">嘟文被转嘟</string>
<string name="pref_title_notification_filter_favourites">嘟文被收藏</string>
<string name="pref_title_notification_filter_favourites">嘟文被喜欢</string>
<string name="pref_title_notification_filter_poll">投票已结束</string>
<string name="pref_title_appearance_settings">外观</string>
<string name="pref_title_app_theme">应用主题</string>
@ -212,8 +212,8 @@
<string name="notification_follow_description">当有用户关注我时</string>
<string name="notification_boost_name">转嘟</string>
<string name="notification_boost_description">当有用户转嘟了我的嘟文时</string>
<string name="notification_favourite_name">收藏</string>
<string name="notification_favourite_description">当有用户收藏了我的嘟文时</string>
<string name="notification_favourite_name">喜欢</string>
<string name="notification_favourite_description">当有用户喜欢了我的嘟文时</string>
<string name="notification_poll_name">投票</string>
<string name="notification_poll_description">当我参与的投票结束时</string>
<string name="notification_mention_format">%s 提及了你</string>
@ -274,7 +274,6 @@
<string name="add_account_description">添加新的 Mastodon 帐号</string>
<string name="action_lists">列表</string>
<string name="title_lists">列表</string>
<string name="title_list_timeline">列表时间轴</string>
<string name="error_create_list">无法新建列表</string>
<string name="error_rename_list">无法重命名列表</string>
<string name="error_delete_list">无法删除列表</string>
@ -334,13 +333,13 @@
<string name="unpin_action">取消置顶</string>
<string name="pin_action">置顶</string>
<plurals name="favs">
<item quantity="other">&lt;b&gt;%1$s&lt;/b&gt; 次收藏</item>
<item quantity="other"><b>%1$s</b> 次喜欢</item>
</plurals>
<plurals name="reblogs">
<item quantity="other">&lt;b&gt;%s&lt;/b&gt; 次转嘟</item>
</plurals>
<string name="title_reblogged_by">转嘟</string>
<string name="title_favourited_by">收藏</string>
<string name="title_favourited_by">喜欢</string>
<string name="conversation_1_recipients">%1$s</string>
<string name="conversation_2_recipients">%1$s 和 %2$s</string>
<string name="conversation_more_recipients">%1$s, %2$s 和 %3$d 等人</string>
@ -359,9 +358,7 @@
<string name="description_post_reblogged">
被转嘟
</string>
<string name="description_post_favourited">
被收藏
</string>
<string name="description_post_favourited">被喜欢</string>
<string name="description_visiblity_public">
公开
</string>

View file

@ -50,7 +50,7 @@
<string name="message_empty">沒有內容。</string>
<string name="footer_empty">還沒有內容,向下拉動即可重新整理!</string>
<string name="notification_reblog_format">%s 轉嘟了你的嘟文</string>
<string name="notification_favourite_format">%s 收藏了你的嘟文</string>
<string name="notification_favourite_format">%s 最愛了你的嘟文</string>
<string name="notification_follow_format">%s 關注了你</string>
<string name="report_username_format">檢舉使用者 @%s 的濫用行為</string>
<string name="report_comment_hint">更多評論?</string>
@ -58,8 +58,8 @@
<string name="action_reply">回覆</string>
<string name="action_reblog">轉嘟</string>
<string name="action_unreblog">取消轉嘟</string>
<string name="action_favourite">收藏</string>
<string name="action_unfavourite">取消收藏</string>
<string name="action_favourite">最愛</string>
<string name="action_unfavourite">取消最愛</string>
<string name="action_more">更多</string>
<string name="action_compose">撰寫嘟文</string>
<string name="action_login">登入 Mastodon 帳號</string>
@ -81,7 +81,7 @@
<string name="action_view_profile">個人資料</string>
<string name="action_view_preferences">設定</string>
<string name="action_view_account_preferences">帳戶設定</string>
<string name="action_view_favourites">我的收藏</string>
<string name="action_view_favourites">我的最愛</string>
<string name="action_view_mutes">被靜音的使用者</string>
<string name="action_view_blocks">被封鎖的使用者</string>
<string name="action_view_follow_requests">關注請求</string>
@ -171,7 +171,7 @@
<string name="pref_title_notification_filter_mentions">被提及</string>
<string name="pref_title_notification_filter_follows">有新的關注者</string>
<string name="pref_title_notification_filter_reblogs">嘟文被轉嘟</string>
<string name="pref_title_notification_filter_favourites">嘟文被加入收藏</string>
<string name="pref_title_notification_filter_favourites">嘟文被加入最愛</string>
<string name="pref_title_notification_filter_poll">投票已結束</string>
<string name="pref_title_appearance_settings">外觀</string>
<string name="pref_title_app_theme">佈景主題</string>
@ -215,8 +215,8 @@
<string name="notification_follow_description">當有使用者關注我時</string>
<string name="notification_boost_name">轉嘟</string>
<string name="notification_boost_description">當有使用者轉嘟了我的嘟文時</string>
<string name="notification_favourite_name">收藏</string>
<string name="notification_favourite_description">當有使用者把我的嘟文加入收藏</string>
<string name="notification_favourite_name">最愛</string>
<string name="notification_favourite_description">當有使用者把我的嘟文加入最愛</string>
<string name="notification_poll_name">投票</string>
<string name="notification_poll_description">當我參與的投票結束時</string>
<string name="notification_mention_format">%s 提及了你</string>
@ -276,7 +276,6 @@
<string name="add_account_description">加入新的 Mastodon 帳號</string>
<string name="action_lists">列表</string>
<string name="title_lists">列表</string>
<string name="title_list_timeline">列表時間軸</string>
<string name="error_create_list">無法新建列表</string>
<string name="error_rename_list">無法重命名列表</string>
<string name="error_delete_list">無法刪除列表</string>
@ -336,13 +335,13 @@
<string name="unpin_action">取消置頂</string>
<string name="pin_action">置頂</string>
<plurals name="favs">
<item quantity="other">&lt;b&gt;%1$s&lt;/b&gt; 次收藏</item>
<item quantity="other"><b>%1$s</b> 次最愛</item>
</plurals>
<plurals name="reblogs">
<item quantity="other">&lt;b&gt;%s&lt;/b&gt; 次轉嘟</item>
</plurals>
<string name="title_reblogged_by">轉嘟</string>
<string name="title_favourited_by">收藏</string>
<string name="title_favourited_by">最愛</string>
<string name="conversation_1_recipients">%1$s</string>
<string name="conversation_2_recipients">%1$s 和 %2$s</string>
<string name="conversation_more_recipients">%1$s, %2$s 和 %3$d 等人</string>
@ -361,9 +360,7 @@
<string name="description_post_reblogged">
被轉嘟
</string>
<string name="description_post_favourited">
被收藏
</string>
<string name="description_post_favourited">被最愛</string>
<string name="description_visiblity_public">
公開
</string>
@ -445,8 +442,8 @@
<string name="review_notifications">檢查通知設定</string>
<string name="wellbeing_mode_notice">有些資訊可能會影響你的心理健康將會被隱藏。包括:
\n
\n- 收藏/轉嘟/關注 通知
\n- 收藏/轉嘟 數量
\n- 最愛/轉嘟/關注 通知
\n- 最愛/轉嘟 數量
\n- 關注/貼文 在個人頁面的狀態
\n
\n推播通知不會受到影響但你可以手動檢查你的通知設定。</string>

View file

@ -9,11 +9,13 @@
<string name="error_authorization_unknown">An unidentified authorization error occurred.</string>
<string name="error_authorization_denied">Authorization was denied.</string>
<string name="error_retrieving_oauth_token">Failed getting a login token.</string>
<string name="error_loading_account_details">Failed loading account details</string>
<string name="error_could_not_load_login_page">Could not load the login page.</string>
<string name="error_compose_character_limit">The post is too long!</string>
<string name="error_image_upload_size">The file must be less than 8MB.</string>
<string name="error_video_upload_size">Video files must be less than 40MB.</string>
<string name="error_audio_upload_size">Audio files must be less than 40MB.</string>
<string name="error_image_edit_failed">The image could not be edited.</string>
<string name="error_media_upload_type">That type of file cannot be uploaded.</string>
<string name="error_media_upload_opening">That file could not be opened.</string>
<string name="error_media_upload_permission">Permission to read media is required.</string>
@ -40,6 +42,7 @@
<string name="title_mutes">Muted users</string>
<string name="title_blocks">Blocked users</string>
<string name="title_domain_mutes">Hidden domains</string>
<string name="title_migration_relogin">Re-login for push notifications</string>
<string name="title_follow_requests">Follow Requests</string>
<string name="title_edit_profile">Edit your profile</string>
<string name="title_drafts">Drafts</string>
@ -147,6 +150,8 @@
<string name="action_open_reblogger">Open boost author</string>
<string name="action_open_reblogged_by">Show boosts</string>
<string name="action_open_faved_by">Show favorites</string>
<string name="action_dismiss">Dismiss</string>
<string name="action_details">Details</string>
<string name="title_hashtags_dialog">Hashtags</string>
<string name="title_mentions_dialog">Mentions</string>
@ -345,6 +350,7 @@
<string name="post_media_video">Video</string>
<string name="post_media_audio">Audio</string>
<string name="post_media_attachments">Attachments</string>
<string name="status_count_one_plus">1+</string>
<string name="state_follow_requested">Follow requested</string>
@ -382,7 +388,6 @@
<string name="action_lists">Lists</string>
<string name="title_lists">Lists</string>
<string name="title_list_timeline">List timeline</string>
<string name="error_create_list">Could not create list</string>
<string name="error_rename_list">Could not rename list</string>
<string name="error_delete_list">Could not delete list</string>
@ -401,6 +406,7 @@
<item quantity="other">Describe for visually impaired\n(%d character limit)</item>
</plurals>
<string name="action_set_caption">Set caption</string>
<string name="action_edit_image">Edit image</string>
<string name="action_remove">Remove</string>
<string name="lock_account_label">Lock account</string>
<string name="lock_account_label_description">Requires you to manually approve followers</string>
@ -641,6 +647,14 @@
<string name="action_register">Register New Account</string>
<string name="tusky_compose_post_quicksetting_label">Compose Post</string>
<string name="account_date_joined">Joined %1$s</string>
<string name="saving_draft">Saving draft…</string>
<string name="tips_push_notification_migration">Re-login all accounts to enable push notification support.</string>
<string name="dialog_push_notification_migration">In order to use push notifications via UnifiedPush, Tusky needs permission to subscribe to notifications on your Mastodon server. This requires a re-login to change the OAuth scopes granted to Tusky. Using the re-login option here or in Account Preferences will preserve all of your local drafts and cache.</string>
<string name="dialog_push_notification_migration_other_accounts">You have re-logged into your current account to grant push subscription permission to Tusky. However, you still have other accounts that have not been migrated this way. Switch to them and re-login one by one in order to enable UnifiedPush notifications support.</string>
</resources>