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

This commit is contained in:
Thomas 2021-01-18 12:38:17 +01:00
commit 3e4f027377
31 changed files with 1567 additions and 380 deletions

View File

@ -574,10 +574,31 @@ public class SettingsActivity extends BaseActivity {
LinearLayout set_split_container = findViewById(R.id.set_split_container);
//split size
SeekBar split_size = findViewById(R.id.set_split_size);
final TextView split_text = findViewById(R.id.set_split_text);
final EditText split_text = findViewById(R.id.set_split_text);
split_size.setProgress(0);
split_text.setText(String.valueOf(split_size_val));
split_text.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) { }
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
if (charSequence != null && charSequence.length() > 0) {
int newValue = Integer.parseInt(charSequence.toString());
if (newValue > 0) {
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putInt(Helper.SET_AUTOMATICALLY_SPLIT_TOOTS_SIZE + userId + instance, newValue);
editor.apply();
}
}
}
@Override
public void afterTextChanged(Editable editable) {
}
});
split_size.setMax(5);
split_size.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override

View File

@ -527,11 +527,12 @@
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
<EditText
android:id="@+id/set_split_text"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_marginEnd="10dp"
android:inputType="number"
android:textSize="16sp" />
<SeekBar

View File

@ -1735,10 +1735,31 @@ public class ContentSettingsFragment extends Fragment implements OnRetrieveRemot
LinearLayout set_split_container = rootView.findViewById(R.id.set_split_container);
//split size
SeekBar split_size = rootView.findViewById(R.id.set_split_size);
final TextView split_text = rootView.findViewById(R.id.set_split_text);
final EditText split_text = rootView.findViewById(R.id.set_split_text);
split_size.setProgress(0);
split_text.setText(String.valueOf(split_size_val));
split_text.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) { }
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
if (charSequence != null && charSequence.length() > 0) {
int newValue = Integer.parseInt(charSequence.toString());
if (newValue > 0) {
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putInt(Helper.SET_AUTOMATICALLY_SPLIT_TOOTS_SIZE + userId + instance, newValue);
editor.apply();
}
}
}
@Override
public void afterTextChanged(Editable editable) {
}
});
split_size.setMax(5);
split_size.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override

View File

@ -311,11 +311,12 @@
android:layout_gravity="center_vertical"
android:orientation="horizontal">
<TextView
<EditText
android:id="@+id/set_split_text"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_marginEnd="10dp" />
android:layout_marginEnd="10dp"
android:inputType="number" />
<SeekBar
android:id="@+id/set_split_size"

View File

@ -1154,6 +1154,6 @@
<string name="add_reaction">إضافة ردة فعل</string>
<string name="set_custom_tabs_indication">استخدم المتصفح المفضل الخاص بك داخل التطبيق. قم بإلغاء تحديد هذه الميزة لفتح الروابط خارجيا.</string>
<string name="set_video_cache">ذاكرة التخزين المؤقت للفيديو بالـ MB، صفر تعني مِن دون ذاكرة تخزين المؤقت.</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="set_watermark">العلامات المائية</string>
<string name="set_watermark_indication">إضافة علامة مائية تلقائياً في أسفل الصور. يمكن تخصيص النص لكل حساب.</string>
</resources>

View File

