Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Thomas 2021-10-24 18:23:11 +02:00
commit 9388ca6137
54 changed files with 572 additions and 506 deletions

View File

@ -181,7 +181,7 @@ dependencies {
implementation 'com.huangyz0918:androidwm-light:0.1.2'
implementation 'com.github.UnifiedPush:android-connector:1.1.0'
implementation 'com.github.UnifiedPush:android-connector:1.2.0'
implementation "com.madgag.spongycastle:bctls-jdk15on:1.58.0.0"
@ -195,7 +195,7 @@ dependencies {
playstoreImplementation 'org.framagit.tom79:country-picker-android:1.2.0'
playstoreImplementation 'com.vanniktech:emoji-one:0.6.0'
playstoreImplementation 'ja.burhanrashid52:photoeditor:0.4.0'
playstoreImplementation 'com.github.UnifiedPush:android-embedded_fcm_distributor:1.0.0'
playstoreImplementation 'com.github.UnifiedPush:android-embedded_fcm_distributor:1.1.0'
//Fdroid
fdroidApi 'com.theartofdev.edmodo:android-image-cropper:2.8.+'

View File

@ -303,9 +303,9 @@ public class HttpsConnection {
URL url = new URL(urlConnection);
if (proxy != null)
httpURLConnection = (HttpsURLConnection) url.openConnection(proxy);
httpURLConnection = (HttpURLConnection) url.openConnection(proxy);
else
httpURLConnection = (HttpsURLConnection) url.openConnection();
httpURLConnection = (HttpURLConnection) url.openConnection();
httpURLConnection.setConnectTimeout(30 * 1000);
httpURLConnection.setRequestProperty("http.keepAlive", "false");
httpURLConnection.setRequestProperty("Content-Type", "application/json");

View File

@ -908,7 +908,7 @@ public class ContentSettingsFragment extends Fragment implements OnRetrieveRemot
boolean notify = sharedpreferences.getBoolean(Helper.SET_NOTIFY, true);
boolean notify = sharedpreferences.getBoolean(Helper.SET_PUSH_NOTIFICATIONS, true);
final SwitchCompat switchCompatNotify = rootView.findViewById(R.id.set_notify);
switchCompatNotify.setChecked(notify);
final LinearLayout notification_container = rootView.findViewById(R.id.notification_container);
@ -920,7 +920,7 @@ public class ContentSettingsFragment extends Fragment implements OnRetrieveRemot
switchCompatNotify.setOnCheckedChangeListener((buttonView, isChecked) -> {
// Save the state here
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putBoolean(Helper.SET_NOTIFY, isChecked);
editor.putBoolean(Helper.SET_PUSH_NOTIFICATIONS, isChecked);
editor.apply();
if (isChecked) {
notification_container.setVisibility(View.VISIBLE);

View File

@ -2458,7 +2458,7 @@ public class BaseHelper {
*/
public static boolean canNotify(Context context) {
final SharedPreferences sharedpreferences = context.getSharedPreferences(APP_PREFS, Context.MODE_PRIVATE);
boolean notify = sharedpreferences.getBoolean(SET_NOTIFY, true);
boolean notify = sharedpreferences.getBoolean(SET_PUSH_NOTIFICATIONS, true);
if (!notify)
return false;
boolean enable_time_slot = sharedpreferences.getBoolean(SET_ENABLE_TIME_SLOT, true);

View File

@ -46,7 +46,15 @@ public class PushHelper {
}).start();
break;
case NOTIF_NONE:
new Registration().unregisterApp(context);
new Thread(() -> {
SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open();
List<Account> accounts = new AccountDAO(context, db).getPushNotificationAccounts();
((Activity) context).runOnUiThread(() -> {
for (Account account : accounts) {
new Registration().unregisterApp(context, account.getUsername() + "@" + account.getInstance());
}
});
}).start();
break;
}
}
@ -69,8 +77,6 @@ public class PushHelper {
if (distributors.size() == 1 || !registration.getDistributor(context).isEmpty()) {
if (distributors.size() == 1) {
registration.saveDistributor(context, distributors.get(0));
} else {
registration.saveDistributor(context, registration.getDistributor(context));
}
registration.registerApp(context, slug);
return;

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">قد لا تعكِس المعلومات أدناه كامل الملف الشخصي للمستخدِم.</string>
<string name="insert_emoji">إضافة إيموجو</string>
<string name="no_emoji">ليس بإمكان التطبيق حاليًا حصاد الإيموجي الخاصة.</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">إشعارات منبثقة</string>
<string name="logout_confirmation">هل أنت متأكد من أنك تريد تسجيل الخروج؟</string>
<string name="logout_account_confirmation">هل أنت متأكد من أنك تريد تسجيل الخروج @%1$s@%2$s؟</string>
<!-- Status -->
@ -232,7 +232,7 @@
<!-- Notifications -->
<string name="no_notifications">لا توجد هناك إخطارات للعرض</string>
<string name="notif_mention">أشار إليك</string>
<string name="notif_status">wrote a new message</string>
<string name="notif_status">أنشىء رسالة جديدة</string>
<string name="notif_reblog">رقى تبويقك</string>
<string name="notif_favourite">أُعجِب بتبويقك</string>
<string name="notif_follow">يتابعك</string>
@ -311,7 +311,7 @@
<string name="set_notif_follow_add">إخطاري عندما يُعجَب أحدهم بأحد منشوراتي</string>
<string name="set_notif_follow_mention">إخطاري عندما يُشار إليّ</string>
<string name="set_notif_follow_poll">أرسل إشعاراً عند انتهاء استطلاع الرأي</string>
<string name="set_notif_status">Notify for new posts</string>
<string name="set_notif_status">إشعار بالمشاركات الجديدة</string>
<string name="set_share_validation">عرض مربع حوار للتأكيد قبل ترقية أي تبويق</string>
<string name="set_share_validation_fav">عرض مربع حوار للتأكيد قبل إضافة أي تبويق إلى المفضلة</string>
<string name="set_wifi_only">تفعيل الإخطار في وضع الواي فاي فقط</string>
@ -544,7 +544,7 @@
<string name="channel_notif_poll">انتهى استطلاع الرأي</string>
<string name="channel_notif_toot">تبويق جديد</string>
<string name="channel_notif_backup">النسخ الاحتياطي للتبويقات</string>
<string name="channel_notif_status">New posts</string>
<string name="channel_notif_status">مشاركات جديدة</string>
<string name="channel_notif_media">تنزيل الوسائط</string>
<string name="set_notif_sound">تغيير الإشعار الصوتي</string>
<string name="select_sound">اختيار نغمة</string>
@ -1037,13 +1037,14 @@
<string name="set_bibliogram">استبدال Instagram بـ Bibliogram</string>
<string name="set_bibliogram_indication">Bibliogram هو بديل مفتوح المصدر لـ Instagram يركز على الخصوصية.</string>
<string name="set_bibliogram_host">أدخل مضيفك المخصص أو اتركه فارغًا لاستخدام bibliogram.art</string>
<string name="set_libreddit">Replace Reddit with Libreddit</string>
<string name="set_libreddit_indication">Libreddit is an open source alternative Reddit front-end focused on privacy.</string>
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_libreddit">استبدال Reddit بـ Libreddit</string>
<string name="set_libreddit_indication">Libreddit هي جهة ريديت الأمامية البديلة المفتوحة المصدر التي تركز على الخصوصية.</string>
<string name="set_libreddit_host">أدخل مضيفك المخصص أو اتركه فارغاً لاستخدام libredd.it</string>
<string name="set_hide_status_bar">أخفِ شريط إشعارات Fedilab</string>
<string name="set_hide_status_bar_indication">لإخفاء الإشعارات المتبقية على شريط الحالة ، اضغط على زر أيقونة العين ثم قم بإلغاء تحديد: \"العرض على شريط الحالة\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">استخدام نظام الإشعارات المنبثق للحصول على الإشعارات في الوقت الحقيقي.</string>
<string name="no_live_notif">ليس هناك إشعارات حية</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">سيتم جلب الإشعارات كل 15 دقيقة.</string>
<string name="action_add_notes">أضف ملاحظات</string>
<string name="note_for_account">ملاحظات الحساب</string>
@ -1160,7 +1161,7 @@
<string name="set_video_cache">ذاكرة التخزين المؤقت للفيديو بالـ MB، صفر تعني مِن دون ذاكرة تخزين المؤقت.</string>
<string name="set_watermark">العلامات المائية</string>
<string name="set_watermark_indication">إضافة علامة مائية تلقائياً في أسفل الصور. يمكن تخصيص النص لكل حساب.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">لم يتم العثور على موزعين!</string>
<string name="no_distributors_explanation">تحتاج إلى موزع لتلقي إشعارات الدفع.\nستجد المزيد من التفاصيل في %1$s.\n\nيمكنك أيضا تعطيل الإشعارات في الإعدادات لتجاهل تلك الرسالة.</string>
<string name="select_distributors">اختر موزعا</string>
</resources>

View File

@ -1011,6 +1011,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -1013,6 +1013,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -1037,6 +1037,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Aquesta informació d\'usuària pot estar incompleta.</string>
<string name="insert_emoji">Inserir emoji</string>
<string name="no_emoji">L\'app no ha recollit emojis personalitzats de moment.</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">Missatges de l\'aplicació</string>
<string name="logout_confirmation">Estàs segur que vols tancar la sessió?</string>
<string name="logout_account_confirmation">Estàs segura que vols tancar la sessió @%1$s@%2$s?</string>
<!-- Status -->
@ -1001,8 +1001,9 @@ Ara ja pots connectar-te al compte escrivint <b>%1$s</b> en el primer camp i fen
<string name="set_libreddit_host">Introduïu el vostre servidor personalitzat o deixeu-ho em blanc per utilitzar libredd.it</string>
<string name="set_hide_status_bar">Amaga la barra de notificacions de Fedilab</string>
<string name="set_hide_status_bar_indication">Per amagar la notificació que queda a la barra d\'estat, toca la icona de l\'ull i després desactiva: \"Mostra a la barra d\'estat\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">Activa els missatges d\'aplicació per rebre notificacions en temps real.</string>
<string name="no_live_notif">Notificacions en directe desactivades</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Les notificacions es recolliran cada 15 minuts.</string>
<string name="action_add_notes">Afegeix-hi notes</string>
<string name="note_for_account">Notes per al compte</string>
@ -1119,7 +1120,7 @@ Ara ja pots connectar-te al compte escrivint <b>%1$s</b> en el primer camp i fen
<string name="set_video_cache">Memòria cau de vídeo en MB, el zero vol dir que no hi ha memòria cau.</string>
<string name="set_watermark">Marques d\'aigua</string>
<string name="set_watermark_indication">Afegir automàticament una marca d\'aigua a les imatges. El text és personalitzable per a cada compte.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">No s\'han trobat distribuïdors!</string>
<string name="no_distributors_explanation">Per rebre missatges d\'aplicació et cal un distribuïdor.\nPer més detalls vegeu %1$s.\n\nTambé pots desactivar els missatges a la configuració si els vols ignorar.</string>
<string name="select_distributors">Tria un distribuïdor</string>
</resources>

View File

@ -1027,6 +1027,7 @@ Uživatelské jméno a heslo nejsou nikdy ukládány. Jsou použity pouze během
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -1044,6 +1044,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Informationen nedenfor afspejler måske ikke brugerens profil fuldstændigt.</string>
<string name="insert_emoji">Indsæt emoji</string>
<string name="no_emoji">App\'en indsamlede ikke tilpassede emojis i øjeblikket.</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">Push-notifikationer</string>
<string name="logout_confirmation">Sikker på, at du vil logge ud?</string>
<string name="logout_account_confirmation">Sikker på, at du vil logge ud af @%1$s@%2$s?</string>
<!-- Status -->
@ -1011,8 +1011,9 @@
<string name="set_libreddit_host">Angiv din tilpassede vært eller lad stå tomt for brug af libredd.it</string>
<string name="set_hide_status_bar">Skjul Fedilab-notifikationsbjælke</string>
<string name="set_hide_status_bar_indication">For at skjule den resterende notifikation på statusbjælken, så klik på øjeikonknappen og fjern derefter markeringen: \"Vises på statusbjælke\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">Brug et push-notifikationssystem for at modtage realtidsnotifikationer.</string>
<string name="no_live_notif">Ingen live-notifikationer</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifikationer hentes hvert 15. minut.</string>
<string name="action_add_notes">Tilføj notater</string>
<string name="note_for_account">Notater til kontoen</string>
@ -1129,7 +1130,7 @@
<string name="set_video_cache">Video-cache i MB, nul indikerer ingen cache.</string>
<string name="set_watermark">Vandmærker</string>
<string name="set_watermark_indication">Tilføj automatisk et vandmærke i bunden af billeder. Teksten kan tilpasses for hver konto.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">Ingen distributører fundet!</string>
<string name="no_distributors_explanation">Du behøver en distributør for ar modtage push-notifikationer.\nDu finder flere oplysninger på %1$s.\n\nDu kan også deaktivere push-notifikationer i Indstillinger for at ignorere denne besked.</string>
<string name="select_distributors">Vælg en distributør</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Die folgenden Informationen könnten das Profil des Nutzers unvollständig wiedergeben.</string>
<string name="insert_emoji">Emoji einfügen</string>
<string name="no_emoji">Die App verfügt derzeit nicht über benutzerdefinierte Emojis.</string>
<string name="live_notif">Echtzeit-Benachrichtigungen</string>
<string name="push_notif">Push Benachrichtigungen</string>
<string name="logout_confirmation">Sind Sie sicher, dass Sie sich ausloggen wollen?</string>
<string name="logout_account_confirmation">Sind Sie sicher, dass Sie @%1$s@%2$s abmelden möchten?</string>
<!-- Status -->
@ -216,7 +216,7 @@
<!-- Notifications -->
<string name="no_notifications">Keine Benachrichtigungen</string>
<string name="notif_mention">hat dich erwähnt</string>
<string name="notif_status">wrote a new message</string>
<string name="notif_status">hat eine neue Nachricht geschrieben</string>
<string name="notif_reblog">hat deinen Beitrag geteilt</string>
<string name="notif_favourite">hat deinen Status favorisiert</string>
<string name="notif_follow">folgt dir</string>
@ -287,7 +287,7 @@
<string name="set_notif_follow_add">jemand meinen Beitrag favorisiert</string>
<string name="set_notif_follow_mention">ich erwähnt werde</string>
<string name="set_notif_follow_poll">Benachrichtigen, sobald eine Umfrage beendet ist</string>
<string name="set_notif_status">Notify for new posts</string>
<string name="set_notif_status">Benachrichtigung über neue Beiträge aktivieren</string>
<string name="set_share_validation">Bestätigungsdialog vor dem Teilen anzeigen</string>
<string name="set_share_validation_fav">Bestätigungsdialog vor dem Favorisieren anzeigen</string>
<string name="set_wifi_only">Nur bei WLAN benachrichtigen</string>
@ -514,7 +514,7 @@ Durch das Löschen der Anwendung werden diese Daten sofort entfernt.\n
<string name="channel_notif_poll">Umfrage beendet</string>
<string name="channel_notif_toot">Neuer Toot</string>
<string name="channel_notif_backup">Toots Backup</string>
<string name="channel_notif_status">New posts</string>
<string name="channel_notif_status">Neue Beiträge</string>
<string name="channel_notif_media">Medien Download</string>
<string name="set_notif_sound">Ändere Ton für Benachrichtigungen</string>
<string name="select_sound">Klingelton auswählen</string>
@ -872,7 +872,6 @@ Sobald du die ersten Buchstaben eintippst, werden Namensvorschläge angezeigt\n\
<string name="set_blur_sensitive_indication">Wenn deaktiviert, werden sensible Medien mit Hilfe einer Schaltfläche ausgeblendet</string>
<string name="set_long_press_media_indication">Medien in voller Größe speichern durch langes Antippen der Vorschaubilder</string>
<string name="set_display_timeline_in_list_indication">Füge oben rechts eine Dreipunkt-Schaltfläche […] hinzu, um alle Schlagwörter/Instanzen/Listen aufzulisten</string>
<string name="live_notif_indication">Halte eine offene Verbindung zur Streaming-API für Echtzeit-Mitteilungen aufrecht.</string>
<string name="set_enable_time_slot_indication">Innerhalb des Zeitfensters sendet die App Mitteilungen. Du kannst dieses Zeitfenster mit dem richtigen Drehwähler umkehren (d. h. leise).</string>
<string name="set_display_fedilab_features_button_indication">Zeigt eine Fedilab-Schaltfläche unter dem Profilbild. Dies ermöglicht einen Schnellzugriff auf In-App-Funktionen.</string>
<string name="set_quick_reply_indication">Ermöglicht das direkte Antworten in Zeitachsen unterhalb des Status</string>
@ -995,14 +994,14 @@ Sobald du die ersten Buchstaben eintippst, werden Namensvorschläge angezeigt\n\
<string name="set_bibliogram">Instagram durch Bibliogram ersetzen</string>
<string name="set_bibliogram_indication">Bibliogram ist ein alternatives Open-Source-Frontend von Instagram, das sich auf den Datenschutz konzentriert.</string>
<string name="set_bibliogram_host">Geben Sie Ihren benutzerdefinierten Host ein oder lassen Sie das Feld für die Verwendung von bibliogram.art frei</string>
<string name="set_libreddit">Replace Reddit with Libreddit</string>
<string name="set_libreddit_indication">Libreddit is an open source alternative Reddit front-end focused on privacy.</string>
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_libreddit">Reddit durch Libreddit ersetzen</string>
<string name="set_libreddit_indication">Libreddit ist eine Open-Source-Alternative zum Reddit Front-End, das sich auf die Privatsphäre konzentriert.</string>
<string name="set_libreddit_host">Geben Sie Ihren eigenen Host ein oder lassen Sie leer, um libredd.it zu verwenden</string>
<string name="set_hide_status_bar">Fedilab Benachrichtigungsleiste ausblenden</string>
<string name="set_hide_status_bar_indication">Um die verbleibende Benachrichtigung in der Statusleiste zu verstecken, klicken Sie auf die Augensymbol-Schaltfläche und deaktivieren Sie: \"In Statusleiste anzeigen\"</string>
<string name="set_live_type_indication">Benachrichtigungen werden 30 Sekunden verzögert. Dadurch wird weniger Akku verbraucht.</string>
<string name="live_delayed">Verzögerte Echtzeit-Benachrichtigungen</string>
<string name="set_push_notifications">Verwenden Sie ein Push-Benachrichtigungssystem, um Benachrichtigungen in Echtzeit zu erhalten.</string>
<string name="no_live_notif">Keine Echtzeit-Benachrichtigungen</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Benachrichtigungen werden alle 15 Minuten abgerufen.</string>
<string name="action_add_notes">Notizen hinzufügen</string>
<string name="note_for_account">Notizen für das Konto</string>
@ -1119,4 +1118,7 @@ Sobald du die ersten Buchstaben eintippst, werden Namensvorschläge angezeigt\n\
<string name="set_video_cache">Video-Cache in MB, Null bedeutet keinen Cache.</string>
<string name="set_watermark">Wasserzeichen</string>
<string name="set_watermark_indication">Automatisches Hinzufügen eines Wasserzeichens am unteren Rand von Bildern. Der Text kann für jedes Konto angepasst werden.</string>
<string name="no_distributors_found">Keine Dienste gefunden!</string>
<string name="no_distributors_explanation">Sie benötigen einen Dienst, um Push-Benachrichtigungen zu erhalten.\nWeitere Details finden Sie unter %1$s.\n\nSie können Push-Benachrichtigungen auch in den Einstellungen deaktivieren, um diese Nachricht zu ignorieren.</string>
<string name="select_distributors">Dienstanbieter auswählen</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Οι παρακάτω πληροφορίες ίσως να είναι μια ανεπαρκής παρουσίαση του προσώπου του χρήστη.</string>
<string name="insert_emoji">Εισαγωγή ιδεογράμματος</string>
<string name="no_emoji">Για την ώρα, η εφαρμογή δεν συνέλεξε προσαρμοσμένα ιδεογράμματα.</string>
<string name="live_notif">Απ\' ευθείας ειδοποιήσεις</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Are you sure you want to logout?</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<!-- Status -->
@ -884,7 +884,6 @@
<string name="set_blur_sensitive_indication">Αν απενεργοποιηθεί, τα πολυμέσα με ευαίσθητο περιεχόμενο θα αποκρύπτονται με ένα πλήκτρο</string>
<string name="set_long_press_media_indication">Αποθήκευση των πολυμέσων, στις πλήρης διαστάσεις τους, με πάτημα διαρκείας στην προ-επισκόπηση</string>
<string name="set_display_timeline_in_list_indication">Προσθήκη ενός πλήκτρου αποσιωπητικών, πάνω δεξιά, για την παράθεση όλων των ετικετών/υποστάσεων/κατάστιχων</string>
<string name="live_notif_indication">Διατήρηση συνεχής της σύνδεσης στην API, που παρέχει τη ροή, για ζωντανές ειδοποιήσεις.</string>
<string name="set_enable_time_slot_indication">During the time slot, the app will send notifications. You can reverse (ie: silent) this time slot with the right spinner.</string>
<string name="set_display_fedilab_features_button_indication">Προβολή ενός Φενδιλάμπιου πλήκτρου κάτω από την εικόνα του προσώπου. Είναι μια συντόμευση, η οποία επιτρέπει την πρόσβαση σε λειτουργίες της εφαρμογής.</string>
<string name="set_quick_reply_indication">Επιτρέπει την άμεση απόκριση, στις χρονοστήλες, κάτω από τις καταστάσεις</string>
@ -1012,9 +1011,9 @@
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Απόκρυψη της γραμμής ειδοποιήσεων του Φέντιλαμπ</string>
<string name="set_hide_status_bar_indication">Για απόκρυψη της υπόλοιπης ειδοποίησης στη γραμμή κατάστασης, πίεσε στο πλήκτρο με το μάτι, και μετά απο-επέλεξε την...: «Προβολή στη γραμμή κατάστασης»</string>
<string name="set_live_type_indication">Οι ειδοποιήσεις θα καθυστερούν κάθε 30 δευτερόλεπτα. Αυτό θα βοηθήσει στην χαμηλότερη απομύζηση της μπαταρίας.</string>
<string name="live_delayed">Οι ζωντανές ειδοποιήσεις είναι με καθυστέρηση</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">Καθόλου ζωντανές ειδοποιήσεις</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Οι ειδοποιήσεις θα λαμβάνονται κάθε 15 λεπτά.</string>
<string name="action_add_notes">Προσθήκη σημειώσεων</string>
<string name="note_for_account">Σημειώσεις για το λογαριασμό</string>
@ -1131,4 +1130,7 @@
<string name="set_video_cache">Video cache in MB, zero means no cache.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -1013,6 +1013,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Aldoni notojn</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">La siguiente información puede mostrar el perfil del usuario incompleto.</string>
<string name="insert_emoji">Insertar Emoji</string>
<string name="no_emoji">La aplicación no recogió emojis personalizados por el momento.</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">Notificaciones push</string>
<string name="logout_confirmation">¿Estás seguro de que quieres cerrar tu sesión?</string>
<string name="logout_account_confirmation">¿Está seguro de que quieres cerrar la sesión @%1$s@%2$s?</string>
<!-- Status -->
@ -1005,8 +1005,9 @@ https://yandex.ru/legal/confidential/?lang=en </string>
<string name="set_libreddit_host">Introduce tu servidor personalizado o déjalo en blanco para usar libredd.it</string>
<string name="set_hide_status_bar">Ocultar la barra de notificaciones de Fedilab</string>
<string name="set_hide_status_bar_indication">Para ocultar el resto de la notificación en la barra de estado, presione en el botón con el ícono de un ojo y luego desactivar \"Mostrar en la barra de estado\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">Usa un sistema de notificaciones push para obtener notificaciones en tiempo real.</string>
<string name="no_live_notif">Sin notificaciones en vivo</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Se buscarán notificaciones cada 15 minutos.</string>
<string name="action_add_notes">Añadir notas</string>
<string name="note_for_account">Notas de la cuenta</string>
@ -1123,7 +1124,7 @@ https://yandex.ru/legal/confidential/?lang=en </string>
<string name="set_video_cache">Caché de vídeo en MB, cero significa que no hay caché.</string>
<string name="set_watermark">Marcas de agua</string>
<string name="set_watermark_indication">Añadir automáticamente una marca de agua en la parte inferior de las imágenes. El texto se puede personalizar para cada cuenta.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">¡No se encontraron distribuidores!</string>
<string name="no_distributors_explanation">Necesitas un distribuidor para recibir notificaciones push.\nEncontrarás más detalles en %1$s.\n\nTambién puedes desactivar las notificaciones push en la configuración para ignorar ese mensaje.</string>
<string name="select_distributors">Selecciona un distribuidor</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Beheko informazioak ez du erabiltzailearen profila bere osotasunean adierazten.</string>
<string name="insert_emoji">Txertatu emojia</string>
<string name="no_emoji">Aplikazioak ez ditu emoji pertsonalizatuak jaso oraingoz.</string>
<string name="live_notif">Zuzeneko jakinarazpenak</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Ziur saioa amaitu nahi duzula?</string>
<string name="logout_account_confirmation">Ziur @%1$s@%2$s saioa amaitu nahi duzula?</string>
<!-- Status -->
@ -884,7 +884,6 @@
<string name="set_blur_sensitive_indication">Desgaituta badago, multimedia hunkigarria botoi batekin ezkutatuko da</string>
<string name="set_long_press_media_indication">Gorde multimedia tamaina osoan aurrebistetan luze sakatuz</string>
<string name="set_display_timeline_in_list_indication">Gehitu botoi bat goi-eskuin erpinean etiketa, instantzia eta zerrenda guztiak erakusteko</string>
<string name="live_notif_indication">Mantendu konexio bat irekita API jariora zuzeneko jakinarazpenetarako.</string>
<string name="set_enable_time_slot_indication">Denbora tarte horretan aplikazioak jakinarazpenak igorriko ditu. Denbora tartea alderantzikatu dezakezu (adib. isildu) eskuineko kontrolarekin.</string>
<string name="set_display_fedilab_features_button_indication">Bistaratu Fedilab botoi bat profilaren argazkiaren azpian. Aplikazio barneko ezaugarriak atzitzeko lasterbide bat da.</string>
<string name="set_quick_reply_indication">Baimendu denbora-lerroetan zuzenean mezuen azpian erantzutea</string>
@ -1011,9 +1010,9 @@
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Ezkutatu Fedilab jakinarazpen-barra</string>
<string name="set_hide_status_bar_indication">Egoera barran geratzen den jakinarazpena ezkutatzeko, sakatu begiaren ikonoa eta desmarkatu \"Erakutsi egoera-barran\"</string>
<string name="set_live_type_indication">Jakinarazpenak 30 segundo atzeratuko dira. Honela bateria gutxiago erabiliko da.</string>
<string name="live_delayed">Zuzeneko jakinarazpenak atzeratuak</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">Zuzeneko jakinarazpenik ez</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Jakinarazpenak 15 minutuero jasoko dira.</string>
<string name="action_add_notes">Gehitu oharrak</string>
<string name="note_for_account">Kontuarentzako oharrak</string>
@ -1130,4 +1129,7 @@
<string name="set_video_cache">Bideo cachea MB-tan, zerok cacherik ez esan nahi du.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -1013,6 +1013,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Les données ci-dessous peuvent ne pas refléter ce profil dans sa totalité.</string>
<string name="insert_emoji">Insérer un émoji</string>
<string name="no_emoji">Lapplication na pas encore collecté demojis personnalisés.</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">Notifications poussées</string>
<string name="logout_confirmation">Voulez-vous vraiment vous déconnecter?</string>
<string name="logout_account_confirmation">Voulez-vous vraiment déconnecter le compte @%1$s@%2$s?</string>
<!-- Status -->
@ -1008,8 +1008,9 @@ Le bouton de connexion sactivera une fois quun domaine valide sera renseig
<string name="set_libreddit_host">Entrez votre hôte personnalisé ou laissez vide pour utiliser libredd.it</string>
<string name="set_hide_status_bar">Masquer la barre de notification de Fedilab</string>
<string name="set_hide_status_bar_indication">Pour cacher le reste de la notification dans la barre de statut, cliquez sur le bouton en forme d\'œil, puis décochez: \"Afficher dans la barre de statut\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">Utilise un système de notifications poussées pour obtenir des notifications en temps réel.</string>
<string name="no_live_notif">Aucune notification en direct</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Les notifications seront récupérées toutes les 15 minutes.</string>
<string name="action_add_notes">Ajouter des notes</string>
<string name="note_for_account">Notes pour le compte</string>
@ -1126,7 +1127,7 @@ Le bouton de connexion sactivera une fois quun domaine valide sera renseig
<string name="set_video_cache">Cache vidéo en Mo, zéro signifie pas de cache.</string>
<string name="set_watermark">Filigranes</string>
<string name="set_watermark_indication">Ajouter automatiquement un filigrane au bas des images. Le texte peut être personnalisé pour chaque compte.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">Aucun distributeur trouvé !</string>
<string name="no_distributors_explanation">Vous avez besoin dun distributeur pour recevoir des notifications poussées.\nVous trouverez plus de détails sur %1$s.\n\nVous pouvez également désactiver les notifications poussées dans les paramètres pour ignorer ce message.</string>
<string name="select_distributors">Sélectionnez un distributeur</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">A información inferior sobre a usuaria podería estar incompleta.</string>
<string name="insert_emoji">Incrustar emoji</string>
<string name="no_emoji">Polo momento a app non permite emojis personalizados.</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">Notificacións Push</string>
<string name="logout_confirmation">Tes a certeza de querer saír?</string>
<string name="logout_account_confirmation">Tes a certeza de querer desconectar @%1$s@%2$s?</string>
<!-- Status -->
@ -1011,8 +1011,9 @@
<string name="set_libreddit_host">Escribe o teu servidor personalizado ou deixa baleiro para usar libredd.it</string>
<string name="set_hide_status_bar">Ocultar barra de notificacións de Fedilab</string>
<string name="set_hide_status_bar_indication">Para ocultar as notificacións remanentes na barra de estado, pulsa na icona do ollo e desmarca: \"Mostrar en barra de estado\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">Usar un sistema de notificacións push para ter notificacións en tempo real.</string>
<string name="no_live_notif">Sen notificacións ao vivo</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Recolleranse as notificacións cada 15 minutos.</string>
<string name="action_add_notes">Engadir notas</string>
<string name="note_for_account">Notas para a conta</string>
@ -1129,7 +1130,7 @@
<string name="set_video_cache">Caché para vídeo en MB, cero significa sen caché.</string>
<string name="set_watermark">Marcas de auga</string>
<string name="set_watermark_indication">Engadir marcas de auga automáticamente ás imaxes. O texto pódese personalizar para cada conta.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">Non se atopan distribuidores!</string>
<string name="no_distributors_explanation">Precisas un distribuidor para recibir notificacións push.\nAtoparás máis detalles en %1$s.\n\nTamén podes desactivar as notificacións push nos axustes para ignorar esa mensaxe.</string>
<string name="select_distributors">Elixe un distribuidor</string>
</resources>

View File

@ -1005,6 +1005,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,13 +81,13 @@
<string name="disclaimer_full">Az alábbi információ lehet, hogy nem mutat minden részletet a felhasználói profilból.</string>
<string name="insert_emoji">Emoji beszúrása</string>
<string name="no_emoji">Az app nem gyűjtött egyéni emojikat.</string>
<string name="live_notif">Valós idejű értesítések</string>
<string name="logout_confirmation">Are you sure you want to logout?</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<string name="push_notif">Leküldéses értesítések</string>
<string name="logout_confirmation">Biztos, hogy kijelentkezik?</string>
<string name="logout_account_confirmation">Biztos, hogy kijelentkezteti: @%1$s@%2$s?</string>
<!-- Status -->
<string name="no_status">Nincs megjeleníthető toot</string>
<string name="no_stories">No stories to display</string>
<string name="stories">Stories</string>
<string name="no_stories">Nincs megjeleníthető történet</string>
<string name="stories">Történetek</string>
<string name="reblog_by">Ismétlés %1$s által</string>
<string name="favourite_add">Hozzáadod ezt a tootot a kedvencekhez?</string>
<string name="favourite_remove">Eltávolítod ezt a tootot a kedvencek közül?</string>
@ -110,7 +110,7 @@
<item>Jelented ezt a tootot?</item>
<item>Letiltod ezt a domént?</item>
<item>Megszünteted a fiók elnémítását?</item>
<item>Unblock this account?</item>
<item>Megszünteti a fiók letiltását?</item>
</string-array>
<string-array name="action_notification">
<item>Értesítés</item>
@ -132,20 +132,20 @@
<string name="date_hours">%d ó</string>
<string name="date_day">%d n</string>
<plurals name="date_seconds_polls">
<item quantity="one">%d second</item>
<item quantity="other">%d seconds</item>
<item quantity="one">%d sodperc</item>
<item quantity="other">%d másodperc</item>
</plurals>
<plurals name="date_minutes_polls">
<item quantity="one">%d minute</item>
<item quantity="other">%d minutes</item>
<item quantity="one">%d perc</item>
<item quantity="other">%d perc</item>
</plurals>
<plurals name="date_hours_polls">
<item quantity="one">%d hour</item>
<item quantity="other">%d hours</item>
<item quantity="one">%d óra</item>
<item quantity="other">%d óra</item>
</plurals>
<plurals name="date_day_polls">
<item quantity="one">%d day</item>
<item quantity="other">%d days</item>
<item quantity="one">%d nap</item>
<item quantity="other">%d nap</item>
</plurals>
<!-- TOOT -->
<string name="toot_cw_placeholder">Figyelmeztetés</string>
@ -216,11 +216,11 @@
<!-- Notifications -->
<string name="no_notifications">Nincs megjelenítendő értesítés</string>
<string name="notif_mention">megemlített téged</string>
<string name="notif_status">wrote a new message</string>
<string name="notif_status">új üzenetet írt</string>
<string name="notif_reblog">megismételte posztodat</string>
<string name="notif_favourite">lájkolta a posztodat</string>
<string name="notif_follow">követett téged</string>
<string name="notif_follow_request">asked to follow you</string>
<string name="notif_follow_request">megkérte, hogy követhesse</string>
<plurals name="other_notifications">
<item quantity="one">és még egy értesítés</item>
<item quantity="other">és még %d értesítés</item>
@ -239,7 +239,7 @@
<string name="pinned_toots">Rögzített</string>
<!-- TOAST -->
<string name="client_error">Hiba a kliens id betöltésekor!</string>
<string name="connect_error">Unable to connect to instance domain!</string>
<string name="connect_error">Nem lehet kapcsolódni a példány domainjéhez!</string>
<string name="no_internet">Nincs internetkapcsolat!</string>
<string name="toast_block">Letiltottad a fiókot!</string>
<string name="toast_unblock">A fiók letiltását megszűntetted!</string>
@ -287,14 +287,14 @@
<string name="set_notif_follow_add">Értesíts, ha valaki lájkolja a posztodat</string>
<string name="set_notif_follow_mention">Értesíts, amikor valaki megemlít téged</string>
<string name="set_notif_follow_poll">Értesíts, amikor egy szavazás végetér</string>
<string name="set_notif_status">Notify for new posts</string>
<string name="set_notif_status">Értesítés az új bejegyzésekről</string>
<string name="set_share_validation">Kérdezz vissza újratootolás előtt</string>
<string name="set_share_validation_fav">Megerősítés kérése kedvencekhez hozzáadás előtt</string>
<string name="set_wifi_only">Értesítés csak WiFi használatakor </string>
<string name="set_notify">Kérsz értesítést?</string>
<string name="set_notif_silent">Csendes értesítések</string>
<string name="set_nsfw_timeout">NSFW tartalom megjelenítésének ideje (mp, 0 érték kikapcsolja)</string>
<string name="set_med_desc_timeout">Media Description timeout (seconds, 0 means off)</string>
<string name="set_med_desc_timeout">Médialeírás időtúllépése (mp, 0 érték kikapcsolja)</string>
<string name="settings_title_profile">Profil szerkesztése</string>
<string name="settings_title_custom_sharing">Egyéni megosztás</string>
<string name="settings_custom_sharing_url">Az egyéni megosztási URL&#8230;</string>
@ -342,7 +342,7 @@
<string name="action_search">Keresés</string>
<string name="set_capitalize">Első betű nagybetűsítése a válaszokban</string>
<string name="set_resize_picture">Képek átméretezése</string>
<string name="set_resize_video">Resize videos</string>
<string name="set_resize_video">Videók átméretezése</string>
<!-- Quick settings for notifications -->
<string name="settings_popup_title">Push-értesítések</string>
<string name="settings_popup_message"> Kérjük erősítsd meg, mely push-értesítéseket szeretnéd megkapni.
@ -363,7 +363,7 @@
<string name="action_sync">Szinkronizálás</string>
<string name="action_filter">Szűrés</string>
<string name="owner_cached_toots">Tootjaid</string>
<string name="owner_cached_notifications">Your notifications</string>
<string name="owner_cached_notifications">Saját értesítések</string>
<string name="v_public">Nyilvános</string>
<string name="v_unlisted">Nem megjelenített</string>
<string name="v_private">Privát</string>
@ -374,10 +374,10 @@
<string name="filter_no_result">Nincs találat!</string>
<string name="data_backup_toots">%1$s fiók tootjainak archiválása</string>
<string name="data_backup_success">%1$s új tootjait importáltuk</string>
<string name="data_backup_notification_success">%1$s new notifications have been imported</string>
<string name="data_backup_notification_success">%1$s új értesítés lett importálva</string>
<string-array name="filter_order">
<item>Dates descending</item>
<item>Dates ascending</item>
<item>Dátum alapján csökkenő</item>
<item>Dátum alapján növekvő</item>
</string-array>
<string-array name="filter_select">
<item>Nem</item>
@ -430,8 +430,8 @@ A Yandexnek megvan a saját adatvédelmi szabályzata, ami itt található: http
<string name="action_lists_delete">Lista törlése</string>
<string name="action_lists_update">Lista szerkesztése</string>
<string name="action_lists_title_placeholder">Új listacím</string>
<string name="action_lists_add_user">The account was added to the list!</string>
<string name="action_lists_empty">You don\'t have any lists yet!</string>
<string name="action_lists_add_user">A fiók hozzá lett adva a listához!</string>
<string name="action_lists_empty">Még nincs egyetlen listája sem!</string>
<!-- Migration -->
<string name="account_moved_to">%1$s elköltözött ide: %2$s</string>
<string name="issue_login_title">Nem sikeres a hitelesítés?</string>
@ -519,7 +519,7 @@ A Yandexnek megvan a saját adatvédelmi szabályzata, ami itt található: http
<string name="channel_notif_poll">A szavazás véget ért</string>
<string name="channel_notif_toot">Új toot</string>
<string name="channel_notif_backup">Tootok elmentése</string>
<string name="channel_notif_status">New posts</string>
<string name="channel_notif_status">Új bejegyzések</string>
<string name="channel_notif_media">Média letöltése</string>
<string name="set_notif_sound">Értesítési hang megváltoztatása</string>
<string name="select_sound">Hang kiválasztása</string>
@ -780,52 +780,52 @@ A Yandexnek megvan a saját adatvédelmi szabályzata, ami itt található: http
<string name="unmute_conversation">Beszélgetés némításának visszavonása</string>
<string name="toast_unmute_conversation">A beszélgetés már nincs némítva!</string>
<string name="toast_mute_conversation">A beszélgetés némítva van</string>
<string name="app_features">Open application features</string>
<string name="app_features">Alkalmazásfunkciók megnyitása</string>
<string name="timed_mute">Időzített elnémítás</string>
<string name="mention_account">Fiók megemlítése</string>
<string name="refresh_cache">Gyorsítótár frissítése</string>
<string name="mention_status">Üzenet megemlítese</string>
<string name="action_news">News</string>
<string name="category_general">General</string>
<string name="category_regional">Regional</string>
<string name="category_art">Art</string>
<string name="category_journalism">Journalism</string>
<string name="category_activism">Activism</string>
<string name="category_games">Gaming</string>
<string name="category_tech">Technology</string>
<string name="category_adult">Adult content</string>
<string name="action_news">Hírek</string>
<string name="category_general">Általános</string>
<string name="category_regional">Regionális</string>
<string name="category_art">Művészet</string>
<string name="category_journalism">Újságírás</string>
<string name="category_activism">Aktivizmus</string>
<string name="category_games">Játékok</string>
<string name="category_tech">Technológia</string>
<string name="category_adult">Felnőtt tartalom</string>
<string name="category_furry">Furry</string>
<string name="category_food">Food</string>
<string name="instance_logo">Logo of the instance</string>
<string name="toast_error_instance_reg">Something went wrong when checking available instances!</string>
<string name="join_mastodon">Join Mastodon</string>
<string name="pickup_instance_category">Choose an instance by picking up a category, then tap on a check button.</string>
<string name="pickup_instance_peertube">Choose an instance by tapping on a check button.</string>
<string name="users">%1$s users</string>
<string name="password_confirm">Confirm password</string>
<string name="agreement_check">I agree to %1$s and %2$s</string>
<string name="server_rules">server rules</string>
<string name="tos">terms of service</string>
<string name="sign_up">Sign up</string>
<string name="validation_needed">This instance works with invitations. Your account will need to be manually approved by an administrator before being usable.</string>
<string name="all_field_filled">Please, fill all the fields!</string>
<string name="password_error">Passwords don\'t match!</string>
<string name="email_error">The email doesn\'t seem to be valid!</string>
<string name="username_indicator">Your username will be unique on %1$s</string>
<string name="email_indicator">You will be sent a confirmation e-mail</string>
<string name="password_indicator">Use at least 8 characters</string>
<string name="password_too_short">Password should contain at least 8 characters</string>
<string name="username_error">Username should only contain letters, numbers and underscores</string>
<string name="account_created">Account created!</string>
<string name="category_food">Étel</string>
<string name="instance_logo">A példány logója</string>
<string name="toast_error_instance_reg">Valami rosszul sikerült az elérhető példányok keresésekor!</string>
<string name="join_mastodon">Csatlakozás a Mastodonhoz</string>
<string name="pickup_instance_category">Válasszon egy példányt egy kategória választásával, majd kattintson egy pipa gombra.</string>
<string name="pickup_instance_peertube">Válasszon egy példányt egy pipa gombra kattintással.</string>
<string name="users">%1$s felhasználó</string>
<string name="password_confirm">Jelszó megerősítése</string>
<string name="agreement_check">Elfogadom a %1$s és a %2$s</string>
<string name="server_rules">kiszolgáló szabályait</string>
<string name="tos">szolgáltatás feltételeit</string>
<string name="sign_up">Regisztráció</string>
<string name="validation_needed">A példány meghívásos alapon működik. A fiókját kézzel kell elfogadnia egy rendszergazdának, mielőtt az használhatóvá válna.</string>
<string name="all_field_filled">Töltse ki az összes mezőt!</string>
<string name="password_error">A jelszavak nem egyeznek!</string>
<string name="email_error">Az e-mail-cím nem tűnik érvényesnek!</string>
<string name="username_indicator">A felhasználóneve egyedi lesz ezen a kiszolgálón: %1$s</string>
<string name="email_indicator">Egy megerősítő e-mailt fog kapni</string>
<string name="password_indicator">Használjon legalább 8 karaktert</string>
<string name="password_too_short">A jelszónak legalább 8 karaktert kellene tartalmaznia</string>
<string name="username_error">A felhasználónévnek csak betűket, számokat és aláhúzásokat kellene tartalmaznia</string>
<string name="account_created">Fiók létrehozva!</string>
<string name="account_created_message"> Your account has been created!\n\n
Think to validate your email within the 48 next hours.\n\n
You can now connect your account by writing <b>%1$s</b> in the first field and click on <b>Connect</b>.\n\n
<b>Important</b>: If your instance required validation, you will receive an email once it is validated!
</string>
<string name="save_draft">Save the message in drafts?</string>
<string name="administration">Administration</string>
<string name="reports">Reports</string>
<string name="no_reports">No reports to display!</string>
<string name="save_draft">Menti az üzenetet piszkozatként?</string>
<string name="administration">Adminisztráció</string>
<string name="reports">Jelentések</string>
<string name="no_reports">Nincs megjelenítendő jelentés!</string>
<string name="reconnect_account">Reconnect the account</string>
<string name="reconnect_account_message">The application failed to access the admin features. You might need to reconnect the account for having the correct scope.</string>
<string name="unresolved">Unresolved</string>
@ -876,16 +876,15 @@ A Yandexnek megvan a saját adatvédelmi szabályzata, ami itt található: http
<string name="set_display_fedilab_features_button">Display Fedilab features button</string>
<string name="audio">The application needs to access audio recording</string>
<string name="voice_message">Voice message</string>
<string name="set_quick_reply">Enable quick reply</string>
<string name="reply_might_be_useless">The account you are replying might not see your message!</string>
<string name="set_remember_position_indication">If disabled, the app will always load last statuses</string>
<string name="set_blur_sensitive_indication">If disabled, sensitive media will be hidden with a button</string>
<string name="set_long_press_media_indication">Store media in full size with a long press on previews</string>
<string name="set_display_timeline_in_list_indication">Add an ellipse button at the top right for listing all tags/instances/lists</string>
<string name="live_notif_indication">Keep an open connection to the streaming API for live notifications.</string>
<string name="set_enable_time_slot_indication">During the time slot, the app will send notifications. You can reverse (ie: silent) this time slot with the right spinner.</string>
<string name="set_display_fedilab_features_button_indication">Display a Fedilab button below profile picture. It is a shortcut for accessing in-app features.</string>
<string name="set_quick_reply_indication">Allow to reply directly in timelines below statuses</string>
<string name="set_quick_reply">Gyors válasz bekapcsolása</string>
<string name="reply_might_be_useless">A fiók, melynek válaszol, lehet hogy nem fogja látni az üzenetét!</string>
<string name="set_remember_position_indication">Kikapcsolt állapotban az alkalmazás mindig a legfrissebb bejegyzéseket tölti be</string>
<string name="set_blur_sensitive_indication">Kikapcsolt állapotban a bizalmas médiák egy gombbal lesznek elrejtve</string>
<string name="set_long_press_media_indication">Médiák mentése teljes méretben az előnézetek hosszú érintésekor</string>
<string name="set_display_timeline_in_list_indication">Három pont gomb hozzáadása a címkék/példányok/listák felsorolásának jobb felső sarkában</string>
<string name="set_enable_time_slot_indication">Az idősáv alatt fog az alkalmazás értesítéseket küldeni. A fordítottját is beállíthatja (tehát némíthat) a jobb oldali legördülővel.</string>
<string name="set_display_fedilab_features_button_indication">Fedilab gomb megjelenítése a profilkép alatt. Ez egy rövidítés az alkalmazáson belüli funkciókhoz.</string>
<string name="set_quick_reply_indication">Közvetlen válasz engedélyezése a bejegyzések alatt</string>
<string name="set_fit_preview_indication">Previews will not be cropped in timelines</string>
<string name="set_display_video_preview_indication">Allow to play embedded videos directly in timelines</string>
<string name="set_display_content_after_fetch_more_indication">Allow to reverse the way to read statuses that are displayed once tapping the fetch more button</string>
@ -1010,9 +1009,9 @@ A Yandexnek megvan a saját adatvédelmi szabályzata, ami itt található: http
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Hide Fedilab notification bar</string>
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_live_type_indication">Notifications will be delayed every 30 seconds. That will allow to drain less battery.</string>
<string name="live_delayed">Live notifications delayed</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>
@ -1129,4 +1128,7 @@ A Yandexnek megvan a saját adatvédelmi szabályzata, ami itt található: http
<string name="set_video_cache">Video cache in MB, zero means no cache.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Սույն տեղեկատվությունը կարող է օգտատիրոջ էջն արտացոլել ոչ լիարժեք։</string>
<string name="insert_emoji">Էմոջի ներմուծել</string>
<string name="no_emoji">Ներկա պահին հավելվածը չունի հավաքագրած էմոջիներ։</string>
<string name="live_notif">Ուղիղ ծանուցումներ</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Are you sure you want to logout?</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<!-- Status -->
@ -883,7 +883,6 @@
<string name="set_blur_sensitive_indication">If disabled, sensitive media will be hidden with a button</string>
<string name="set_long_press_media_indication">Store media in full size with a long press on previews</string>
<string name="set_display_timeline_in_list_indication">Add an ellipse button at the top right for listing all tags/instances/lists</string>
<string name="live_notif_indication">Keep an open connection to the streaming API for live notifications.</string>
<string name="set_enable_time_slot_indication">During the time slot, the app will send notifications. You can reverse (ie: silent) this time slot with the right spinner.</string>
<string name="set_display_fedilab_features_button_indication">Display a Fedilab button below profile picture. It is a shortcut for accessing in-app features.</string>
<string name="set_quick_reply_indication">Allow to reply directly in timelines below statuses</string>
@ -1011,9 +1010,9 @@
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Hide Fedilab notification bar</string>
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_live_type_indication">Notifications will be delayed every 30 seconds. That will allow to drain less battery.</string>
<string name="live_delayed">Live notifications delayed</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>
@ -1130,4 +1129,7 @@
<string name="set_video_cache">Video cache in MB, zero means no cache.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -1007,6 +1007,7 @@ https://yandex.ru/legal/confidential/?lang=en
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Le informazioni qui sotto potrebbero riflettere in modo incompleto il profilo dell\'utente.</string>
<string name="insert_emoji">Inserisci emoji</string>
<string name="no_emoji">L\'app non raccoglie emoji personalizzate per il momento.</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">Notifiche push</string>
<string name="logout_confirmation">Sei sicuro di volerti disconnettere?</string>
<string name="logout_account_confirmation">Sei sicuro di volerti disconnettere @%1$s@%2$s?</string>
<!-- Status -->
@ -216,7 +216,7 @@
<!-- Notifications -->
<string name="no_notifications">Nessuna notifica da visualizzare</string>
<string name="notif_mention">ti ha menzionato</string>
<string name="notif_status">wrote a new message</string>
<string name="notif_status">scrivi un nuovo messaggio</string>
<string name="notif_reblog">ha ricondiviso il tuo stato</string>
<string name="notif_favourite">ha messo tra i preferiti il tuo stato</string>
<string name="notif_follow">ti segue</string>
@ -287,7 +287,7 @@
<string name="set_notif_follow_add">Notifica quando qualcuno mette tra i preferiti il tuo stato</string>
<string name="set_notif_follow_mention">Notifica quando qualcuno ti menziona</string>
<string name="set_notif_follow_poll">Notifica quando termina un sondaggio</string>
<string name="set_notif_status">Notify for new posts</string>
<string name="set_notif_status">Notifica per nuovi post</string>
<string name="set_share_validation">Mostra finestra di dialogo prima della ricondivisione</string>
<string name="set_share_validation_fav">Mostra finestra di dialogo prima di aggiungere ai preferiti</string>
<string name="set_wifi_only">Notifica solo in WIFI</string>
@ -521,7 +521,7 @@
<string name="channel_notif_poll">Sondaggio terminato</string>
<string name="channel_notif_toot">Un nuovo toot</string>
<string name="channel_notif_backup">Backup dei toot</string>
<string name="channel_notif_status">New posts</string>
<string name="channel_notif_status">Nuovi post</string>
<string name="channel_notif_media">Scarica i media</string>
<string name="set_notif_sound">Cambia il suono di notifica</string>
<string name="select_sound">Seleziona tono</string>
@ -1006,13 +1006,14 @@
<string name="set_bibliogram">Sostituisci Instagram con Bibliogram</string>
<string name="set_bibliogram_indication">Bibliogram è un\'interfaccia alternativa e open source per Instagram, focalizzata sulla privacy.</string>
<string name="set_bibliogram_host">Inserisci il tuo host personalizzato o lascia vuoto per usare bibliogram.art</string>
<string name="set_libreddit">Replace Reddit with Libreddit</string>
<string name="set_libreddit_indication">Libreddit is an open source alternative Reddit front-end focused on privacy.</string>
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_libreddit">Sostituisci Reddit con Libreddit</string>
<string name="set_libreddit_indication">Libreddit è un\'interfaccia open source alternativa a Reddit focalizzata sulla privacy.</string>
<string name="set_libreddit_host">Inserisci il tuo host personalizzato o lascia vuoto per usare libredd.it</string>
<string name="set_hide_status_bar">Nascondi barra di notifica di Fedilab</string>
<string name="set_hide_status_bar_indication">Per nascondere le notifiche rimanenti nella barra di stato, premi il pulsante con l\'icona di un occhio e deseleziona: \"Mostra nella barra di stato\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">Usa un sistema di notifiche push per ricevere notifiche in tempo reale.</string>
<string name="no_live_notif">Nessuna notifica in tempo reale</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Le notifiche saranno recuperate ogni 15 minuti.</string>
<string name="action_add_notes">Aggiungi note</string>
<string name="note_for_account">Note per l\'account</string>
@ -1129,7 +1130,7 @@
<string name="set_video_cache">Cache video in MB, zero significa nessuna cache.</string>
<string name="set_watermark">Filigrane</string>
<string name="set_watermark_indication">Aggiungi automaticamente una filigrana in fondo alle immagini. Il testo può essere personalizzato per ogni account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">Nessun distributore trovato!</string>
<string name="no_distributors_explanation">Hai bisogno di un distributore per ricevere notifiche push.\nTroverai maggiori dettagli a %1$s.\n\nPuoi anche disabilitare le notifiche push nelle impostazioni per ignorare quel messaggio.</string>
<string name="select_distributors">Seleziona un distributore</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">以下の情報は、ユーザーのプロフィールが完全には反映されていない場合があります。</string>
<string name="insert_emoji">絵文字を挿入</string>
<string name="no_emoji">アプリはしばらくの間カスタム絵文字を収集していません。</string>
<string name="live_notif">ライブ通知</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">本当にログアウトしますか?</string>
<string name="logout_account_confirmation">\@%1$s@%2$sからログアウトしますか</string>
<!-- Status -->
@ -870,7 +870,6 @@
<string name="set_blur_sensitive_indication">無効にすると、閲覧注意のメディアは非表示になり、ボタンだけが表示されます</string>
<string name="set_long_press_media_indication">プレビューで長押ししてメディアをオリジナルのサイズで保存します</string>
<string name="set_display_timeline_in_list_indication">右上にすべてのタグ、インスタンス、リストを表示する楕円のボタンを追加します</string>
<string name="live_notif_indication">ライブ通知のためにストリーミングAPIへ常時接続します。</string>
<string name="set_enable_time_slot_indication">指定された時間帯に、アプリは通知を送信します。右のスピンボタンを押すと、設定を反転することができます。(指定された時間に非通知)</string>
<string name="set_display_fedilab_features_button_indication">プロフィール画像の下にFedilabボタンを表示します。このボタンはアプリ内機能へのショートカットです。</string>
<string name="set_quick_reply_indication">トゥートの下のタイムラインから直接返信できるようにします。</string>
@ -995,9 +994,9 @@
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">通知バーからFedilabを非表示にする</string>
<string name="set_hide_status_bar_indication">ステータスバー上の通知を非表示にするには、目のアイコンボタンをタップして「ステータスバーに表示する」のチェックを外します</string>
<string name="set_live_type_indication">通知は30秒ごとに遅延が発生します。バッテリーの持ちが改善します。</string>
<string name="live_delayed">遅延ありのライブ通知</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">ライブ通知なし</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">15分ごとに通知を取得します。</string>
<string name="action_add_notes">メモを追加</string>
<string name="note_for_account">このアカウントのメモ</string>
@ -1114,4 +1113,7 @@
<string name="set_video_cache">MB単位での動画キャッシュ、0でキャッシュしません。</string>
<string name="set_watermark">ウォーターマーク</string>
<string name="set_watermark_indication">画像の下部に自動的にウォーターマークを追加します。テキストはアカウントごとにカスタマイズできます。</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -1013,6 +1013,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">아래의 정보는 사용자의 정보를 완전하게 나타내지 못할 수도 있습니다.</string>
<string name="insert_emoji">이모티콘 삽입</string>
<string name="no_emoji">The app did not collect custom emojis for the moment.</string>
<string name="live_notif">실시간 알림</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Are you sure you want to logout?</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<!-- Status -->
@ -878,7 +878,6 @@
<string name="set_blur_sensitive_indication">If disabled, sensitive media will be hidden with a button</string>
<string name="set_long_press_media_indication">Store media in full size with a long press on previews</string>
<string name="set_display_timeline_in_list_indication">Add an ellipse button at the top right for listing all tags/instances/lists</string>
<string name="live_notif_indication">Keep an open connection to the streaming API for live notifications.</string>
<string name="set_enable_time_slot_indication">During the time slot, the app will send notifications. You can reverse (ie: silent) this time slot with the right spinner.</string>
<string name="set_display_fedilab_features_button_indication">Display a Fedilab button below profile picture. It is a shortcut for accessing in-app features.</string>
<string name="set_quick_reply_indication">Allow to reply directly in timelines below statuses</string>
@ -1004,9 +1003,9 @@
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Hide Fedilab notification bar</string>
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_live_type_indication">Notifications will be delayed every 30 seconds. That will allow to drain less battery.</string>
<string name="live_delayed">Live notifications delayed</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>
@ -1123,4 +1122,7 @@
<string name="set_video_cache">Video cache in MB, zero means no cache.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -1011,6 +1011,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">De informatie hieronder kan een incompleet beeld geven van dit gebruikersprofiel.</string>
<string name="insert_emoji">Emoji toevoegen</string>
<string name="no_emoji">De app heeft nog geen lokale emojis verzameld.</string>
<string name="live_notif">Livemeldingen</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Weet je zeker dat je wilt uitloggen?</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<!-- Status -->
@ -883,7 +883,6 @@ Je kunt beginnen met typen en er zullen namen gesuggereerd worden.\n\n
<string name="set_blur_sensitive_indication">If disabled, sensitive media will be hidden with a button</string>
<string name="set_long_press_media_indication">Store media in full size with a long press on previews</string>
<string name="set_display_timeline_in_list_indication">Add an ellipse button at the top right for listing all tags/instances/lists</string>
<string name="live_notif_indication">Keep an open connection to the streaming API for live notifications.</string>
<string name="set_enable_time_slot_indication">During the time slot, the app will send notifications. You can reverse (ie: silent) this time slot with the right spinner.</string>
<string name="set_display_fedilab_features_button_indication">Display a Fedilab button below profile picture. It is a shortcut for accessing in-app features.</string>
<string name="set_quick_reply_indication">Allow to reply directly in timelines below statuses</string>
@ -1011,9 +1010,9 @@ Je kunt beginnen met typen en er zullen namen gesuggereerd worden.\n\n
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Hide Fedilab notification bar</string>
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_live_type_indication">Notifications will be delayed every 30 seconds. That will allow to drain less battery.</string>
<string name="live_delayed">Live notifications delayed</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>
@ -1130,4 +1129,7 @@ Je kunt beginnen met typen en er zullen namen gesuggereerd worden.\n\n
<string name="set_video_cache">Videocache in MB, nul betekent geen cache.</string>
<string name="set_watermark">Watermerken</string>
<string name="set_watermark_indication">Voeg automatisch een watermerk toe aan de onderkant van de foto\'s. De tekst kan voor elk account worden aangepast.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Informasjon nedenfor kan gjenspeile brukerens profil ufullstendig.</string>
<string name="insert_emoji">Sett inn emoji</string>
<string name="no_emoji">Appen samler ikke tilpassede emojis for øyeblikket.</string>
<string name="live_notif">Direktevarsler</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Are you sure you want to logout?</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<!-- Status -->
@ -874,7 +874,6 @@ Adresser vil bli foreslått når du begynner å skrive.\n\n
<string name="set_blur_sensitive_indication">If disabled, sensitive media will be hidden with a button</string>
<string name="set_long_press_media_indication">Store media in full size with a long press on previews</string>
<string name="set_display_timeline_in_list_indication">Add an ellipse button at the top right for listing all tags/instances/lists</string>
<string name="live_notif_indication">Keep an open connection to the streaming API for live notifications.</string>
<string name="set_enable_time_slot_indication">During the time slot, the app will send notifications. You can reverse (ie: silent) this time slot with the right spinner.</string>
<string name="set_display_fedilab_features_button_indication">Display a Fedilab button below profile picture. It is a shortcut for accessing in-app features.</string>
<string name="set_quick_reply_indication">Allow to reply directly in timelines below statuses</string>
@ -1002,9 +1001,9 @@ Adresser vil bli foreslått når du begynner å skrive.\n\n
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Hide Fedilab notification bar</string>
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_live_type_indication">Notifications will be delayed every 30 seconds. That will allow to drain less battery.</string>
<string name="live_delayed">Live notifications delayed</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Legg til notater</string>
<string name="note_for_account">Notater for kontoen</string>
@ -1121,4 +1120,7 @@ Adresser vil bli foreslått når du begynner å skrive.\n\n
<string name="set_video_cache">Video cache in MB, zero means no cache.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -1013,6 +1013,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,9 +81,9 @@
<string name="disclaimer_full">Poniższe informacje mogą nie odzwierciedlać w pełni profilu użytkownika.</string>
<string name="insert_emoji">Wstaw emoji</string>
<string name="no_emoji">Brak niestandardowych emoji.</string>
<string name="live_notif">Powiadomienia na żywo</string>
<string name="logout_confirmation">Are you sure you want to logout?</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<string name="push_notif">Powiadomienia push</string>
<string name="logout_confirmation">Czy na pewno chcesz się wylogować?</string>
<string name="logout_account_confirmation">Czy na pewno chcesz się wylogować z konta @%1$s@%2$s?</string>
<!-- Status -->
<string name="no_status">Brak wpisów do wyświetlenia</string>
<string name="no_stories">No stories to display</string>
@ -110,7 +110,7 @@
<item>Zgłosić ten wpis?</item>
<item>Zablokować tę domenę?</item>
<item>Cofnąć wyciszenie tego konta?</item>
<item>Unblock this account?</item>
<item>Odblokować to konto?</item>
</string-array>
<string-array name="action_notification">
<item>Powiadomienie</item>
@ -224,11 +224,11 @@
<!-- Notifications -->
<string name="no_notifications">Brak powiadomień do wyświetlenia</string>
<string name="notif_mention">wspomniał o tobie</string>
<string name="notif_status">wrote a new message</string>
<string name="notif_status">napisał nową wiadomość</string>
<string name="notif_reblog">podbił twój wpis</string>
<string name="notif_favourite">dodał(a) Twój wpis do ulubionych</string>
<string name="notif_follow">zaczął(-ęła) Cię śledzić</string>
<string name="notif_follow_request">asked to follow you</string>
<string name="notif_follow_request">poprosił o obserwowanie</string>
<plurals name="other_notifications">
<item quantity="one">dodaj %d innych powiadomień</item>
<item quantity="few">dodaj %d innych powiadomień</item>
@ -299,7 +299,7 @@
<string name="set_notif_follow_add">Powiadom mnie, gdy ktoś polubi mój wpis</string>
<string name="set_notif_follow_mention">Powiadom mnie, gdy ktoś mnie wspomni</string>
<string name="set_notif_follow_poll">Powiadom kiedy głosowanie zostanie zakończone</string>
<string name="set_notif_status">Notify for new posts</string>
<string name="set_notif_status">Powiadom o nowych postach</string>
<string name="set_share_validation">Proś o potwierdzenie przed podbiciem</string>
<string name="set_share_validation_fav">Proś o potwierdzenie przed dodaniem wpisu do ulubionych</string>
<string name="set_wifi_only">Powiadamiaj tylko w sieci WiFi</string>
@ -531,7 +531,7 @@
<string name="channel_notif_poll">Głosowanie zakończone</string>
<string name="channel_notif_toot">Nowy Wpis</string>
<string name="channel_notif_backup">Kopia zapasowa wpisów</string>
<string name="channel_notif_status">New posts</string>
<string name="channel_notif_status">Nowe posty</string>
<string name="channel_notif_media">Pobrane Media</string>
<string name="set_notif_sound">Zmień dźwięk powiadomień</string>
<string name="select_sound">Wybierz Dźwięk</string>
@ -736,7 +736,7 @@
<string name="notif_poll_self">Głosowanie, które stworzyłeś(-aś), zostało zakończone</string>
<string name="settings_category_notif_customize">Dostosuj</string>
<string name="settings_category_notif_categories">Kategorie</string>
<string name="settings_category_notif_time_slot">Time slot</string>
<string name="settings_category_notif_time_slot">Przedział czasowy</string>
<string name="settings_category_notif_advanced">Zaawansowane</string>
<string name="set_display_new_badge">Wyświetl plakietkę \"nowy\" na nieprzeczytanych wpisach</string>
<string name="peertube_menu">Peertube</string>
@ -754,32 +754,32 @@
<string name="set_sensitive_content">Zawsze oznaczaj media jako wrażliwe</string>
<string name="gnu_instance">Instancja GNU</string>
<string name="cached_status">Wpis zapisany w pamięci podręcznej</string>
<string name="set_forward_tags">Forward tags in replies</string>
<string name="set_forward_tags">Przekaż tagi w odpowiedziach</string>
<string name="set_long_press_media">Long press to store media</string>
<string name="set_blur_sensitive">Blur sensitive media</string>
<string name="set_blur_sensitive">Rozmycie wrażliwych treści</string>
<string name="set_display_timeline_in_list">Display timelines in a list</string>
<string name="display_timeline">Display timelines</string>
<string name="set_display_bot_icon">Mark bot accounts in toots</string>
<string name="add_tags">Manage tags</string>
<string name="set_display_bot_icon">Oznacz konta botów w wpisach</string>
<string name="add_tags">Zarządzaj tagami</string>
<string name="set_remember_position">Remember the position in Home timeline</string>
<string name="history">History</string>
<string name="playlists">Playlists</string>
<string name="display_name">Display name</string>
<string name="history">Historia</string>
<string name="playlists">Playlisty</string>
<string name="display_name">Wyświetlana nazwa</string>
<string name="action_playlist_add">You don\'t have any playlists. Tap on the \"+\" icon to add a new playlist</string>
<string name="error_display_name">You must provide a display name!</string>
<string name="error_channel_mandatory">The channel is required when the playlist is public.</string>
<string name="action_playlist_create">Create a playlist</string>
<string name="action_playlist_empty_content">There is nothing in this playlist yet.</string>
<string name="redo">redo</string>
<string name="gallery">Gallery</string>
<string name="action_playlist_create">Utwórz playlistę</string>
<string name="action_playlist_empty_content">Jeszcze nic nie ma w tej playliście.</string>
<string name="redo">ponów</string>
<string name="gallery">Galeria</string>
<string name="label_emoji">Emoji</string>
<string name="label_sticker">Sticker</string>
<string name="label_eraser">Eraser</string>
<string name="label_text">Text</string>
<string name="label_filter">Filter</string>
<string name="label_brush">Brush</string>
<string name="confirm_exit_editing">Are you sure you want to exit without saving the image?</string>
<string name="discard">Discard</string>
<string name="label_sticker">Naklejka</string>
<string name="label_eraser">Wykasuj</string>
<string name="label_text">Tekst</string>
<string name="label_filter">Filtr</string>
<string name="label_brush">Pędzel</string>
<string name="confirm_exit_editing">Czy na pewno chcesz wyjść bez zapisywania obrazu?</string>
<string name="discard">Odrzuć</string>
<string name="saving">Zapisywanie…</string>
<string name="image_saved">Obraz zapisany pomyślnie!</string>
<string name="save_image_failed">Nie udało się zapisać obrazu</string>
@ -792,93 +792,93 @@
<string name="toast_unmute_conversation">Rozmowa nie jest już wyciszona!</string>
<string name="toast_mute_conversation">Ta rozmowa jest wyciszona</string>
<string name="app_features">Open application features</string>
<string name="timed_mute">Timed mute</string>
<string name="timed_mute">Czasowe wyciszenie</string>
<string name="mention_account">Mention the account</string>
<string name="refresh_cache">Refresh cache</string>
<string name="refresh_cache">Odśwież pamięć podręczną</string>
<string name="mention_status">Mention the status</string>
<string name="action_news">News</string>
<string name="category_general">General</string>
<string name="category_regional">Regional</string>
<string name="category_art">Art</string>
<string name="category_journalism">Journalism</string>
<string name="category_activism">Activism</string>
<string name="category_games">Gaming</string>
<string name="category_tech">Technology</string>
<string name="category_adult">Adult content</string>
<string name="category_furry">Furry</string>
<string name="category_food">Food</string>
<string name="instance_logo">Logo of the instance</string>
<string name="toast_error_instance_reg">Something went wrong when checking available instances!</string>
<string name="join_mastodon">Join Mastodon</string>
<string name="action_news">Aktualności</string>
<string name="category_general">Ogólne</string>
<string name="category_regional">Regionalne</string>
<string name="category_art">Sztuka</string>
<string name="category_journalism">Dziennikarstwo</string>
<string name="category_activism">Aktywizm</string>
<string name="category_games">Gry</string>
<string name="category_tech">Technologia</string>
<string name="category_adult">Zawartość dla dorosłych</string>
<string name="category_furry">Futrzaki</string>
<string name="category_food">Jedzenie</string>
<string name="instance_logo">Logo instancji</string>
<string name="toast_error_instance_reg">Coś poszło nie tak podczas sprawdzania dostępnych instancji!</string>
<string name="join_mastodon">Dołącz do Mastodona</string>
<string name="pickup_instance_category">Choose an instance by picking up a category, then tap on a check button.</string>
<string name="pickup_instance_peertube">Choose an instance by tapping on a check button.</string>
<string name="users">%1$s users</string>
<string name="password_confirm">Confirm password</string>
<string name="agreement_check">I agree to %1$s and %2$s</string>
<string name="server_rules">server rules</string>
<string name="tos">terms of service</string>
<string name="sign_up">Sign up</string>
<string name="users">%1$s użytkowników</string>
<string name="password_confirm">Potwierdź hasło</string>
<string name="agreement_check">Zgadzam się z %1$s i %2$s</string>
<string name="server_rules">zasady serwera</string>
<string name="tos">warunki korzystania z usługi</string>
<string name="sign_up">Zarejestruj się</string>
<string name="validation_needed">This instance works with invitations. Your account will need to be manually approved by an administrator before being usable.</string>
<string name="all_field_filled">Please, fill all the fields!</string>
<string name="password_error">Passwords don\'t match!</string>
<string name="email_error">The email doesn\'t seem to be valid!</string>
<string name="username_indicator">Your username will be unique on %1$s</string>
<string name="email_indicator">You will be sent a confirmation e-mail</string>
<string name="password_indicator">Use at least 8 characters</string>
<string name="password_too_short">Password should contain at least 8 characters</string>
<string name="username_error">Username should only contain letters, numbers and underscores</string>
<string name="account_created">Account created!</string>
<string name="all_field_filled">Proszę wypełnić wszystkie pola!</string>
<string name="password_error">Hasła nie pasują do siebie!</string>
<string name="email_error">Wygląda na to, że adres e-mail nie jest prawidłowy!</string>
<string name="username_indicator">Twoja nazwa użytkownika będzie unikalna na %1$s</string>
<string name="email_indicator">Wyślemy Ci e-mail z potwierdzeniem</string>
<string name="password_indicator">Użyj co najmniej 8 znaków</string>
<string name="password_too_short">Hasło powinno zawierać co najmniej 8 znaków</string>
<string name="username_error">Nazwa użytkownika powinna zawierać tylko litery, cyfry i podkreślenia</string>
<string name="account_created">Konto zostało utworzone!</string>
<string name="account_created_message"> Your account has been created!\n\n
Think to validate your email within the 48 next hours.\n\n
You can now connect your account by writing <b>%1$s</b> in the first field and tap on <b>Connect</b>.\n\n
<b>Important</b>: If your instance required validation, you will receive an email once it is validated!
</string>
<string name="save_draft">Save the message in drafts?</string>
<string name="administration">Administration</string>
<string name="reports">Reports</string>
<string name="no_reports">No reports to display!</string>
<string name="reconnect_account">Reconnect the account</string>
<string name="save_draft">Zapisać wiadomość jako szkic?</string>
<string name="administration">Administracja</string>
<string name="reports">Zgłoszenia</string>
<string name="no_reports">Brak zgłoszeń do wyświetlenia!</string>
<string name="reconnect_account">Połącz ponownie ze swoim kontem</string>
<string name="reconnect_account_message">The application failed to access the admin features. You might need to reconnect the account for having the correct scope.</string>
<string name="unresolved">Unresolved</string>
<string name="remote">Remote</string>
<string name="active">Active</string>
<string name="pending">Pending</string>
<string name="disabled">Disabled</string>
<string name="silenced">Silenced</string>
<string name="suspended">Suspended</string>
<string name="permissions">Permissions</string>
<string name="email_status">Email status</string>
<string name="login_status">Login status</string>
<string name="joined">Joined</string>
<string name="recent_ip">Most recent IP</string>
<string name="warn">Warn</string>
<string name="disable">Disable</string>
<string name="silence">Silence</string>
<string name="unresolved">Nierozwiązane</string>
<string name="remote">Zdalne</string>
<string name="active">Aktywne</string>
<string name="pending">Oczekujące</string>
<string name="disabled">Wyłączone</string>
<string name="silenced">Wyciszone</string>
<string name="suspended">Zawieszone</string>
<string name="permissions">Uprawnienia</string>
<string name="email_status">Stan e-mail</string>
<string name="login_status">Status logowania</string>
<string name="joined">Dołączono</string>
<string name="recent_ip">Najnowsze IP</string>
<string name="warn">Ostrzeż</string>
<string name="disable">Wyłącz</string>
<string name="silence">Wycisz</string>
<string name="email_user">Notify the user per e-mail</string>
<string name="custom_warning">Custom warning</string>
<string name="user">User</string>
<string name="custom_warning">Niestandardowe ostrzeżenie</string>
<string name="user">Użytkownik</string>
<string name="moderator">Moderator</string>
<string name="administrator">Administrator</string>
<string name="confirmed">Confirmed</string>
<string name="unconfirmed">Not confirmed</string>
<string name="list_reported_statuses">Reported statuses</string>
<string name="account">Account</string>
<string name="unsilence">Undo silence</string>
<string name="undisable">Undo disable</string>
<string name="suspend">Suspend</string>
<string name="unsuspend">Undo suspend</string>
<string name="account_silenced">The account is silenced!</string>
<string name="account_unsilenced">The account is no longer silenced!</string>
<string name="account_suspended">The account is suspended!</string>
<string name="account_unsuspended">The account is no longer suspended!</string>
<string name="account_disabled">The account is disabled!</string>
<string name="account_undisabled">The account is no longer disabled!</string>
<string name="account_warned">The account has been warned!</string>
<string name="set_display_admin_menu">Display the admin menu</string>
<string name="confirmed">Potwierdzono</string>
<string name="unconfirmed">Nie potwierdzono</string>
<string name="list_reported_statuses">Zgłoszone statusy</string>
<string name="account">Konto</string>
<string name="unsilence">Cofnij wyciszenie</string>
<string name="undisable">Cofnij wyłączenie</string>
<string name="suspend">Zawieś</string>
<string name="unsuspend">Cofnij zawieszenie</string>
<string name="account_silenced">Konto jest wyciszone!</string>
<string name="account_unsilenced">Konto nie jest już wyciszone!</string>
<string name="account_suspended">Konto jest zawieszone!</string>
<string name="account_unsuspended">Konto nie jest już zawieszone!</string>
<string name="account_disabled">Konto jest wyłączone!</string>
<string name="account_undisabled">Konto nie jest już wyłączone!</string>
<string name="account_warned">Konto zostało ostrzeżone!</string>
<string name="set_display_admin_menu">Wyświetl menu administratora</string>
<string name="set_display_admin_toot">Display the admin feature in statuses</string>
<string name="allow">Allow</string>
<string name="account_approved">The account is approved!</string>
<string name="account_rejected">The account is rejected!</string>
<string name="allow">Zezwól</string>
<string name="account_approved">Konto zostało zatwierdzone!</string>
<string name="account_rejected">Konto zostało odrzucone!</string>
<string name="assign_to_me">Assign to me</string>
<string name="unassign">Unassign</string>
<string name="mark_resolved">Mark as resolved</string>
@ -886,14 +886,13 @@
<string name="toast_empty_content">Empty content!</string>
<string name="set_display_fedilab_features_button">Display Fedilab features button</string>
<string name="audio">The application needs to access audio recording</string>
<string name="voice_message">Voice message</string>
<string name="set_quick_reply">Enable quick reply</string>
<string name="voice_message">Wiadomość głosowa</string>
<string name="set_quick_reply">Włącz szybką odpowiedź</string>
<string name="reply_might_be_useless">The account you are replying might not see your message!</string>
<string name="set_remember_position_indication">If disabled, the app will always load last statuses</string>
<string name="set_blur_sensitive_indication">If disabled, sensitive media will be hidden with a button</string>
<string name="set_long_press_media_indication">Store media in full size with a long press on previews</string>
<string name="set_display_timeline_in_list_indication">Add an ellipse button at the top right for listing all tags/instances/lists</string>
<string name="live_notif_indication">Keep an open connection to the streaming API for live notifications.</string>
<string name="set_enable_time_slot_indication">During the time slot, the app will send notifications. You can reverse (ie: silent) this time slot with the right spinner.</string>
<string name="set_display_fedilab_features_button_indication">Display a Fedilab button below profile picture. It is a shortcut for accessing in-app features.</string>
<string name="set_quick_reply_indication">Allow to reply directly in timelines below statuses</string>
@ -911,82 +910,82 @@
<string name="folder_name">Enter the folder name</string>
<string name="valid_folder_name">Please enter a valid folder name</string>
<string name="folder_exists">This folder already exists.\n Please provide another name for the folder</string>
<string name="select">Select</string>
<string name="default_directory">Default Directory</string>
<string name="select">Wybierz</string>
<string name="default_directory">Domyślny folder</string>
<string name="folder">Folder</string>
<string name="create_folder">Create folder</string>
<string name="create_folder">Utwórz folder</string>
<string name="set_display_confirm">Display a toast message after an action has been completed (boost, fav, etc.)?</string>
<string name="muted_instance_exported">Muted instances have been exported!</string>
<string name="add_instances">Add an instance</string>
<string name="export_instances">Export instances</string>
<string name="import_instances">Import instances</string>
<string name="set_crash_reports">Crash reports</string>
<string name="set_enable_crash_report">Enable crash reports</string>
<string name="set_enable_crash_report_indication">If enabled, a crash report will be created locally and then you will be able to share it.</string>
<string name="add_instances">Dodaj instancję</string>
<string name="export_instances">Eksportuj instancje</string>
<string name="import_instances">Importuj instancje</string>
<string name="set_crash_reports">Raport o błędach</string>
<string name="set_enable_crash_report">Włącz raportowanie błędów</string>
<string name="set_enable_crash_report_indication">Jeśli włączone, raport o awarii zostanie utworzony lokalnie, a następnie będziesz mógł go udostępnić.</string>
<string name="crash_title">Fedilab został zatrzymany :(</string>
<string name="crash_message">Możesz wysłać mi email z raportem o błędzie. To pomoże go naprawić :)\n\nMożesz dopisać coś więcej. Dziękuję!</string>
<string name="set_wysiwyg">Use the wysiwyg</string>
<string name="set_wysiwyg">Użyj wysiwyg</string>
<string name="set_wysiwyg_indication">When enabled, you will be able to format your text easily with tools.</string>
<string name="action_stats">Statistics</string>
<string name="total_statuses">Total statuses</string>
<string name="number_boosts">Number of boosts</string>
<string name="number_favourites">Number of favourites</string>
<string name="number_mentions">Number of mentions</string>
<string name="action_stats">Statystyki</string>
<string name="total_statuses">Całkowita liczba statusów</string>
<string name="number_boosts">Liczba podbić</string>
<string name="number_favourites">Liczba ulubionych</string>
<string name="number_mentions">Liczba wzmianek</string>
<string name="number_follows">Number of follows</string>
<string name="number_polls">Number of polls</string>
<string name="number_replies">Number of replies</string>
<string name="number_statuses">Number of statuses</string>
<string name="statuses">Statuses</string>
<string name="visibility">Visibility</string>
<string name="number_polls">Liczba ankiet</string>
<string name="number_replies">Liczba odpowiedzi</string>
<string name="number_statuses">Liczba statusów</string>
<string name="statuses">Statusy</string>
<string name="visibility">Widoczność</string>
<string name="number_with_media">Number with media</string>
<string name="number_with_sensitive_media">Number with sensitive media</string>
<string name="number_with_cw">Number with CW</string>
<string name="first_toot_date">First status date</string>
<string name="last_toot_date">Last status date</string>
<string name="first_notification_date">First notification date</string>
<string name="last_notification_date">Last notification date</string>
<string name="frequency">Frequency</string>
<string name="first_toot_date">Data wysłania pierwszego statusu</string>
<string name="last_toot_date">Data wysłania ostatniego statusu</string>
<string name="first_notification_date">Data pierwszego powiadomienia</string>
<string name="last_notification_date">Data ostatniego powiadomienia</string>
<string name="frequency">Częstotliwość</string>
<string name="toot_per_day">%s statuses per day</string>
<string name="notification_per_day">%s notifications per day</string>
<string name="date_range">Date range</string>
<string name="action_groups">Groups</string>
<string name="no_messages">No groups!</string>
<string name="set_disable_animated_emoji">Disable custom animated emojis</string>
<string name="owner_charts">Charts</string>
<string name="display_charts">Display charts</string>
<string name="collecting_data_wait">The application collects your local data, please wait</string>
<string name="set_backup">Backup</string>
<string name="set_auto_backup">Auto backup statuses</string>
<string name="notification_per_day">%s powiadomień dziennie</string>
<string name="date_range">Przedział czasowy</string>
<string name="action_groups">Grupy</string>
<string name="no_messages">Brak grup!</string>
<string name="set_disable_animated_emoji">Wyłącz niestandardowe animowane emotikony</string>
<string name="owner_charts">Wykresy</string>
<string name="display_charts">Wyświetl wykresy</string>
<string name="collecting_data_wait">Aplikacja zbiera Twoje dane lokalne, proszę czekać</string>
<string name="set_backup">Kopia zapasowa</string>
<string name="set_auto_backup">Automatyczna kopia zapasowa statusów</string>
<string name="set_auto_backup_indication">This option is per account. It will launch a service that will automatically store your statuses locally in the database. That allows to get statistics and charts</string>
<string name="set_auto_backup_notifications">Auto backup notifications</string>
<string name="set_auto_backup_notifications_indication">This option is per account. It will launch a service that will automatically store your notifications locally in the database. That allows to get statistics and charts</string>
<string name="report_account">Report account</string>
<string name="send_invitation">Send an invitation</string>
<string name="registration_closed">Your instance does not allow to register a new account!</string>
<string name="report_account">Zgłoś konto</string>
<string name="send_invitation">Wyślij zaproszenie</string>
<string name="registration_closed">Twoja instancja nie pozwala na zarejestrowanie nowego konta!</string>
<plurals name="number_of_vote">
<item quantity="one">%d vote</item>
<item quantity="one">%d głos</item>
<item quantity="few">%d votes</item>
<item quantity="many">%d votes</item>
<item quantity="other">%d votes</item>
<item quantity="other">%d głosów</item>
</plurals>
<plurals name="number_of_voters">
<item quantity="one">%d voter</item>
<item quantity="one">%d głosujący</item>
<item quantity="few">%d voters</item>
<item quantity="many">%d voters</item>
<item quantity="other">%d voters</item>
<item quantity="other">%d głosujących</item>
</plurals>
<string-array name="poll_choice_type">
<item>Single choice</item>
<item>Multiple choices</item>
<item>Pojedynczy wybór</item>
<item>Wielokrotny wybór</item>
</string-array>
<string-array name="poll_duration">
<item>5 minutes</item>
<item>30 minutes</item>
<item>1 hour</item>
<item>6 hours</item>
<item>1 day</item>
<item>3 days</item>
<item>7 days</item>
<item>5 minut</item>
<item>30 minut</item>
<item>1 godzina</item>
<item>6 godzin</item>
<item>1 dzień</item>
<item>3 dni</item>
<item>7 dni</item>
</string-array>
<string-array name="settings_video_mode">
<item>Torrent</item>
@ -994,13 +993,13 @@
</string-array>
<string name="join_instance">For joining my instance \"%1$s\", you can download Fedilab:\n\nF-Droid: %2$s\nGoogle: %3$s\n\nThen open the link below with Fedilab and create your account :)\n\n%4$s
</string>
<string name="poll_duplicated_entry">Your poll can\'t have duplicated options!</string>
<string name="all_accounts">For all accounts</string>
<string name="database_cache">Database cache</string>
<string name="poll_duplicated_entry">Twoja ankieta nie może mieć zduplikowanych opcji!</string>
<string name="all_accounts">Dla wszystkich kont</string>
<string name="database_cache">Pamięć podręczna bazy danych</string>
<string name="cache_timeline_clear">Clear your home timeline cache</string>
<string name="cache_owntoots_clear">Clear your cached statuses</string>
<string name="cache_bookmarks_clear">Clear your bookmarks</string>
<string name="file_cache">Files in cache</string>
<string name="cache_owntoots_clear">Wyczyść statusy z pamięci podręcznej</string>
<string name="cache_bookmarks_clear">Wyczyść zakładki</string>
<string name="file_cache">Pliki w pamięci podręcznej</string>
<string name="total_notifications">Total notifications</string>
<string name="hide_menu_items">Hide menu items</string>
<string name="top_notification">Fedilab is running live notifications</string>
@ -1009,109 +1008,109 @@
<string name="set_allow_live_notifications_indication">Live notifications will be enabled for this account.</string>
<string name="set_clear_cache_exit">Clear cache when leaving</string>
<string name="set_clear_cache_exit_indication">The cache (media, cached messages, data from the built-in browser) will be automatically cleared when leaving the application.</string>
<string name="unfollow_confirm">Do you want to unfollow this account?</string>
<string name="unfollow_confirm">Czy chcesz przestać obserwować to konto?</string>
<string name="set_unfollow_validation">Show confirmation dialog before unfollowing</string>
<string name="set_invidious">Replace Youtube with Invidio.us</string>
<string name="set_invidious_indication">Invidious is an alternative front-end to YouTube</string>
<string name="set_invidious">Zastąp linki do YouTube\'a linkami do Invidiousa</string>
<string name="set_invidious_indication">Invidious jest alternatywnym front-endem dla YouTube</string>
<string name="set_invidious_host">Enter your custom host or leave blank for using invidious.snopyta.org</string>
<string name="set_nitter">Replace Twitter with Nitter</string>
<string name="set_nitter_indication">Nitter is an open source alternative Twitter front-end focused on privacy.</string>
<string name="set_nitter_host">Enter your custom host or leave blank for using nitter.net</string>
<string name="set_nitter">Przekieruj linki Twittera do Nitter</string>
<string name="set_nitter_indication">Nitter to alternatywna wersja front-end dla Twittera, która skupia się na prywatności.</string>
<string name="set_nitter_host">Wprowadź swój niestandardowy host lub pozostaw puste, aby użyć nitter.net</string>
<string name="set_bibliogram">Replace Instagram with Bibliogram</string>
<string name="set_bibliogram_indication">Bibliogram is an open source alternative Instagram front-end focused on privacy.</string>
<string name="set_bibliogram_indication">Bibliogram jest alternatywną wersją front-end na Instagramie typu open source, koncentrującą się na prywatności.</string>
<string name="set_bibliogram_host">Enter your custom host or leave blank for using bibliogram.art</string>
<string name="set_libreddit">Replace Reddit with Libreddit</string>
<string name="set_libreddit_indication">Libreddit is an open source alternative Reddit front-end focused on privacy.</string>
<string name="set_libreddit_indication">Libreddit to alternatywny, otwarty front-end dla Reddita, skupiający się na prywatności.</string>
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Hide Fedilab notification bar</string>
<string name="set_hide_status_bar">Ukryj pasek powiadomień Fedilab</string>
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_live_type_indication">Notifications will be delayed every 30 seconds. That will allow to drain less battery.</string>
<string name="live_delayed">Live notifications delayed</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Powiadomienia będą pobierane co 15 minut.</string>
<string name="action_add_notes">Dodaj notatki</string>
<string name="note_for_account">Notatki dla tego konta</string>
<string name="set_resize_picture_indication">Allow to compress large photos into smaller sized photos with very less or negligible loss in quality of the image.</string>
<string name="set_resize_video_indication">Allow compressing videos while maintaining their quality.</string>
<string name="please_wait_compression">The app is compressing the media, it can be quite long…</string>
<string name="change_app_icon_experimental">Change app icon</string>
<string name="click_to_change_the_app_icon">Tap to change the app icon</string>
<string name="post">Post</string>
<string name="post_visibility_tilte">Visibility of the post</string>
<string name="add_photo_pixelfed">Tap here to add photos</string>
<string name="add_photo_indication_pixelfed">Accepted Formats: jpeg, png, gif \n\nMax File Size: 15 MB \n\nAlbums can contain up to 4 photos or videos</string>
<string name="upload_media">Upload media</string>
<string name="pixelfed_compose_placeholder">Add an optional caption</string>
<string name="long_api_error">The app received a very long error message from the API %1$s</string>
<string name="message_preview">Message preview</string>
<string name="report_mention">Add mentions in each message</string>
<string name="fetch_conversation">Fetching conversation</string>
<string name="change_app_icon_experimental">Zmień ikonę aplikacji</string>
<string name="click_to_change_the_app_icon">Kliknij, aby zmienić ikonę aplikacji</string>
<string name="post">Publikuj</string>
<string name="post_visibility_tilte">Widoczność wpisu</string>
<string name="add_photo_pixelfed">Kliknij tutaj, aby dodać zdjęcia</string>
<string name="add_photo_indication_pixelfed">Akceptowane formaty: jpeg, png, gif \n\nMaksymalny rozmiar pliku: 15 MB \n\nAlbumy mogą zawierać do 4 zdjęć lub filmów</string>
<string name="upload_media">Prześlij multimedia</string>
<string name="pixelfed_compose_placeholder">Dodaj opcjonalny podpis</string>
<string name="long_api_error">Aplikacja otrzymała bardzo długi komunikat o błędzie od API %1$s</string>
<string name="message_preview">Podgląd wiadomości</string>
<string name="report_mention">Dodaj wzmianki w każdej wiadomości</string>
<string name="fetch_conversation">Pobieranie rozmowy</string>
<string name="order_by">Order by</string>
<string name="title_video_peertube">Title for the video</string>
<string name="join_peertube">Join Peertube</string>
<string name="title_video_peertube">Tytuł filmu</string>
<string name="join_peertube">Dołącz do Peertube</string>
<string name="agreement_check_peertube">I am at least 16 years old and agree to the %1$s of this instance</string>
<string name="link_color_title">Links</string>
<string name="link_color">Change the color of links (URLs, mentions, tags, etc.) in messages</string>
<string name="link_color_title">Linki</string>
<string name="link_color">Zmień kolor linków (URL, wzmianki, tagi itp.) w wiadomościach</string>
<string name="boost_header_color_title">Reblogs header</string>
<string name="displayname_title">Change the color of display name at the top of messages</string>
<string name="username_title">Change the color of the user name at the top of messages</string>
<string name="boost_header_color">Change the color of the header for reblogs</string>
<string name="background_status_title">Posts</string>
<string name="background_status_title">Posty</string>
<string name="background_status">Background color of posts in timelines</string>
<string name="reset_color">Reset colors</string>
<string name="reset_color">Resetuj kolory</string>
<string name="clik_reset">Tap here to reset all your custom colors</string>
<string name="reset">Reset</string>
<string name="icons_color_title">Icons</string>
<string name="reset">Resetuj</string>
<string name="icons_color_title">Ikony</string>
<string name="icons_color">Color of bottom icons in timelines</string>
<string name="pin_tag">Pin this tag</string>
<string name="logo_of_the_instance">Logo of the instance</string>
<string name="edit_profile">Edit profile</string>
<string name="pin_tag">Przypnij ten tag</string>
<string name="logo_of_the_instance">Logo instancji</string>
<string name="edit_profile">Edytuj profil</string>
<string name="make_an_action">Make an action</string>
<string name="translation">Translation</string>
<string name="image_preview">Image preview</string>
<string name="text_color_title">Text color</string>
<string name="translation">Tłumaczenie</string>
<string name="image_preview">Podgląd obrazu</string>
<string name="text_color_title">Kolor tekstu</string>
<string name="text_color">Change the text color in pots</string>
<string name="apply_changes">Apply changes</string>
<string name="apply_changes">Zastosuj zmiany</string>
<string name="restart_message">You need to restart the application to apply changes</string>
<string name="restart">Restart</string>
<string name="pref_custom_theme">Use a custom theme</string>
<string name="pref_custom_theme_summary">Allow to override colors of the selected theme above</string>
<string name="theming">Theming</string>
<string name="theming">Motyw</string>
<string name="store_before">Store before</string>
<string name="data_export_theme">The theme was exported</string>
<string name="data_export_theme_success">The theme has been successfully exported in CSV</string>
<string name="pref_colored_status_bar_summary">Apply the primary color to the status bar</string>
<string name="pref_colored_status_bar_title">Status bar color</string>
<string name="restore_default_theme">Restore a default theme</string>
<string name="import_theme">Import a theme</string>
<string name="import_theme">Importuj motyw</string>
<string name="import_theme_title">Tap here to import a theme from a previous export</string>
<string name="export_theme">Export the theme</string>
<string name="export_theme">Eksportuj motyw</string>
<string name="export_theme_title">Tap here to export the current theme</string>
<string name="theme_file_error">An error occurred when selecting the theme file</string>
<string name="label_theme_picker">Theme Picker</string>
<string name="pref_theme_summary">Select a pre-installed theme</string>
<string name="pref_theme_title">Themes</string>
<string name="label_theme_picker">Wybór motywu</string>
<string name="pref_theme_summary">Wybierz preinstalowany motyw</string>
<string name="pref_theme_title">Motywy</string>
<string name="pref_colored_navigation_bar_summary">Apply the primary color to the navigation bar</string>
<string name="pref_colored_navigation_bar_title">Navigation bar color</string>
<string name="pref_background_color_summary">The underlying color of the apps content.</string>
<string name="pref_background_color_title">Background color</string>
<string name="pref_background_color_title">Kolor tła</string>
<string name="pref_accent_color_summary">Accents select parts of the UI.</string>
<string name="pref_accent_color_title">Accent color</string>
<string name="pref_accent_color_title">Kolor akcentu</string>
<string name="pref_primary_color_summary">Displayed most frequently across your app.</string>
<string name="pref_primary_color_title">Primary color</string>
<string name="pref_primary_color_title">Kolor podstawowy</string>
<string name="export_bookmarks">Export bookmarks to the instance</string>
<string name="import_bookmarks">Import bookmarks from the instance</string>
<string name="user_count">User count</string>
<string name="status_count">Status count</string>
<string name="instance_count">Instance count</string>
<string name="blocked">Blocked</string>
<string name="poll_finish_in">End in %s</string>
<string name="release_note_title">What\'s new in %s</string>
<string name="follow_account_update">You can follow my account for updates</string>
<string name="poll_finish_in">Kończy się za %s</string>
<string name="release_note_title">Co nowego w %s</string>
<string name="follow_account_update">Możesz obserwować moje konto w celu śledzenia aktualizacji</string>
<string name="no_instance_reccord">This instance is not available on https://instances.social</string>
<string name="display_full_link">Display full link</string>
<string name="share_link">Share link</string>
<string name="link_copy">The URL has been copied to the clipboard</string>
<string name="display_full_link">Wyświetl pełny link</string>
<string name="share_link">Udostępnij link</string>
<string name="link_copy">Adres URL został skopiowany do schowka</string>
<string name="open_other_app">Open with another app</string>
<string name="check_redirect">Check redirect</string>
<string name="no_redirect">This URL does not redirect</string>
@ -1119,29 +1118,32 @@
<string name="set_user_agent">Change the user agent</string>
<string name="set_user_agent_hint">Set a custom user agent or leave blank</string>
<string name="set_user_agent_indication">Allows to customize the user agent used for api calls or with the built-in browser.</string>
<string name="set_utm_parameters">Remove UTM parameters</string>
<string name="set_utm_parameters">Usuń parametry UTM</string>
<string name="set_utm_parameters_indication">The app will automatically remove UTM parameters from URLs before visiting a link.</string>
<string name="action_trends">Trends</string>
<string name="trending_now">Trending now</string>
<string name="action_trends">Trendy</string>
<string name="trending_now">Popularne teraz</string>
<string name="talking_about">%d people talking</string>
<string name="twitter_accounts">Twitter accounts (via Nitter)</string>
<string name="twitter_accounts">Konta Twitter (przez Nitter)</string>
<string name="list_of_twitter_accounts">Twitter usernames space separated</string>
<string name="identity_proofs">Identity proofs</string>
<string name="verified_user">Verified identity</string>
<string name="verified_by">Verified by %1$s (%2$s)</string>
<string name="remove_notification">Delete the notification</string>
<string name="display_more_options">Display more options</string>
<string name="display_more_options">Wyświetl więcej opcji</string>
<string name="pixelfed_story">It is a Pixelfed story</string>
<string name="story_indication">Upload a media, it will be automatically added to your Pixelfed story.</string>
<string name="added_to_story">Media successfully added to your story!</string>
<string name="action_disabled">Action disabled</string>
<string name="action_unfollow">Unfollow</string>
<string name="action_unfollow">Przestań obserwować</string>
<string name="error_destination_path">Something went wrong, please check your download directory in settings.</string>
<string name="action_announcements">Announcements</string>
<string name="no_announcements">No announcements!</string>
<string name="add_reaction">Add a reaction</string>
<string name="action_announcements">Ogłoszenia</string>
<string name="no_announcements">Brak ogłoszeń!</string>
<string name="add_reaction">Dodaj reakcję</string>
<string name="set_custom_tabs_indication">Use your favourite browser inside the app. Uncheck this feature to open links externally.</string>
<string name="set_video_cache">Video cache in MB, zero means no cache.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark">Znak wodny</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -16,7 +16,7 @@
<string name="download">Baixar</string>
<string name="download_file">Baixar %1$s</string>
<string name="save_over">Mídia salva</string>
<string name="download_from" formatted="false">Ficheiro: %1$s</string>
<string name="download_from" formatted="false">Arquivo: %1$s</string>
<string name="password">Senha</string>
<string name="email">E-mail</string>
<string name="accounts">Contas</string>
@ -31,7 +31,7 @@
<string name="add_account">Adicionar conta</string>
<string name="clipboard">O conteúdo do toot foi copiado para a área de transferência</string>
<string name="clipboard_url">O link do toot foi copiado para a área de transferência</string>
<string name="change">Mudar</string>
<string name="change">Alterar</string>
<string name="choose_picture">Selecione uma imagem…</string>
<string name="clear">Limpar</string>
<string name="camera">Câmera</string>
@ -125,7 +125,7 @@
<string name="bookmark_remove">Remover dos Salvos</string>
<string name="bookmarks_empty">Sem toots salvos</string>
<string name="status_bookmarked">Toot foi salvo!</string>
<string name="status_unbookmarked">Toot foi removido dos Salvos!</string>
<string name="status_unbookmarked">Toot foi removido do Salvos!</string>
<!-- Date -->
<string name="date_seconds">%d s</string>
<string name="date_minutes">%d m</string>
@ -247,7 +247,7 @@
<string name="toast_unmute">Silêncio desativado!</string>
<string name="toast_follow">Você seguiu a conta!</string>
<string name="toast_unfollow">Você deixou de seguir a conta!</string>
<string name="toast_reblog">Toot compartilhado!</string>
<string name="toast_reblog">Você deu boost!</string>
<string name="toast_unreblog">Boost desfeito!</string>
<string name="toast_favourite">Toot favoritado!</string>
<string name="toast_unfavourite">Toot desfavoritado!</string>
@ -255,7 +255,7 @@
<string name="toast_unstatus">Toot excluído!</string>
<string name="toast_pin">Toot fixado!</string>
<string name="toast_unpin">Toot desafixado!</string>
<string name="toast_error">Oops! Ocorreu um erro!</string>
<string name="toast_error">Opa! Ocorreu um erro!</string>
<string name="toast_code_error">Ocorreu um erro! A instância não retornou um código de autorização!</string>
<string name="toast_error_instance">Parece que o domínio da instância não é válido!</string>
<string name="toast_error_loading_account">Ocorreu um erro ao alternar entre as contas!</string>
@ -286,7 +286,7 @@
<string name="set_notif_follow_share">Notificar quando alguém der boost nos seus toots</string>
<string name="set_notif_follow_add">Notificar quando alguém favoritar seus toots</string>
<string name="set_notif_follow_mention">Notificar quando alguém te mencionar</string>
<string name="set_notif_follow_poll">Notificar quando uma sondagem terminar</string>
<string name="set_notif_follow_poll">Notificar quando uma enquete terminar</string>
<string name="set_notif_status">Notify for new posts</string>
<string name="set_share_validation">Mostrar diálogo antes de dar boost</string>
<string name="set_share_validation_fav">Mostrar diálogo antes de favoritar</string>
@ -298,7 +298,7 @@
<string name="settings_title_profile">Editar perfil</string>
<string name="settings_title_custom_sharing">Compartilhamento externo personalizado</string>
<string name="settings_custom_sharing_url">Seu link de compartilhamento externo&#8230;</string>
<string name="set_profile_description">Bio…</string>
<string name="set_profile_description">Biografia</string>
<string name="set_lock_account">Trancar conta</string>
<string name="set_save_changes">Salvar alterações</string>
<string name="set_header_picture_overlay">Escolha uma imagem de cabeçalho</string>
@ -448,17 +448,17 @@
<string name="data_export_start">Esta ação pode ser demorada. Você será notificado quando ela terminar.</string>
<string name="data_export_running">Ainda em execução, por favor, aguarde…</string>
<string name="data_export">Exportar toots</string>
<string name="data_export_toots">Exportar toots para %1$s</string>
<string name="data_export_toots">Exportar toots de %1$s</string>
<string name="data_export_success">%1$s toots de %2$s foram exportados.</string>
<string name="data_export_error">Algo deu errado enquanto exportava dados de %1$s</string>
<string name="data_export_error_simple">Algo correu mal ao exportar os dados!</string>
<string name="data_import_error_simple">Algo correu mal ao importar os dados!</string>
<string name="data_export_error_simple">Algo deu errado ao exportar dados!</string>
<string name="data_import_error_simple">Algo deu errado ao importar dados!</string>
<!-- Proxy -->
<string name="proxy_set">Proxy</string>
<string name="proxy_enable">Ativar proxy?</string>
<string name="poxy_host">Servidor</string>
<string name="poxy_port">Porta</string>
<string name="poxy_login">Login</string>
<string name="poxy_login">Entrar</string>
<string name="poxy_password">Senha</string>
<string name="set_share_details">Adicionar detalhes do toot ao compartilhar</string>
<string name="support_the_app_on_liberapay">Apoie o aplicativo no Liberapay</string>
@ -510,7 +510,7 @@
<string name="adding_account_list_trunk">Adicionando contas à lista</string>
<string name="action_list_add">Sem listas. Você pode criar uma tocando no botão \"+\".</string>
<string name="about_trunk">Quem seguir:</string>
<string name="about_trunk_action">Trunk API</string>
<string name="about_trunk_action">API Trunk</string>
<string name="toast_impossible_to_follow">Desculpe, é impossível seguir</string>
<string name="retrieve_remote_account">Carregando conta remota!</string>
<string name="expand_image">Expandir automaticamente mídias ocultas</string>
@ -518,11 +518,11 @@
<string name="channel_notif_boost">Novo Boost</string>
<string name="channel_notif_fav">Novo favorito</string>
<string name="channel_notif_mention">Nova menção</string>
<string name="channel_notif_poll">Sondagem terminada</string>
<string name="channel_notif_poll">Enquete terminada</string>
<string name="channel_notif_toot">Novo toot</string>
<string name="channel_notif_backup">Backup de Toots</string>
<string name="channel_notif_status">New posts</string>
<string name="channel_notif_media">Baixar mídia</string>
<string name="channel_notif_media">Download de mídia</string>
<string name="set_notif_sound">Alterar som de notificação</string>
<string name="select_sound">Selecionar toque</string>
<string name="set_enable_time_slot">Ativar definição de momento</string>
@ -553,41 +553,41 @@
<string name="videos">Vídeos</string>
<string name="channels">Canais</string>
<string name="set_display_emoji">Usar Emoji One</string>
<string name="information">Informação</string>
<string name="set_display_card">Mostrar pré-visualizações em todos os toots</string>
<string name="information">Dados do toot</string>
<string name="set_display_card">Mostrar prévias em todos os toots</string>
<string name="thanks_text_ux">Designer da nova UX/UI</string>
<string name="set_display_video_preview">Mostrar prévias de vídeo</string>
<string name="account_id_clipbloard">O nome de utilizador foi copiado para a área de transferência!</string>
<string name="set_change_locale">Mudar o idioma</string>
<string name="account_id_clipbloard">O nome de usuário foi copiado para a área de transferência!</string>
<string name="set_change_locale">Alterar idioma</string>
<string name="default_language">Idioma padrão</string>
<string name="truncate_long_toots">Cortar toots longos</string>
<string name="set_truncate_toot">Limitar toots por \'x\' linhas. Zero significa desativar.</string>
<string name="truncate_long_toots">Delimitar toots longos</string>
<string name="set_truncate_toot">Delimitar toots por nº de linhas, 0 para desativar.</string>
<string name="display_toot_truncate">Mostrar mais</string>
<string name="hide_toot_truncate">Mostrar menos</string>
<string name="manage_tags">Gerenciar tags</string>
<string name="tags_already_stored">A tag já existe!</string>
<string name="tags_stored">A tag foi guardada!</string>
<string name="tags_stored">A tag foi salva!</string>
<string name="tags_renamed">A tag foi alterada!</string>
<string name="tags_deleted">A tag foi excluída!</string>
<string name="schedule_boost">Agendar boost</string>
<string name="boost_scheduled">Boost agendado!</string>
<string name="no_scheduled_boosts">Sem boosts agendados!</string>
<string name="no_scheduled_boosts_indications"><![CDATA[Abra o menu de um toot e escolha <b>Agendar boost</b>.]]></string>
<string name="art_menu">Cronologia Arte</string>
<string name="art_menu">Timeline de Arte</string>
<string name="open_menu">Abrir menu</string>
<string name="go_back">Retroceder</string>
<string name="app_logo">Logótipo do aplicativo</string>
<string name="go_back">Voltar</string>
<string name="app_logo">Logo do aplicativo</string>
<string name="profile_picture">Foto do perfil</string>
<string name="profile_banner">Banner do perfil</string>
<string name="contact_instance_admin">Contacte o administrador da instância</string>
<string name="add_new">Adicionar novo/a</string>
<string name="mastohost_logo">Logótipo do MastoHost</string>
<string name="profile_banner">Capa do perfil</string>
<string name="contact_instance_admin">Contate o administrador da instância</string>
<string name="add_new">Adicionar novo(a)</string>
<string name="mastohost_logo">Logo do MastoHost</string>
<string name="emoji_picker">Seletor de emoji</string>
<string name="refresh">Atualizar</string>
<string name="expand_conversation">Expandir a conversa</string>
<string name="expand_conversation">Expandir conversa</string>
<string name="remove_account">Sair de uma conta</string>
<string name="delete_domain">Remover o domínio bloqueado</string>
<string name="custom_emoji_picker">Seletor de emojis personalizado</string>
<string name="delete_domain">Desbloquear instância</string>
<string name="custom_emoji_picker">Seletor de emoji personalizado</string>
<string name="play_video">Reproduzir vídeo</string>
<string name="new_toot">Novo toot</string>
<string name="card_view_image">Imagem do cartão</string>
@ -639,7 +639,7 @@
<string name="delete_comment_confirm">Tem certeza de que deseja excluir este comentário?</string>
<string name="fullscreen">Vídeo em tela cheia</string>
<string name="set_video_mode">Modo para vídeos</string>
<string name="file_to_upload">Selecione o ficheiro a enviar</string>
<string name="file_to_upload">Selecione o arquivo para enviar</string>
<string name="my_videos">Meus vídeos</string>
<string name="title">Título</string>
<string name="license">Licença</string>
@ -652,7 +652,7 @@
<string name="toast_peertube_video_updated">O vídeo foi atualizado!</string>
<string name="toast_cancelled">Envio cancelado!</string>
<string name="upload_video_success">O vídeo foi enviado!</string>
<string name="uploading">Enviando, por favor aguarde…</string>
<string name="uploading">Enviando, por favor, aguarde…</string>
<string name="video_uploaded_action">Toque aqui para editar os dados do vídeo.</string>
<string name="delete_video">Excluir vídeo</string>
<string name="delete_video_confirmation">Tem certeza de que deseja excluir este vídeo?</string>
@ -681,8 +681,8 @@
<string name="peertube_video_unblacklist"><![CDATA[Seu vídeo <b>%1$s</b> foi desbloqueado]]></string>
<string name="export_data">Exportar dados</string>
<string name="import_data">Importar dados</string>
<string name="toot_select_import">Selecione o ficheiro a importar</string>
<string name="toot_select_file_error">Ocorreu um erro ao selecionar o ficheiro de backup!</string>
<string name="toot_select_import">Selecione o arquivo para importar</string>
<string name="toot_select_file_error">Ocorreu um erro ao selecionar o arquivo de backup!</string>
<string name="add_public_comment">Adicionar um comentário público</string>
<string name="send_comment">Enviar comentário</string>
<string name="toast_toot_saved_error">Não há conexão com a internet. Sua mensagem foi salva em Rascunhos.</string>
@ -692,9 +692,9 @@
<string name="action_logout_account">Sair da conta</string>
<string name="all">Tudo</string>
<string name="about_opencollective">Apoie o aplicativo</string>
<string name="more_about_opencollective">Open Collective permite aos grupos criar rapidamente um coletivo, angariar fundos e gerí-los de forma transparente.</string>
<string name="more_about_opencollective">Open Collective permite aos grupos criar rapidamente um coletivo, angariar fundos e gerenciá-los de forma transparente.</string>
<string name="copy_link">Copiar link</string>
<string name="connect_instance">Conectar</string>
<string name="connect_instance">Entrar</string>
<string name="set_normal">Normal</string>
<string name="set_compact">Compacto</string>
<string name="set_console">Terminal</string>
@ -1013,6 +1013,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -1019,6 +1019,7 @@ Aceste date sunt strict confidențiale și pot fi folosite doar de aplicație.
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Информация, приведенная ниже, может не соответствовать профилю пользователя.</string>
<string name="insert_emoji">Вставить эмодзи</string>
<string name="no_emoji">На данный момент приложение не собирает пользовательские эмодзи.</string>
<string name="live_notif">Живые уведомления</string>
<string name="push_notif">Push-уведомления</string>
<string name="logout_confirmation">Вы уверены, что хотите выйти?</string>
<string name="logout_account_confirmation">Вы уверены, что хотите выйти @%1$s@%2$s?</string>
<!-- Status -->
@ -896,7 +896,6 @@
<string name="set_blur_sensitive_indication">Если отключено, деликатный контент будет скрыт кнопкой</string>
<string name="set_long_press_media_indication">Сохранять мультимедиа в полном размере при длительном нажатии на превью</string>
<string name="set_display_timeline_in_list_indication">Добавить кнопку ⋮ в правом верхнем углу для отображения всех тегов /инстансов/списков</string>
<string name="live_notif_indication">Поддерживать соединение с потоковым API для уведомлений в реальном времени.</string>
<string name="set_enable_time_slot_indication">В течение этого промежутка времени приложение отправит вам уведомление. Вы можете изменить (отключить) этот временной интервал с помощью спиннера.</string>
<string name="set_display_fedilab_features_button_indication">Включает кнопку Fedilab под изображением профиля для быстрого доступа к функциям.</string>
<string name="set_quick_reply_indication">Разрешить отвечать прямо в ленте ниже статусов</string>
@ -1028,9 +1027,9 @@
<string name="set_libreddit_host">Введите свой собственный хост или оставьте поле пустым, чтобы использовать libredd.it</string>
<string name="set_hide_status_bar">Скрыть панель уведомлений Fedilab</string>
<string name="set_hide_status_bar_indication">Чтобы скрыть уведомление в строке состояния, нажмите на кнопку с пиктограммой глаза и снимите флажок: \"Показывать в строке состояния\"</string>
<string name="set_live_type_indication">Уведомления будут появляться на 30 секунд позже. Это позволит уменьшить влияние на батарею.</string>
<string name="live_delayed">Отложенные живые уведомления</string>
<string name="set_push_notifications">Использовать систему push-уведомлений для получения уведомлений в режиме реального времени.</string>
<string name="no_live_notif">Нет живых уведомлений</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Уведомления будут поступать каждые 15 минут.</string>
<string name="action_add_notes">Добавить примечания</string>
<string name="note_for_account">Примечания для аккаунта</string>
@ -1147,4 +1146,7 @@
<string name="set_video_cache">Кэш видео в MB, ноль означает, нет кэша.</string>
<string name="set_watermark">Водяные знаки</string>
<string name="set_watermark_indication">Автоматически добавлять водяной знак внизу изображений. Текст можно настроить для каждого аккаунта.</string>
<string name="no_distributors_found">Дистрибьюторы не найдены!</string>
<string name="no_distributors_explanation">Вам нужен дистрибьютор для получения push-уведомлений.\nВы найдете более подробную информацию по адресу %1$s.\n\nВы также можете отключить push-уведомления в настройках для игнорирования этого сообщения.</string>
<string name="select_distributors">Выберите дистрибьютора</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Is informatziones inoghe in suta diant pòdere rapresentare su profilu de s\'utente in manera incumpleta.</string>
<string name="insert_emoji">Inserta un\'emoji</string>
<string name="no_emoji">S\'aplicatzione no at ancora collidu peruna emoji personalizada.</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">Notìficas push</string>
<string name="logout_confirmation">Ses seguru de bòlere essire?</string>
<string name="logout_account_confirmation">Ses seguru de bòlere essire @%1$s@%2$s?</string>
<!-- Status -->
@ -974,8 +974,9 @@
<string name="set_libreddit_host">Inserta s\'istrangiadore (host) personalizadu tuo o lassa bòidu pro impreare libredd.it</string>
<string name="set_hide_status_bar">Cua sa barra de is notìficas de Fedilab</string>
<string name="set_hide_status_bar_indication">Pro cuare is notìficas chi abarrant in sa barra de istadu toca in su butone cun s\'icona a forma de ogru e boga sa seletzione a: \&quot;Ammustra in sa barra de istadu\&quot;</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">Imprea unu sistema de notìficas push pro retzire notìficas in tempus reale.</string>
<string name="no_live_notif">Peruna notìfica in direta</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Sas notìficas ant a èssere recuperadas cada 15 minutos.</string>
<string name="action_add_notes">Agiunghe notas</string>
<string name="note_for_account">Notas pro su contu</string>
@ -1092,7 +1093,7 @@
<string name="set_video_cache">Memòria temporànea pro is vìdeos in MB. Zero cheret nàrrere peruna memòria.</string>
<string name="set_watermark">Filigranas</string>
<string name="set_watermark_indication">Agiunghe automaticamente una filigrana a fundu de is immàgines. Podes personalizare su testu pro cada contu.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">Perunu distribudore agatadu!</string>
<string name="no_distributors_explanation">Tenes bisòngiu de unu distribudore pro retzire notìficas push.\nAs a agatare àteras informatziones in %1$s.\n\nPodes fintzas disabilitare sas notìficas push in sas impostatziones pro ignorare custu messàgiu.</string>
<string name="select_distributors">Ischerta unu distribudore</string>
</resources>

View File

@ -14,7 +14,7 @@
<string name="no">නැහැ</string>
<string name="cancel">අවලංගු කරන්න</string>
<string name="download">බාගත කරන්න</string>
<string name="download_file">Download %1$s</string>
<string name="download_file">%1$s බාගන්න</string>
<string name="save_over">මාධ්‍යය සුරකින ලදී</string>
<string name="download_from" formatted="false">ගොනුව: %1$s</string>
<string name="password">මුරපදය</string>
@ -132,16 +132,16 @@
<string name="date_hours">පැය %d</string>
<string name="date_day">දින %d</string>
<plurals name="date_seconds_polls">
<item quantity="one">%d second</item>
<item quantity="other">%d seconds</item>
<item quantity="one">තත්පර %d</item>
<item quantity="other">තත්පර %d</item>
</plurals>
<plurals name="date_minutes_polls">
<item quantity="one">%d minute</item>
<item quantity="other">%d minutes</item>
<item quantity="one">විනාඩි %d</item>
<item quantity="other">විනාඩි %d</item>
</plurals>
<plurals name="date_hours_polls">
<item quantity="one">%d hour</item>
<item quantity="other">%d hours</item>
<item quantity="one">පැය %d</item>
<item quantity="other">පැය %d</item>
</plurals>
<plurals name="date_day_polls">
<item quantity="one">%d day</item>
@ -1013,6 +1013,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Našteti podatki lahko nepopolno odražajo uporabnikov profil.</string>
<string name="insert_emoji">Vstavi čustvenčka</string>
<string name="no_emoji">Aplikacija trenutno še nima zbranih čustvenčkov po meri.</string>
<string name="live_notif">Obvestila v živo</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Are you sure you want to logout?</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<!-- Status -->
@ -896,7 +896,6 @@
<string name="set_blur_sensitive_indication">If disabled, sensitive media will be hidden with a button</string>
<string name="set_long_press_media_indication">Store media in full size with a long press on previews</string>
<string name="set_display_timeline_in_list_indication">Add an ellipse button at the top right for listing all tags/instances/lists</string>
<string name="live_notif_indication">Keep an open connection to the streaming API for live notifications.</string>
<string name="set_enable_time_slot_indication">During the time slot, the app will send notifications. You can reverse (ie: silent) this time slot with the right spinner.</string>
<string name="set_display_fedilab_features_button_indication">Display a Fedilab button below profile picture. It is a shortcut for accessing in-app features.</string>
<string name="set_quick_reply_indication">Allow to reply directly in timelines below statuses</string>
@ -1028,9 +1027,9 @@
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Hide Fedilab notification bar</string>
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_live_type_indication">Notifications will be delayed every 30 seconds. That will allow to drain less battery.</string>
<string name="live_delayed">Live notifications delayed</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>
@ -1147,4 +1146,7 @@
<string name="set_video_cache">Video cache in MB, zero means no cache.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Информације испод не морају да тачно одсликавају кориснички профил.</string>
<string name="insert_emoji">Убаци емотикон</string>
<string name="no_emoji">Апликација није покупила произвољне емотиконе за моменат.</string>
<string name="live_notif">Обавештења уживо</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Are you sure you want to logout?</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<!-- Status -->
@ -890,7 +890,6 @@
<string name="set_blur_sensitive_indication">If disabled, sensitive media will be hidden with a button</string>
<string name="set_long_press_media_indication">Store media in full size with a long press on previews</string>
<string name="set_display_timeline_in_list_indication">Add an ellipse button at the top right for listing all tags/instances/lists</string>
<string name="live_notif_indication">Keep an open connection to the streaming API for live notifications.</string>
<string name="set_enable_time_slot_indication">During the time slot, the app will send notifications. You can reverse (ie: silent) this time slot with the right spinner.</string>
<string name="set_display_fedilab_features_button_indication">Display a Fedilab button below profile picture. It is a shortcut for accessing in-app features.</string>
<string name="set_quick_reply_indication">Allow to reply directly in timelines below statuses</string>
@ -1020,9 +1019,9 @@
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Hide Fedilab notification bar</string>
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_live_type_indication">Notifications will be delayed every 30 seconds. That will allow to drain less battery.</string>
<string name="live_delayed">Live notifications delayed</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>
@ -1139,4 +1138,7 @@
<string name="set_video_cache">Video cache in MB, zero means no cache.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Informationen nedan kan avspegla användarens profil ofullständigt.</string>
<string name="insert_emoji">Infoga emoji</string>
<string name="no_emoji">Appen kunde inte samla anpassade emojis för tillfället.</string>
<string name="live_notif">Livenotiser</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Är du säker på att du vill logga ut?</string>
<string name="logout_account_confirmation">Är du säker på att du vill logga ut @%1$s@%2$s?</string>
<!-- Status -->
@ -884,7 +884,6 @@
<string name="set_blur_sensitive_indication">Om inaktiverad så kommer känsligt material att döljas med en knapp</string>
<string name="set_long_press_media_indication">Spara media i full upplösning genom att långtrycka på förhandsgranskningen</string>
<string name="set_display_timeline_in_list_indication">Lägg till en ellips-knapp längst upp till höger för att lista alla taggar/instanser/listor</string>
<string name="live_notif_indication">Hålla en öppen anslutning till streaming API för live-meddelanden.</string>
<string name="set_enable_time_slot_indication">Under tiden perioden kommer programmet att skicka meddelanden. Du kan ändra (dvs: tysta) denna period med höger spinner.</string>
<string name="set_display_fedilab_features_button_indication">Visa en Fedilab-knapp nedan profilbilden. Det är en genväg för att få tillgång till in-app-funktioner.</string>
<string name="set_quick_reply_indication">Tillåt att svara direkt i tidslinjen nedanför statusen</string>
@ -1012,9 +1011,9 @@
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Dölj Fedilab meddelandefält</string>
<string name="set_hide_status_bar_indication">För att dölja kvarvarande notifieringar i statusbaren, klicka på ögonikons knappen och kryssa ur: \"Visa i statusbar\"</string>
<string name="set_live_type_indication">Notifieringar kommer fördröjas var 30:e sekund. Detta kommer att dra mindre ström.</string>
<string name="live_delayed">Live notifieringar fördröjda</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">Inge live-notifieringar</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifieringar kommer att hämtas var 15:e minut.</string>
<string name="action_add_notes">Lätt till anteckning</string>
<string name="note_for_account">Anteckningar för kontot</string>
@ -1131,4 +1130,7 @@
<string name="set_video_cache">Video cache in MB, zero means no cache.</string>
<string name="set_watermark">Watermarks</string>
<string name="set_watermark_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Informacyjo niżyj może pokazować niypołny profil ôd używocza.</string>
<string name="insert_emoji">Wraź emoji</string>
<string name="no_emoji">Aplikacyjo na razie niy zebrała ekstra emoji.</string>
<string name="live_notif">Powiadōmiynia na żywo</string>
<string name="push_notif">Push notifications</string>
<string name="logout_confirmation">Na zicher chcesz sie ôdlogować?</string>
<string name="logout_account_confirmation">Na zicher chcesz ôdlogować @%1$s@%2$s?</string>
<!-- Status -->
@ -894,7 +894,6 @@
<string name="set_blur_sensitive_indication">Jeźli zastawiōne, uraźliwe media bydōm skryte za kneflym</string>
<string name="set_long_press_media_indication">Spamiyntej media we połnyj srogości po dugim przitrzimaniu na podglōńdzie</string>
<string name="set_display_timeline_in_list_indication">Przidej knefel wielokropka na wiyrchu z prawyj ze listōm wszyjskich tagōw/instancyji/list</string>
<string name="live_notif_indication">Trzim ôtwarte połōnczynie do API potoku, żeby mieć powiadōmiynia na żywo.</string>
<string name="set_enable_time_slot_indication">W czasie przedziału czasu aplikacyjo bydzie wysyłać powiadōmiynia. Możesz ôdwrōcić (bp. wyciszyć) tyn przedzioł we prawym rozwijanym myni.</string>
<string name="set_display_fedilab_features_button_indication">Pokazuj knefel Fedilab pod ôbrozkym profilowym. To je skrōt do funkcyji aplikacyje.</string>
<string name="set_quick_reply_indication">Przizwōl na ôdpowiadanie bezpostrzednio we rajach pod statusami</string>
@ -1026,9 +1025,9 @@
<string name="set_libreddit_host">Enter your custom host or leave blank for using libredd.it</string>
<string name="set_hide_status_bar">Skryj posek powiadōmiyń Fedilab</string>
<string name="set_hide_status_bar_indication">Żeby skryć permanyntne powiadōmiynie we posku statusu, tyknij knefel z ôkym i ôdznacz „Pokoż we posku statusu”</string>
<string name="set_live_type_indication">Powiadōmiynia bydōm ôpōźniōne co 30 sekund. To przizwoli na myńsze wyużycie bateryje.</string>
<string name="live_delayed">Powiadōmiynia na żywo ôpōźniōne</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">Żodnych powiadōmiyń na żywo</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Powiadōmiynia bydōm ściōngane co 15 minut.</string>
<string name="action_add_notes">Przidej zopiski</string>
<string name="note_for_account">Zopiski do kōnta</string>
@ -1145,4 +1144,7 @@
<string name="set_video_cache">Cache wideo we MB, zero znaczy brak cache.</string>
<string name="set_watermark">Znaki wodne</string>
<string name="set_watermark_indication">Dodej autōmatycznie znak wodny na spodku ôbrozkōw. Inkszy tekst może być nasztalowany do kożdego kōnta.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">Aşağıdaki bilgiler kullanıcının profilini eksik gösterebilir.</string>
<string name="insert_emoji">İfade ekle</string>
<string name="no_emoji">Uygulama şu an için özel ifade toplayamadı.</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">Anlık bildirimler</string>
<string name="logout_confirmation">Oturumu kapatmak istediğinizden emin misiniz?</string>
<string name="logout_account_confirmation">\@%1$s@%2$s oturumunu kapatmak istediğinizden emin misiniz?</string>
<!-- Status -->
@ -1005,8 +1005,9 @@
<string name="set_libreddit_host">Sunucu adresi girin ya da libredd.it sunucusunu kullanmak için boş bırakın</string>
<string name="set_hide_status_bar">Fedilab bildirim çubuğunu gizle</string>
<string name="set_hide_status_bar_indication">Durum çubuğunda kalan bildirimi gizlemek için, göz simgesine dokunun ve ardından \"Durum çubuğunda göster\" seçeneğinin işaretini kaldırın</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">Anlık bildirimler sistemini kullanarak bildirimleri anında alabilirsiniz.</string>
<string name="no_live_notif">Canlı bildirim yok</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Bildirimler 15 dakikada bir indirilecek.</string>
<string name="action_add_notes">Not ekle</string>
<string name="note_for_account">Hesap için notlar</string>
@ -1123,7 +1124,7 @@
<string name="set_video_cache">MB cinsinden video önbelleği, sıfır önbellek olmadığı anlamına gelir.</string>
<string name="set_watermark">Filigranlar</string>
<string name="set_watermark_indication">Resimlerin altına otomatik olarak filigran ekle. Filigran metni her hesap için farklı olabilir.</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">Dağıtıcı bulunamadı!</string>
<string name="no_distributors_explanation">Anlık bildirim alabilmeniz için bir dağıtıcı ayarlamalısınız.\nDaha fazla bilgi için: %1$s.\n\nBu mesajı gözardı etmek için ayarlardan anlık bildirimleri kapatabilirsiniz.</string>
<string name="select_distributors">Dağıtıcı seçin</string>
</resources>

View File

@ -1019,6 +1019,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -1002,6 +1002,7 @@ và %d thông báo khác</item>
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">以下信息可能不够完整反映该用户的资料。</string>
<string name="insert_emoji">插入表情符号</string>
<string name="no_emoji">该应用程序当前没有收集自定义表情。</string>
<string name="push_notif">Push notifications</string>
<string name="push_notif">推送通知</string>
<string name="logout_confirmation">确定要退出登录吗?</string>
<string name="logout_account_confirmation">确定要退出登录吗%1$s@%2$s</string>
<!-- Status -->
@ -1003,8 +1003,9 @@
<string name="set_libreddit_host">输入您的自定义主机或留空使用 libredd.it</string>
<string name="set_hide_status_bar">隐藏 Fedilab 通知栏</string>
<string name="set_hide_status_bar_indication">要隐藏留在状态栏里的通知,请点击眼睛图标的按钮,然后取消勾选:“在状态栏内显示”</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="set_push_notifications">使用推送通知系统实时获取通知。</string>
<string name="no_live_notif">没有直播通知</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">通知将被延迟为每15分钟产生。</string>
<string name="action_add_notes">添加注释</string>
<string name="note_for_account">账户说明</string>
@ -1121,7 +1122,7 @@
<string name="set_video_cache">以 MB 计算的视频缓存量,零表示无缓存。</string>
<string name="set_watermark">水印:</string>
<string name="set_watermark_indication">自动在图片底部添加一个水印。可以为每个帐户定制文本。</string>
<string name="no_distributors_found">No distributors found!</string>
<string name="no_distributors_explanation">You need a distributor for receiving push notifications.\nYou will find more details at %1$s.\n\nYou can also disable push notifications in settings for ignoring that message.</string>
<string name="select_distributors">Select a distributor</string>
<string name="no_distributors_found">没有找到分发商!</string>
<string name="no_distributors_explanation">要接收推送通知你需要一个分发商。\n你将在%1$s找到更多详情。\n\n你也可以在设置中禁用推送通知以忽略该消息。</string>
<string name="select_distributors">选择一个分发商</string>
</resources>

View File

@ -81,7 +81,7 @@
<string name="disclaimer_full">下面的資訊可能不完全反映使用者的個人資料。</string>
<string name="insert_emoji">插入表情符號</string>
<string name="no_emoji">應用程式目前不能收集自訂表情符號。</string>
<string name="live_notif">即時通知</string>
<string name="push_notif">推播通知</string>
<string name="logout_confirmation">您確定您要登出嗎?</string>
<string name="logout_account_confirmation">您確定您要登出 @%1$s@%2$s 嗎?</string>
<!-- Status -->
@ -878,7 +878,6 @@ Yandex 有適當的隱私權政策可以在這裡找到https://yandex.ru/l
<string name="set_blur_sensitive_indication">若停用,敏感媒體將會隱藏並顯示按鈕</string>
<string name="set_long_press_media_indication">在預覽中長按可以儲存完整大小的媒體</string>
<string name="set_display_timeline_in_list_indication">在右上角新增一個按鈕,列出所有標籤/站台/清單</string>
<string name="live_notif_indication">保持與串流 API 的開放連線以供即時通知。</string>
<string name="set_enable_time_slot_indication">在該時段,應用程式將會傳送通知。您可以使用右側的微調器來反轉(亦即讓其安靜)此時段。</string>
<string name="set_display_fedilab_features_button_indication">在個人資料圖片下顯示 Fedilab 按鈕。這是存取應用程式內功能的快捷鍵。</string>
<string name="set_quick_reply_indication">允許在時間軸中直接回覆狀態</string>
@ -1003,9 +1002,9 @@ Yandex 有適當的隱私權政策可以在這裡找到https://yandex.ru/l
<string name="set_libreddit_host">輸入您的自訂主機或留空以使用 libredd.it</string>
<string name="set_hide_status_bar">隱藏 Fedilab 通知列</string>
<string name="set_hide_status_bar_indication">要隱藏狀態列中的其餘通知,點擊眼睛圖示的按鈕上然後取消勾選「在狀態列中顯示」</string>
<string name="set_live_type_indication">通知將會每30秒被延遲一次。這將會降低電池的消耗。</string>
<string name="live_delayed">延遲即時通知</string>
<string name="set_push_notifications">使用推播通知系統來取得即時通知。</string>
<string name="no_live_notif">沒有即時通知</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">將會每15分鐘擷取一次通知。</string>
<string name="action_add_notes">新增註記</string>
<string name="note_for_account">帳號註記</string>
@ -1122,4 +1121,7 @@ Yandex 有適當的隱私權政策可以在這裡找到https://yandex.ru/l
<string name="set_video_cache">以 MB 計的視訊快取,零代表沒有快取。</string>
<string name="set_watermark">浮水印</string>
<string name="set_watermark_indication">自動在圖片底部加入浮水印。可以為每個帳號自訂文字。</string>
<string name="no_distributors_found">找不到散佈者!</string>
<string name="no_distributors_explanation">您需要散佈者來接收推播通知。\n您可以在 %1$s 找到更多資訊。\n\n您也可以在設定中停用推播通知來忽略訊息。</string>
<string name="select_distributors">選取散佈者</string>
</resources>

View File

@ -1122,6 +1122,7 @@
<string name="set_hide_status_bar_indication">For hiding the remaining notification in the status bar, tap on the eye icon button then uncheck: \"Display in status bar\"</string>
<string name="set_push_notifications">Use a push notifications system for getting notifications in real time.</string>
<string name="no_live_notif">No live notifications</string>
<string name="live_notif">Live notifications</string>
<string name="no_live_indication">Notifications will be fetched every 15 minutes.</string>
<string name="action_add_notes">Add notes</string>
<string name="note_for_account">Notes for the account</string>

View File

@ -1 +1 @@
Fedilab is a multifunctional Android client to access the distributed Fediverse, consisting of micro blogging, photo sharing and video hosting.
ফেডিভার্সের জন্য ফেডিল্যাব একটি বহুমুখী অ্যান্ড্রয়েড গ্রাহক, এতে আছে খুদে ব্লগিং, ছবি ভাগাভাগি এবং ভিডিও প্রকাশনার বৈশিষ্ট্য।

View File

@ -1,16 +1,16 @@
It supports:
- Mastodon, Pleroma, Pixelfed, Peertube, GNU Social, Friendica.
Ezeket támogatja:
Mastodon, Pleroma, Pixelfed, Peertube, GNU Social, Friendica.
The app has advanced features (especially for Pleroma and Mastodon):
Az alkalmazás fejlett funkciókkal rendelkezik (különösen Pleroma és Mastodon esetén):
- Multi-accounts support
- Schedule messages from the device
- Schedule boosts
- Bookmark messages
- Follow and interact with remote instances
- Timed mute accounts
- Cross-account actions with a long press
- Translation feature
- Art timelines
- Video timelines
Több fiók támogatása
Az eszközről küldött üzenetek ütemezése
Megtolások ütemezése
Üzenetek könyvjelzőzése
Távoli példányok követése, és interakció azokkal
Fiókok némítása bizonyos időtávig
Fiókok közti műveletek hosszú érintésre
Fordítási funkció
Művészies idővonalak
Videós idővonalak

View File

@ -1 +1 @@
Fedilab is a multifunctional Android client to access the distributed Fediverse, consisting of micro blogging, photo sharing and video hosting.
A Fedilab egy többfunkciós android kliens, mellyel hozzáférhet az elosztott Födiverzumhoz; mikroblogolást, fénykép- és videómegosztást tartalmaz.

View File

@ -1,16 +1,16 @@
It supports:
Wspierane platformy:
- Mastodon, Pleroma, Pixelfed, Peertube, GNU Social, Friendica.
The app has advanced features (especially for Pleroma and Mastodon):
Aplikacja posiada zaawansowane funkcje (zwłaszcza dla Pleroma i Mastodon):
- Multi-accounts support
- Schedule messages from the device
- Schedule boosts
- Bookmark messages
- Follow and interact with remote instances
- Timed mute accounts
- Cross-account actions with a long press
- Translation feature
- Art timelines
- Video timelines
- Wsparcie dla wielu kont
- Zaplanuj wiadomości z urządzenia
- Zaplanuj podbicie
Wiadomości do zakładek
- Obserwuj i współpracuj ze zdalnymi instancjami
- Czasowe wyciszenie kont
Działania między kontami przy długim dotknięciu
- Funkcja tłumaczenia
- Oś czasu sztuki
- Oś czasu wideo

View File

@ -1 +1 @@
Fedilab is a multifunctional Android client to access the distributed Fediverse, consisting of micro blogging, photo sharing and video hosting.
Fedilab to wielofunkcyjny klient Fediwersum dla systemu Android, umożliwiający mikro blogging, udostępnianie zdjęć i nagrań.