@ -4,38 +4,38 @@
<string name="navigation_drawer_close">Close the menu</string>
<string name="action_about">ⵖⴻⴼ</string>
<string name="action_about_instance">About the instance</string>
<string name="action_privacy">Privacy</string>
<string name="action_privacy">ⵜⵉⵏⵏⵓⵜⵍⴰ</string>
<string name="action_cache">Cache</string>
<string name="action_logout">Logout</string>
<string name="login">Login</string>
<string name="action_logout">ⴼⴼⵖ</string>
<string name="login">ⴽⵛⵎ</string>
<!-- common -->
<string name="close">ⵎⴸⴻⵍ</string>
<string name="yes">Yes</string>
<string name="no">No</string>
<string name="yes">ⵢⴰⵀ</string>
<string name="no">ⵓⵀⵓ</string>
<string name="cancel">ⵙⴻⴼⵙⴻⵅ</string>
<string name="download">Download</string>
<string name="download_file">Download %1$s</string>
<string name="download">ⴰⴳⵎ</string>
<string name="download_file">ⴰⴳⵎ %1$s</string>
<string name="save_over">Media saved</string>
<string name="download_from" formatted="false">File: %1$s</string>
<string name="download_from" formatted="false">ⴰⴼⴰⵢⵍⵓ: %1$s</string>
<string name="password">ⴰⵡⴰⵍ ⵓⴼⴼⵉⵔ</string>
<string name="email">ⵉⵎⴰⵢⵍ</string>
<string name="accounts">Accounts</string>
<string name="toots">Toots</string>
<string name="accounts">ⵉⵎⵉⴹⴰⵏⵏ</string>
<string name="toots">ⵉⵎⴰⵙⵙⵏ</string>
<string name="tags">Tags</string>
<string name="save">ⵙⴻⴿⵍⴻⵙ</string>
<string name="save">ⵃⴹⵓ</string>
<string name="restore">Restore</string>
<string name="no_result">No results!</string>
<string name="instance">Instance</string>
<string name="instance_example">Instance: mastodon.social</string>
<string name="toast_account_changed" formatted="false">Now works with the account %1$s</string>
<string name="add_account">ⵔⵏⵓ ⴰⵎⵉⴰⵏ</string>
<string name="add_account">ⵔⵏⵓ ⴰⵎⵉⴰⵏ</string>
<string name="clipboard">The content of the toot has been copied to the clipboard</string>
<string name="clipboard_url">The URL of the toot has been copied to the clipboard</string>
<string name="change">Change</string>
<string name="choose_picture">Select a picture</string>
<string name="change">ⵙⵏⴼⵍ</string>
<string name="choose_picture">ⵙⵜⵉ ⵜⴰⵡⵍⴰⴼⵜ</string>
<string name="clear">Clean</string>
<string name="camera">Camera</string>
<string name="delete_all">Delete all</string>
<string name="camera">ⵜⴽⴰⵎⵕⴰ</string>
<string name="delete_all">ⴽⴽⵙ ⵎⴰⵕⵕⴰ</string>
<string name="translate_toot">Translate this toot.</string>
<string name="schedule">Schedule</string>
<string name="text_size">Text and icon sizes</string>
@ -43,13 +43,13 @@
<string name="icon_size_change">Change the current icon size:</string>
<string name="next">Next</string>
<string name="previous">Previous</string>
<string name="open_with">Open with</string>
<string name="open_with">ⵕⵥⵎ ⵙ</string>
<string name="validate">Validate</string>
<string name="media">Media</string>
<string name="share_with">Share with</string>
<string name="share_with">ⴱⴹⵓ ⴰⴽⴷ</string>
<string name="shared_via">Shared via Fedilab</string>
<string name="replies">Replies</string>
<string name="username">ⵉⵙⵎ ⵙⴻⵇⴸⴰⵛ</string>
<string name="username">ⵉⵙⵎ ⵏⵙⵙⵎⵔⵙ</string>
<string name="drafts">Drafts</string>
<string name="favourite">Favourites</string>
<string name="follow">New followers</string>
@ -58,10 +58,10 @@
<string name="show_boosts">Show boosts</string>
<string name="show_replies">Show replies</string>
<string name="action_open_in_web">Open in browser</string>
<string name="translate">Translate</string>
<string name="translate">ⵙⵙⵓⵖⵍ</string>
<string name="please_wait">Please, wait few seconds before making this action.</string>
<!--- Menu -->
<string name="home_menu">ⴴⴻⵊⴸⴰⵏ</string>
<string name="home_menu">ⵙⵏⵓⴱⴳ</string>
<string name="local_menu">Local timeline</string>
<string name="global_menu">Federated timeline</string>
<string name="neutral_menu_title">Options</string>
@ -71,19 +71,19 @@
<string name="blocked_menu">Blocked users</string>
<string name="notifications">Notifications</string>
<string name="follow_request">Follow requests</string>
<string name="settings">ⵉⵖⴻⵡⵡⴰⵔⴻⵏ</string>
<string name="delete_account_title">ⴽⴽⴻⵙ ⴰⵎⵉⴺⴰⵏ</string>
<string name="delete_account_message" formatted="false">Delete the account %1$s from the application?</string>
<string name="send_email">Send an email</string>
<string name="settings">ⵜⵉⵙⵖⴰⵍ</string>
<string name="delete_account_title">ⴽⴽⵙ ⴰⵎⵉⴹⴰⵏ</string>
<string name="delete_account_message" formatted="false">Remove the account %1$s from the application?</string>
<string name="send_email">ⴰⵣⵏ ⵉⵎⴰⵢⵍ</string>
<string name="click_to_change">Tap on the path to change it</string>
<string name="failed">Failed!</string>
<string name="scheduled_toots">Scheduled toots</string>
<string name="disclaimer_full">Information below may reflect the user\'s profile incompletely.</string>
<string name="insert_emoji">Insert emoji</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">Live 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>
<string name="logout_confirmation">ⵉⵙ ⵏⵉⵜ ⵜⵅⵙⴼ ⴰⴷ ⵜⴼⴼⵖⴷ?</string>
<string name="logout_account_confirmation">ⵉⵙ ⵏⵉⵜ ⵜⵅⵙⴼ ⴰⴷ ⵜⴼⴼⵖⴷ @%1$s@%2$s?</string>
<!-- Status -->
<string name="no_status">No toot to display</string>
<string name="no_stories">No stories to display</string>
@ -95,12 +95,12 @@
<string name="reblog_remove">Unboost this toot?</string>
<string name="pin_add">Pin this toot?</string>
<string name="pin_remove">Unpin this toot?</string>
<string name="more_action_1">Mute</string>
<string name="more_action_2">Block</string>
<string name="more_action_3">Report</string>
<string name="more_action_4">Remove</string>
<string name="more_action_5">Copy</string>
<string name="more_action_6">Share</string>
<string name="more_action_1">ⵙⵙⵓⵙⵎ</string>
<string name="more_action_2">ⴳⴷⵍ</string>
<string name="more_action_3">ⵎⵍ</string>
<string name="more_action_4">ⴽⴽⵙ</string>
<string name="more_action_5">ⵙⵙⵏⵖⵍ</string>
<string name="more_action_6">ⴱⴹⵓ</string>
<string name="more_action_7">Mention</string>
<string name="more_action_8">Timed mute</string>
<string name="more_action_9">Delete &amp; re-draft</string>
@ -114,10 +114,10 @@
</string-array>
<string-array name="action_notification">
<item>Notify</item>
<item>Silent</item>
<item>ⵙⵙⵓⵙⵎ</item>
</string-array>
<string-array name="more_action_owner_confirm">
<item>Remove this toot?</item>
<item>Delete this toot?</item>
<item>Delete &amp; re-draft this toot?</item>
</string-array>
<string name="bookmarks">Bookmarks</string>
@ -127,29 +127,29 @@
<string name="status_bookmarked">Status has been added to bookmarks!</string>
<string name="status_unbookmarked">Status was removed from bookmarks!</string>
<!-- Date -->
<string name="date_seconds">%d s</string>
<string name="date_minutes">%d m</string>
<string name="date_hours">%d h</string>
<string name="date_day">%d d</string>
<string name="date_seconds">%d ⵙⵏ</string>
<string name="date_minutes">%d ⵙⴷ</string>
<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>
<item quantity="other">%d days</item>
<item quantity="one">%d ⵡⴰⵙⵙ</item>
<item quantity="other">%d ⵡⵓⵙⵙⴰⵏ</item>
</plurals>
<!-- TOOT -->
<string name="toot_cw_placeholder">Warning</string>
<string name="toot_placeholder">What is on your mind?</string>
<string name="toot_placeholder">ⵎ\'ⴰⵢⴷ ⵉⵍⵍⴰⵏ ⴳ ⵢⵉⵖⴼ ⵏⵏⴽ?</string>
<string name="toot_it">TOOT!</string>
<string name="queet_it">QUEET!</string>
<string name="cw">cw</string>
@ -159,7 +159,7 @@
<string name="queet_title_reply">Reply to a queet</string>
<string name="toot_select_image">Select a media</string>
<string name="toot_select_image_error">An error occurred while selecting the media!</string>
<string name="toot_delete_media">Delete this media?</string>
<string name="toot_delete_media">Remove this media?</string>
<string name="toot_error_no_content">Your toot is empty!</string>
<string name="toot_visibility_tilte">Visibility of the toot</string>
<string name="toots_visibility_tilte">Visibility of the toots by default: </string>
@ -174,33 +174,33 @@
</string-array>
<string name="no_draft">No drafts!</string>
<string name="choose_toot">Choose a toot</string>
<string name="choose_accounts">Choose an account</string>
<string name="select_accounts">Select some accounts</string>
<string name="remove_draft">Remove draft?</string>
<string name="choose_accounts">ⴷⵖⵔ ⵢⴰⵏ ⵓⵎⵉⴹⴰⵏ</string>
<string name="select_accounts">ⵙⵜⵢ ⴽⵔⴰ ⵉⵎⵉⴹⴰⵏⵏ</string>
<string name="remove_draft">Delete draft?</string>
<string name="show_reply">Tap on the button to display the original toot</string>
<string name="upload_form_description">Describe for the visually impaired</string>
<!-- Instance -->
<string name="instance_no_description">No description available!</string>
<!-- About -->
<string name="about_vesrion">Release %1$s</string>
<string name="about_developer">Developer:</string>
<string name="about_license">License: </string>
<string name="about_developer">ⴰⵎⵙⵖⵉⵡⵙ:</string>
<string name="about_license">ⵜⵓⵔⴰⴳⵜ: </string>
<string name="about_license_action">GNU GPL V3</string>
<string name="about_code">Source code: </string>
<string name="about_yandex">Translation of toots:</string>
<string name="about_thekinrar">Search instances:</string>
<string name="thanks_text_logo">Icon designer:</string>
<!-- Conversation -->
<string name="conversation">Conversation</string>
<string name="conversation">ⴰⵎⵙⴰⵡⴰⵍ</string>
<!-- Accounts -->
<string name="no_accounts">No account to display</string>
<string name="no_follow_request">No follow request</string>
<string name="status_cnt">Toots \n %1$s</string>
<string name="following_cnt">Following \n %1$s</string>
<string name="followers_cnt">Followers \n %1$s</string>
<string name="followers_cnt">ⵉⵎⴹⴼⴰⵕⵏ \n %1$s</string>
<string name="pins_cnt">Pinned \n %d</string>
<string name="authorize">Authorize</string>
<string name="reject">Reject</string>
<string name="authorize">ⵙⵙⵓⵔⴳ</string>
<string name="reject">ⴰⴳⵢ</string>
<!-- Scheduled toots -->
<string name="no_scheduled_toots">No scheduled toots to display!</string>
<string name="no_scheduled_toots_indications">Write a toot and then choose <b>Schedule</b> from the top menu.</string>
@ -234,7 +234,7 @@
<string name="delete_notification_all">All notifications have been deleted!</string>
<!-- HEADER -->
<string name="following">Following</string>
<string name="followers">Followers</string>
<string name="followers">ⵉⵏⴹⴼⴰⵕⵏ</string>
<string name="pinned_toots">Pinned</string>
<!-- TOAST -->
<string name="client_error">Unable to get client id!</string>
@ -269,16 +269,16 @@
<string name="toast_visibility_changed">Visibility of the toots has been changed for the account %1$s</string>
<!-- Settings -->
<string name="set_toots_page">Number of toots per load</string>
<string name="set_attachment_always">Always</string>
<string name="set_attachment_wifi">WIFI</string>
<string name="set_attachment_ask">Ask</string>
<string name="set_attachment_always">ⴰⴱⴷⴰ</string>
<string name="set_attachment_wifi">ⴰⵡⵉⴼⵉ</string>
<string name="set_attachment_ask">ⵙⵙⵓⵜⵔ</string>
<string name="set_attachment_action">Load the media</string>
<string name="load_attachment">Load the pictures</string>
<string name="load_attachment_spoiler">Show more</string>
<string name="load_attachment_spoiler_less">Show less</string>
<string name="load_attachment_spoiler">ⵙⵎⴰⵍ ⵓⴳⴳⴰⵔ</string>
<string name="load_attachment_spoiler_less">ⵙⵎⴰⵍ ⴷⵔⵓⵙ</string>
<string name="load_sensitive_attachment">Sensitive content</string>
<string name="set_disable_gif">Disable GIF avatars</string>
<string name="set_folder_title">Path: </string>
<string name="set_folder_title">ⴰⴱⵔⵉⴷ: </string>
<string name="set_auto_store_toot">Save drafts automatically</string>
<string name="set_auto_add_media_url">Add URL of media in toots</string>
<string name="set_notif_follow">Notify when someone follows you</string>
@ -293,19 +293,19 @@
<string name="set_notif_silent">Silent Notifications</string>
<string name="set_nsfw_timeout">NSFW view timeout (seconds, 0 means off)</string>
<string name="set_med_desc_timeout">Media Description timeout (seconds, 0 means off)</string>
<string name="settings_title_profile">Edit profile</string>
<string name="settings_title_profile">ⵙⵏⴼⵍ ⵉⴼⵔⵙ</string>
<string name="settings_title_custom_sharing">Custom sharing</string>
<string name="settings_custom_sharing_url">Your custom sharing URL&#8230;</string>
<string name="set_profile_description">Bio…</string>
<string name="set_lock_account">Lock account</string>
<string name="set_save_changes">Save changes</string>
<string name="set_lock_account">ⵔⴳⵍ ⴰⵎⵉⴹⴰⵏ</string>
<string name="set_save_changes">ⵃⴹⵓ ⵉⵙⵏⴼⵍⵏ</string>
<string name="set_header_picture_overlay">Choose a header picture</string>
<string name="set_fit_preview">Fit preview images</string>
<string name="set_automatically_split_toot">Automatically split toots in replies when chars are over:</string>
<string name="note_no_space">You have reached the 160 characters allowed!</string>
<string name="username_no_space">You have reached the 30 characters allowed!</string>
<string name="settings_time_from">Between</string>
<string name="settings_time_to">and</string>
<string name="settings_time_from">ⴳⵔ</string>
<string name="settings_time_to"></string>
<string name="settings_time_greater">The time must be greater than %1$s</string>
<string name="settings_time_lower">The time must be lower than %1$s</string>
<string name="settings_hour_init">Start time</string>
@ -317,9 +317,9 @@
<string name="use_cookies">Allow third-party cookies</string>
<string name="your_api_key">Your API key, you can leave blank for Yandex</string>
<string-array name="settings_theme">
<item>Dark</item>
<item>Light</item>
<item>Black</item>
<item>ⴰⴷⵖⵎⵓⵎ</item>
<item>ⴰⵏⴰⴼⴰⵡ</item>
<item>ⴰⴱⵔⴽⴰⵏ</item>
</string-array>
<string name="set_led_colour">Set LED colour:</string>
<string-array name="led_colours">
@ -327,17 +327,17 @@
<item>Cyan</item>
<item>Magenta</item>
<item>Green</item>
<item>Red</item>
<item>Yellow</item>
<item>White</item>
<item>ⴰⵣⴳⴳⵯⴰⵖ</item>
<item>ⴰⵡⵔⴰⵖ</item>
<item>ⴰⵎⵍⵍⴰⵍ</item>
</string-array>
<string name="action_follow">Follow</string>
<string name="action_follow">ⴹⴼⵕ</string>
<string name="action_unblock">Unblock</string>
<string name="action_mute">Mute</string>
<string name="action_unmute">Unmute</string>
<string name="action_mute">ⵙⵙⵓⵙⵎ</string>
<string name="action_unmute">ⴽⴽⵙ ⴰⵙⵓⵙⵎ</string>
<string name="request_sent">Request sent</string>
<string name="followed_by">Follows you</string>
<string name="action_search">Search</string>
<string name="action_search">ⵔⵣⵓ</string>
<string name="set_capitalize">First letter in capital for replies</string>
<string name="set_resize_picture">Resize pictures</string>
<string name="set_resize_video">Resize videos</string>
@ -349,22 +349,22 @@
<!-- CACHE -->
<string name="cache_title">Clear cache</string>
<string name="cache_message">There are %1$s of data in cache.\n\nWould you like to delete them?</string>
<string name="cache_units">Mb</string>
<string name="cache_units">ⵎⴱ</string>
<string name="toast_cache_clear">Cache was cleared! %1$s were released</string>
<!-- ACTIVITY CUSTOM SHARING -->
<string name="title_header_custom_sharing">Title</string>
<string name="title_hint_custom_sharing">Title&#8230;</string>
<string name="title_header_custom_sharing">ⴰⵣⵡⵍ</string>
<string name="title_hint_custom_sharing">ⴰⵣⵡⵍ&#8230;</string>
<string name="description_header_custom_sharing">Description</string>
<string name="keywords_header_custom_sharing">Keywords</string>
<string name="keywords_hint_custom_sharing">Keywords&#8230;</string>
<!-- ACTIVITY CACHE -->
<string name="action_sync">Synchronize</string>
<string name="action_filter">Filter</string>
<string name="owner_cached_toots">Your toots</string>
<string name="action_filter">ⵙⵜⵉ</string>
<string name="owner_cached_toots">ⵉⵎⴰⵙⵙⵏ ⵏⵏⴽ</string>
<string name="owner_cached_notifications">Your notifications</string>
<string name="v_public">Public</string>
<string name="v_public">ⴰⴳⴷⵓⴷⴰⵏ</string>
<string name="v_unlisted">Unlisted</string>
<string name="v_private">Private</string>
<string name="v_private">ⵓⵙⵍⵉⴳ</string>
<string name="v_direct">Direct</string>
<string name="v_keywords">Some keywords…</string>
<string name="show_media">Show media</string>
@ -378,9 +378,9 @@
<item>Dates ascending</item>
</string-array>
<string-array name="filter_select">
<item>No</item>
<item>Only</item>
<item>Both</item>
<item>ⵓⵀⵓ</item>
<item>ⵖⴰⵙ</item>
<item>ⵙ ⵙⵉⵏ</item>
</string-array>
<string name="owner_cached_toots_empty">No toots were found in database. Please, use the synchronize button from the menu to retrieve them.</string>
<!-- PRIVACY -->
@ -418,8 +418,8 @@
<string name="thanks_text_dev"> Thank you to:
</string>
<string name="filter_regex">Filter out by regular expressions</string>
<string name="search">Search</string>
<string name="delete">Delete</string>
<string name="search">ⵔⵣⵓ</string>
<string name="delete">ⴽⴽⵙ</string>
<string name="fetch_more_toots">Fetch more toots…</string>
<!-- About lists -->
<string name="action_lists">Lists</string>
@ -452,7 +452,7 @@
<string name="data_export_error_simple">Something went wrong when exporting data!</string>
<string name="data_import_error_simple">Something went wrong when importing data!</string>
<!-- Proxy -->
<string name="proxy_set">Proxy</string>
<string name="proxy_set">ⴰⵒⵕⵓⴽⵙⵉ</string>
<string name="proxy_enable">Enable proxy?</string>
<string name="poxy_host">Host</string>
<string name="poxy_port">Port</string>
@ -463,7 +463,7 @@
<string name="alert_regex">There is an error in the regular expression!</string>
<string name="toast_instance_unavailable">No timelines was found on this instance!</string>
<string name="delete_instance">Delete this instance?</string>
<string name="which_language">Translate in</string>
<string name="which_language">ⵙⵙⵓⵖⵍ ⵙ</string>
<string name="follow_instance">Follow instance</string>
<string name="toast_instance_already_added">You already follow this instance!</string>
<string name="toast_instance_followed">The instance is followed!</string>
@ -478,7 +478,7 @@
<string name="toast_show_boost">Boosts are now shown!</string>
<string name="toast_hide_boost">Boosts are now hidden!</string>
<string name="direct_message">Direct message</string>
<string name="filters">Filters</string>
<string name="filters">ⴰⵙⵜⴰⵢ</string>
<string name="action_filters_empty_content">No filters to display. You can create one by tapping on the \"+\" button.</string>
<string name="filter_keyword">Keyword or phrase</string>
<string name="context_home">Home timeline</string>
@ -493,12 +493,12 @@
<string name="filter_context">Filter contexts</string>
<string name="filter_context_explanations">One or multiple contexts where the filter should apply</string>
<string name="filter_expire">Expire after</string>
<string name="action_filter_delete">Delete filter?</string>
<string name="action_update_filter">Update filter</string>
<string name="action_filter_create">Create filter</string>
<string name="action_filter_delete">ⴽⴽⵙ ⴰⵙⵜⴰⵢ?</string>
<string name="action_update_filter">ⵙⴷⵖⵉ ⴰⵙⵜⴰⵢ</string>
<string name="action_filter_create">ⵔⵏⵓ ⴰⵙⵜⴰⵢ</string>
<string name="how_to_follow">Whom to follow</string>
<string name="action_who_to_follow_empty_content">There is no accounts listed for the moment!</string>
<string name="follow_account">Follow</string>
<string name="follow_account">ⴹⴼⵕ</string>
<string name="select_all">Select all</string>
<string name="unselect_all">Unselect all</string>
<string name="follow_trunk">%s is followed!</string>
@ -534,10 +534,10 @@
<string name="toast_block_domain">The domain is blocked</string>
<string name="toast_unblock_domain">The domain is no longer blocked!</string>
<string name="retrieve_remote_status">Fetching remote status</string>
<string name="comment">Comment</string>
<string name="comment">ⵅⴼⴰⵡⵍ</string>
<string name="peertube_instance">Peertube instance</string>
<string name="no_comments">Be the first to leave a comment on this video with the top right button!</string>
<string name="number_view_video">%s views</string>
<string name="number_view_video">%s ⵜⴰⵏⵏⴰⵢⵉⵏ</string>
<string name="duration_video">Duration: %s</string>
<string name="add_remote_instance">Add an instance</string>
<string name="comment_no_allowed_peertube">Comments are not enabled on this video!</string>
@ -546,9 +546,9 @@
<string name="bookmark_add_peertube">The video has been added to bookmarks!</string>
<string name="bookmark_remove_peertube">The video has been removed from bookmarks!</string>
<string name="bookmark_peertube_empty">There is no Peertube videos in your favourites!</string>
<string name="channel">Channel</string>
<string name="videos">Videos</string>
<string name="channels">Channels</string>
<string name="channel">ⴰⵙⴰⵔⵓ</string>
<string name="videos">ⴰⴼⵉⴷⵢⵓ</string>
<string name="channels">ⵉⵙⵓⵔⴰ</string>
<string name="set_display_emoji">Use Emoji One</string>
<string name="information">Information</string>
<string name="set_display_card">Display previews in all toots</string>
@ -565,27 +565,27 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
<string name="no_scheduled_boosts_indications"><![CDATA[Open the menu of a toot and then choose <b>Schedule boost</b>.]]></string>
<string name="art_menu">Art timeline</string>
<string name="open_menu">Open menu</string>
<string name="go_back">Go back</string>
<string name="go_back">ⴷⵡⵍ</string>
<string name="app_logo">Logo of the application</string>
<string name="profile_picture">Profile picture</string>
<string name="profile_banner">Profile banner</string>
<string name="contact_instance_admin">Contact admin of the instance</string>
<string name="add_new">Add new</string>
<string name="add_new">ⵔⵏⵓ ⴰⵎⴰⵢⵏⵓ</string>
<string name="mastohost_logo">MastoHost logo</string>
<string name="emoji_picker">Emoji picker</string>
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="remove_account">ⴽⴽⵙ ⴰⵎⵉⴹⴰⵏ</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="play_video">ⵖⵔ ⴰⴼⵉⴷⵢⵓ</string>
<string name="new_toot">New toot</string>
<string name="card_view_image">Image of the card</string>
<string name="hide_media">Hide media</string>
@ -594,24 +594,24 @@
<string-array name="filter_expire">
<item>Never</item>
<item>30 minutes</item>
<item>1 hour</item>
<item>6 hours</item>
<item>12 hours</item>
<item>1 day</item>
<item>1 week</item>
<item>1 ⵜⵙⵔⴰⴳⵜ</item>
<item>6 ⵜⵙⵔⴰⴳⵉⵏ</item>
<item>12 ⵜⵙⵔⴰⴳⵉⵏ</item>
<item>1 ⵡⴰⵙⵙ</item>
<item>1 ⵉⵎⴰⵍⴰⵙⵙ</item>
</string-array>
<string name="showcase_instance">In this field, you need to write your instance domain.\nFor example, if you created your account on https://mastodon.social\nJust write <b>mastodon.social</b>\nYou can start writing first letters and names will be suggested.
</string>
<string name="more_information">More information</string>
<!-- languages not translated -->
<string name="languages">Languages</string>
<string name="languages">ⵜⵓⵜⵍⴰⵢⵉⵏ</string>
<string name="show_media_only">Media only</string>
<string name="show_media_nsfw">Show NSFW</string>
<string name="crowdin_translations">Crowdin translations</string>
<string name="crowdin_manager">Crowdin manager</string>
<string name="translation_app">Translation of the application</string>
<string name="about_crowdin">About Crowdin</string>
<string name="bot">Bot</string>
<string name="bot">ⴰⴱⵓⵜ</string>
<string name="pixelfed_instance">Pixelfed instance</string>
<string name="mastodon_instance">Mastodon instance</string>
<string name="any_tags">Any of these</string>
@ -629,32 +629,32 @@
<string name="recently_added">Recently added</string>
<string name="local">Local</string>
<string name="upload_video">Upload</string>
<string name="reply">Reply</string>
<string name="delete_comment">Delete a comment</string>
<string name="reply">ⵔⴰⵔ</string>
<string name="delete_comment">ⴽⴽⵙ ⴰⵅⴼⴰⵡⴰⵍ</string>
<string name="delete_comment_confirm">Are you sure to delete this comment?</string>
<string name="fullscreen">Full screen video</string>
<string name="set_video_mode">Mode for videos</string>
<string name="file_to_upload">Select the file to upload</string>
<string name="my_videos">My videos</string>
<string name="title">Title</string>
<string name="license">License</string>
<string name="my_videos">ⵉⴼⵉⴷⵢⵓⵜⵏ ⵉⵏⵡ</string>
<string name="title">ⴰⵣⵡⵍ</string>
<string name="license">ⵜⵓⵔⴰⴳⵜ</string>
<string name="category">Category</string>
<string name="language">Language</string>
<string name="language">ⵜⵓⵜⵍⴰⵢⵜ</string>
<string name="peertube_nsfw">This video contains mature or explicit content</string>
<string name="peertube_enable_comments">Enable video comments</string>
<string name="update_video">Update video</string>
<string name="update_video">ⵙⴷⵖⵉ ⴰⴼⵉⴷⵢⵓ</string>
<string name="description">Description</string>
<string name="toast_peertube_video_updated">The video has been updated!</string>
<string name="toast_cancelled">Upload cancelled!</string>
<string name="upload_video_success">The video has been uploaded!</string>
<string name="uploading">Uploading, please wait…</string>
<string name="video_uploaded_action">Tap here to edit the video data.</string>
<string name="delete_video">Delete video</string>
<string name="delete_video">ⴽⴽⵙ ⴰⴼⵉⴷⵢⵓ</string>
<string name="delete_video_confirmation">Are you sure to delete this video?</string>
<string name="display_nsfw_videos">Display NSFW videos</string>
<string name="no_video_to_display">No videos to display!</string>
<string name="leave_a_comment">Leave a comment</string>
<string name="share">Share</string>
<string name="share">ⴱⴹⵓ</string>
<string name="choose_schedule">Choose a schedule mode</string>
<string name="device_schedule">From device</string>
<string name="server_schedule">From server</string>
@ -664,7 +664,7 @@
<string name="set_display_content_after_fetch_more">Display new toots above the \"Fetch more\" button</string>
<string name="settings_category_label_timelines">Timelines</string>
<string name="settings_category_label_interface">Interface</string>
<string name="contact">Contacts</string>
<string name="contact">ⴰⵙⵙⴰⵖⵏ</string>
<string name="peertube_comment_on_video"><![CDATA[<b>%1$s</b> commented your video <b>%2$s</b>]]></string>
<string name="peertube_follow_channel"><![CDATA[<b>%1$s</b> is following your channel <b>%2$s</b>]]></string>
<string name="peertube_follow_account"><![CDATA[<b>%1$s</b> is following your account]]></string>
@ -685,11 +685,11 @@
<string name="action_html">HTML</string>
<string name="action_markdown">Markdown</string>
<string name="action_logout_account">Logout account</string>
<string name="all">All</string>
<string name="all">ⵎⴰⵕⵕⴰ</string>
<string name="about_opencollective">Support the app</string>
<string name="more_about_opencollective">Open Collective enables groups to quickly set up a collective, raise funds and manage them transparently.</string>
<string name="copy_link">Copy link</string>
<string name="connect_instance">Connect</string>
<string name="copy_link">ⵙⵙⵏⵖⵍ ⴰⵙⵖⵏ</string>
<string name="connect_instance">ⵣⴷⵢ</string>
<string name="set_normal">Normal</string>
<string name="set_compact">Compact</string>
<string name="set_console">Console</string>
@ -707,9 +707,9 @@
<string name="set_hide_delete_notification_on_tab">Hide the \"delete\" button in the notification tab</string>
<string name="set_retrieve_metadata_share_from_extras">Attach an image when sharing a URL</string>
<!-- end languages -->
<string name="poll">Poll</string>
<string name="polls">Polls</string>
<string name="create_poll">Create a poll</string>
<string name="poll">ⵉⴷⵣ</string>
<string name="polls">ⵉⴷⵣⵏ</string>
<string name="create_poll">ⵔⵏⵓ ⵉⴷⵣ</string>
<string name="poll_choice_1">Choice 1</string>
<string name="poll_choice_2">Choice 2</string>
<string name="poll_choice_s">Choice %d</string>
@ -748,7 +748,7 @@
<string name="set_display_bot_icon">Mark bot accounts in toots</string>
<string name="add_tags">Manage tags</string>
<string name="set_remember_position">Remember the position in Home timeline</string>
<string name="history">History</string>
<string name="history">ⴰⵎⵣⵔⵓⵢ</string>
<string name="playlists">Playlists</string>
<string name="display_name">Display name</string>
<string name="action_playlist_add">You don\'t have any playlists. Tap on the \"+\" icon to add a new playlist</string>
@ -758,11 +758,11 @@
<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="label_emoji">Emoji</string>
<string name="label_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_text">ⴰⴹⵕⵉⵚ</string>
<string name="label_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>
@ -783,16 +783,16 @@
<string name="refresh_cache">Refresh cache</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_general">ⴰⵎⴰⵜⴰⵢ</string>
<string name="category_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_games">ⵓⵔⴰⵔⵏ</string>
<string name="category_tech">ⵜⴰⵜⵉⴽⵏⵓⵍⵓⵊⵉⵜ</string>
<string name="category_adult">Adult content</string>
<string name="category_furry">Furry</string>
<string name="category_food">Food</string>
<string name="category_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>
@ -820,7 +820,7 @@
<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="administration">ⵜⴰⵎⵙⵙⵓⴳⵓⵔⵜ</string>
<string name="reports">Reports</string>
<string name="no_reports">No reports to display!</string>
<string name="reconnect_account">Reconnect the account</string>
@ -835,20 +835,20 @@
<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="joined">ⵉⵍⴽⵎ</string>
<string name="recent_ip">Most recent IP</string>
<string name="warn">Warn</string>
<string name="warn">ⵙⴽⴰⵣ</string>
<string name="disable">Disable</string>
<string name="silence">Silence</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="moderator">Moderator</string>
<string name="administrator">Administrator</string>
<string name="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="account">ⴰⵎⵉⴹⴰⵏ</string>
<string name="unsilence">Undo silence</string>
<string name="undisable">Undo disable</string>
<string name="suspend">Suspend</string>
@ -935,7 +935,7 @@
<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="action_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>
@ -964,11 +964,11 @@
<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>1 ⵜⵙⵔⴰⴳⵜ</item>
<item>6 ⵜⵙⵔⴰⴳⵉⵏ</item>
<item>1 ⵡⴰⵙⵙ</item>
<item>3 ⵡⵓⵙⵙⴰⵏ</item>
<item>7 ⵡⵓⵙⵙⴰⵏ</item>
</string-array>
<string-array name="settings_video_mode">
<item>Webview</item>
@ -1040,7 +1040,7 @@
<string name="reset_color">Reset colors</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="icons_color_title">ⵉⴽⵓⵏ</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>

View File

@ -565,7 +565,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -583,7 +583,7 @@
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>

View File

@ -72,8 +72,8 @@
<string name="notifications">Notifications</string>
<string name="follow_request">Follow requests</string>
<string name="settings">Settings</string>
<string name="delete_account_title">Delete an account</string>
<string name="delete_account_message" formatted="false">Delete the account %1$s from the application?</string>
<string name="delete_account_title">Remove an account</string>
<string name="delete_account_message" formatted="false">Remove the account %1$s from the application?</string>
<string name="send_email">Send an email</string>
<string name="click_to_change">Tap on the path to change it</string>
<string name="failed">Failed!</string>
@ -98,7 +98,7 @@
<string name="more_action_1">Mute</string>
<string name="more_action_2">Block</string>
<string name="more_action_3">Report</string>
<string name="more_action_4">Remove</string>
<string name="more_action_4">Delete</string>
<string name="more_action_5">Copy</string>
<string name="more_action_6">Share</string>
<string name="more_action_7">Mention</string>
@ -117,7 +117,7 @@
<item>Silent</item>
</string-array>
<string-array name="more_action_owner_confirm">
<item>Remove this toot?</item>
<item>Delete this toot?</item>
<item>Delete &amp; re-draft this toot?</item>
</string-array>
<string name="bookmarks">Bookmarks</string>
@ -171,7 +171,7 @@
<string name="queet_title_reply">Reply to a queet</string>
<string name="toot_select_image">Select a media</string>
<string name="toot_select_image_error">An error occurred while selecting the media!</string>
<string name="toot_delete_media">Delete this media?</string>
<string name="toot_delete_media">Remove this media?</string>
<string name="toot_error_no_content">Your toot is empty!</string>
<string name="toot_visibility_tilte">Visibility of the toot</string>
<string name="toots_visibility_tilte">Visibility of the toots by default: </string>
@ -188,7 +188,7 @@
<string name="choose_toot">Choose a toot</string>
<string name="choose_accounts">Choose an account</string>
<string name="select_accounts">Select some accounts</string>
<string name="remove_draft">Remove draft?</string>
<string name="remove_draft">Delete draft?</string>
<string name="show_reply">Tap on the button to display the original toot</string>
<string name="upload_form_description">Describe for the visually impaired</string>
<!-- Instance -->
@ -583,7 +583,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -601,7 +601,7 @@
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>

View File

@ -1111,6 +1111,6 @@ Sobald du die ersten Buchstaben eintippst, werden Namensvorschläge angezeigt\n\
<string name="add_reaction">Eine Reaktion hinzufügen</string>
<string name="set_custom_tabs_indication">Verwenden Sie Ihren bevorzugten Browser innerhalb der App. Deaktiviere diese Funktion, um Links extern zu öffnen.</string>
<string name="set_video_cache">Video-Cache in MB, Null bedeutet keinen 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="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>
</resources>

View File

@ -565,7 +565,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -583,7 +583,7 @@
<string name="refresh">Aktualigu</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Forigi konton</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">Nova Hup</string>

View File

@ -1117,6 +1117,6 @@ https://yandex.ru/legal/confidential/?lang=en </string>
<string name="add_reaction">Agregar una reacción</string>
<string name="set_custom_tabs_indication">Usa tu navegador favorito dentro de la aplicación. Desmarca esta función para abrir enlaces externamente.</string>
<string name="set_video_cache">Caché de vídeo en MB, cero significa que no hay caché.</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="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>
</resources>

View File

@ -29,8 +29,8 @@
<string name="instance_example">نمونه: mastodon.social</string>
<string name="toast_account_changed" formatted="false">اکنون با این حساب کار می‌کند: %1$s</string>
<string name="add_account">افزودن حساب کاربری</string>
<string name="clipboard">The content of the toot has been copied to the clipboard</string>
<string name="clipboard_url">The URL of the toot has been copied to the clipboard</string>
<string name="clipboard">از محتوای بوق در حافظه رونوشت گرفته شد</string>
<string name="clipboard_url">از نشانی بوق در حافظه رونوشت گرفته شد</string>
<string name="change">تغییر دادن</string>
<string name="choose_picture">انتخاب تصویر...</string>
<string name="clear">پاک‌سازی</string>
@ -59,7 +59,7 @@
<string name="show_replies">نمایش پاسخ‌ها</string>
<string name="action_open_in_web">باز کردن در مرورگر</string>
<string name="translate">ترجمه</string>
<string name="please_wait">Please, wait few seconds before making this action.</string>
<string name="please_wait">لطفا چند قانیه پیش از انجام این کار صبر کنید.</string>
<!--- Menu -->
<string name="home_menu">خانه</string>
<string name="local_menu">خط زمانی محلی</string>
@ -67,8 +67,8 @@
<string name="neutral_menu_title">گزینه‌ها</string>
<string name="favorites_menu">پسندها</string>
<string name="communication_menu_title">ارتباطات</string>
<string name="muted_menu">Muted users</string>
<string name="blocked_menu">Blocked users</string>
<string name="muted_menu">کاربران بی صدا شده</string>
<string name="blocked_menu">کاربران مسدود شده</string>
<string name="notifications">اعلان‌ها</string>
<string name="follow_request">درخواست پیگیری</string>
<string name="settings">تنظیمات</string>
@ -82,15 +82,15 @@
<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="logout_confirmation">Are you sure you want to logout?</string>
<string name="logout_confirmation">آیا مطمئن هستید که می‌خواهید خارج شوید؟</string>
<string name="logout_account_confirmation">Are you sure you want to logout @%1$s@%2$s?</string>
<!-- Status -->
<string name="no_status">بوقی برای نمایش نیست</string>
<string name="no_stories">No stories to display</string>
<string name="stories">Stories</string>
<string name="no_stories">داستانی برای نمایش موجود نیست</string>
<string name="stories">داستان‌ها</string>
<string name="reblog_by">تقویت شده توسط %1$s</string>
<string name="favourite_add">Add this toot to your favourites?</string>
<string name="favourite_remove">Remove this toot from your favourites?</string>
<string name="favourite_add">این بوق به علاقه‌مندی‌ها اضافه شود؟</string>
<string name="favourite_remove">این بوق از علاقه‌مندی‌ها حذف شود؟</string>
<string name="reblog_add">این بوق تقویت شود؟</string>
<string name="reblog_remove">تقویت این بوق حذف شود؟</string>
<string name="pin_add">این بوق سنجاق شود؟</string>
@ -105,12 +105,12 @@
<string name="more_action_8">بی‌صدا کردن زمان‌دار</string>
<string name="more_action_9">حذف و بازنویسی</string>
<string-array name="more_action_confirm">
<item>Mute this account?</item>
<item>این حساب بی‌صدا شود؟</item>
<item>این حساب مسدود شود؟</item>
<item>این بوق گزارش شود؟</item>
<item>این دامنه مسدود شود؟</item>
<item>Unmute this account?</item>
<item>Unblock this account?</item>
<item>این حساب از حالت بی‌صدا خارج شود؟</item>
<item>مسدودیت این حساب رفع شود؟</item>
</string-array>
<string-array name="action_notification">
<item>با اعلان</item>
@ -123,43 +123,43 @@
<string name="bookmarks">نشانک‌ها</string>
<string name="bookmark_add">افزودن به نشانک‌ها</string>
<string name="bookmark_remove">حذف نشانک</string>
<string name="bookmarks_empty">No bookmarks to display</string>
<string name="bookmarks_empty">نشانکی برای نمایش وجود ندارد</string>
<string name="status_bookmarked">Status has been added to bookmarks!</string>
<string name="status_unbookmarked">مطلب از نشانک‌ها حذف شد!</string>
<!-- Date -->
<string name="date_seconds">%d s</string>
<string name="date_minutes">%d m</string>
<string name="date_hours">%d h</string>
<string name="date_day">%d d</string>
<string name="date_seconds">%d ث</string>
<string name="date_minutes">%d د</string>
<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="other">%d ثانیه</item>
</plurals>
<plurals name="date_minutes_polls">
<item quantity="one">%d minute</item>
<item quantity="other">%d minutes</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="other">%d ساعت</item>
</plurals>
<plurals name="date_day_polls">
<item quantity="one">%d day</item>
<item quantity="other">%d days</item>
<item quantity="other">%d روز</item>
</plurals>
<!-- TOOT -->
<string name="toot_cw_placeholder">Warning</string>
<string name="toot_placeholder">What is on your mind?</string>
<string name="toot_it">TOOT!</string>
<string name="toot_cw_placeholder">هشدار</string>
<string name="toot_placeholder">به چه چیز فکر می‌کنی؟</string>
<string name="toot_it">بوق!</string>
<string name="queet_it">QUEET!</string>
<string name="cw">cw</string>
<string name="toot_title">Write a toot</string>
<string name="toot_title_reply">Reply to a toot</string>
<string name="toot_title">بوقی بنویسید</string>
<string name="toot_title_reply">به یک بوق پاسخ دهید</string>
<string name="queet_title">Write a queet</string>
<string name="queet_title_reply">Reply to a queet</string>
<string name="toot_select_image">Select a media</string>
<string name="toot_select_image">رسانه‌ای را انتخاب کنید</string>
<string name="toot_select_image_error">An error occurred while selecting the media!</string>
<string name="toot_delete_media">Delete this media?</string>
<string name="toot_delete_media">Remove this media?</string>
<string name="toot_error_no_content">Your toot is empty!</string>
<string name="toot_visibility_tilte">Visibility of the toot</string>
<string name="toots_visibility_tilte">Visibility of the toots by default: </string>
@ -176,7 +176,7 @@
<string name="choose_toot">Choose a toot</string>
<string name="choose_accounts">Choose an account</string>
<string name="select_accounts">Select some accounts</string>
<string name="remove_draft">Remove draft?</string>
<string name="remove_draft">Delete draft?</string>
<string name="show_reply">Tap on the button to display the original toot</string>
<string name="upload_form_description">Describe for the visually impaired</string>
<!-- Instance -->
@ -565,7 +565,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -583,7 +583,7 @@
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>

View File

@ -1123,6 +1123,6 @@
<string name="add_reaction">Engadir reacción</string>
<string name="set_custom_tabs_indication">Usa o teu navegador favorito dentro da app. Desmarca esta opción para abrir externamente as ligazóns.</string>
<string name="set_video_cache">Caché para vídeo en MB, cero significa sen caché.</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="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>
</resources>

View File

@ -564,7 +564,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -582,7 +582,7 @@
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>

View File

@ -561,7 +561,7 @@ https://yandex.ru/legal/confidential/?lang=en
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -579,7 +579,7 @@ https://yandex.ru/legal/confidential/?lang=en
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>

View File

@ -1123,6 +1123,6 @@
<string name="add_reaction">Aggiungi una reazione</string>
<string name="set_custom_tabs_indication">Usa il tuo browser preferito all\'interno dell\'app. Deseleziona questa funzione per aprire i link esternamente.</string>
<string name="set_video_cache">Cache video in MB, zero significa nessuna 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="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>
</resources>

View File

@ -1106,6 +1106,6 @@
<string name="add_reaction">リアクションを追加</string>
<string name="set_custom_tabs_indication">アプリ内でお気に入りのブラウザを使用します。リンクを外部アプリで開きたい場合はこのチェックを外してください。</string>
<string name="set_video_cache">MB単位での動画キャッシュ、0でキャッシュしません。</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="set_watermark">ウォーターマーク</string>
<string name="set_watermark_indication">画像の下部に自動的にウォーターマークを追加します。テキストはアカウントごとにカスタマイズできます。</string>
</resources>

View File

@ -73,7 +73,7 @@
<string name="follow_request">Isuturen n teḍfeṛt</string>
<string name="settings">Iγewwaṛen</string>
<string name="delete_account_title">Kkes amiḍan</string>
<string name="delete_account_message" formatted="false">Delete the account %1$s from the application?</string>
<string name="delete_account_message" formatted="false">Remove the account %1$s from the application?</string>
<string name="send_email">Azen imayl</string>
<string name="click_to_change">Tap on the path to change it</string>
<string name="failed">Icceḍ!</string>
@ -117,7 +117,7 @@
<item>Asusam</item>
</string-array>
<string-array name="more_action_owner_confirm">
<item>Remove this toot?</item>
<item>Delete this toot?</item>
<item>Delete &amp; re-draft this toot?</item>
</string-array>
<string name="bookmarks">Ticraḍ</string>
@ -159,7 +159,7 @@
<string name="queet_title_reply">Reply to a queet</string>
<string name="toot_select_image">Fren allal n teγwalt</string>
<string name="toot_select_image_error">An error occurred while selecting the media!</string>
<string name="toot_delete_media">Delete this media?</string>
<string name="toot_delete_media">Remove this media?</string>
<string name="toot_error_no_content">Your toot is empty!</string>
<string name="toot_visibility_tilte">Visibility of the toot</string>
<string name="toots_visibility_tilte">Visibility of the toots by default: </string>
@ -565,7 +565,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -583,7 +583,7 @@
<string name="refresh">Smiren</string>
<string name="expand_conversation">Simγur aqesseṛ</string>
<string name="remove_account">Kkes amiḍan</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Seddu tavidyutt</string>
<string name="new_toot">Tijewwiqt tamaynutt</string>

View File

@ -565,7 +565,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -583,7 +583,7 @@
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>

View File

@ -292,7 +292,7 @@
<string name="set_notify">Meldingen?</string>
<string name="set_notif_silent">Stille meldingen</string>
<string name="set_nsfw_timeout">Hoe lang gevoelige inhoud blijven tonen (in seconden, 0 is onbeperkt)</string>
<string name="set_med_desc_timeout">Media Description timeout (seconds, 0 means off)</string>
<string name="set_med_desc_timeout">Media Omschrijving time-out (seconden, 0 betekent uit)</string>
<string name="settings_title_profile">Profiel bewerken</string>
<string name="settings_title_custom_sharing">Handmatig delen</string>
<string name="settings_custom_sharing_url">Jouw handmatige deel-URL&#8230;</string>
@ -340,7 +340,7 @@
<string name="action_search">Zoeken</string>
<string name="set_capitalize">Eerste letter een hoofdletter in reacties</string>
<string name="set_resize_picture">Afbeeldingen schalen</string>
<string name="set_resize_video">Resize videos</string>
<string name="set_resize_video">Resize video\'s</string>
<!-- Quick settings for notifications -->
<string name="settings_popup_title">Pushmeldingen</string>
<string name="settings_popup_message"> Bevestig de pushmeldingen die jij wilt ontvangen.
@ -372,7 +372,7 @@
<string name="filter_no_result">Geen resultaten!</string>
<string name="data_backup_toots">Toots back-uppen voor %1$s</string>
<string name="data_backup_success">Er zijn %1$s nieuwe toots geïmporteerd</string>
<string name="data_backup_notification_success">%1$s new notifications have been imported</string>
<string name="data_backup_notification_success">%1$s nieuwe kennisgevingen zijn ingevoerd</string>
<string-array name="filter_order">
<item>Data aflopend</item>
<item>Data oplopend</item>
@ -431,7 +431,7 @@
<string name="action_lists_update">Lijst bewerken</string>
<string name="action_lists_title_placeholder">Naam nieuwe lijst</string>
<string name="action_lists_add_user">Het account is aan de lijst toegevoegd!</string>
<string name="action_lists_empty">You don\'t have any lists yet!</string>
<string name="action_lists_empty">Je hebt nog geen lijsten!</string>
<!-- Migration -->
<string name="account_moved_to">%1$s is naar %2$s verhuisd</string>
<string name="issue_login_title">Problemen met aanmelden?</string>
@ -775,76 +775,76 @@ Je kunt beginnen met typen en er zullen namen gesuggereerd worden.\n\n
<string name="add_poll_item">Een pollkeuze toevoegen</string>
<string name="remove_poll_item">Laatste pollkeuze verwijderen</string>
<string name="mute_conversation">Gesprek negeren</string>
<string name="unmute_conversation">Unmute conversation</string>
<string name="toast_unmute_conversation">The conversation is no longer muted!</string>
<string name="toast_mute_conversation">The conversation is muted</string>
<string name="app_features">Open application features</string>
<string name="timed_mute">Timed mute</string>
<string name="mention_account">Mention the account</string>
<string name="refresh_cache">Refresh cache</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="unmute_conversation">Ondeugend gesprek</string>
<string name="toast_unmute_conversation">Het gesprek is niet meer gedempt!</string>
<string name="toast_mute_conversation">Het gesprek is gedempt</string>
<string name="app_features">Functies voor open toepassingen</string>
<string name="timed_mute">Getimede demper</string>
<string name="mention_account">Vermeld de rekening</string>
<string name="refresh_cache">Verfrissende cache</string>
<string name="mention_status">Vermeld de status</string>
<string name="action_news">Nieuws</string>
<string name="category_general">Algemeen</string>
<string name="category_regional">Regionale</string>
<string name="category_art">Kunst</string>
<string name="category_journalism">Journalistiek</string>
<string name="category_activism">Activisme</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="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="category_tech">Technologie</string>
<string name="category_adult">Verborgen inhoud</string>
<string name="category_furry">Bont</string>
<string name="category_food">Voedsel</string>
<string name="instance_logo">Logo van het geval</string>
<string name="toast_error_instance_reg">Er is iets misgegaan bij het controleren van de beschikbare instanties!</string>
<string name="join_mastodon">Ga mee met Mastodon</string>
<string name="pickup_instance_category">Kies een instantie door een categorie op te pakken, klik dan op een controleknop.</string>
<string name="pickup_instance_peertube">Kies een instantie door op een controleknop te tikken.</string>
<string name="users">%1$s users</string>
<string name="password_confirm">Confirm password</string>
<string name="password_confirm">Bevestig wachtwoord</string>
<string name="agreement_check">I agree to %1$s and %2$s</string>
<string name="server_rules">server rules</string>
<string name="server_rules">serverregels</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="validation_needed">Dit geval werkt met uitnodigingen. Uw account moet handmatig worden goedgekeurd door een beheerder voordat het bruikbaar is.</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="password_error">Wachtwoorden komen niet overeen!</string>
<string name="email_error">De e-mail lijkt niet geldig te zijn!</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="email_indicator">U ontvangt een bevestigingsmail</string>
<string name="password_indicator">Gebruik minstens 8 karakters</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="account_created">Account aangemaakt!</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="reconnect_account">Reconnect the account</string>
<string name="save_draft">Het bericht opslaan in concepten?</string>
<string name="administration">Administratie</string>
<string name="reports">Rapporten</string>
<string name="no_reports">Geen meldingen te tonen!</string>
<string name="reconnect_account">Verbind het account opnieuw</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="unresolved">Onopgelost</string>
<string name="remote">Remote</string>
<string name="active">Active</string>
<string name="active">Actief</string>
<string name="pending">Pending</string>
<string name="disabled">Disabled</string>
<string name="silenced">Silenced</string>
<string name="disabled">Uitgeschakeld</string>
<string name="silenced">Gedempt</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="permissions">Toestemmingen</string>
<string name="email_status">E-mailstatus</string>
<string name="login_status">Aanmeldingsstatus</string>
<string name="joined">Joined</string>
<string name="recent_ip">Most recent IP</string>
<string name="warn">Warn</string>
<string name="recent_ip">Meest recente IP</string>
<string name="warn">Waarschuwing</string>
<string name="disable">Disable</string>
<string name="silence">Silence</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="moderator">Moderator</string>
<string name="user">Gebruiker</string>
<string name="moderator">Presentator</string>
<string name="administrator">Administrator</string>
<string name="confirmed">Confirmed</string>
<string name="unconfirmed">Not confirmed</string>
@ -1045,83 +1045,83 @@ Je kunt beginnen met typen en er zullen namen gesuggereerd worden.\n\n
<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="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="text_color">Change the text color in pots</string>
<string name="apply_changes">Apply changes</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="edit_profile">Profiel bewerken</string>
<string name="make_an_action">Maak een actie</string>
<string name="translation">Vertaling</string>
<string name="image_preview">Beeldvoorbeeld</string>
<string name="text_color_title">Tekstkleur</string>
<string name="text_color">Verander de tekstkleur in potten</string>
<string name="apply_changes">Veranderingen toepassen</string>
<string name="restart_message">U moet de toepassing opnieuw opstarten om de wijzigingen toe te passen</string>
<string name="restart">Herstart</string>
<string name="pref_custom_theme">Gebruik een aangepast thema</string>
<string name="pref_custom_theme_summary">Laat de kleuren van het geselecteerde thema hierboven overrulen</string>
<string name="theming">Theming</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_title">Tap here to import a theme from a previous export</string>
<string name="export_theme">Export the theme</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="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_accent_color_summary">Accents select parts of the UI.</string>
<string name="pref_accent_color_title">Accent color</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="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="store_before">Opslaan voor</string>
<string name="data_export_theme">Het thema werd geëxporteerd</string>
<string name="data_export_theme_success">Het thema is met succes geëxporteerd in CSV</string>
<string name="pref_colored_status_bar_summary">Breng de primaire kleur aan op de statusbalk</string>
<string name="pref_colored_status_bar_title">Kleur van de statusbalk</string>
<string name="restore_default_theme">Een standaard thema herstellen</string>
<string name="import_theme">Een thema importeren</string>
<string name="import_theme_title">Tik hier om een thema uit een eerdere export te importeren</string>
<string name="export_theme">Exporteer het thema</string>
<string name="export_theme_title">Tik hier om het huidige thema te exporteren</string>
<string name="theme_file_error">Er is een fout opgetreden bij het selecteren van het themabestand</string>
<string name="label_theme_picker">Thema Picker</string>
<string name="pref_theme_summary">Selecteer een vooraf geïnstalleerd thema</string>
<string name="pref_theme_title">Thema\'s</string>
<string name="pref_colored_navigation_bar_summary">Breng de primaire kleur aan op de navigatiebalk</string>
<string name="pref_colored_navigation_bar_title">Kleur van de navigatiebalk</string>
<string name="pref_background_color_summary">De onderliggende kleur van de inhoud van de app.</string>
<string name="pref_background_color_title">Achtergrondkleur</string>
<string name="pref_accent_color_summary">Accenten selecteren delen van de UI.</string>
<string name="pref_accent_color_title">Accent kleur</string>
<string name="pref_primary_color_summary">Wordt het vaakst weergegeven in uw app.</string>
<string name="pref_primary_color_title">Primaire kleur</string>
<string name="export_bookmarks">Exporteer bladwijzers naar de instantie</string>
<string name="import_bookmarks">Importeer bladwijzers van de instantie</string>
<string name="user_count">Aantal gebruikers</string>
<string name="status_count">Status telling</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="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="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>
<string name="blocked">Geblokkeerd</string>
<string name="poll_finish_in">Eindigt over %s</string>
<string name="release_note_title">Wat is er nieuw in %s</string>
<string name="follow_account_update">Je kunt mijn account voor updates volgen</string>
<string name="no_instance_reccord">Dit exemplaar is niet beschikbaar op https://instances.social</string>
<string name="display_full_link">Add a comment</string>
<string name="share_link">Deelverbinding</string>
<string name="link_copy">De URL is gekopieerd naar het klembord</string>
<string name="open_other_app">Open met een andere App</string>
<string name="check_redirect">Omleiding controleren</string>
<string name="no_redirect">Deze URL stuurt niet door</string>
<string name="redirect_detected">%1$s \n\nredirects to\n\n %2$s</string>
<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_user_agent">Wijzig de gebruikersagent</string>
<string name="set_user_agent_hint">Stel een aangepaste gebruikersagent in of laat leeg</string>
<string name="set_user_agent_indication">Maakt het mogelijk om de gebruikersagent die wordt gebruikt voor api-gesprekken of met de ingebouwde browser aan te passen.</string>
<string name="set_utm_parameters">UTM-parameters verwijderen</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="talking_about">%d people talking</string>
<string name="twitter_accounts">Twitter accounts (via 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="trending_now">Nu Trending</string>
<string name="talking_about">%d mensen die praten</string>
<string name="twitter_accounts">Twitteraccounts (via Nitter)</string>
<string name="list_of_twitter_accounts">Twitter gebruikersnamen ruimte gescheiden</string>
<string name="identity_proofs">Identiteitsbewijzen</string>
<string name="verified_user">Geverifieerde identiteit</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="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="remove_notification">De kennisgeving verwijderen</string>
<string name="display_more_options">Meer opties weergeven</string>
<string name="pixelfed_story">Het is een Pixelfed-verhaal</string>
<string name="story_indication">Upload een medium, het wordt automatisch toegevoegd aan je Pixelfed-verhaal.</string>
<string name="added_to_story">Media succesvol toegevoegd aan uw verhaal!</string>
<string name="action_disabled">Actie gehandicapt</string>
<string name="action_unfollow">Ontvouw</string>
<string name="error_destination_path">Something went wrong, please check your download directory in settings.</string>
<string name="error_destination_path">Er is iets misgegaan, controleer uw download directory in de instellingen.</string>
<string name="action_announcements">Aankondigingen</string>
<string name="no_announcements">Geen mededelingen!</string>
<string name="add_reaction">Add a reaction</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_indication">Automatically add a watermark at the bottom of pictures. The text can be customized for each account.</string>
<string name="add_reaction">Reactie toevoegen</string>
<string name="set_custom_tabs_indication">Gebruik uw favoriete browser in de app. Schakel deze functie uit om externe links te openen.</string>
<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>
</resources>

View File

@ -72,8 +72,8 @@
<string name="notifications">Notifications</string>
<string name="follow_request">Follow requests</string>
<string name="settings">Settings</string>
<string name="delete_account_title">Delete an account</string>
<string name="delete_account_message" formatted="false">Delete the account %1$s from the application?</string>
<string name="delete_account_title">Remove an account</string>
<string name="delete_account_message" formatted="false">Remove the account %1$s from the application?</string>
<string name="send_email">Send an email</string>
<string name="click_to_change">Tap on the path to change it</string>
<string name="failed">Failed!</string>
@ -98,7 +98,7 @@
<string name="more_action_1">Mute</string>
<string name="more_action_2">Block</string>
<string name="more_action_3">Report</string>
<string name="more_action_4">Remove</string>
<string name="more_action_4">Delete</string>
<string name="more_action_5">Copy</string>
<string name="more_action_6">Share</string>
<string name="more_action_7">Mention</string>
@ -117,7 +117,7 @@
<item>Silent</item>
</string-array>
<string-array name="more_action_owner_confirm">
<item>Remove this toot?</item>
<item>Delete this toot?</item>
<item>Delete &amp; re-draft this toot?</item>
</string-array>
<string name="bookmarks">Bookmarks</string>
@ -159,7 +159,7 @@
<string name="queet_title_reply">Reply to a queet</string>
<string name="toot_select_image">Select a media</string>
<string name="toot_select_image_error">An error occurred while selecting the media!</string>
<string name="toot_delete_media">Delete this media?</string>
<string name="toot_delete_media">Remove this media?</string>
<string name="toot_error_no_content">Your toot is empty!</string>
<string name="toot_visibility_tilte">Visibility of the toot</string>
<string name="toots_visibility_tilte">Visibility of the toots by default: </string>
@ -176,7 +176,7 @@
<string name="choose_toot">Choose a toot</string>
<string name="choose_accounts">Choose an account</string>
<string name="select_accounts">Select some accounts</string>
<string name="remove_draft">Remove draft?</string>
<string name="remove_draft">Delete draft?</string>
<string name="show_reply">Tap on the button to display the original toot</string>
<string name="upload_form_description">Describe for the visually impaired</string>
<!-- Instance -->
@ -565,7 +565,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -583,7 +583,7 @@
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>

View File

@ -569,7 +569,7 @@ Aceste date sunt strict confidențiale și pot fi folosite doar de aplicație.
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -587,7 +587,7 @@ Aceste date sunt strict confidențiale și pot fi folosite doar de aplicație.
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>

View File

@ -1139,6 +1139,6 @@
<string name="add_reaction">Добавить реакцию</string>
<string name="set_custom_tabs_indication">Используйте ваш любимый браузер внутри приложения. Снимите флажок на эту функцию, чтобы открывать ссылки внешним браузером.</string>
<string name="set_video_cache">Кэш видео в MB, ноль означает, нет кэша.</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="set_watermark">Водяные знаки</string>
<string name="set_watermark_indication">Автоматически добавлять водяной знак внизу изображений. Текст можно настроить для каждого аккаунта.</string>
</resources>

File diff suppressed because it is too large Load Diff

View File

@ -117,7 +117,7 @@
<item>නිශ්ශබ්ද</item>
</string-array>
<string-array name="more_action_owner_confirm">
<item>Remove this toot?</item>
<item>Delete this toot?</item>
<item>Delete &amp; re-draft this toot?</item>
</string-array>
<string name="bookmarks">පොත් යොමු</string>
@ -289,7 +289,7 @@
<string name="set_share_validation">Show confirmation dialog before boosting</string>
<string name="set_share_validation_fav">Show confirmation dialog before adding to favourites</string>
<string name="set_wifi_only">Notify in WIFI only</string>
<string name="set_notify">Notify?</string>
<string name="set_notify">දැනුම් දෙන්න ද?</string>
<string name="set_notif_silent">Silent Notifications</string>
<string name="set_nsfw_timeout">NSFW view timeout (seconds, 0 means off)</string>
<string name="set_med_desc_timeout">Media Description timeout (seconds, 0 means off)</string>
@ -305,7 +305,7 @@
<string name="note_no_space">ලබා දී ඇති අකුරු 160 ක සීමාවට ඔබ ළඟා වී ඇත!</string>
<string name="username_no_space">ලබා දී ඇති අකුරු 30 ක සීමාවට ඔබ ළඟා වී ඇත!</string>
<string name="settings_time_from">Between</string>
<string name="settings_time_to">and</string>
<string name="settings_time_to">සහ</string>
<string name="settings_time_greater">වේලාව %1$s ට වඩා වැඩි විය යුතු යි</string>
<string name="settings_time_lower">වේලාව %1$s ට වඩා අඩු විය යුතු යි</string>
<string name="settings_hour_init">ආරම්භ වන වේලාව</string>
@ -565,7 +565,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>

View File

@ -567,7 +567,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -585,7 +585,7 @@
<string name="refresh">Оновити</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>

View File

@ -556,7 +556,7 @@ và %d thông báo khác</item>
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -574,7 +574,7 @@ và %d thông báo khác</item>
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Phát video</string>
<string name="new_toot">New toot</string>

View File

@ -994,7 +994,7 @@
<string name="set_nitter_indication">Niter是一种开放源码的替代的 Twitter 的前端,注重保护隐私。</string>
<string name="set_nitter_host">输入你自定义的主机或者留空以使用 nitter.net</string>
<string name="set_bibliogram">将 Instagram 替换成 Bibliogram</string>
<string name="set_bibliogram_indication">Bibliogram 是个注重隐私的 Instagram 开源替选前端。</string>
<string name="set_bibliogram_indication">Bibliogram 是个注重隐私保护的 Instagram 开源替代前端。</string>
<string name="set_bibliogram_host">输入你的自定义主机或者留空以使用 bibliogram.art</string>
<string name="set_hide_status_bar">隐藏 Fedilab 通知栏</string>
<string name="set_hide_status_bar_indication">要隐藏留在状态栏里的通知,请点击眼睛图标的按钮,然后取消勾选:“在状态栏内显示”</string>
@ -1115,6 +1115,6 @@
<string name="add_reaction">添加回应</string>
<string name="set_custom_tabs_indication">在应用内使用您最喜欢的浏览器。取消勾选此功能以对外打开链接。</string>
<string name="set_video_cache">以 MB 计算的视频缓存量,零表示无缓存。</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="set_watermark">水印:</string>
<string name="set_watermark_indication">自动在图片底部添加一个水印。可以为每个帐户定制文本。</string>
</resources>

View File

@ -75,8 +75,8 @@
<string name="notifications">Notifications</string>
<string name="follow_request">Follow requests</string>
<string name="settings">Settings</string>
<string name="delete_account_title">Delete an account</string>
<string name="delete_account_message" formatted="false">Delete the account %1$s from the application?</string>
<string name="delete_account_title">Remove an account</string>
<string name="delete_account_message" formatted="false">Remove the account %1$s from the application?</string>
<string name="send_email">Send an email</string>
<string name="click_to_change">Tap on the path to change it</string>
<string name="failed">Failed!</string>
@ -104,7 +104,7 @@
<string name="more_action_1">Mute</string>
<string name="more_action_2">Block</string>
<string name="more_action_3">Report</string>
<string name="more_action_4">Remove</string>
<string name="more_action_4">Delete</string>
<string name="more_action_5">Copy</string>
<string name="more_action_6">Share</string>
<string name="more_action_7">Mention</string>
@ -125,7 +125,7 @@
</string-array>
<string-array name="more_action_owner_confirm">
<item>Remove this toot?</item>
<item>Delete this toot?</item>
<item>Delete &amp; re-draft this toot?</item>
</string-array>
@ -172,7 +172,7 @@
<string name="queet_title_reply">Reply to a queet</string>
<string name="toot_select_image">Select a media</string>
<string name="toot_select_image_error">An error occurred while selecting the media!</string>
<string name="toot_delete_media">Delete this media?</string>
<string name="toot_delete_media">Remove this media?</string>
<string name="toot_error_no_content">Your toot is empty!</string>
<string name="toot_visibility_tilte">Visibility of the toot</string>
<string name="toots_visibility_tilte">Visibility of the toots by default: </string>
@ -190,7 +190,7 @@
<string name="choose_toot">Choose a toot</string>
<string name="choose_accounts">Choose an account</string>
<string name="select_accounts">Select some accounts</string>
<string name="remove_draft">Remove draft?</string>
<string name="remove_draft">Delete draft?</string>
<string name="show_reply">Tap on the button to display the original toot</string>
<string name="upload_form_description">Describe for the visually impaired</string>
@ -636,7 +636,7 @@
<string name="tags_already_stored">The tag already exists!</string>
<string name="tags_stored">The tag has been stored!</string>
<string name="tags_renamed">The tag has been changed!</string>
<string name="tags_deleted">The tag has been deleted!</string>
<string name="tags_deleted">The tag has been removed!</string>
<string name="schedule_boost">Schedule boost</string>
<string name="boost_scheduled">The boost is scheduled!</string>
<string name="no_scheduled_boosts">No scheduled boost to display!</string>
@ -654,7 +654,7 @@
<string name="refresh">Refresh</string>
<string name="expand_conversation">Expand the conversation</string>
<string name="remove_account">Remove an account</string>
<string name="delete_domain">Delete the blocked domain</string>
<string name="delete_domain">Remove the blocked domain</string>
<string name="custom_emoji_picker">Custom emoji picker</string>
<string name="play_video">Play video</string>
<string name="new_toot">New toot</string>
@ -1238,4 +1238,4 @@
<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>
</resources>
</resources>

View File

@ -0,0 +1,16 @@
It supports:
- Mastodon, Pleroma, Pixelfed, Peertube, GNU Social, Friendica.
The app has advanced features (especially for Pleroma and 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

View File

@ -0,0 +1 @@
Fedilab is a multifunctional Android client to access the distributed Fediverse, consisting of micro blogging, photo sharing and video hosting.