diff --git a/.gitignore b/.gitignore index bdac4289a..68124f37b 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ android/.idea /codesigndoc_exports Appfile report.xml +/crowdin.yml diff --git a/Pipfile b/Pipfile new file mode 100644 index 000000000..e69de29bb diff --git a/README.md b/README.md index 4ba80f3d7..1c366fedf 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,7 @@ flutter run --profile 1. Add localization string get method to `openbook_app/lib/services/localizations.dart` 2. Run `make generate_locale` -3. Upload assets/i18n/en folder's contents to crowdin +3. Upload assets/i18n/en folder's contents to https://crowdin.com/project/okuna/settings#files by pressing `Update` next to the existing files. 4. Apply the translations on crowdin, then build and download 5. Copy the contents of the downloaded archive to assets/i18n 6. Run `make build_locale` @@ -214,10 +214,14 @@ localization service to only pass along `pt_BR`to `intl` when it encounters a lo In addition,a small note, we convert the `Accept-language` header in `httpie.dart` to lowercase since django expects it like that and this header is case sensitive. So django will not recognise `pt-BR` but recognises `pt-br`. -To summarise, in order to onboard a new localized locale, +## To onboard a new language + 1. Create a folder in i18n with the localized language code, for.eg `pt-BR` and store the arb files there. -2. Add the localized locale code to the `localizedLocales` list in `localization.dart`. -3. Run `make build_locale` as is standard. +2. Add the localized locale in lib/translation/constants.dart +3. If the language code contains 2 parts (e.g. language_country), add the localized locale code to the `localizedLocales` list in `localization.dart`. +4. If the language code contains 2 parts (e.g. language_country), create a `lang_country_localization_delegate.dart`. See `lib/delegates/pt_br_material_localizations.dart` for example. +4.2 Add the delegate in the main.dart file +5. Run `make build_locale` as is standard. ### 8. Contribute! diff --git a/assets/i18n/de/auth.arb b/assets/i18n/de/auth.arb index 02c742b9d..8e118ed0f 100644 --- a/assets/i18n/de/auth.arb +++ b/assets/i18n/de/auth.arb @@ -57,7 +57,7 @@ } }, - "create_acc__lets_get_started": "Fangen wir an", + "create_acc__lets_get_started": "Los geht's", "@create_acc__lets_get_started": { "type": "text", "placeholders": { @@ -261,7 +261,7 @@ } }, - "create_acc__name_length_error": "😱 Dein Name darf maximal 50 Zeichen haben. (Falls er länger ist, tut es uns sehr Leid)", + "create_acc__name_length_error": "😱 Dein Name darf nicht länger als 50 Zeichen lang sein. (Wenn er das tatsächlich ist, tut uns das sehr leid.)", "@create_acc__name_length_error": { "type": "text", "placeholders": { @@ -317,14 +317,14 @@ } }, - "create_acc__username_server_error": "😭 Wir haben derzeit Probleme mit unseren Servern, versuch es in ein paar Minuten erneut.", + "create_acc__username_server_error": "😭 Ein Serverproblem ist aufgetreten, bitte versuche es später noch einmal.", "@create_acc__username_server_error": { "type": "text", "placeholders": { } }, - "create_acc__what_email": "Wie lautet deine E-Mail-Adresse?", + "create_acc__what_email": "Wie lautet deine E-Mail?", "@create_acc__what_email": { "type": "text", "placeholders": { @@ -483,14 +483,14 @@ } }, - "create_acc__submit_error_desc_server": "😭 Wir haben derzeit Probleme mit unseren Servern, versuch es in ein paar Minuten erneut.", + "create_acc__submit_error_desc_server": "😭 Ein Serverproblem ist aufgetreten, bitte versuche es später noch einmal.", "@create_acc__submit_error_desc_server": { "type": "text", "placeholders": { } }, - "create_acc__submit_error_desc_validation": "😅 Es sieht so aus, als ob einige Informationen nicht korrekt waren, überprüfe diese und versuch es erneut.", + "create_acc__submit_error_desc_validation": "😅 Es sieht so aus, als ob einige Informationen nicht korrekt waren. Überprüfe diese und versuche es noch einmal.", "@create_acc__submit_error_desc_validation": { "type": "text", "placeholders": { @@ -518,7 +518,7 @@ } }, - "create_acc__can_change_username": "Wenn du möchtest, kannst du es jederzeit über deine Profilseite ändern.", + "create_acc__can_change_username": "Wenn du möchtest, kannst du ihn jederzeit über deine Profilseite ändern.", "@create_acc__can_change_username": { "type": "text", "placeholders": { @@ -644,7 +644,7 @@ } }, - "login__username_length_error": "Benutzername darf nicht länger als 30 Zeichen sein.", + "login__username_length_error": "Benutzername darf nicht länger als 30 Zeichen lang sein.", "@login__username_length_error": { "type": "text", "placeholders": { diff --git a/assets/i18n/de/community.arb b/assets/i18n/de/community.arb index c78a960b7..aa7452d79 100644 --- a/assets/i18n/de/community.arb +++ b/assets/i18n/de/community.arb @@ -13,7 +13,7 @@ } }, - "button_staff": "Moderatoren", + "button_staff": "Team", "@button_staff": { "type": "text", "placeholders": { @@ -493,7 +493,7 @@ } } }, - "ban_user_title": "Benutzer aussperren", + "ban_user_title": "Benutzer bannen", "@ban_user_title": { "type": "text", "placeholders": { @@ -530,7 +530,7 @@ } }, - "favorite_community": "Meine Community", + "favorite_community": "favorisierte Community", "@favorite_community": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 favorite community", "type": "text", @@ -915,7 +915,7 @@ } }, - "community_staff": "Community-Moderatoren", + "community_staff": "Community-Team", "@community_staff": { "type": "text", "placeholders": { diff --git a/assets/i18n/de/contextual_account_search_box.arb b/assets/i18n/de/contextual_account_search_box.arb new file mode 100644 index 000000000..ef9e1bf9a --- /dev/null +++ b/assets/i18n/de/contextual_account_search_box.arb @@ -0,0 +1,10 @@ +{ + "suggestions": "Vorschläge", + "@suggestions": { + "description": "The title to display on the suggestions when searching for accounts when trying to mention someone.", + "type": "text", + "placeholders": { + + } + } +} \ No newline at end of file diff --git a/assets/i18n/de/drawer.arb b/assets/i18n/de/drawer.arb index 095e7cd5c..322f58bf3 100644 --- a/assets/i18n/de/drawer.arb +++ b/assets/i18n/de/drawer.arb @@ -55,7 +55,7 @@ } }, - "my_mod_penalties": "Gegen mich verhängte Strafen", + "my_mod_penalties": "Meine Strafen", "@my_mod_penalties": { "type": "text", "placeholders": { @@ -260,14 +260,14 @@ } }, - "useful_links_guidelines_handbook": "Okuna Bedienungsanleitung", + "useful_links_guidelines_handbook": "Okuna Benutzerhandbuch", "@useful_links_guidelines_handbook": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_handbook_desc": "Eine Anleitung mit allem, was man wissen muss, um das Okuna-Netzwerk zu nutzen", + "useful_links_guidelines_handbook_desc": "Ein Benutzerhandbuch mit allem, was man wissen muss, um Okuna zu nutzen", "@useful_links_guidelines_handbook_desc": { "type": "text", "placeholders": { diff --git a/assets/i18n/de/moderation.arb b/assets/i18n/de/moderation.arb index d9acd4165..528a4f45b 100644 --- a/assets/i18n/de/moderation.arb +++ b/assets/i18n/de/moderation.arb @@ -267,7 +267,7 @@ } }, - "confirm_report_provide_happen_next_desc": "- Dein Bericht wird anonym übermittelt. \n- Wenn du einen Beitrag oder Kommentar meldest, wird der Bericht an die Okuna-Mitarbeiter und ggf. an die Community-Moderatoren gesendet und der Beitrag wird in deinem Feed ausgeblendet. \n- Wenn du ein Konto oder eine Community meldest, wird dies an die Okuna-Mitarbeiter gesendet. \n- Wir werden das überprüfen und wenn es bestätigt wird, werden die Inhalte gelöscht und Strafen für die betroffenen Personen verhängt. Diese reichen von einer vorübergehenden Sperrung bis zur Löschung des Kontos - je nach Schwere der Überschreitung. \n- Wenn sich herausstellt, dass die Meldung in dem Versuch erstellt wurde, einem anderen Mitglied oder einer Community auf der Plattform ohne Verletzung des angegebenen Grundes Schaden zuzufügen, werden Strafen gegenüber dir verhängt.\n", + "confirm_report_provide_happen_next_desc": "- Dein Bericht wird anonym übermittelt. \n- Wenn du einen Beitrag oder Kommentar meldest, wird der Bericht an die Okuna-Mitarbeiter und ggf. an die Community-Moderatoren gesendet und der Beitrag wird in deinem Feed ausgeblendet. \n- Wenn du ein Account oder eine Community meldest, wird dies an die Okuna-Mitarbeiter gesendet. \n- Wir werden das überprüfen und wenn es bestätigt wird, werden die Inhalte gelöscht und Strafen für die betroffenen Personen verhängt. Diese reichen von einer vorübergehenden Sperrung bis zur Löschung des Accounts - je nach Schwere der Überschreitung. \n- Wenn sich herausstellt, dass die Meldung in dem Versuch erstellt wurde, einem anderen Mitglied oder einer Community auf der Plattform ohne Verletzung des angegebenen Grundes Schaden zuzufügen, werden Strafen gegenüber dir verhängt.\n", "@confirm_report_provide_happen_next_desc": { "type": "text", "placeholders": { @@ -316,7 +316,7 @@ } }, - "community_moderated_objects": "Community moderierte Objekte", + "community_moderated_objects": "Moderierte Objekte", "@community_moderated_objects": { "type": "text", "placeholders": { @@ -456,21 +456,21 @@ } }, - "my_moderation_tasks_title": "Offene Moderationsaufgaben", + "my_moderation_tasks_title": "Offene Moderatoraufgaben", "@my_moderation_tasks_title": { "type": "text", "placeholders": { } }, - "pending_moderation_tasks_singular": "offene Moderationsaufgaben", + "pending_moderation_tasks_singular": "offene Moderatoraufgabe", "@pending_moderation_tasks_singular": { "type": "text", "placeholders": { } }, - "pending_moderation_tasks_plural": "offene Moderationsaufgaben", + "pending_moderation_tasks_plural": "offene Moderatoraufgaben", "@pending_moderation_tasks_plural": { "description": "Eg. No pending moderation tasks found", "type": "text", @@ -478,14 +478,14 @@ } }, - "my_moderation_penalties_title": "Gegen mich verhängte Strafen", + "my_moderation_penalties_title": "Meine Strafen", "@my_moderation_penalties_title": { "type": "text", "placeholders": { } }, - "my_moderation_penalties_resouce_singular": "gegen mich verhängte Strafen", + "my_moderation_penalties_resouce_singular": "gegen mich verhängte Strafe", "@my_moderation_penalties_resouce_singular": { "type": "text", "placeholders": { diff --git a/assets/i18n/de/notifications.arb b/assets/i18n/de/notifications.arb index 840b98663..84592555c 100644 --- a/assets/i18n/de/notifications.arb +++ b/assets/i18n/de/notifications.arb @@ -2,198 +2,164 @@ "settings_title": "Benachrichtigungen", "@settings_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_title": "Benachrichtigungen", "@general_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, - "general_desc": "Werde benachrichtigt wenn etwas passiert", + "general_desc": "Werde benachrichtigt, wenn etwas passiert", "@general_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_title": "Folgen", "@follow_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_desc": "Werde benachrichtigt, wenn dir jemand folgt", "@follow_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_title": "Verbindungsanfrage", "@connection_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_desc": "Werde benachrichtigt, wenn sich jemand mit dir verbinden möchte", "@connection_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_title": "Kommentare auf Beiträge", "@comment_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_desc": "Werde benachrichtigt, wenn jemand auf einen deiner Beiträge oder einen auf den du ebenfalls kommentiert hast, kommentiert", "@comment_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_title": "Kommentar-Antworten", "@comment_reply_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_desc": "Werde benachrichtigt, wenn jemand auf deinen Kommentar, oder auf einen, auf den du auch geantwortet hast, antwortet", "@comment_reply_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} + }, + "comment_user_mention_title": "Erwähnungen in Kommentaren", + "@comment_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "comment_user_mention_desc": "Werde benachrichtigt, wenn dich jemand in einem Kommentar erwähnt", + "@comment_user_mention_desc": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_title": "Erwähnungen in Beiträgen", + "@post_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_desc": "Werde benachrichtigt, wenn dich jemand in einem Beitrag erwähnt", + "@post_user_mention_desc": { + "type": "text", + "placeholders": {} }, "comment_reaction_title": "Kommentar-Reaktionen", "@comment_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reaction_desc": "Werde benachrichtigt, wenn jemand auf einen deiner Kommentare reagiert", "@comment_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_title": "Reaktionen auf Beiträge", "@post_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_desc": "Werde benachrichtigt, wenn jemand auf einen deiner Beiträge reagiert", "@post_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_title": "Community-Einladungen", "@community_invite_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_desc": "Werde benachrichtigt, wenn dich jemand in eine Community einlädt", "@community_invite_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_notifications": "Beitrags-Benachrichtigungen aktivieren", "@mute_post_turn_on_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_notifications": "Beitrags-Benachrichtigungen deaktivieren", "@mute_post_turn_off_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_comment_notifications": "Kommentar-Benachrichtigungen aktivieren", "@mute_post_turn_on_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_comment_notifications": "Kommentar-Benachrichtigungen deaktivieren", "@mute_post_turn_off_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_request_tile": "[name] [username] möchte sich mit dir verbinden.", "@connection_request_tile": { "description": "Eg.: James @jamest wants to connect with you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "accepted_connection_request_tile": "[name] [username] hat deine Verbindungsanfrage angenommen.", "@accepted_connection_request_tile": { "description": "Eg.: James @jamest accepted your connection request.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_tile": "[name] [username] hat auf deinen Beitrag reagiert.", "@reacted_to_post_tile": { "description": "Eg.: James @jamest reacted to your post.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_comment_tile": "[name] [username] hat auf deinen Kommentar reagiert.", "@reacted_to_post_comment_tile": { "description": "Eg.: James @jamest reacted to your post comment.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "following_you_tile": "[name] [username] folgt dir jetzt.", "@following_you_tile": { "description": "Eg.: James @jamest is now following you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "user_community_invite_tile": "[name] [username] hat dich in die Community \/c\/{communityName} eingeladen.", "@user_community_invite_tile": { "description": "Eg.: James @jamest has invited you to join community \/c\/okuna.", "type": "text", "placeholders": { - "communityName": { - - } + "communityName": {} } }, "comment_reply_notification_tile_user_replied": "[name] [username] hat geantwortet: {postCommentText}", @@ -201,36 +167,42 @@ "description": "For.eg. James @jamest replied.", "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_reply_notification_tile_user_also_replied": "[name] [username] hat ebenfalls geantwortet: {postCommentText}", "@comment_reply_notification_tile_user_also_replied": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_commented": "[name] [username] hat deinen Beitrag kommentiert: {postCommentText}", "@comment_comment_notification_tile_user_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_also_commented": "[name] [username] hat ebenfalls kommentiert: {postCommentText}", "@comment_comment_notification_tile_user_also_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} + } + }, + "mentioned_in_post_comment_tile": "[name] [username] hat dich in einem Kommentar erwähnt: {postCommentText}", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment: hello @jamest", + "type": "text", + "placeholders": { + "postCommentText": {} } + }, + "mentioned_in_post_tile": "[name] [username] hat dich in einem Beitrag erwähnt.", + "@mentioned_in_post_tile": { + "description": "Eg.: James @jamest mentioned you on a post.", + "type": "text", + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/de/post.arb b/assets/i18n/de/post.arb index 40f1c4e8a..94afd1afe 100644 --- a/assets/i18n/de/post.arb +++ b/assets/i18n/de/post.arb @@ -34,7 +34,7 @@ } }, - "comment_maxlength_error": "Ein Kommentar darf nicht mehr als {maxLength} Zeichen haben.", + "comment_maxlength_error": "Ein Kommentar darf nicht länger als {maxLength} Zeichen lang sein.", "@comment_maxlength_error": { "type": "text", "placeholders": { @@ -99,7 +99,7 @@ } }, - "timeline_posts_default_drhoo_subtitle": "Versuche, die Timeline zu aktualisieren.", + "timeline_posts_default_drhoo_subtitle": "Versuche die Timeline zu aktualisieren.", "@timeline_posts_default_drhoo_subtitle": { "type": "text", "placeholders": { @@ -711,7 +711,7 @@ } }, - "time_short_years": "J.", + "time_short_years": "J", "@time_short_years": { "description": "Shown in timestamps next to post to indicate how long ago the post\/notification was created for.eg 3y. Keep it as short as possible", "type": "text", @@ -719,7 +719,7 @@ } }, - "time_short_one_year": "1J.", + "time_short_one_year": "1J", "@time_short_one_year": { "description": "No space is intentional, should be as few characters as possible. Since there is not much space where we show this", "type": "text", @@ -727,7 +727,7 @@ } }, - "time_short_weeks": "W.", + "time_short_weeks": "Wo.", "@time_short_weeks": { "description": "Shown in timestamps next to post to indicate how long ago the post\/notification was created for.eg 5w.Keep it as short as possible ", "type": "text", @@ -735,7 +735,7 @@ } }, - "time_short_one_week": "1W.", + "time_short_one_week": "1Wo", "@time_short_one_week": { "description": "No space is intentional, should be as few characters as possible. Since there is not much space where we show this", "type": "text", @@ -743,7 +743,7 @@ } }, - "time_short_days": "Tage", + "time_short_days": "Tg", "@time_short_days": { "description": "Shown in timestamps next to post to indicate how long ago the post\/notification was created for.eg 3d. Keep it as short as possible ", "type": "text", @@ -751,7 +751,7 @@ } }, - "time_short_one_day": "1Tag", + "time_short_one_day": "1Tg", "@time_short_one_day": { "description": "No space is intentional, should be as few characters as possible. Since there is not much space where we show this", "type": "text", @@ -759,7 +759,7 @@ } }, - "time_short_hours": "h", + "time_short_hours": "Std", "@time_short_hours": { "description": "Shown in timestamps next to post to indicate how long ago the post\/notification was created for.eg 3h.Keep it as short as possible ", "type": "text", @@ -775,7 +775,7 @@ } }, - "time_short_minutes": "m", + "time_short_minutes": "Min.", "@time_short_minutes": { "description": "Shown in timestamps next to post to indicate how long ago the post\/notification was created for.eg 13m.Keep it as short as possible ", "type": "text", @@ -783,7 +783,7 @@ } }, - "time_short_seconds": "s", + "time_short_seconds": "Sek", "@time_short_seconds": { "description": "Shown in timestamps next to post to indicate how long ago the post\/notification was created for.eg 13s Keep it as short as possible ", "type": "text", @@ -791,7 +791,7 @@ } }, - "time_short_one_minute": "1m", + "time_short_one_minute": "1Min.", "@time_short_one_minute": { "description": "No space is intentional, should be as few characters as possible. Since there is not much space where we show this", "type": "text", diff --git a/assets/i18n/de/user.arb b/assets/i18n/de/user.arb index bacd4c351..aaf6dc2ad 100644 --- a/assets/i18n/de/user.arb +++ b/assets/i18n/de/user.arb @@ -15,7 +15,7 @@ } }, - "billion_postfix": "Mrd", + "billion_postfix": " Mrd.", "@billion_postfix": { "description": "For eg. World circle has 7.5b people", "type": "text", @@ -733,7 +733,7 @@ } }, - "timeline_filters_apply_all": "Filtern", + "timeline_filters_apply_all": "Anwenden", "@timeline_filters_apply_all": { "type": "text", "placeholders": { @@ -1212,7 +1212,7 @@ } }, - "change_email_title": "E-Mail-Adresse ändern", + "change_email_title": "E-Mail ändern", "@change_email_title": { "type": "text", "placeholders": { @@ -1226,7 +1226,7 @@ } }, - "change_email_hint_text": "Gib deine neue E-Mail-Adresse ein", + "change_email_hint_text": "Gib deine neue E-Mail ein", "@change_email_hint_text": { "type": "text", "placeholders": { diff --git a/assets/i18n/en/contextual_account_search_box.arb b/assets/i18n/en/contextual_account_search_box.arb new file mode 100644 index 000000000..160c17658 --- /dev/null +++ b/assets/i18n/en/contextual_account_search_box.arb @@ -0,0 +1,8 @@ +{ + "suggestions": "Suggestions", + "@suggestions": { + "description": "The title to display on the suggestions when searching for accounts when trying to mention someone.", + "type": "text", + "placeholders": {} + } +} \ No newline at end of file diff --git a/assets/i18n/en/notifications.arb b/assets/i18n/en/notifications.arb index 6a8f01dff..32ada6b5d 100644 --- a/assets/i18n/en/notifications.arb +++ b/assets/i18n/en/notifications.arb @@ -54,6 +54,26 @@ "type": "text", "placeholders": {} }, + "comment_user_mention_title": "Post comment mention", + "@comment_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "comment_user_mention_desc": "Be notified when someone mentions you on one of their comments", + "@comment_user_mention_desc": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_title": "Post mention", + "@post_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_desc": "Be notified when someone mentions you on one of their posts", + "@post_user_mention_desc": { + "type": "text", + "placeholders": {} + }, "comment_reaction_title": "Post comment reaction", "@comment_reaction_title": { "type": "text", @@ -170,5 +190,19 @@ "placeholders": { "postCommentText": {} } + }, + "mentioned_in_post_comment_tile": "[name] [username] mentioned you on a comment: {postCommentText}", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment: hello @jamest", + "type": "text", + "placeholders": { + "postCommentText": {} + } + }, + "mentioned_in_post_tile": "[name] [username] mentioned you on a post.", + "@mentioned_in_post_tile": { + "description": "Eg.: James @jamest mentioned you on a post.", + "type": "text", + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/es/auth.arb b/assets/i18n/es-ES/auth.arb similarity index 100% rename from assets/i18n/es/auth.arb rename to assets/i18n/es-ES/auth.arb diff --git a/assets/i18n/es/community.arb b/assets/i18n/es-ES/community.arb similarity index 100% rename from assets/i18n/es/community.arb rename to assets/i18n/es-ES/community.arb diff --git a/assets/i18n/es-ES/contextual_account_search_box.arb b/assets/i18n/es-ES/contextual_account_search_box.arb new file mode 100644 index 000000000..038d18744 --- /dev/null +++ b/assets/i18n/es-ES/contextual_account_search_box.arb @@ -0,0 +1,10 @@ +{ + "suggestions": "Sugerencias", + "@suggestions": { + "description": "The title to display on the suggestions when searching for accounts when trying to mention someone.", + "type": "text", + "placeholders": { + + } + } +} \ No newline at end of file diff --git a/assets/i18n/es/drawer.arb b/assets/i18n/es-ES/drawer.arb similarity index 100% rename from assets/i18n/es/drawer.arb rename to assets/i18n/es-ES/drawer.arb diff --git a/assets/i18n/es/error.arb b/assets/i18n/es-ES/error.arb similarity index 100% rename from assets/i18n/es/error.arb rename to assets/i18n/es-ES/error.arb diff --git a/assets/i18n/es/moderation.arb b/assets/i18n/es-ES/moderation.arb similarity index 100% rename from assets/i18n/es/moderation.arb rename to assets/i18n/es-ES/moderation.arb diff --git a/assets/i18n/es/notifications.arb b/assets/i18n/es-ES/notifications.arb similarity index 71% rename from assets/i18n/es/notifications.arb rename to assets/i18n/es-ES/notifications.arb index daf2f4678..548b53f90 100644 --- a/assets/i18n/es/notifications.arb +++ b/assets/i18n/es-ES/notifications.arb @@ -2,198 +2,164 @@ "settings_title": "Configuración de notificaciones", "@settings_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_title": "Notificaciones", "@general_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_desc": "Se notificado cuando ocurra algo", "@general_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_title": "Seguir", "@follow_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_desc": "Se notificado cuando alguien comienza a seguirte", "@follow_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_title": "Solicitud de conexión", "@connection_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_desc": "Se notificado cuando alguien quiere conectar contigo", "@connection_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_title": "Comentario", "@comment_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_desc": "Se notificado cuando alguien comente en uno de tus posts o en uno que tu también comentaste.", "@comment_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_title": "Respuestas", "@comment_reply_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_desc": "Se notificado cuando alguien responde a uno de tus comentarios o a uno que tu también comentaste.", "@comment_reply_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} + }, + "comment_user_mention_title": "Menciónes en comentarios", + "@comment_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "comment_user_mention_desc": "Ser notificado cuando alguien te mencione en uno de sus comentarios", + "@comment_user_mention_desc": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_title": "Menciónes en posts", + "@post_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_desc": "Ser notificado cuando alguien te mencione en uno de sus mensajes", + "@post_user_mention_desc": { + "type": "text", + "placeholders": {} }, "comment_reaction_title": "Reacción a comentario", "@comment_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reaction_desc": "Se notificado cuando alguien reacciona en uno de tus comentarios.", "@comment_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_title": "Reacción a post", "@post_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_desc": "Se notificado cuando alguien reacciona en uno de tus posts.", "@post_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_title": "Invitación a comunidad", "@community_invite_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_desc": "Se notificado cuando alguien te invita a unirte a una comunidad.", "@community_invite_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_notifications": "Activar notifications de post", "@mute_post_turn_on_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_notifications": "Desactivar notificaciones de post", "@mute_post_turn_off_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_comment_notifications": "Activar notificaciones de comentarios", "@mute_post_turn_on_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_comment_notifications": "Desactivar notificaciones de comentarios", "@mute_post_turn_off_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_request_tile": "[name] [username] quiere conectar contigo.", "@connection_request_tile": { "description": "Eg.: James @jamest wants to connect with you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "accepted_connection_request_tile": ". [name] [username] aceptó tu solicitud de conexión.", "@accepted_connection_request_tile": { "description": "Eg.: James @jamest accepted your connection request.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_tile": "[name] [username] reaccionó a tu post.", "@reacted_to_post_tile": { "description": "Eg.: James @jamest reacted to your post.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_comment_tile": "[name] [username] reaccionó a tu comentario.", "@reacted_to_post_comment_tile": { "description": "Eg.: James @jamest reacted to your post comment.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "following_you_tile": "[name] [username] ahora te sigue.", "@following_you_tile": { "description": "Eg.: James @jamest is now following you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "user_community_invite_tile": "[name] [username] te ha invitado a unirte a la comunidad \/c\/{communityName}.", "@user_community_invite_tile": { "description": "Eg.: James @jamest has invited you to join community \/c\/okuna.", "type": "text", "placeholders": { - "communityName": { - - } + "communityName": {} } }, "comment_reply_notification_tile_user_replied": "[name] [username] respondió: {postCommentText}", @@ -201,36 +167,42 @@ "description": "For.eg. James @jamest replied.", "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_reply_notification_tile_user_also_replied": "[name] [username] también respondió: {postCommentText}", "@comment_reply_notification_tile_user_also_replied": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_commented": "[name] [username] comentó en tu post: {postCommentText}", "@comment_comment_notification_tile_user_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_also_commented": "[name] [username] también comentó: {postCommentText}", "@comment_comment_notification_tile_user_also_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} + } + }, + "mentioned_in_post_comment_tile": "[name] [username] te mencionó en un comentario: {postCommentText}", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment: hello @jamest", + "type": "text", + "placeholders": { + "postCommentText": {} } + }, + "mentioned_in_post_tile": "[name] [username] te mencionó en un post.", + "@mentioned_in_post_tile": { + "description": "Eg.: James @jamest mentioned you on a post.", + "type": "text", + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/es/post.arb b/assets/i18n/es-ES/post.arb similarity index 100% rename from assets/i18n/es/post.arb rename to assets/i18n/es-ES/post.arb diff --git a/assets/i18n/es/user.arb b/assets/i18n/es-ES/user.arb similarity index 100% rename from assets/i18n/es/user.arb rename to assets/i18n/es-ES/user.arb diff --git a/assets/i18n/es/user_search.arb b/assets/i18n/es-ES/user_search.arb similarity index 100% rename from assets/i18n/es/user_search.arb rename to assets/i18n/es-ES/user_search.arb diff --git a/assets/i18n/fr/contextual_account_search_box.arb b/assets/i18n/fr/contextual_account_search_box.arb new file mode 100644 index 000000000..3788bd9b7 --- /dev/null +++ b/assets/i18n/fr/contextual_account_search_box.arb @@ -0,0 +1,10 @@ +{ + "suggestions": "Suggestions", + "@suggestions": { + "description": "The title to display on the suggestions when searching for accounts when trying to mention someone.", + "type": "text", + "placeholders": { + + } + } +} \ No newline at end of file diff --git a/assets/i18n/fr/notifications.arb b/assets/i18n/fr/notifications.arb index 095054cc5..1c1876e51 100644 --- a/assets/i18n/fr/notifications.arb +++ b/assets/i18n/fr/notifications.arb @@ -2,198 +2,164 @@ "settings_title": "Paramètres de notifications", "@settings_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_title": "Notifications", "@general_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_desc": "Soyez averti.e lorsque quelque chose se produit", "@general_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_title": "Nouvel.le abonné.e", "@follow_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_desc": "Soyez averti.e lorsque quelqu'un s'abonne à vous", "@follow_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_title": "Demande de connexion", "@connection_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_desc": "Soyez averti.e lorsque quelqu'un veut se connecter avec vous", "@connection_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_title": "Commentaire sur l'une de vos publications", "@comment_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_desc": "Soyez averti.e lorsque quelqu'un commente sur l'une de vos publications ou une sur laquelle vous avez commenté", "@comment_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_title": "Réponse à l'un de vos commentaires sur une publication", "@comment_reply_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_desc": "Soyez averti.e lorsque quelqu'un répond à l'un de vos commentaires ou un auquel vous avez aussi répondu", "@comment_reply_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} + }, + "comment_user_mention_title": "Mention sur un commentaire d'une publication", + "@comment_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "comment_user_mention_desc": "Soyez averti.e lorsque quelqu'un vous mentionne sur l'un de leurs commentaires", + "@comment_user_mention_desc": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_title": "Mention sur une publication", + "@post_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_desc": "Soyez averti.e lorsque quelqu'un vous mentionne sur l'une de leurs publications", + "@post_user_mention_desc": { + "type": "text", + "placeholders": {} }, "comment_reaction_title": "Réaction à l'un de vos commentaires sur une publication", "@comment_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reaction_desc": "Soyez averti.e lorsque quelqu'un réagit à l'un de vos commentaires sur une publication", "@comment_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_title": "Réaction sur l'une de vos publications", "@post_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_desc": "Soyez averti.e lorsque quelqu'un réagit à l'une de vos publications", "@post_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_title": "Invitation à une communauté", "@community_invite_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_desc": "Soyez averti.e lorsque quelqu'un vous invite à rejoindre une communauté", "@community_invite_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_notifications": "Activer les notifications de publications", "@mute_post_turn_on_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_notifications": "Désactiver les notifications de publications", "@mute_post_turn_off_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_comment_notifications": "Activer les notifications de commentaires sur les publications", "@mute_post_turn_on_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_comment_notifications": "Désactiver les notifications de commentaires sur les publications", "@mute_post_turn_off_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_request_tile": "[name] · [username] veut se connecter avec vous.", "@connection_request_tile": { "description": "Eg.: James @jamest wants to connect with you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "accepted_connection_request_tile": "[name] · [username] a accepté votre demande de connexion.", "@accepted_connection_request_tile": { "description": "Eg.: James @jamest accepted your connection request.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_tile": "[name] · [username] a réagi à votre publication.", "@reacted_to_post_tile": { "description": "Eg.: James @jamest reacted to your post.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_comment_tile": "[name] · [username] a réagi à votre commentaire sur une publication.", "@reacted_to_post_comment_tile": { "description": "Eg.: James @jamest reacted to your post comment.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "following_you_tile": "[name] · [username] est maintenant l'un.e de vos abonné.e.s", "@following_you_tile": { "description": "Eg.: James @jamest is now following you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "user_community_invite_tile": "[name] · [username] vous a invité.e à rejoindre la communauté \/c\/{communityName}.", "@user_community_invite_tile": { "description": "Eg.: James @jamest has invited you to join community \/c\/okuna.", "type": "text", "placeholders": { - "communityName": { - - } + "communityName": {} } }, "comment_reply_notification_tile_user_replied": "[name] · [username] a répondu : {postCommentText}", @@ -201,36 +167,42 @@ "description": "For.eg. James @jamest replied.", "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_reply_notification_tile_user_also_replied": "[name] · [username] a aussi répondu : {postCommentText}", "@comment_reply_notification_tile_user_also_replied": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_commented": "[name] · [username] a commenté sur votre publication : {postCommentText}", "@comment_comment_notification_tile_user_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_also_commented": "[name] · [username] a également commenté : {postCommentText}", "@comment_comment_notification_tile_user_also_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} + } + }, + "mentioned_in_post_comment_tile": "[name] [username] vous a mentionné.e sur un commentaire: {postCommentText}", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment: hello @jamest", + "type": "text", + "placeholders": { + "postCommentText": {} } + }, + "mentioned_in_post_tile": "[name] [username] vous a mentionné.e sur une publication.", + "@mentioned_in_post_tile": { + "description": "Eg.: James @jamest mentioned you on a post.", + "type": "text", + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/it/contextual_account_search_box.arb b/assets/i18n/it/contextual_account_search_box.arb new file mode 100644 index 000000000..fb26c17c3 --- /dev/null +++ b/assets/i18n/it/contextual_account_search_box.arb @@ -0,0 +1,10 @@ +{ + "suggestions": "Suggerimenti", + "@suggestions": { + "description": "The title to display on the suggestions when searching for accounts when trying to mention someone.", + "type": "text", + "placeholders": { + + } + } +} \ No newline at end of file diff --git a/assets/i18n/it/notifications.arb b/assets/i18n/it/notifications.arb index 2747c57f3..08a2bb4c6 100644 --- a/assets/i18n/it/notifications.arb +++ b/assets/i18n/it/notifications.arb @@ -2,198 +2,164 @@ "settings_title": "Impostazioni Notifiche", "@settings_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_title": "Notifiche", "@general_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_desc": "Ricevi notifiche quando succede qualcosa", "@general_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_title": "Segui", "@follow_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_desc": "Ricevi una notifica quando qualcuno inizia a seguirti", "@follow_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_title": "Richiesta di connessione", "@connection_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_desc": "Ricevi una notifica quando qualcuno desidera connettersi con te", "@connection_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_title": "Pubblica commento", "@comment_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_desc": "Ricevi una notifica quando qualcuno commenta un tuo post o un post che hai commentato.", "@comment_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_title": "Risposta al commento", "@comment_reply_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_desc": "Ricevi una notifica quando qualcuno risponde a un tuo post o a un post a cui hai risposto.", "@comment_reply_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} + }, + "comment_user_mention_title": "Menzione nel commento di un post", + "@comment_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "comment_user_mention_desc": "Ricevi una notifica quando qualcuno ti cita su uno dei suoi commenti", + "@comment_user_mention_desc": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_title": "Menzione in un post", + "@post_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_desc": "Ricevi una notifica quando qualcuno ti cita su uno dei suoi post", + "@post_user_mention_desc": { + "type": "text", + "placeholders": {} }, "comment_reaction_title": "Pubblica reaction al commento", "@comment_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reaction_desc": "Ricevi una notifica quando qualcuno reagisce a uno dei tuoi commenti.", "@comment_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_title": "Pubblica reaction", "@post_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_desc": "Ricevi una notifica quando qualcuno reagisce a uno dei tuoi post.", "@post_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_title": "Invito comunità", "@community_invite_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_desc": "Ricevi una notifica quando qualcuno ti invita unirti a una comunità.", "@community_invite_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_notifications": "Attiva notifiche ai post", "@mute_post_turn_on_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_notifications": "Disattiva notifiche ai post", "@mute_post_turn_off_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_comment_notifications": "Attiva notifiche ai commenti dei post", "@mute_post_turn_on_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_comment_notifications": "Disattiva notifiche ai commenti dei post", "@mute_post_turn_off_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_request_tile": "[name] [username] vuole connettersi con te.", "@connection_request_tile": { "description": "Eg.: James @jamest wants to connect with you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "accepted_connection_request_tile": "[name] [username] ha accettato la tua richiesta di connessione.", "@accepted_connection_request_tile": { "description": "Eg.: James @jamest accepted your connection request.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_tile": "[name] [username] ha reagito al tuo post.", "@reacted_to_post_tile": { "description": "Eg.: James @jamest reacted to your post.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_comment_tile": "[name] [username] ha reagito al tuo commento.", "@reacted_to_post_comment_tile": { "description": "Eg.: James @jamest reacted to your post comment.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "following_you_tile": "[name] [username] ha iniziato a seguirti.", "@following_you_tile": { "description": "Eg.: James @jamest is now following you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "user_community_invite_tile": "[name] [username] ti ha invitato a unirti alla comunità \/c\/{communityName}.", "@user_community_invite_tile": { "description": "Eg.: James @jamest has invited you to join community \/c\/okuna.", "type": "text", "placeholders": { - "communityName": { - - } + "communityName": {} } }, "comment_reply_notification_tile_user_replied": "[name] [username] ha risposto: {postCommentText}", @@ -201,36 +167,42 @@ "description": "For.eg. James @jamest replied.", "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_reply_notification_tile_user_also_replied": "anche [name] [username] ha risposto: {postCommentText}", "@comment_reply_notification_tile_user_also_replied": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_commented": "[name] [username] ha commentato il tuo post: {postCommentText}", "@comment_comment_notification_tile_user_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_also_commented": "anche [name] [username] ha commentato il tuo post: {postCommentText}", "@comment_comment_notification_tile_user_also_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} + } + }, + "mentioned_in_post_comment_tile": "[name] [username] ti ha menzionato in un commento: {postCommentText}", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment: hello @jamest", + "type": "text", + "placeholders": { + "postCommentText": {} } + }, + "mentioned_in_post_tile": "[name] [username] ti ha menzionato in un post.", + "@mentioned_in_post_tile": { + "description": "Eg.: James @jamest mentioned you on a post.", + "type": "text", + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/pt-BR/contextual_account_search_box.arb b/assets/i18n/pt-BR/contextual_account_search_box.arb new file mode 100644 index 000000000..9df038403 --- /dev/null +++ b/assets/i18n/pt-BR/contextual_account_search_box.arb @@ -0,0 +1,10 @@ +{ + "suggestions": "Sugestões", + "@suggestions": { + "description": "The title to display on the suggestions when searching for accounts when trying to mention someone.", + "type": "text", + "placeholders": { + + } + } +} \ No newline at end of file diff --git a/assets/i18n/pt-BR/notifications.arb b/assets/i18n/pt-BR/notifications.arb index 9e914d137..b9f90a6fc 100644 --- a/assets/i18n/pt-BR/notifications.arb +++ b/assets/i18n/pt-BR/notifications.arb @@ -2,198 +2,164 @@ "settings_title": "Configurações de notificação", "@settings_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_title": "Notificações", "@general_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_desc": "Seja notificado(a) quando algo acontecer", "@general_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_title": "Seguidores", "@follow_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_desc": "Seja notificado(a) quando alguém começar a segui-lo(a)", "@follow_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_title": "Pedidos de conexão", "@connection_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_desc": "Seja notificado(a) quando alguém quiser se conectar com você", "@connection_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_title": "Comentários", "@comment_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_desc": "Seja notificado(a) quando alguém comentar uma das suas publicações ou uma que você também comentou.", "@comment_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_title": "Respostas aos comentários", "@comment_reply_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_desc": "Seja notificado(a) quando alguém responder a um dos seus comentários ou a um que você também respondeu.", "@comment_reply_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} + }, + "comment_user_mention_title": "Menções em comentários", + "@comment_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "comment_user_mention_desc": "Seja notificado(a) quando alguém mencionar você em um comentário", + "@comment_user_mention_desc": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_title": "Menções em publicações", + "@post_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_desc": "Seja notificado(a) quando alguém mencionar você em uma publicação", + "@post_user_mention_desc": { + "type": "text", + "placeholders": {} }, "comment_reaction_title": "Reações a comentários", "@comment_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reaction_desc": "Seja notificado(a) quando alguém reage a um dos seus comentários.", "@comment_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_title": "Reações aos posts", "@post_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_desc": "Seja notificado(a) quando alguém reage a uma das suas publicações.", "@post_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_title": "Convites para comunidades", "@community_invite_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_desc": "Seja notificado(a) quando alguém convida você para entrar em uma comunidade.", "@community_invite_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_notifications": "Ativar notificações do post", "@mute_post_turn_on_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_notifications": "Desativar notificações do post", "@mute_post_turn_off_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_comment_notifications": "Ativar notificações do comentário", "@mute_post_turn_on_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_comment_notifications": "Desativar notificações do comentário", "@mute_post_turn_off_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_request_tile": "[name] [username] quer se conectar com você.", "@connection_request_tile": { "description": "Eg.: James @jamest wants to connect with you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "accepted_connection_request_tile": "[name] [username] aceitou seu pedido de conexão.", "@accepted_connection_request_tile": { "description": "Eg.: James @jamest accepted your connection request.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_tile": "[name] [username] reagiu à sua publicação.", "@reacted_to_post_tile": { "description": "Eg.: James @jamest reacted to your post.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_comment_tile": "[name] [username] reagiu ao seu comentário.", "@reacted_to_post_comment_tile": { "description": "Eg.: James @jamest reacted to your post comment.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "following_you_tile": "[name] [username] está te seguindo agora.", "@following_you_tile": { "description": "Eg.: James @jamest is now following you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "user_community_invite_tile": "[name] [username] convidou você para se juntar à comunidade \/c\/{communityName}.", "@user_community_invite_tile": { "description": "Eg.: James @jamest has invited you to join community \/c\/okuna.", "type": "text", "placeholders": { - "communityName": { - - } + "communityName": {} } }, "comment_reply_notification_tile_user_replied": "[name] [username] respondeu: {postCommentText}", @@ -201,36 +167,42 @@ "description": "For.eg. James @jamest replied.", "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_reply_notification_tile_user_also_replied": "[name] [username] também respondeu: {postCommentText}", "@comment_reply_notification_tile_user_also_replied": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_commented": "[name] [username] comentou no seu post: {postCommentText}", "@comment_comment_notification_tile_user_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_also_commented": "[name] [username] também comentou: {postCommentText}", "@comment_comment_notification_tile_user_also_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} + } + }, + "mentioned_in_post_comment_tile": "[name] [username] mencionou você em um comentário: {postCommentText}", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment: hello @jamest", + "type": "text", + "placeholders": { + "postCommentText": {} } + }, + "mentioned_in_post_tile": "[name] [username] mencionou você em uma publicação.", + "@mentioned_in_post_tile": { + "description": "Eg.: James @jamest mentioned you on a post.", + "type": "text", + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/sv/auth.arb b/assets/i18n/sv-SE/auth.arb similarity index 100% rename from assets/i18n/sv/auth.arb rename to assets/i18n/sv-SE/auth.arb diff --git a/assets/i18n/sv/community.arb b/assets/i18n/sv-SE/community.arb similarity index 100% rename from assets/i18n/sv/community.arb rename to assets/i18n/sv-SE/community.arb diff --git a/assets/i18n/sv/drawer.arb b/assets/i18n/sv-SE/drawer.arb similarity index 100% rename from assets/i18n/sv/drawer.arb rename to assets/i18n/sv-SE/drawer.arb diff --git a/assets/i18n/sv/error.arb b/assets/i18n/sv-SE/error.arb similarity index 100% rename from assets/i18n/sv/error.arb rename to assets/i18n/sv-SE/error.arb diff --git a/assets/i18n/sv/moderation.arb b/assets/i18n/sv-SE/moderation.arb similarity index 100% rename from assets/i18n/sv/moderation.arb rename to assets/i18n/sv-SE/moderation.arb diff --git a/assets/i18n/sv/notifications.arb b/assets/i18n/sv-SE/notifications.arb similarity index 71% rename from assets/i18n/sv/notifications.arb rename to assets/i18n/sv-SE/notifications.arb index e9473417e..3d1d6554b 100644 --- a/assets/i18n/sv/notifications.arb +++ b/assets/i18n/sv-SE/notifications.arb @@ -2,198 +2,164 @@ "settings_title": "Aviseringsinställningar", "@settings_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_title": "Aviseringar", "@general_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_desc": "Bli meddelad när något händer", "@general_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_title": "Följare", "@follow_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_desc": "Bli meddelad när någon börjar följa dig", "@follow_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_title": "Kontaktförfrågan", "@connection_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_desc": "Bli meddelad när någon vill ha dig som kontakt", "@connection_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_title": "Kommentar på inlägg", "@comment_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_desc": "Bli meddelad när någon kommenterar på ett av dina inlägg eller ett inlägg du också kommenterat på.", "@comment_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, - "comment_reply_title": "Svar på kommentar på inlägg", + "comment_reply_title": "Svar på kommentar", "@comment_reply_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_desc": "Bli meddelad när någon svarar på en av dina kommentarer eller en kommentar du också svarat på.", "@comment_reply_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} + }, + "comment_user_mention_title": "Omnämnande i kommentar", + "@comment_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "comment_user_mention_desc": "Bli meddelad när någon nämner dig i en av sina kommentarer", + "@comment_user_mention_desc": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_title": "Omnämnande i inlägg", + "@post_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_desc": "Bli meddelad när någon nämner dig i ett av sina inlägg", + "@post_user_mention_desc": { + "type": "text", + "placeholders": {} }, "comment_reaction_title": "Reaktion på kommentar", "@comment_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reaction_desc": "Bli meddelad när någon reagerar på en av dina inläggskommentarer.", "@comment_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_title": "Reaktion på inlägg", "@post_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_desc": "Bli meddelad när någon reagerar på ett av dina inlägg.", "@post_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_title": "Gemenskapsinbjudan", "@community_invite_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_desc": "Bli meddelad när någon bjuder in dig till en gemenskap.", "@community_invite_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_notifications": "Aktivera aviseringar för inlägg", "@mute_post_turn_on_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_notifications": "Inaktivera aviseringar för inlägg", "@mute_post_turn_off_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_comment_notifications": "Aktivera aviseringar för inläggskommentarer", "@mute_post_turn_on_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_comment_notifications": "Inaktivera aviseringar för inläggskommentarer", "@mute_post_turn_off_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_request_tile": "[name] [username] vill knyta kontakt med dig.", "@connection_request_tile": { "description": "Eg.: James @jamest wants to connect with you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "accepted_connection_request_tile": "[name] [username] accepterade din kontaktförfrågan.", "@accepted_connection_request_tile": { "description": "Eg.: James @jamest accepted your connection request.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_tile": "[name] [username] reagerade på ditt inlägg.", "@reacted_to_post_tile": { "description": "Eg.: James @jamest reacted to your post.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_comment_tile": "[name] [username] reagerade på din inläggskommentar.", "@reacted_to_post_comment_tile": { "description": "Eg.: James @jamest reacted to your post comment.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "following_you_tile": "[name] [username] har börjat följa dig.", "@following_you_tile": { "description": "Eg.: James @jamest is now following you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "user_community_invite_tile": "[name] [username] har bjudit in dig till gemenskapen \/c\/{communityName}.", "@user_community_invite_tile": { "description": "Eg.: James @jamest has invited you to join community \/c\/okuna.", "type": "text", "placeholders": { - "communityName": { - - } + "communityName": {} } }, "comment_reply_notification_tile_user_replied": "[name] [username] svarade: {postCommentText}", @@ -201,36 +167,42 @@ "description": "For.eg. James @jamest replied.", "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_reply_notification_tile_user_also_replied": "[name] [username] svarade också: {postCommentText}", "@comment_reply_notification_tile_user_also_replied": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_commented": "[name] [username] kommenterade på ditt inlägg: {postCommentText}", "@comment_comment_notification_tile_user_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_also_commented": "[name] [username] kommenterade också: {postCommentText}", "@comment_comment_notification_tile_user_also_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} + } + }, + "mentioned_in_post_comment_tile": "[name] [username] nämnde dig i en kommentar: {postCommentText}", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment: hello @jamest", + "type": "text", + "placeholders": { + "postCommentText": {} } + }, + "mentioned_in_post_tile": "[name] [username] nämnde dig i ett inlägg.", + "@mentioned_in_post_tile": { + "description": "Eg.: James @jamest mentioned you on a post.", + "type": "text", + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/sv/post.arb b/assets/i18n/sv-SE/post.arb similarity index 100% rename from assets/i18n/sv/post.arb rename to assets/i18n/sv-SE/post.arb diff --git a/assets/i18n/sv/user.arb b/assets/i18n/sv-SE/user.arb similarity index 100% rename from assets/i18n/sv/user.arb rename to assets/i18n/sv-SE/user.arb diff --git a/assets/i18n/sv/user_search.arb b/assets/i18n/sv-SE/user_search.arb similarity index 100% rename from assets/i18n/sv/user_search.arb rename to assets/i18n/sv-SE/user_search.arb diff --git a/assets/i18n/tr/auth.arb b/assets/i18n/tr/auth.arb index 4a790be85..d0f3f0fe0 100644 --- a/assets/i18n/tr/auth.arb +++ b/assets/i18n/tr/auth.arb @@ -1,5 +1,5 @@ { - "headline": "Daha iyi sosyal.", + "headline": "Daha iyi bir sosyal ağ.", "@headline": { "type": "text", "placeholders": { diff --git a/assets/i18n/tr/contextual_account_search_box.arb b/assets/i18n/tr/contextual_account_search_box.arb new file mode 100644 index 000000000..029c8ad5b --- /dev/null +++ b/assets/i18n/tr/contextual_account_search_box.arb @@ -0,0 +1,10 @@ +{ + "suggestions": "Öneriler", + "@suggestions": { + "description": "The title to display on the suggestions when searching for accounts when trying to mention someone.", + "type": "text", + "placeholders": { + + } + } +} \ No newline at end of file diff --git a/assets/i18n/tr/notifications.arb b/assets/i18n/tr/notifications.arb index 28ced21e0..5a7ae4c7e 100644 --- a/assets/i18n/tr/notifications.arb +++ b/assets/i18n/tr/notifications.arb @@ -2,198 +2,164 @@ "settings_title": "Bildirim ayarları", "@settings_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_title": "Bildirimler", "@general_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "general_desc": "Bir şey olduğunda haberdar olun", "@general_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_title": "Takip et", "@follow_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "follow_desc": "Birisi sizi takip etmeye başladığında haberdar olun", "@follow_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_title": "Bağlantı isteği", "@connection_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_desc": "Birisi sizinle bağlantı kurmak istediğinde haberdar olun", "@connection_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_title": "Gönderi yorumu", "@comment_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_desc": "Birisi gönderilerinizden biriyle veya bir yorumunuzla ilgili yorum yazdığında haberdar olun.", "@comment_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_title": "Gönderideki cevap bildirildi", "@comment_reply_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reply_desc": "Birisi yorumlarınızdan birini veya yanıtladığınız birini yanıtladığında haberdar olun.", "@comment_reply_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} + }, + "comment_user_mention_title": "Gönderi yorumunda bahsedilmesi", + "@comment_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "comment_user_mention_desc": "Birisi sizden yorumlarından birinde bahsettiğinde haberdar olun", + "@comment_user_mention_desc": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_title": "Gönderide bahsedilmesi", + "@post_user_mention_title": { + "type": "text", + "placeholders": {} + }, + "post_user_mention_desc": "Birisi gönderilerinden birinde sizden bahsettiğinde haberdar olun", + "@post_user_mention_desc": { + "type": "text", + "placeholders": {} }, "comment_reaction_title": "Yorum tepkisi gönderisi", "@comment_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "comment_reaction_desc": "Birisi yorumlarınızdan birine tepki verdiğinde haberdar olun.", "@comment_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_title": "Gönderi tepkisi", "@post_reaction_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_reaction_desc": "Birisi gönderinize yanıt verdiğinde haberdar olun.", "@post_reaction_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_title": "Topluluk daveti", "@community_invite_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "community_invite_desc": "Birisi sizi bir topluluğa katılmaya davet ettiğinde haberdar olun.", "@community_invite_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_notifications": "Gönderi bildirimlerini aç", "@mute_post_turn_on_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_notifications": "Gönderi bildirimlerini kapat", "@mute_post_turn_off_post_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_on_post_comment_notifications": "Gönderi yorumlarının bildirimlerini aç", "@mute_post_turn_on_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "mute_post_turn_off_post_comment_notifications": "Gönderi yorumlarının bildirimlerini kapat", "@mute_post_turn_off_post_comment_notifications": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "connection_request_tile": "[name] sizinle [username] kullanıcı adı ile bağlantı kurmak istiyor.", "@connection_request_tile": { "description": "Eg.: James @jamest wants to connect with you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "accepted_connection_request_tile": "[name] [username] bağlantı isteğinizi kabul etti.", "@accepted_connection_request_tile": { "description": "Eg.: James @jamest accepted your connection request.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_tile": "[name] [username] gönderinize yanıt verdi.", "@reacted_to_post_tile": { "description": "Eg.: James @jamest reacted to your post.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "reacted_to_post_comment_tile": "[name] [username] yorumunuza tepki verdi.", "@reacted_to_post_comment_tile": { "description": "Eg.: James @jamest reacted to your post comment.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "following_you_tile": "[name] [username] seni şimdi takip ediyor.", "@following_you_tile": { "description": "Eg.: James @jamest is now following you.", "type": "text", - "placeholders": { - - } + "placeholders": {} }, "user_community_invite_tile": "[name] [username] sizi \/c\/{communityName} topluluğuna davet etti.", "@user_community_invite_tile": { "description": "Eg.: James @jamest has invited you to join community \/c\/okuna.", "type": "text", "placeholders": { - "communityName": { - - } + "communityName": {} } }, "comment_reply_notification_tile_user_replied": "[name] [username] yanıtladı: {postCommentText}", @@ -201,36 +167,42 @@ "description": "For.eg. James @jamest replied.", "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_reply_notification_tile_user_also_replied": "ayrıca [name] [username] yanıtladı: {postCommentText}", "@comment_reply_notification_tile_user_also_replied": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_commented": "[name] [username] gönderinize yorum yaptı: {postCommentText}", "@comment_comment_notification_tile_user_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} } }, "comment_comment_notification_tile_user_also_commented": "Ayrıca [name] [username] yorum yaptı: {postCommentText}", "@comment_comment_notification_tile_user_also_commented": { "type": "text", "placeholders": { - "postCommentText": { - - } + "postCommentText": {} + } + }, + "mentioned_in_post_comment_tile": "[name] [username] bir yorumda sizden bahsetti: {postCommentText}", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment: hello @jamest", + "type": "text", + "placeholders": { + "postCommentText": {} } + }, + "mentioned_in_post_tile": "[name] [username] bir gönderide sizden bahsetti.", + "@mentioned_in_post_tile": { + "description": "Eg.: James @jamest mentioned you on a post.", + "type": "text", + "placeholders": {} } } \ No newline at end of file diff --git a/ios/OneSignalNotificationServiceExtension/Info.plist b/ios/OneSignalNotificationServiceExtension/Info.plist index 0342f1a46..cdf516fc7 100644 --- a/ios/OneSignalNotificationServiceExtension/Info.plist +++ b/ios/OneSignalNotificationServiceExtension/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 0.0.50 + 0.0.51 CFBundleVersion - 50 + 51 NSExtension NSExtensionPointIdentifier diff --git a/ios/Podfile.lock b/ios/Podfile.lock index aba1e0d88..37e185b64 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -23,13 +23,13 @@ PODS: - intercom_flutter (1.0.7): - Flutter - Intercom - - multi_image_picker (4.3.6): + - multi_image_picker (4.5.0): - BSImagePicker (~> 2.10.0) - Flutter - - OneSignal (2.10.0) - - onesignal_flutter (2.0.0): + - OneSignal (2.10.1) + - onesignal_flutter (2.0.2): - Flutter - - OneSignal (< 3.0, >= 2.9.5) + - OneSignal (= 2.10.1) - path_provider (0.0.1): - Flutter - share (0.5.2): @@ -49,7 +49,7 @@ PODS: DEPENDENCIES: - device_info (from `.symlinks/plugins/device_info/ios`) - - Flutter (from `.symlinks/flutter/ios`) + - Flutter (from `.symlinks/flutter/ios-release`) - flutter_exif_rotation (from `.symlinks/plugins/flutter_exif_rotation/ios`) - flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`) - image_cropper (from `.symlinks/plugins/image_cropper/ios`) @@ -80,7 +80,7 @@ EXTERNAL SOURCES: device_info: :path: ".symlinks/plugins/device_info/ios" Flutter: - :path: ".symlinks/flutter/ios" + :path: ".symlinks/flutter/ios-release" flutter_exif_rotation: :path: ".symlinks/plugins/flutter_exif_rotation/ios" flutter_secure_storage: @@ -123,9 +123,9 @@ SPEC CHECKSUMS: image_picker: 16e5fec1fbc87fd3b297c53e4048521eaf17cd06 Intercom: d189cf8cc8591e7e63dbb10ee4401a70a7fdc9d6 intercom_flutter: 46ce58645b14bb02ede6d4982268d4796ee39427 - multi_image_picker: 3a6afea72a3271d9b0bcc67d8888d38c4ff53efd - OneSignal: 0f5ff711d9f25da54885e4ab06ef0abc221a46ef - onesignal_flutter: 9f295af4ef4a987342bb374c5988392e076ccafd + multi_image_picker: d6e8f30e690884434ad13f1417567edb21da8547 + OneSignal: 8fb749fa07f88006403c9b659a570fb7fb74519a + onesignal_flutter: f0eab25765dd95978c19dc64a87a8a33387909fa path_provider: f96fff6166a8867510d2c25fdcc346327cc4b259 share: 7d22fe8baedfe93aefd864bf0b73f29711fbb0a3 shared_preferences: 1feebfa37bb57264736e16865e7ffae7fc99b523 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 76630624b..d9014f7e9 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -806,7 +806,7 @@ "${BUILT_PRODUCTS_DIR}/BSImagePicker/BSImagePicker.framework", "${BUILT_PRODUCTS_DIR}/BSImageView/BSImageView.framework", "${BUILT_PRODUCTS_DIR}/FMDB/FMDB.framework", - "${PODS_ROOT}/../.symlinks/flutter/ios/Flutter.framework", + "${PODS_ROOT}/../.symlinks/flutter/ios-release/Flutter.framework", "${BUILT_PRODUCTS_DIR}/TOCropViewController/TOCropViewController.framework", "${BUILT_PRODUCTS_DIR}/device_info/device_info.framework", "${BUILT_PRODUCTS_DIR}/flutter_exif_rotation/flutter_exif_rotation.framework", diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index 1e0750334..578bda10a 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -23,11 +23,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.0.50 + 0.0.51 CFBundleSignature ???? CFBundleVersion - 50 + 51 ITSAppUsesNonExemptEncryption LSRequiresIPhoneOS diff --git a/lib/delegates/es_es_material_localizations_delegate.dart b/lib/delegates/es_es_material_localizations_delegate.dart new file mode 100644 index 000000000..28586ca57 --- /dev/null +++ b/lib/delegates/es_es_material_localizations_delegate.dart @@ -0,0 +1,62 @@ +import 'package:Okuna/translation/constants.dart'; +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_localizations/flutter_localizations.dart'; +import 'package:intl/intl.dart' as intl; + +class MaterialLocalizationEsES extends MaterialLocalizationEs { + + const MaterialLocalizationEsES({ + String localeName = 'es-ES', + @required intl.DateFormat fullYearFormat, + @required intl.DateFormat mediumDateFormat, + @required intl.DateFormat longDateFormat, + @required intl.DateFormat yearMonthFormat, + @required intl.NumberFormat decimalFormat, + @required intl.NumberFormat twoDigitZeroPaddedFormat, + }) : super( + localeName: localeName, + fullYearFormat: fullYearFormat, + mediumDateFormat: mediumDateFormat, + longDateFormat: longDateFormat, + yearMonthFormat: yearMonthFormat, + decimalFormat: decimalFormat, + twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat, + ); +} + +class MaterialLocalizationEsESDelegate extends LocalizationsDelegate { + const MaterialLocalizationEsESDelegate(); + + @override + bool isSupported(Locale locale) { + return supportedLocales.contains(locale); + } + + @override + Future load(Locale locale) { + intl.DateFormat fullYearFormat; + intl.DateFormat mediumDateFormat; + intl.DateFormat longDateFormat; + intl.DateFormat yearMonthFormat; + intl.NumberFormat decimalFormat; + intl.NumberFormat twoDigitZeroPaddedFormat; + decimalFormat = intl.NumberFormat.decimalPattern(locale.languageCode); + twoDigitZeroPaddedFormat = intl.NumberFormat('00', locale.languageCode); + fullYearFormat = intl.DateFormat.y(locale.languageCode); + mediumDateFormat = intl.DateFormat.MMMEd(locale.languageCode); + longDateFormat = intl.DateFormat.yMMMMEEEEd(locale.languageCode); + yearMonthFormat = intl.DateFormat.yMMMM(locale.languageCode); + + return SynchronousFuture(MaterialLocalizationEsES( + fullYearFormat: fullYearFormat, + mediumDateFormat: mediumDateFormat, + longDateFormat: longDateFormat, + yearMonthFormat: yearMonthFormat, + decimalFormat: decimalFormat, + twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat + )); + } + @override + bool shouldReload(MaterialLocalizationEsESDelegate old) => false; +} \ No newline at end of file diff --git a/lib/delegates/sv_se_material_localizations_delegate.dart b/lib/delegates/sv_se_material_localizations_delegate.dart new file mode 100644 index 000000000..479dfceac --- /dev/null +++ b/lib/delegates/sv_se_material_localizations_delegate.dart @@ -0,0 +1,62 @@ +import 'package:Okuna/translation/constants.dart'; +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_localizations/flutter_localizations.dart'; +import 'package:intl/intl.dart' as intl; + +class MaterialLocalizationSvSE extends MaterialLocalizationSv { + + const MaterialLocalizationSvSE({ + String localeName = 'sv-SE', + @required intl.DateFormat fullYearFormat, + @required intl.DateFormat mediumDateFormat, + @required intl.DateFormat longDateFormat, + @required intl.DateFormat yearMonthFormat, + @required intl.NumberFormat decimalFormat, + @required intl.NumberFormat twoDigitZeroPaddedFormat, + }) : super( + localeName: localeName, + fullYearFormat: fullYearFormat, + mediumDateFormat: mediumDateFormat, + longDateFormat: longDateFormat, + yearMonthFormat: yearMonthFormat, + decimalFormat: decimalFormat, + twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat, + ); +} + +class MaterialLocalizationSvSEDelegate extends LocalizationsDelegate { + const MaterialLocalizationSvSEDelegate(); + + @override + bool isSupported(Locale locale) { + return supportedLocales.contains(locale); + } + + @override + Future load(Locale locale) { + intl.DateFormat fullYearFormat; + intl.DateFormat mediumDateFormat; + intl.DateFormat longDateFormat; + intl.DateFormat yearMonthFormat; + intl.NumberFormat decimalFormat; + intl.NumberFormat twoDigitZeroPaddedFormat; + decimalFormat = intl.NumberFormat.decimalPattern(locale.languageCode); + twoDigitZeroPaddedFormat = intl.NumberFormat('00', locale.languageCode); + fullYearFormat = intl.DateFormat.y(locale.languageCode); + mediumDateFormat = intl.DateFormat.MMMEd(locale.languageCode); + longDateFormat = intl.DateFormat.yMMMMEEEEd(locale.languageCode); + yearMonthFormat = intl.DateFormat.yMMMM(locale.languageCode); + + return SynchronousFuture(MaterialLocalizationSvSE( + fullYearFormat: fullYearFormat, + mediumDateFormat: mediumDateFormat, + longDateFormat: longDateFormat, + yearMonthFormat: yearMonthFormat, + decimalFormat: decimalFormat, + twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat + )); + } + @override + bool shouldReload(MaterialLocalizationSvSEDelegate old) => false; +} \ No newline at end of file diff --git a/lib/locale/messages_all.dart b/lib/locale/messages_all.dart index 62b15e161..a293f364f 100644 --- a/lib/locale/messages_all.dart +++ b/lib/locale/messages_all.dart @@ -11,11 +11,11 @@ import 'package:intl/src/intl_helpers.dart'; import 'messages_de.dart' as messages_de; import 'messages_en.dart' as messages_en; -import 'messages_es.dart' as messages_es; +import 'messages_es-ES.dart' as messages_es_es; import 'messages_fr.dart' as messages_fr; import 'messages_it.dart' as messages_it; import 'messages_pt-BR.dart' as messages_pt_br; -import 'messages_sv.dart' as messages_sv; +import 'messages_sv-SE.dart' as messages_sv_se; import 'messages_tr.dart' as messages_tr; typedef Future LibraryLoader(); @@ -25,7 +25,7 @@ Map _deferredLibraries = { // ignore: unnecessary_new 'en': () => new Future.value(null), // ignore: unnecessary_new - 'es': () => new Future.value(null), + 'es_ES': () => new Future.value(null), // ignore: unnecessary_new 'fr': () => new Future.value(null), // ignore: unnecessary_new @@ -33,7 +33,7 @@ Map _deferredLibraries = { // ignore: unnecessary_new 'pt_BR': () => new Future.value(null), // ignore: unnecessary_new - 'sv': () => new Future.value(null), + 'sv_SE': () => new Future.value(null), // ignore: unnecessary_new 'tr': () => new Future.value(null), }; @@ -44,16 +44,16 @@ MessageLookupByLibrary _findExact(localeName) { return messages_de.messages; case 'en': return messages_en.messages; - case 'es': - return messages_es.messages; + case 'es_ES': + return messages_es_es.messages; case 'fr': return messages_fr.messages; case 'it': return messages_it.messages; case 'pt_BR': return messages_pt_br.messages; - case 'sv': - return messages_sv.messages; + case 'sv_SE': + return messages_sv_se.messages; case 'tr': return messages_tr.messages; default: diff --git a/lib/locale/messages_de.dart b/lib/locale/messages_de.dart index b7d2ae419..6ed5e326b 100644 --- a/lib/locale/messages_de.dart +++ b/lib/locale/messages_de.dart @@ -68,73 +68,75 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] hat geantwortet: ${postCommentText}"; - static m24(communityName) => "[name] [username] hat dich in die Community /c/${communityName} eingeladen."; + static m24(postCommentText) => "[name] [username] hat dich in einem Kommentar erwähnt: ${postCommentText}"; - static m25(maxLength) => "Ein Kommentar darf nicht mehr als ${maxLength} Zeichen haben."; + static m25(communityName) => "[name] [username] hat dich in die Community /c/${communityName} eingeladen."; - static m26(commentsCount) => "Alle ${commentsCount} Kommentare anzeigen"; + static m26(maxLength) => "Ein Kommentar darf nicht länger als ${maxLength} Zeichen lang sein."; - static m27(circlesSearchQuery) => "\'Keine Kreise mit \'${circlesSearchQuery} \' gefunden."; + static m27(commentsCount) => "Alle ${commentsCount} Kommentare anzeigen"; - static m28(name) => "${name} hat noch nichts geteilt."; + static m28(circlesSearchQuery) => "\'Keine Kreise mit \'${circlesSearchQuery} \' gefunden."; - static m29(postCreatorUsername) => "@${postCreatorUsername}\'s Kreise"; + static m29(name) => "${name} hat noch nichts geteilt."; - static m30(maxLength) => "Der Name des Kreises darf nicht länger als ${maxLength} Zeichen lang sein."; + static m30(postCreatorUsername) => "@${postCreatorUsername}\'s Kreise"; - static m31(prettyUsersCount) => "${prettyUsersCount} Personen"; + static m31(maxLength) => "Der Name des Kreises darf nicht länger als ${maxLength} Zeichen lang sein."; - static m32(username) => "Bist du dir sicher, dass du @${username} blockieren möchtest?"; + static m32(prettyUsersCount) => "${prettyUsersCount} Personen"; - static m33(userName) => "Verbindung mit ${userName} bestätigen"; + static m33(username) => "Bist du dir sicher, dass du @${username} blockieren möchtest?"; - static m34(userName) => "Mit ${userName} verbinden"; + static m34(userName) => "Verbindung mit ${userName} bestätigen"; - static m35(userName) => "Verbindung mit ${userName} trennen"; + static m35(userName) => "Mit ${userName} verbinden"; - static m36(limit) => "Bild ist zu groß (Max: ${limit} MB)"; + static m36(userName) => "Verbindung mit ${userName} trennen"; - static m37(username) => "Benutzername @${username} ist bereits vergeben"; + static m37(limit) => "Bild ist zu groß (Max: ${limit} MB)"; - static m38(searchQuery) => "Kein Emoji mit ${searchQuery} gefunden."; + static m38(username) => "Benutzername @${username} ist bereits vergeben"; - static m39(searchQuery) => "Keine Liste zu \'${searchQuery}\' gefunden"; + static m39(searchQuery) => "Kein Emoji mit ${searchQuery} gefunden."; - static m40(prettyUsersCount) => "${prettyUsersCount} Accounts"; + static m40(searchQuery) => "Keine Liste zu \'${searchQuery}\' gefunden"; static m41(prettyUsersCount) => "${prettyUsersCount} Accounts"; - static m42(groupName) => "Alle ${groupName} anzeigen"; + static m42(prettyUsersCount) => "${prettyUsersCount} Accounts"; - static m43(iosLink, androidLink, inviteLink) => "Hey, ich möchte dich zu Okuna einladen. Erstens, lade die App auf iTunes (${iosLink}) oder im Play Store (${androidLink}) herunter. Zweitens, füge den personalisierten Einladungslink in das Formular \"Anmelden\" in der Okuna App ein: ${inviteLink}"; + static m43(groupName) => "Alle ${groupName} anzeigen"; - static m44(username) => "Mit dem Benutzernamen @${username} beigetreten"; + static m44(iosLink, androidLink, inviteLink) => "Hey, ich möchte dich zu Okuna einladen. Erstens, lade die App auf iTunes (${iosLink}) oder im Play Store (${androidLink}) herunter. Zweitens, füge den personalisierten Einladungslink in das Formular \"Anmelden\" in der Okuna App ein: ${inviteLink}"; - static m45(email) => "Ausstehend, Einladung an ${email} gesendet"; + static m45(username) => "Mit dem Benutzernamen @${username} beigetreten"; - static m46(maxLength) => "Der Listenname darf nicht länger als ${maxLength} Zeichen lang sein."; + static m46(email) => "Ausstehend, Einladung an ${email} gesendet"; - static m47(maxLength) => "\'Über mich\' darf nicht länger als ${maxLength} Zeichen lang sein."; + static m47(maxLength) => "Der Listenname darf nicht länger als ${maxLength} Zeichen lang sein."; - static m48(maxLength) => "Ort darf nicht länger als ${maxLength} Zeichen lang sein."; + static m48(maxLength) => "\'Über mich\' darf nicht länger als ${maxLength} Zeichen lang sein."; - static m49(takenConnectionsCircleName) => "Kreisname \'${takenConnectionsCircleName}\' bereits vergeben"; + static m49(maxLength) => "Ort darf nicht länger als ${maxLength} Zeichen lang sein."; - static m50(listName) => "Name der Liste ${listName} bereits vergeben"; + static m50(takenConnectionsCircleName) => "Kreisname \'${takenConnectionsCircleName}\' bereits vergeben"; - static m51(searchQuery) => "Keine Ergebnisse für ${searchQuery}."; + static m51(listName) => "Name der Liste ${listName} bereits vergeben"; - static m52(resourcePluralName) => "Keine ${resourcePluralName} gefunden."; + static m52(searchQuery) => "Keine Ergebnisse für ${searchQuery}."; - static m53(resourcePluralName) => "Suche ${resourcePluralName} ..."; + static m53(resourcePluralName) => "Keine ${resourcePluralName} gefunden."; - static m54(searchQuery) => "Keine Communities zu \'${searchQuery}\' gefunden."; + static m54(resourcePluralName) => "Suche ${resourcePluralName} ..."; - static m55(searchQuery) => "Keine Suchergebnisse für \'${searchQuery}\'."; + static m55(searchQuery) => "Keine Communities zu \'${searchQuery}\' gefunden."; - static m56(searchQuery) => "Keine Benutzer für \'${searchQuery}\' gefunden."; + static m56(searchQuery) => "Keine Suchergebnisse für \'${searchQuery}\'."; - static m57(searchQuery) => "Suche nach ${searchQuery}"; + static m57(searchQuery) => "Keine Benutzer für \'${searchQuery}\' gefunden."; + + static m58(searchQuery) => "Suche nach ${searchQuery}"; final messages = _notInlinedMessages(_notInlinedMessages); static _notInlinedMessages(_) => { @@ -153,7 +155,7 @@ class MessageLookup extends MessageLookupByLibrary { "auth__create_acc__avatar_choose_gallery" : MessageLookupByLibrary.simpleMessage("Vorhandenes Bild auswählen"), "auth__create_acc__avatar_remove_photo" : MessageLookupByLibrary.simpleMessage("Bild entfernen"), "auth__create_acc__avatar_tap_to_change" : MessageLookupByLibrary.simpleMessage("Zum Ändern tippen"), - "auth__create_acc__can_change_username" : MessageLookupByLibrary.simpleMessage("Wenn du möchtest, kannst du es jederzeit über deine Profilseite ändern."), + "auth__create_acc__can_change_username" : MessageLookupByLibrary.simpleMessage("Wenn du möchtest, kannst du ihn jederzeit über deine Profilseite ändern."), "auth__create_acc__congratulations" : MessageLookupByLibrary.simpleMessage("Herzlichen Glückwunsch!"), "auth__create_acc__create_account" : MessageLookupByLibrary.simpleMessage("Account erstellen"), "auth__create_acc__done" : MessageLookupByLibrary.simpleMessage("Account erstellen"), @@ -167,12 +169,12 @@ class MessageLookup extends MessageLookupByLibrary { "auth__create_acc__email_placeholder" : MessageLookupByLibrary.simpleMessage("fritz_fantom@mail.de"), "auth__create_acc__email_server_error" : MessageLookupByLibrary.simpleMessage("😭 Ein Serverproblem ist aufgetreten, bitte versuche es später noch einmal."), "auth__create_acc__email_taken_error" : MessageLookupByLibrary.simpleMessage("🤔 Es gibt bereits einen Account mit dieser E-Mail."), - "auth__create_acc__lets_get_started" : MessageLookupByLibrary.simpleMessage("Fangen wir an"), + "auth__create_acc__lets_get_started" : MessageLookupByLibrary.simpleMessage("Los geht\'s"), "auth__create_acc__link_empty_error" : MessageLookupByLibrary.simpleMessage("Link darf nicht leer sein."), "auth__create_acc__link_invalid_error" : MessageLookupByLibrary.simpleMessage("Dieser Link scheint ungültig zu sein."), "auth__create_acc__name_characters_error" : MessageLookupByLibrary.simpleMessage("😅 Ein Name kann nur alphanumerische Zeichen enthalten (momentan)."), "auth__create_acc__name_empty_error" : MessageLookupByLibrary.simpleMessage("😱 Dein Name darf nicht leer sein."), - "auth__create_acc__name_length_error" : MessageLookupByLibrary.simpleMessage("😱 Dein Name darf maximal 50 Zeichen haben. (Falls er länger ist, tut es uns sehr Leid)"), + "auth__create_acc__name_length_error" : MessageLookupByLibrary.simpleMessage("😱 Dein Name darf nicht länger als 50 Zeichen lang sein. (Wenn er das tatsächlich ist, tut uns das sehr leid.)"), "auth__create_acc__name_placeholder" : MessageLookupByLibrary.simpleMessage("Fritz Fantom"), "auth__create_acc__next" : MessageLookupByLibrary.simpleMessage("Weiter"), "auth__create_acc__one_last_thing" : MessageLookupByLibrary.simpleMessage("Eine letzte Sache..."), @@ -184,8 +186,8 @@ class MessageLookup extends MessageLookupByLibrary { "auth__create_acc__previous" : MessageLookupByLibrary.simpleMessage("Zurück"), "auth__create_acc__register" : MessageLookupByLibrary.simpleMessage("Registrieren"), "auth__create_acc__request_invite" : MessageLookupByLibrary.simpleMessage("Keine Einladung? Fordere hier eine an."), - "auth__create_acc__submit_error_desc_server" : MessageLookupByLibrary.simpleMessage("😭 Wir haben derzeit Probleme mit unseren Servern, versuch es in ein paar Minuten erneut."), - "auth__create_acc__submit_error_desc_validation" : MessageLookupByLibrary.simpleMessage("😅 Es sieht so aus, als ob einige Informationen nicht korrekt waren, überprüfe diese und versuch es erneut."), + "auth__create_acc__submit_error_desc_server" : MessageLookupByLibrary.simpleMessage("😭 Ein Serverproblem ist aufgetreten, bitte versuche es später noch einmal."), + "auth__create_acc__submit_error_desc_validation" : MessageLookupByLibrary.simpleMessage("😅 Es sieht so aus, als ob einige Informationen nicht korrekt waren. Überprüfe diese und versuche es noch einmal."), "auth__create_acc__submit_error_title" : MessageLookupByLibrary.simpleMessage("Oh nein..."), "auth__create_acc__submit_loading_desc" : MessageLookupByLibrary.simpleMessage("Wir erstellen deinen Account."), "auth__create_acc__submit_loading_title" : MessageLookupByLibrary.simpleMessage("Halte durch!"), @@ -195,11 +197,11 @@ class MessageLookup extends MessageLookupByLibrary { "auth__create_acc__username_empty_error" : MessageLookupByLibrary.simpleMessage("😱 Der Benutzername darf nicht leer sein."), "auth__create_acc__username_length_error" : MessageLookupByLibrary.simpleMessage("😅 Der Benutzername darf nicht länger als 30 Zeichen sein."), "auth__create_acc__username_placeholder" : MessageLookupByLibrary.simpleMessage("fritzfantom"), - "auth__create_acc__username_server_error" : MessageLookupByLibrary.simpleMessage("😭 Wir haben derzeit Probleme mit unseren Servern, versuch es in ein paar Minuten erneut."), + "auth__create_acc__username_server_error" : MessageLookupByLibrary.simpleMessage("😭 Ein Serverproblem ist aufgetreten, bitte versuche es später noch einmal."), "auth__create_acc__username_taken_error" : MessageLookupByLibrary.simpleMessage("😩 Der Benutzername @%s ist schon vergeben."), "auth__create_acc__welcome_to_beta" : MessageLookupByLibrary.simpleMessage("Willkommen zur Beta!"), "auth__create_acc__what_avatar" : MessageLookupByLibrary.simpleMessage("Wähle ein Profilbild"), - "auth__create_acc__what_email" : MessageLookupByLibrary.simpleMessage("Wie lautet deine E-Mail-Adresse?"), + "auth__create_acc__what_email" : MessageLookupByLibrary.simpleMessage("Wie lautet deine E-Mail?"), "auth__create_acc__what_name" : MessageLookupByLibrary.simpleMessage("Wie heißt du?"), "auth__create_acc__what_password" : MessageLookupByLibrary.simpleMessage("Wähle ein Passwort"), "auth__create_acc__what_password_subtext" : MessageLookupByLibrary.simpleMessage("(min. 10 Zeichen)"), @@ -231,7 +233,7 @@ class MessageLookup extends MessageLookupByLibrary { "auth__login__username_characters_error" : MessageLookupByLibrary.simpleMessage("Benutzername kann nur alphanumerische Zeichen und Unterstriche enthalten."), "auth__login__username_empty_error" : MessageLookupByLibrary.simpleMessage("Benutzername ist erforderlich."), "auth__login__username_label" : MessageLookupByLibrary.simpleMessage("Benutzername"), - "auth__login__username_length_error" : MessageLookupByLibrary.simpleMessage("Benutzername darf nicht länger als 30 Zeichen sein."), + "auth__login__username_length_error" : MessageLookupByLibrary.simpleMessage("Benutzername darf nicht länger als 30 Zeichen lang sein."), "auth__name_empty_error" : MessageLookupByLibrary.simpleMessage("Name darf nicht leer sein."), "auth__name_range_error" : m2, "auth__password_empty_error" : MessageLookupByLibrary.simpleMessage("Passwort darf nicht leer sein."), @@ -258,12 +260,12 @@ class MessageLookup extends MessageLookupByLibrary { "community__administrators_title" : MessageLookupByLibrary.simpleMessage("Administratoren"), "community__ban_confirmation" : m7, "community__ban_desc" : MessageLookupByLibrary.simpleMessage("Dadurch wird der Benutzer aus der Community entfernt und es wird ihm nicht mehr erlaubt beizutreten."), - "community__ban_user_title" : MessageLookupByLibrary.simpleMessage("Benutzer aussperren"), + "community__ban_user_title" : MessageLookupByLibrary.simpleMessage("Benutzer bannen"), "community__banned_user_text" : MessageLookupByLibrary.simpleMessage("gesperrter Benutzer"), "community__banned_users_text" : MessageLookupByLibrary.simpleMessage("gesperrte Benutzer"), "community__banned_users_title" : MessageLookupByLibrary.simpleMessage("Gesperrte Benutzer"), "community__button_rules" : MessageLookupByLibrary.simpleMessage("Regeln"), - "community__button_staff" : MessageLookupByLibrary.simpleMessage("Moderatoren"), + "community__button_staff" : MessageLookupByLibrary.simpleMessage("Team"), "community__categories" : MessageLookupByLibrary.simpleMessage("Kategorien."), "community__category" : MessageLookupByLibrary.simpleMessage("Kategorie."), "community__communities" : MessageLookupByLibrary.simpleMessage("Communities"), @@ -273,14 +275,14 @@ class MessageLookup extends MessageLookupByLibrary { "community__communities_title" : MessageLookupByLibrary.simpleMessage("Communities"), "community__community" : MessageLookupByLibrary.simpleMessage("Community"), "community__community_members" : MessageLookupByLibrary.simpleMessage("Community-Mitglieder"), - "community__community_staff" : MessageLookupByLibrary.simpleMessage("Community-Moderatoren"), + "community__community_staff" : MessageLookupByLibrary.simpleMessage("Community-Team"), "community__confirmation_title" : MessageLookupByLibrary.simpleMessage("Bestätigung"), "community__delete_confirmation" : MessageLookupByLibrary.simpleMessage("Bist du dir sicher, dass du die Community löschen möchtest?"), "community__delete_desc" : MessageLookupByLibrary.simpleMessage("Du wirst keine Beiträge dieser Community in deiner Timeline sehen, und auch keine Beiträge mehr mit dieser Community teilen können."), "community__description_range_error" : m8, "community__favorite_action" : MessageLookupByLibrary.simpleMessage("Community favorisieren"), "community__favorite_communities" : MessageLookupByLibrary.simpleMessage("favorisierte Communities"), - "community__favorite_community" : MessageLookupByLibrary.simpleMessage("Meine Community"), + "community__favorite_community" : MessageLookupByLibrary.simpleMessage("favorisierte Community"), "community__favorites_title" : MessageLookupByLibrary.simpleMessage("Favoriten"), "community__invite_to_community_resource_plural" : MessageLookupByLibrary.simpleMessage("Verbindungen und Follower"), "community__invite_to_community_resource_singular" : MessageLookupByLibrary.simpleMessage("Verbindung oder Follower"), @@ -381,6 +383,7 @@ class MessageLookup extends MessageLookupByLibrary { "community__unfavorite_action" : MessageLookupByLibrary.simpleMessage("Community von Favoriten löschen"), "community__user_you_text" : MessageLookupByLibrary.simpleMessage("Du"), "community__yes" : MessageLookupByLibrary.simpleMessage("Ja"), + "contextual_account_search_box__suggestions" : MessageLookupByLibrary.simpleMessage("Vorschläge"), "drawer__account_settings" : MessageLookupByLibrary.simpleMessage("Accounteinstellungen"), "drawer__account_settings_blocked_users" : MessageLookupByLibrary.simpleMessage("Blockierte Benutzer"), "drawer__account_settings_change_email" : MessageLookupByLibrary.simpleMessage("E-Mail ändern"), @@ -404,7 +407,7 @@ class MessageLookup extends MessageLookupByLibrary { "drawer__my_following" : MessageLookupByLibrary.simpleMessage("Folge ich"), "drawer__my_invites" : MessageLookupByLibrary.simpleMessage("Meine Einladungen"), "drawer__my_lists" : MessageLookupByLibrary.simpleMessage("Meine Listen"), - "drawer__my_mod_penalties" : MessageLookupByLibrary.simpleMessage("Gegen mich verhängte Strafen"), + "drawer__my_mod_penalties" : MessageLookupByLibrary.simpleMessage("Meine Strafen"), "drawer__my_pending_mod_tasks" : MessageLookupByLibrary.simpleMessage("Meine offenen Moderatoraufgaben"), "drawer__profile" : MessageLookupByLibrary.simpleMessage("Profil"), "drawer__settings" : MessageLookupByLibrary.simpleMessage("Einstellungen"), @@ -417,8 +420,8 @@ class MessageLookup extends MessageLookupByLibrary { "drawer__useful_links_guidelines_feature_requests_desc" : MessageLookupByLibrary.simpleMessage("Schlage neue Funktionen vor oder stimme für bestehende Vorschläge ab"), "drawer__useful_links_guidelines_github" : MessageLookupByLibrary.simpleMessage("Github Projektboard"), "drawer__useful_links_guidelines_github_desc" : MessageLookupByLibrary.simpleMessage("Wirf einen Blick auf das, woran wir gerade arbeiten"), - "drawer__useful_links_guidelines_handbook" : MessageLookupByLibrary.simpleMessage("Okuna Bedienungsanleitung"), - "drawer__useful_links_guidelines_handbook_desc" : MessageLookupByLibrary.simpleMessage("Eine Anleitung mit allem, was man wissen muss, um das Okuna-Netzwerk zu nutzen"), + "drawer__useful_links_guidelines_handbook" : MessageLookupByLibrary.simpleMessage("Okuna Benutzerhandbuch"), + "drawer__useful_links_guidelines_handbook_desc" : MessageLookupByLibrary.simpleMessage("Ein Benutzerhandbuch mit allem, was man wissen muss, um Okuna zu nutzen"), "drawer__useful_links_slack_channel" : MessageLookupByLibrary.simpleMessage("Community Slack Channel"), "drawer__useful_links_slack_channel_desc" : MessageLookupByLibrary.simpleMessage("Hier kann man sich über Okuna austauschen"), "drawer__useful_links_support" : MessageLookupByLibrary.simpleMessage("Okuna unterstützen"), @@ -429,7 +432,7 @@ class MessageLookup extends MessageLookupByLibrary { "moderation__actions_chat_with_team" : MessageLookupByLibrary.simpleMessage("Chatte mit dem Team"), "moderation__actions_review" : MessageLookupByLibrary.simpleMessage("Überprüfen"), "moderation__category_text" : MessageLookupByLibrary.simpleMessage("Kategorie"), - "moderation__community_moderated_objects" : MessageLookupByLibrary.simpleMessage("Community moderierte Objekte"), + "moderation__community_moderated_objects" : MessageLookupByLibrary.simpleMessage("Moderierte Objekte"), "moderation__community_review_approve" : MessageLookupByLibrary.simpleMessage("Bestätigen"), "moderation__community_review_item_verified" : MessageLookupByLibrary.simpleMessage("Dieses Element wurde überprüft"), "moderation__community_review_object" : MessageLookupByLibrary.simpleMessage("Objekt"), @@ -441,7 +444,7 @@ class MessageLookup extends MessageLookupByLibrary { "moderation__confirm_report_post_reported" : MessageLookupByLibrary.simpleMessage("Beitrag gemeldet"), "moderation__confirm_report_provide_details" : MessageLookupByLibrary.simpleMessage("Kannst du zusätzliche Details angeben, die für den Bericht relevant sein könnten?"), "moderation__confirm_report_provide_happen_next" : MessageLookupByLibrary.simpleMessage("Hier ist, was als nächstes passieren wird:"), - "moderation__confirm_report_provide_happen_next_desc" : MessageLookupByLibrary.simpleMessage("- Dein Bericht wird anonym übermittelt. \n- Wenn du einen Beitrag oder Kommentar meldest, wird der Bericht an die Okuna-Mitarbeiter und ggf. an die Community-Moderatoren gesendet und der Beitrag wird in deinem Feed ausgeblendet. \n- Wenn du ein Konto oder eine Community meldest, wird dies an die Okuna-Mitarbeiter gesendet. \n- Wir werden das überprüfen und wenn es bestätigt wird, werden die Inhalte gelöscht und Strafen für die betroffenen Personen verhängt. Diese reichen von einer vorübergehenden Sperrung bis zur Löschung des Kontos - je nach Schwere der Überschreitung. \n- Wenn sich herausstellt, dass die Meldung in dem Versuch erstellt wurde, einem anderen Mitglied oder einer Community auf der Plattform ohne Verletzung des angegebenen Grundes Schaden zuzufügen, werden Strafen gegenüber dir verhängt.\n"), + "moderation__confirm_report_provide_happen_next_desc" : MessageLookupByLibrary.simpleMessage("- Dein Bericht wird anonym übermittelt. \n- Wenn du einen Beitrag oder Kommentar meldest, wird der Bericht an die Okuna-Mitarbeiter und ggf. an die Community-Moderatoren gesendet und der Beitrag wird in deinem Feed ausgeblendet. \n- Wenn du ein Account oder eine Community meldest, wird dies an die Okuna-Mitarbeiter gesendet. \n- Wir werden das überprüfen und wenn es bestätigt wird, werden die Inhalte gelöscht und Strafen für die betroffenen Personen verhängt. Diese reichen von einer vorübergehenden Sperrung bis zur Löschung des Accounts - je nach Schwere der Überschreitung. \n- Wenn sich herausstellt, dass die Meldung in dem Versuch erstellt wurde, einem anderen Mitglied oder einer Community auf der Plattform ohne Verletzung des angegebenen Grundes Schaden zuzufügen, werden Strafen gegenüber dir verhängt.\n"), "moderation__confirm_report_provide_optional_hint_text" : MessageLookupByLibrary.simpleMessage("Schreibe hier..."), "moderation__confirm_report_provide_optional_info" : MessageLookupByLibrary.simpleMessage("(Optional)"), "moderation__confirm_report_submit" : MessageLookupByLibrary.simpleMessage("Ich verstehe, einreichen."), @@ -467,14 +470,14 @@ class MessageLookup extends MessageLookupByLibrary { "moderation__moderated_object_true_text" : MessageLookupByLibrary.simpleMessage("Wahr"), "moderation__moderated_object_verified" : MessageLookupByLibrary.simpleMessage("Verifiziert"), "moderation__moderated_object_verified_by_staff" : MessageLookupByLibrary.simpleMessage("Verifiziert durch Okuna-Mitarbeiter"), - "moderation__my_moderation_penalties_resouce_singular" : MessageLookupByLibrary.simpleMessage("gegen mich verhängte Strafen"), + "moderation__my_moderation_penalties_resouce_singular" : MessageLookupByLibrary.simpleMessage("gegen mich verhängte Strafe"), "moderation__my_moderation_penalties_resource_plural" : MessageLookupByLibrary.simpleMessage("gegen mich verhängte Strafen"), - "moderation__my_moderation_penalties_title" : MessageLookupByLibrary.simpleMessage("Gegen mich verhängte Strafen"), - "moderation__my_moderation_tasks_title" : MessageLookupByLibrary.simpleMessage("Offene Moderationsaufgaben"), + "moderation__my_moderation_penalties_title" : MessageLookupByLibrary.simpleMessage("Meine Strafen"), + "moderation__my_moderation_tasks_title" : MessageLookupByLibrary.simpleMessage("Offene Moderatoraufgaben"), "moderation__no_description_text" : MessageLookupByLibrary.simpleMessage("Keine Beschreibung"), "moderation__object_status_title" : MessageLookupByLibrary.simpleMessage("Status"), - "moderation__pending_moderation_tasks_plural" : MessageLookupByLibrary.simpleMessage("offene Moderationsaufgaben"), - "moderation__pending_moderation_tasks_singular" : MessageLookupByLibrary.simpleMessage("offene Moderationsaufgaben"), + "moderation__pending_moderation_tasks_plural" : MessageLookupByLibrary.simpleMessage("offene Moderatoraufgaben"), + "moderation__pending_moderation_tasks_singular" : MessageLookupByLibrary.simpleMessage("offene Moderatoraufgabe"), "moderation__report_account_text" : MessageLookupByLibrary.simpleMessage("Account melden"), "moderation__report_comment_text" : MessageLookupByLibrary.simpleMessage("Kommentar melden"), "moderation__report_community_text" : MessageLookupByLibrary.simpleMessage("Community melden"), @@ -507,6 +510,8 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__comment_reply_notification_tile_user_replied" : m23, "notifications__comment_reply_title" : MessageLookupByLibrary.simpleMessage("Kommentar-Antworten"), "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("Kommentare auf Beiträge"), + "notifications__comment_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Werde benachrichtigt, wenn dich jemand in einem Kommentar erwähnt"), + "notifications__comment_user_mention_title" : MessageLookupByLibrary.simpleMessage("Erwähnungen in Kommentaren"), "notifications__community_invite_desc" : MessageLookupByLibrary.simpleMessage("Werde benachrichtigt, wenn dich jemand in eine Community einlädt"), "notifications__community_invite_title" : MessageLookupByLibrary.simpleMessage("Community-Einladungen"), "notifications__connection_desc" : MessageLookupByLibrary.simpleMessage("Werde benachrichtigt, wenn sich jemand mit dir verbinden möchte"), @@ -515,18 +520,22 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__follow_desc" : MessageLookupByLibrary.simpleMessage("Werde benachrichtigt, wenn dir jemand folgt"), "notifications__follow_title" : MessageLookupByLibrary.simpleMessage("Folgen"), "notifications__following_you_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] folgt dir jetzt."), - "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Werde benachrichtigt wenn etwas passiert"), + "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Werde benachrichtigt, wenn etwas passiert"), "notifications__general_title" : MessageLookupByLibrary.simpleMessage("Benachrichtigungen"), + "notifications__mentioned_in_post_comment_tile" : m24, + "notifications__mentioned_in_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] hat dich in einem Beitrag erwähnt."), "notifications__mute_post_turn_off_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Kommentar-Benachrichtigungen deaktivieren"), "notifications__mute_post_turn_off_post_notifications" : MessageLookupByLibrary.simpleMessage("Beitrags-Benachrichtigungen deaktivieren"), "notifications__mute_post_turn_on_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Kommentar-Benachrichtigungen aktivieren"), "notifications__mute_post_turn_on_post_notifications" : MessageLookupByLibrary.simpleMessage("Beitrags-Benachrichtigungen aktivieren"), "notifications__post_reaction_desc" : MessageLookupByLibrary.simpleMessage("Werde benachrichtigt, wenn jemand auf einen deiner Beiträge reagiert"), "notifications__post_reaction_title" : MessageLookupByLibrary.simpleMessage("Reaktionen auf Beiträge"), + "notifications__post_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Werde benachrichtigt, wenn dich jemand in einem Beitrag erwähnt"), + "notifications__post_user_mention_title" : MessageLookupByLibrary.simpleMessage("Erwähnungen in Beiträgen"), "notifications__reacted_to_post_comment_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] hat auf deinen Kommentar reagiert."), "notifications__reacted_to_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] hat auf deinen Beitrag reagiert."), "notifications__settings_title" : MessageLookupByLibrary.simpleMessage("Benachrichtigungen"), - "notifications__user_community_invite_tile" : m24, + "notifications__user_community_invite_tile" : m25, "post__action_comment" : MessageLookupByLibrary.simpleMessage("Kommentar"), "post__action_react" : MessageLookupByLibrary.simpleMessage("Reagieren"), "post__action_reply" : MessageLookupByLibrary.simpleMessage("Antworten"), @@ -539,7 +548,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__actions_reported_text" : MessageLookupByLibrary.simpleMessage("Gemeldet"), "post__actions_show_more_text" : MessageLookupByLibrary.simpleMessage("Mehr anzeigen"), "post__close_post" : MessageLookupByLibrary.simpleMessage("Beitrag schließen"), - "post__comment_maxlength_error" : m25, + "post__comment_maxlength_error" : m26, "post__comment_reply_expanded_post" : MessageLookupByLibrary.simpleMessage("Teilen"), "post__comment_reply_expanded_reply_comment" : MessageLookupByLibrary.simpleMessage("Kommentar beantworten"), "post__comment_reply_expanded_reply_hint_text" : MessageLookupByLibrary.simpleMessage("Deine Antwort..."), @@ -576,7 +585,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__comments_page_tap_to_retry" : MessageLookupByLibrary.simpleMessage("Kommentare neu laden."), "post__comments_page_tap_to_retry_replies" : MessageLookupByLibrary.simpleMessage("Antworten neu laden."), "post__comments_page_title" : MessageLookupByLibrary.simpleMessage("Kommentare"), - "post__comments_view_all_comments" : m26, + "post__comments_view_all_comments" : m27, "post__create_new" : MessageLookupByLibrary.simpleMessage("Neuer Beitrag"), "post__create_next" : MessageLookupByLibrary.simpleMessage("Weiter"), "post__create_photo" : MessageLookupByLibrary.simpleMessage("Foto"), @@ -588,7 +597,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__is_closed" : MessageLookupByLibrary.simpleMessage("Geschlossener Beitrag"), "post__my_circles" : MessageLookupByLibrary.simpleMessage("Meinen Kreisen"), "post__my_circles_desc" : MessageLookupByLibrary.simpleMessage("Teile den Beitrag mit einem oder mehreren deiner Kreise."), - "post__no_circles_for" : m27, + "post__no_circles_for" : m28, "post__open_post" : MessageLookupByLibrary.simpleMessage("Beitrag öffnen"), "post__post_closed" : MessageLookupByLibrary.simpleMessage("Beitrag geschlossen "), "post__post_opened" : MessageLookupByLibrary.simpleMessage("Beitrag geöffnet"), @@ -610,20 +619,20 @@ class MessageLookup extends MessageLookupByLibrary { "post__shared_privately_on" : MessageLookupByLibrary.simpleMessage("Privat geteilt mit"), "post__sharing_post_to" : MessageLookupByLibrary.simpleMessage("Beitrag teilen mit"), "post__text_copied" : MessageLookupByLibrary.simpleMessage("Text kopiert!"), - "post__time_short_days" : MessageLookupByLibrary.simpleMessage("Tage"), - "post__time_short_hours" : MessageLookupByLibrary.simpleMessage("h"), - "post__time_short_minutes" : MessageLookupByLibrary.simpleMessage("m"), + "post__time_short_days" : MessageLookupByLibrary.simpleMessage("Tg"), + "post__time_short_hours" : MessageLookupByLibrary.simpleMessage("Std"), + "post__time_short_minutes" : MessageLookupByLibrary.simpleMessage("Min."), "post__time_short_now_text" : MessageLookupByLibrary.simpleMessage("jetzt"), - "post__time_short_one_day" : MessageLookupByLibrary.simpleMessage("1Tag"), + "post__time_short_one_day" : MessageLookupByLibrary.simpleMessage("1Tg"), "post__time_short_one_hour" : MessageLookupByLibrary.simpleMessage("1h"), - "post__time_short_one_minute" : MessageLookupByLibrary.simpleMessage("1m"), - "post__time_short_one_week" : MessageLookupByLibrary.simpleMessage("1W."), - "post__time_short_one_year" : MessageLookupByLibrary.simpleMessage("1J."), - "post__time_short_seconds" : MessageLookupByLibrary.simpleMessage("s"), - "post__time_short_weeks" : MessageLookupByLibrary.simpleMessage("W."), - "post__time_short_years" : MessageLookupByLibrary.simpleMessage("J."), + "post__time_short_one_minute" : MessageLookupByLibrary.simpleMessage("1Min."), + "post__time_short_one_week" : MessageLookupByLibrary.simpleMessage("1Wo"), + "post__time_short_one_year" : MessageLookupByLibrary.simpleMessage("1J"), + "post__time_short_seconds" : MessageLookupByLibrary.simpleMessage("Sek"), + "post__time_short_weeks" : MessageLookupByLibrary.simpleMessage("Wo."), + "post__time_short_years" : MessageLookupByLibrary.simpleMessage("J"), "post__timeline_posts_all_loaded" : MessageLookupByLibrary.simpleMessage("🎉 Alle Beiträge geladen"), - "post__timeline_posts_default_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Versuche, die Timeline zu aktualisieren."), + "post__timeline_posts_default_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Versuche die Timeline zu aktualisieren."), "post__timeline_posts_default_drhoo_title" : MessageLookupByLibrary.simpleMessage("Irgendwas stimmt hier nicht."), "post__timeline_posts_failed_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Versuche es in ein paar Sekunden erneut"), "post__timeline_posts_failed_drhoo_title" : MessageLookupByLibrary.simpleMessage("Deine Timeline konnte nicht geladen werden."), @@ -635,8 +644,8 @@ class MessageLookup extends MessageLookupByLibrary { "post__trending_posts_no_trending_posts" : MessageLookupByLibrary.simpleMessage("Es gibt keine angesagten Beiträge. Versuche in ein paar Sekunden zu aktualisieren."), "post__trending_posts_refresh" : MessageLookupByLibrary.simpleMessage("Aktualisieren"), "post__trending_posts_title" : MessageLookupByLibrary.simpleMessage("Angesagte Beiträge"), - "post__user_has_not_shared_anything" : m28, - "post__usernames_circles" : m29, + "post__user_has_not_shared_anything" : m29, + "post__usernames_circles" : m30, "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("Welt"), "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("Geteilt mit"), "user__add_account_done" : MessageLookupByLibrary.simpleMessage("Fertig"), @@ -645,17 +654,17 @@ class MessageLookup extends MessageLookupByLibrary { "user__add_account_to_lists" : MessageLookupByLibrary.simpleMessage("Benutzer zur Liste hinzufügen"), "user__add_account_update_account_lists" : MessageLookupByLibrary.simpleMessage("Benutzerlisten aktualisieren"), "user__add_account_update_lists" : MessageLookupByLibrary.simpleMessage("Listen aktualisieren"), - "user__billion_postfix" : MessageLookupByLibrary.simpleMessage("Mrd"), + "user__billion_postfix" : MessageLookupByLibrary.simpleMessage(" Mrd."), "user__block_user" : MessageLookupByLibrary.simpleMessage("Benutzer blockieren"), "user__change_email_email_text" : MessageLookupByLibrary.simpleMessage("E-Mail"), "user__change_email_error" : MessageLookupByLibrary.simpleMessage("Diese E-Mail Adresse ist bereits registriert"), - "user__change_email_hint_text" : MessageLookupByLibrary.simpleMessage("Gib deine neue E-Mail-Adresse ein"), + "user__change_email_hint_text" : MessageLookupByLibrary.simpleMessage("Gib deine neue E-Mail ein"), "user__change_email_save" : MessageLookupByLibrary.simpleMessage("Speichern"), "user__change_email_success_info" : MessageLookupByLibrary.simpleMessage("Wir haben einen Bestätigungslink an deine neue E-Mail-Adresse gesendet, klick auf ihn, um deine neue E-Mail zu bestätigen"), - "user__change_email_title" : MessageLookupByLibrary.simpleMessage("E-Mail-Adresse ändern"), + "user__change_email_title" : MessageLookupByLibrary.simpleMessage("E-Mail ändern"), "user__circle_name_empty_error" : MessageLookupByLibrary.simpleMessage("Die Kreisname kann nicht leer sein."), - "user__circle_name_range_error" : m30, - "user__circle_peoples_count" : m31, + "user__circle_name_range_error" : m31, + "user__circle_peoples_count" : m32, "user__clear_app_preferences_cleared_successfully" : MessageLookupByLibrary.simpleMessage("Einstellungen erfolgreich gelöscht"), "user__clear_app_preferences_desc" : MessageLookupByLibrary.simpleMessage("Anwendungseinstellungen löschen. Momentan ist das nur die bevorzugte Reihenfolge der Kommentare."), "user__clear_app_preferences_error" : MessageLookupByLibrary.simpleMessage("Einstellungen konnten nicht gelöscht werden"), @@ -667,13 +676,13 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_block_user_blocked" : MessageLookupByLibrary.simpleMessage("Benutzer blockiert."), "user__confirm_block_user_info" : MessageLookupByLibrary.simpleMessage("Ihr werdet gegenseitig keine Beiträge des anderen mehr sehen. Außerdem werdet ihr in keiner Weise mehr miteinander in Kontakt treten können."), "user__confirm_block_user_no" : MessageLookupByLibrary.simpleMessage("Nein"), - "user__confirm_block_user_question" : m32, + "user__confirm_block_user_question" : m33, "user__confirm_block_user_title" : MessageLookupByLibrary.simpleMessage("Bestätigen"), "user__confirm_block_user_yes" : MessageLookupByLibrary.simpleMessage("Ja"), "user__confirm_connection_add_connection" : MessageLookupByLibrary.simpleMessage("Verbindung zum Kreis hinzufügen"), "user__confirm_connection_confirm_text" : MessageLookupByLibrary.simpleMessage("Bestätigen"), "user__confirm_connection_connection_confirmed" : MessageLookupByLibrary.simpleMessage("Verbindung bestätigt"), - "user__confirm_connection_with" : m33, + "user__confirm_connection_with" : m34, "user__confirm_guidelines_reject_chat_community" : MessageLookupByLibrary.simpleMessage("Mit der Community chatten."), "user__confirm_guidelines_reject_chat_immediately" : MessageLookupByLibrary.simpleMessage("Beginne einen Chat."), "user__confirm_guidelines_reject_chat_with_team" : MessageLookupByLibrary.simpleMessage("Chatte mit dem Team."), @@ -683,7 +692,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_guidelines_reject_join_slack" : MessageLookupByLibrary.simpleMessage("Trete Okuna auf Slack bei."), "user__confirm_guidelines_reject_title" : MessageLookupByLibrary.simpleMessage("Richtlinien ablehnen"), "user__connect_to_user_add_connection" : MessageLookupByLibrary.simpleMessage("Verbindung zum Kreis hinzufügen"), - "user__connect_to_user_connect_with_username" : m34, + "user__connect_to_user_connect_with_username" : m35, "user__connect_to_user_done" : MessageLookupByLibrary.simpleMessage("Fertig"), "user__connect_to_user_request_sent" : MessageLookupByLibrary.simpleMessage("Verbindungsanfrage gesendet"), "user__connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Bearbeiten"), @@ -701,7 +710,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__delete_account_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Gib dein aktuelles Passwort ein"), "user__delete_account_next" : MessageLookupByLibrary.simpleMessage("Weiter"), "user__delete_account_title" : MessageLookupByLibrary.simpleMessage("Account Löschen"), - "user__disconnect_from_user" : m35, + "user__disconnect_from_user" : m36, "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Erfolgreich getrennt"), "user__edit_profile_bio" : MessageLookupByLibrary.simpleMessage("Über mich"), "user__edit_profile_delete" : MessageLookupByLibrary.simpleMessage("Löschen"), @@ -709,20 +718,20 @@ class MessageLookup extends MessageLookupByLibrary { "user__edit_profile_location" : MessageLookupByLibrary.simpleMessage("Ort"), "user__edit_profile_name" : MessageLookupByLibrary.simpleMessage("Name"), "user__edit_profile_pick_image" : MessageLookupByLibrary.simpleMessage("Bild auswählen"), - "user__edit_profile_pick_image_error_too_large" : m36, + "user__edit_profile_pick_image_error_too_large" : m37, "user__edit_profile_save_text" : MessageLookupByLibrary.simpleMessage("Speichern"), "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Profil bearbeiten"), "user__edit_profile_url" : MessageLookupByLibrary.simpleMessage("URL"), - "user__edit_profile_user_name_taken" : m37, + "user__edit_profile_user_name_taken" : m38, "user__edit_profile_username" : MessageLookupByLibrary.simpleMessage("Benutzername"), "user__email_verification_error" : MessageLookupByLibrary.simpleMessage("Hoppla! Dein Token ist ungültig oder abgelaufen, bitte versuche es erneut"), "user__email_verification_successful" : MessageLookupByLibrary.simpleMessage("Nice! Deine E-Mail wurde verifiziert"), "user__emoji_field_none_selected" : MessageLookupByLibrary.simpleMessage("Kein Emoji ausgewählt"), - "user__emoji_search_none_found" : m38, + "user__emoji_search_none_found" : m39, "user__follow_button_follow_text" : MessageLookupByLibrary.simpleMessage("Folgen"), "user__follow_button_unfollow_text" : MessageLookupByLibrary.simpleMessage("Entfolgen"), "user__follow_lists_no_list_found" : MessageLookupByLibrary.simpleMessage("Keine Listen gefunden."), - "user__follow_lists_no_list_found_for" : m39, + "user__follow_lists_no_list_found_for" : m40, "user__follow_lists_search_for" : MessageLookupByLibrary.simpleMessage("Suche nach Liste..."), "user__follow_lists_title" : MessageLookupByLibrary.simpleMessage("Meine Listen"), "user__follower_plural" : MessageLookupByLibrary.simpleMessage("Follower"), @@ -730,18 +739,18 @@ class MessageLookup extends MessageLookupByLibrary { "user__followers_title" : MessageLookupByLibrary.simpleMessage("Follower"), "user__following_resource_name" : MessageLookupByLibrary.simpleMessage("Nutzer, denen ich folge"), "user__following_text" : MessageLookupByLibrary.simpleMessage("Folge ich"), - "user__follows_list_accounts_count" : m40, + "user__follows_list_accounts_count" : m41, "user__follows_list_edit" : MessageLookupByLibrary.simpleMessage("Bearbeiten"), "user__follows_list_header_title" : MessageLookupByLibrary.simpleMessage("Benutzer"), "user__follows_lists_account" : MessageLookupByLibrary.simpleMessage("1 Account"), - "user__follows_lists_accounts" : m41, - "user__groups_see_all" : m42, + "user__follows_lists_accounts" : m42, + "user__groups_see_all" : m43, "user__guidelines_accept" : MessageLookupByLibrary.simpleMessage("Akzeptieren"), "user__guidelines_desc" : MessageLookupByLibrary.simpleMessage("Bitte nimm dir einen Moment Zeit, um unsere Richtlinien zu lesen und zu akzeptieren."), "user__guidelines_reject" : MessageLookupByLibrary.simpleMessage("Ablehnen"), "user__invite" : MessageLookupByLibrary.simpleMessage("Einladen"), "user__invite_member" : MessageLookupByLibrary.simpleMessage("Mitglied"), - "user__invite_someone_message" : m43, + "user__invite_someone_message" : m44, "user__invites_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("angenommene Einladung"), "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("angenommene Einladungen"), "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Angenommen"), @@ -760,11 +769,11 @@ class MessageLookup extends MessageLookupByLibrary { "user__invites_email_text" : MessageLookupByLibrary.simpleMessage("E-Mail"), "user__invites_invite_a_friend" : MessageLookupByLibrary.simpleMessage("FreundIn einladen"), "user__invites_invite_text" : MessageLookupByLibrary.simpleMessage("Einladen"), - "user__invites_joined_with" : m44, + "user__invites_joined_with" : m45, "user__invites_none_left" : MessageLookupByLibrary.simpleMessage("Du hast keine Einladungen verfügbar."), "user__invites_none_used" : MessageLookupByLibrary.simpleMessage("Sieht so aus als hättest du noch keine Einladung verwendet."), "user__invites_pending" : MessageLookupByLibrary.simpleMessage("Ausstehend"), - "user__invites_pending_email" : m45, + "user__invites_pending_email" : m46, "user__invites_pending_group_item_name" : MessageLookupByLibrary.simpleMessage("ausstehende Einladung"), "user__invites_pending_group_name" : MessageLookupByLibrary.simpleMessage("ausstehende Einladungen"), "user__invites_refresh" : MessageLookupByLibrary.simpleMessage("Aktualisieren"), @@ -777,14 +786,14 @@ class MessageLookup extends MessageLookupByLibrary { "user__language_settings_saved_success" : MessageLookupByLibrary.simpleMessage("Sprache erfolgreich geändert"), "user__language_settings_title" : MessageLookupByLibrary.simpleMessage("Spracheinstellungen"), "user__list_name_empty_error" : MessageLookupByLibrary.simpleMessage("Die Listenname kann nicht leer sein."), - "user__list_name_range_error" : m46, + "user__list_name_range_error" : m47, "user__million_postfix" : MessageLookupByLibrary.simpleMessage("Mio"), "user__profile_action_cancel_connection" : MessageLookupByLibrary.simpleMessage("Verbindungsanfrage abbrechen"), "user__profile_action_deny_connection" : MessageLookupByLibrary.simpleMessage("Verbindungsanfrage ablehnen"), "user__profile_action_user_blocked" : MessageLookupByLibrary.simpleMessage("Benutzer blockiert"), "user__profile_action_user_unblocked" : MessageLookupByLibrary.simpleMessage("Benutzer Blockierung aufgehoben"), - "user__profile_bio_length_error" : m47, - "user__profile_location_length_error" : m48, + "user__profile_bio_length_error" : m48, + "user__profile_location_length_error" : m49, "user__profile_url_invalid_error" : MessageLookupByLibrary.simpleMessage("Bitte verwende eine gültige URL."), "user__remove_account_from_list" : MessageLookupByLibrary.simpleMessage("Account aus Listen entfernen"), "user__remove_account_from_list_success" : MessageLookupByLibrary.simpleMessage("Erfolgreich"), @@ -794,7 +803,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Kreis bearbeiten"), "user__save_connection_circle_hint" : MessageLookupByLibrary.simpleMessage("z.B. Freunde, Familie, Arbeit."), "user__save_connection_circle_name" : MessageLookupByLibrary.simpleMessage("Name"), - "user__save_connection_circle_name_taken" : m49, + "user__save_connection_circle_name_taken" : m50, "user__save_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Speichern"), "user__save_connection_circle_users" : MessageLookupByLibrary.simpleMessage("Benutzer"), "user__save_follows_list_create" : MessageLookupByLibrary.simpleMessage("Liste erstellen"), @@ -803,17 +812,17 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_follows_list_emoji_required_error" : MessageLookupByLibrary.simpleMessage("Emoji ist erforderlich"), "user__save_follows_list_hint_text" : MessageLookupByLibrary.simpleMessage("z.B. Reisen, Fotografie"), "user__save_follows_list_name" : MessageLookupByLibrary.simpleMessage("Name"), - "user__save_follows_list_name_taken" : m50, + "user__save_follows_list_name_taken" : m51, "user__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Speichern"), "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("Benutzer"), "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("Tsd"), "user__tile_delete" : MessageLookupByLibrary.simpleMessage("Löschen"), "user__tile_following" : MessageLookupByLibrary.simpleMessage(" · Folgt"), - "user__timeline_filters_apply_all" : MessageLookupByLibrary.simpleMessage("Filtern"), + "user__timeline_filters_apply_all" : MessageLookupByLibrary.simpleMessage("Anwenden"), "user__timeline_filters_circles" : MessageLookupByLibrary.simpleMessage("Kreise"), "user__timeline_filters_clear_all" : MessageLookupByLibrary.simpleMessage("Alle aufheben"), "user__timeline_filters_lists" : MessageLookupByLibrary.simpleMessage("Listen"), - "user__timeline_filters_no_match" : m51, + "user__timeline_filters_no_match" : m52, "user__timeline_filters_search_desc" : MessageLookupByLibrary.simpleMessage("Nach Kreisen und Listen suchen..."), "user__timeline_filters_title" : MessageLookupByLibrary.simpleMessage("Timeline-Filter"), "user__translate_see_translation" : MessageLookupByLibrary.simpleMessage("Übersetzen"), @@ -825,15 +834,15 @@ class MessageLookup extends MessageLookupByLibrary { "user__update_connection_circles_title" : MessageLookupByLibrary.simpleMessage("Verbindungskreise aktualisieren"), "user_search__cancel" : MessageLookupByLibrary.simpleMessage("Abbrechen"), "user_search__communities" : MessageLookupByLibrary.simpleMessage("Communities"), - "user_search__list_no_results_found" : m52, + "user_search__list_no_results_found" : m53, "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Aktualisieren"), "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Tippen zum Wiederholen."), - "user_search__list_search_text" : m53, - "user_search__no_communities_for" : m54, - "user_search__no_results_for" : m55, - "user_search__no_users_for" : m56, + "user_search__list_search_text" : m54, + "user_search__no_communities_for" : m55, + "user_search__no_results_for" : m56, + "user_search__no_users_for" : m57, "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Suchen..."), - "user_search__searching_for" : m57, + "user_search__searching_for" : m58, "user_search__users" : MessageLookupByLibrary.simpleMessage("Benutzer") }; } diff --git a/lib/locale/messages_en.dart b/lib/locale/messages_en.dart index ddd886ae0..76952b77f 100644 --- a/lib/locale/messages_en.dart +++ b/lib/locale/messages_en.dart @@ -68,73 +68,75 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] replied: ${postCommentText}"; - static m24(communityName) => "[name] [username] has invited you to join community /c/${communityName}."; + static m24(postCommentText) => "[name] [username] mentioned you on a comment: ${postCommentText}"; - static m25(maxLength) => "A comment can\'t be longer than ${maxLength} characters."; + static m25(communityName) => "[name] [username] has invited you to join community /c/${communityName}."; - static m26(commentsCount) => "View all ${commentsCount} comments"; + static m26(maxLength) => "A comment can\'t be longer than ${maxLength} characters."; - static m27(circlesSearchQuery) => "No circles found matching \'${circlesSearchQuery}\'."; + static m27(commentsCount) => "View all ${commentsCount} comments"; - static m28(name) => "${name} has not shared anything yet."; + static m28(circlesSearchQuery) => "No circles found matching \'${circlesSearchQuery}\'."; - static m29(postCreatorUsername) => "@${postCreatorUsername}\'s circles"; + static m29(name) => "${name} has not shared anything yet."; - static m30(maxLength) => "Circle name must be no longer than ${maxLength} characters."; + static m30(postCreatorUsername) => "@${postCreatorUsername}\'s circles"; - static m31(prettyUsersCount) => "${prettyUsersCount} people"; + static m31(maxLength) => "Circle name must be no longer than ${maxLength} characters."; - static m32(username) => "Are you sure you want to block @${username}?"; + static m32(prettyUsersCount) => "${prettyUsersCount} people"; - static m33(userName) => "Confirm connection with ${userName}"; + static m33(username) => "Are you sure you want to block @${username}?"; - static m34(userName) => "Connect with ${userName}"; + static m34(userName) => "Confirm connection with ${userName}"; - static m35(userName) => "Disconnect from ${userName}"; + static m35(userName) => "Connect with ${userName}"; - static m36(limit) => "Image too large (limit: ${limit} MB)"; + static m36(userName) => "Disconnect from ${userName}"; - static m37(username) => "Username @${username} is taken"; + static m37(limit) => "Image too large (limit: ${limit} MB)"; - static m38(searchQuery) => "No emoji found matching \'${searchQuery}\'."; + static m38(username) => "Username @${username} is taken"; - static m39(searchQuery) => "No list found for \'${searchQuery}\'"; + static m39(searchQuery) => "No emoji found matching \'${searchQuery}\'."; - static m40(prettyUsersCount) => "${prettyUsersCount} accounts"; + static m40(searchQuery) => "No list found for \'${searchQuery}\'"; - static m41(prettyUsersCount) => "${prettyUsersCount} Accounts"; + static m41(prettyUsersCount) => "${prettyUsersCount} accounts"; - static m42(groupName) => "See all ${groupName}"; + static m42(prettyUsersCount) => "${prettyUsersCount} Accounts"; - static m43(iosLink, androidLink, inviteLink) => "Hey, I\'d like to invite you to Okuna. First, Download the app on iTunes (${iosLink}) or the Play store (${androidLink}). Second, paste this personalised invite link in the \'Sign up\' form in the Okuna App: ${inviteLink}"; + static m43(groupName) => "See all ${groupName}"; - static m44(username) => "Joined with username @${username}"; + static m44(iosLink, androidLink, inviteLink) => "Hey, I\'d like to invite you to Okuna. First, Download the app on iTunes (${iosLink}) or the Play store (${androidLink}). Second, paste this personalised invite link in the \'Sign up\' form in the Okuna App: ${inviteLink}"; - static m45(email) => "Pending, invite email sent to ${email}"; + static m45(username) => "Joined with username @${username}"; - static m46(maxLength) => "List name must be no longer than ${maxLength} characters."; + static m46(email) => "Pending, invite email sent to ${email}"; - static m47(maxLength) => "Bio can\'t be longer than ${maxLength} characters."; + static m47(maxLength) => "List name must be no longer than ${maxLength} characters."; - static m48(maxLength) => "Location can\'t be longer than ${maxLength} characters."; + static m48(maxLength) => "Bio can\'t be longer than ${maxLength} characters."; - static m49(takenConnectionsCircleName) => "Circle name \'${takenConnectionsCircleName}\' is taken"; + static m49(maxLength) => "Location can\'t be longer than ${maxLength} characters."; - static m50(listName) => "List name \'${listName}\' is taken"; + static m50(takenConnectionsCircleName) => "Circle name \'${takenConnectionsCircleName}\' is taken"; - static m51(searchQuery) => "No match for \'${searchQuery}\'."; + static m51(listName) => "List name \'${listName}\' is taken"; - static m52(resourcePluralName) => "No ${resourcePluralName} found."; + static m52(searchQuery) => "No match for \'${searchQuery}\'."; - static m53(resourcePluralName) => "Search ${resourcePluralName} ..."; + static m53(resourcePluralName) => "No ${resourcePluralName} found."; - static m54(searchQuery) => "No communities found for \'${searchQuery}\'."; + static m54(resourcePluralName) => "Search ${resourcePluralName} ..."; - static m55(searchQuery) => "No results for \'${searchQuery}\'."; + static m55(searchQuery) => "No communities found for \'${searchQuery}\'."; - static m56(searchQuery) => "No users found for \'${searchQuery}\'."; + static m56(searchQuery) => "No results for \'${searchQuery}\'."; - static m57(searchQuery) => "Searching for \'${searchQuery}\'"; + static m57(searchQuery) => "No users found for \'${searchQuery}\'."; + + static m58(searchQuery) => "Searching for \'${searchQuery}\'"; final messages = _notInlinedMessages(_notInlinedMessages); static _notInlinedMessages(_) => { @@ -381,6 +383,7 @@ class MessageLookup extends MessageLookupByLibrary { "community__unfavorite_action" : MessageLookupByLibrary.simpleMessage("Unfavorite community"), "community__user_you_text" : MessageLookupByLibrary.simpleMessage("You"), "community__yes" : MessageLookupByLibrary.simpleMessage("Yes"), + "contextual_account_search_box__suggestions" : MessageLookupByLibrary.simpleMessage("Suggestions"), "drawer__account_settings" : MessageLookupByLibrary.simpleMessage("Account Settings"), "drawer__account_settings_blocked_users" : MessageLookupByLibrary.simpleMessage("Blocked users"), "drawer__account_settings_change_email" : MessageLookupByLibrary.simpleMessage("Change Email"), @@ -507,6 +510,8 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__comment_reply_notification_tile_user_replied" : m23, "notifications__comment_reply_title" : MessageLookupByLibrary.simpleMessage("Post comment reply"), "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("Post comment"), + "notifications__comment_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Be notified when someone mentions you on one of their comments"), + "notifications__comment_user_mention_title" : MessageLookupByLibrary.simpleMessage("Post comment mention"), "notifications__community_invite_desc" : MessageLookupByLibrary.simpleMessage("Be notified when someone invites you to join a community"), "notifications__community_invite_title" : MessageLookupByLibrary.simpleMessage("Community invite"), "notifications__connection_desc" : MessageLookupByLibrary.simpleMessage("Be notified when someone wants to connect with you"), @@ -517,16 +522,20 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__following_you_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] is now following you."), "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Be notified when something happens"), "notifications__general_title" : MessageLookupByLibrary.simpleMessage("Notifications"), + "notifications__mentioned_in_post_comment_tile" : m24, + "notifications__mentioned_in_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] mentioned you on a post."), "notifications__mute_post_turn_off_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Turn off post comment notifications"), "notifications__mute_post_turn_off_post_notifications" : MessageLookupByLibrary.simpleMessage("Turn off post notifications"), "notifications__mute_post_turn_on_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Turn on post comment notifications"), "notifications__mute_post_turn_on_post_notifications" : MessageLookupByLibrary.simpleMessage("Turn on post notifications"), "notifications__post_reaction_desc" : MessageLookupByLibrary.simpleMessage("Be notified when someone reacts to one of your posts"), "notifications__post_reaction_title" : MessageLookupByLibrary.simpleMessage("Post reaction"), + "notifications__post_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Be notified when someone mentions you on one of their posts"), + "notifications__post_user_mention_title" : MessageLookupByLibrary.simpleMessage("Post mention"), "notifications__reacted_to_post_comment_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] reacted to your post comment."), "notifications__reacted_to_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] reacted to your post."), "notifications__settings_title" : MessageLookupByLibrary.simpleMessage("Notifications settings"), - "notifications__user_community_invite_tile" : m24, + "notifications__user_community_invite_tile" : m25, "post__action_comment" : MessageLookupByLibrary.simpleMessage("Comment"), "post__action_react" : MessageLookupByLibrary.simpleMessage("React"), "post__action_reply" : MessageLookupByLibrary.simpleMessage("Reply"), @@ -539,7 +548,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__actions_reported_text" : MessageLookupByLibrary.simpleMessage("Reported"), "post__actions_show_more_text" : MessageLookupByLibrary.simpleMessage("Show more"), "post__close_post" : MessageLookupByLibrary.simpleMessage("Close post"), - "post__comment_maxlength_error" : m25, + "post__comment_maxlength_error" : m26, "post__comment_reply_expanded_post" : MessageLookupByLibrary.simpleMessage("Post"), "post__comment_reply_expanded_reply_comment" : MessageLookupByLibrary.simpleMessage("Reply to comment"), "post__comment_reply_expanded_reply_hint_text" : MessageLookupByLibrary.simpleMessage("Your reply..."), @@ -576,7 +585,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__comments_page_tap_to_retry" : MessageLookupByLibrary.simpleMessage("Tap to retry loading comments."), "post__comments_page_tap_to_retry_replies" : MessageLookupByLibrary.simpleMessage("Tap to retry loading replies."), "post__comments_page_title" : MessageLookupByLibrary.simpleMessage("Post comments"), - "post__comments_view_all_comments" : m26, + "post__comments_view_all_comments" : m27, "post__create_new" : MessageLookupByLibrary.simpleMessage("New post"), "post__create_next" : MessageLookupByLibrary.simpleMessage("Next"), "post__create_photo" : MessageLookupByLibrary.simpleMessage("Photo"), @@ -588,7 +597,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__is_closed" : MessageLookupByLibrary.simpleMessage("Closed post"), "post__my_circles" : MessageLookupByLibrary.simpleMessage("My circles"), "post__my_circles_desc" : MessageLookupByLibrary.simpleMessage("Share the post to one or multiple of your circles."), - "post__no_circles_for" : m27, + "post__no_circles_for" : m28, "post__open_post" : MessageLookupByLibrary.simpleMessage("Open post"), "post__post_closed" : MessageLookupByLibrary.simpleMessage("Post closed "), "post__post_opened" : MessageLookupByLibrary.simpleMessage("Post opened"), @@ -635,8 +644,8 @@ class MessageLookup extends MessageLookupByLibrary { "post__trending_posts_no_trending_posts" : MessageLookupByLibrary.simpleMessage("There are no trending posts. Try refreshing in a couple seconds."), "post__trending_posts_refresh" : MessageLookupByLibrary.simpleMessage("Refresh"), "post__trending_posts_title" : MessageLookupByLibrary.simpleMessage("Trending posts"), - "post__user_has_not_shared_anything" : m28, - "post__usernames_circles" : m29, + "post__user_has_not_shared_anything" : m29, + "post__usernames_circles" : m30, "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("World"), "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("You shared with"), "user__add_account_done" : MessageLookupByLibrary.simpleMessage("Done"), @@ -654,8 +663,8 @@ class MessageLookup extends MessageLookupByLibrary { "user__change_email_success_info" : MessageLookupByLibrary.simpleMessage("We\'ve sent a confirmation link to your new email address, click it to verify your new email"), "user__change_email_title" : MessageLookupByLibrary.simpleMessage("Change Email"), "user__circle_name_empty_error" : MessageLookupByLibrary.simpleMessage("Circle name cannot be empty."), - "user__circle_name_range_error" : m30, - "user__circle_peoples_count" : m31, + "user__circle_name_range_error" : m31, + "user__circle_peoples_count" : m32, "user__clear_app_preferences_cleared_successfully" : MessageLookupByLibrary.simpleMessage("Cleared preferences successfully"), "user__clear_app_preferences_desc" : MessageLookupByLibrary.simpleMessage("Clear the application preferences. Currently this is only the preferred order of comments."), "user__clear_app_preferences_error" : MessageLookupByLibrary.simpleMessage("Could not clear preferences"), @@ -667,13 +676,13 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_block_user_blocked" : MessageLookupByLibrary.simpleMessage("User blocked."), "user__confirm_block_user_info" : MessageLookupByLibrary.simpleMessage("You won\'t see each other posts nor be able to interact in any way."), "user__confirm_block_user_no" : MessageLookupByLibrary.simpleMessage("No"), - "user__confirm_block_user_question" : m32, + "user__confirm_block_user_question" : m33, "user__confirm_block_user_title" : MessageLookupByLibrary.simpleMessage("Confirmation"), "user__confirm_block_user_yes" : MessageLookupByLibrary.simpleMessage("Yes"), "user__confirm_connection_add_connection" : MessageLookupByLibrary.simpleMessage("Add connection to circle"), "user__confirm_connection_confirm_text" : MessageLookupByLibrary.simpleMessage("Confirm"), "user__confirm_connection_connection_confirmed" : MessageLookupByLibrary.simpleMessage("Connection confirmed"), - "user__confirm_connection_with" : m33, + "user__confirm_connection_with" : m34, "user__confirm_guidelines_reject_chat_community" : MessageLookupByLibrary.simpleMessage("Chat with the community."), "user__confirm_guidelines_reject_chat_immediately" : MessageLookupByLibrary.simpleMessage("Start a chat immediately."), "user__confirm_guidelines_reject_chat_with_team" : MessageLookupByLibrary.simpleMessage("Chat with the team."), @@ -683,7 +692,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_guidelines_reject_join_slack" : MessageLookupByLibrary.simpleMessage("Join the Slack channel."), "user__confirm_guidelines_reject_title" : MessageLookupByLibrary.simpleMessage("Guidelines Rejection"), "user__connect_to_user_add_connection" : MessageLookupByLibrary.simpleMessage("Add connection to circle"), - "user__connect_to_user_connect_with_username" : m34, + "user__connect_to_user_connect_with_username" : m35, "user__connect_to_user_done" : MessageLookupByLibrary.simpleMessage("Done"), "user__connect_to_user_request_sent" : MessageLookupByLibrary.simpleMessage("Connection request sent"), "user__connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Edit"), @@ -701,7 +710,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__delete_account_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Enter your current password"), "user__delete_account_next" : MessageLookupByLibrary.simpleMessage("Next"), "user__delete_account_title" : MessageLookupByLibrary.simpleMessage("Delete account"), - "user__disconnect_from_user" : m35, + "user__disconnect_from_user" : m36, "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Disconnected successfully"), "user__edit_profile_bio" : MessageLookupByLibrary.simpleMessage("Bio"), "user__edit_profile_delete" : MessageLookupByLibrary.simpleMessage("Delete"), @@ -709,20 +718,20 @@ class MessageLookup extends MessageLookupByLibrary { "user__edit_profile_location" : MessageLookupByLibrary.simpleMessage("Location"), "user__edit_profile_name" : MessageLookupByLibrary.simpleMessage("Name"), "user__edit_profile_pick_image" : MessageLookupByLibrary.simpleMessage("Pick image"), - "user__edit_profile_pick_image_error_too_large" : m36, + "user__edit_profile_pick_image_error_too_large" : m37, "user__edit_profile_save_text" : MessageLookupByLibrary.simpleMessage("Save"), "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Edit profile"), "user__edit_profile_url" : MessageLookupByLibrary.simpleMessage("Url"), - "user__edit_profile_user_name_taken" : m37, + "user__edit_profile_user_name_taken" : m38, "user__edit_profile_username" : MessageLookupByLibrary.simpleMessage("Username"), "user__email_verification_error" : MessageLookupByLibrary.simpleMessage("Oops! Your token was not valid or expired, please try again"), "user__email_verification_successful" : MessageLookupByLibrary.simpleMessage("Awesome! Your email is now verified"), "user__emoji_field_none_selected" : MessageLookupByLibrary.simpleMessage("No emoji selected"), - "user__emoji_search_none_found" : m38, + "user__emoji_search_none_found" : m39, "user__follow_button_follow_text" : MessageLookupByLibrary.simpleMessage("Follow"), "user__follow_button_unfollow_text" : MessageLookupByLibrary.simpleMessage("Unfollow"), "user__follow_lists_no_list_found" : MessageLookupByLibrary.simpleMessage("No lists found."), - "user__follow_lists_no_list_found_for" : m39, + "user__follow_lists_no_list_found_for" : m40, "user__follow_lists_search_for" : MessageLookupByLibrary.simpleMessage("Search for a list..."), "user__follow_lists_title" : MessageLookupByLibrary.simpleMessage("My lists"), "user__follower_plural" : MessageLookupByLibrary.simpleMessage("followers"), @@ -730,18 +739,18 @@ class MessageLookup extends MessageLookupByLibrary { "user__followers_title" : MessageLookupByLibrary.simpleMessage("Followers"), "user__following_resource_name" : MessageLookupByLibrary.simpleMessage("followed users"), "user__following_text" : MessageLookupByLibrary.simpleMessage("Following"), - "user__follows_list_accounts_count" : m40, + "user__follows_list_accounts_count" : m41, "user__follows_list_edit" : MessageLookupByLibrary.simpleMessage("Edit"), "user__follows_list_header_title" : MessageLookupByLibrary.simpleMessage("Users"), "user__follows_lists_account" : MessageLookupByLibrary.simpleMessage("1 Account"), - "user__follows_lists_accounts" : m41, - "user__groups_see_all" : m42, + "user__follows_lists_accounts" : m42, + "user__groups_see_all" : m43, "user__guidelines_accept" : MessageLookupByLibrary.simpleMessage("Accept"), "user__guidelines_desc" : MessageLookupByLibrary.simpleMessage("Please take a moment to read and accept our guidelines."), "user__guidelines_reject" : MessageLookupByLibrary.simpleMessage("Reject"), "user__invite" : MessageLookupByLibrary.simpleMessage("Invite"), "user__invite_member" : MessageLookupByLibrary.simpleMessage("Member"), - "user__invite_someone_message" : m43, + "user__invite_someone_message" : m44, "user__invites_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("accepted invite"), "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("accepted invites"), "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Accepted"), @@ -760,11 +769,11 @@ class MessageLookup extends MessageLookupByLibrary { "user__invites_email_text" : MessageLookupByLibrary.simpleMessage("Email"), "user__invites_invite_a_friend" : MessageLookupByLibrary.simpleMessage("Invite a friend"), "user__invites_invite_text" : MessageLookupByLibrary.simpleMessage("Invite"), - "user__invites_joined_with" : m44, + "user__invites_joined_with" : m45, "user__invites_none_left" : MessageLookupByLibrary.simpleMessage("You have no invites available."), "user__invites_none_used" : MessageLookupByLibrary.simpleMessage("Looks like you haven\'t used any invite."), "user__invites_pending" : MessageLookupByLibrary.simpleMessage("Pending"), - "user__invites_pending_email" : m45, + "user__invites_pending_email" : m46, "user__invites_pending_group_item_name" : MessageLookupByLibrary.simpleMessage("pending invite"), "user__invites_pending_group_name" : MessageLookupByLibrary.simpleMessage("pending invites"), "user__invites_refresh" : MessageLookupByLibrary.simpleMessage("Refresh"), @@ -777,14 +786,14 @@ class MessageLookup extends MessageLookupByLibrary { "user__language_settings_saved_success" : MessageLookupByLibrary.simpleMessage("Language changed successfully"), "user__language_settings_title" : MessageLookupByLibrary.simpleMessage("Language settings"), "user__list_name_empty_error" : MessageLookupByLibrary.simpleMessage("List name cannot be empty."), - "user__list_name_range_error" : m46, + "user__list_name_range_error" : m47, "user__million_postfix" : MessageLookupByLibrary.simpleMessage("m"), "user__profile_action_cancel_connection" : MessageLookupByLibrary.simpleMessage("Cancel connection request"), "user__profile_action_deny_connection" : MessageLookupByLibrary.simpleMessage("Deny connection request"), "user__profile_action_user_blocked" : MessageLookupByLibrary.simpleMessage("User blocked"), "user__profile_action_user_unblocked" : MessageLookupByLibrary.simpleMessage("User unblocked"), - "user__profile_bio_length_error" : m47, - "user__profile_location_length_error" : m48, + "user__profile_bio_length_error" : m48, + "user__profile_location_length_error" : m49, "user__profile_url_invalid_error" : MessageLookupByLibrary.simpleMessage("Please provide a valid url."), "user__remove_account_from_list" : MessageLookupByLibrary.simpleMessage("Remove account from lists"), "user__remove_account_from_list_success" : MessageLookupByLibrary.simpleMessage("Success"), @@ -794,7 +803,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Edit circle"), "user__save_connection_circle_hint" : MessageLookupByLibrary.simpleMessage("e.g. Friends, Family, Work."), "user__save_connection_circle_name" : MessageLookupByLibrary.simpleMessage("Name"), - "user__save_connection_circle_name_taken" : m49, + "user__save_connection_circle_name_taken" : m50, "user__save_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Save"), "user__save_connection_circle_users" : MessageLookupByLibrary.simpleMessage("Users"), "user__save_follows_list_create" : MessageLookupByLibrary.simpleMessage("Create list"), @@ -803,7 +812,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_follows_list_emoji_required_error" : MessageLookupByLibrary.simpleMessage("Emoji is required"), "user__save_follows_list_hint_text" : MessageLookupByLibrary.simpleMessage("e.g. Travel, Photography"), "user__save_follows_list_name" : MessageLookupByLibrary.simpleMessage("Name"), - "user__save_follows_list_name_taken" : m50, + "user__save_follows_list_name_taken" : m51, "user__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Save"), "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("Users"), "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("k"), @@ -813,7 +822,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__timeline_filters_circles" : MessageLookupByLibrary.simpleMessage("Circles"), "user__timeline_filters_clear_all" : MessageLookupByLibrary.simpleMessage("Clear all"), "user__timeline_filters_lists" : MessageLookupByLibrary.simpleMessage("Lists"), - "user__timeline_filters_no_match" : m51, + "user__timeline_filters_no_match" : m52, "user__timeline_filters_search_desc" : MessageLookupByLibrary.simpleMessage("Search for circles and lists..."), "user__timeline_filters_title" : MessageLookupByLibrary.simpleMessage("Timeline filters"), "user__translate_see_translation" : MessageLookupByLibrary.simpleMessage("See translation"), @@ -825,15 +834,15 @@ class MessageLookup extends MessageLookupByLibrary { "user__update_connection_circles_title" : MessageLookupByLibrary.simpleMessage("Update connection circles"), "user_search__cancel" : MessageLookupByLibrary.simpleMessage("Cancel"), "user_search__communities" : MessageLookupByLibrary.simpleMessage("Communities"), - "user_search__list_no_results_found" : m52, + "user_search__list_no_results_found" : m53, "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Refresh"), "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Tap to retry."), - "user_search__list_search_text" : m53, - "user_search__no_communities_for" : m54, - "user_search__no_results_for" : m55, - "user_search__no_users_for" : m56, + "user_search__list_search_text" : m54, + "user_search__no_communities_for" : m55, + "user_search__no_results_for" : m56, + "user_search__no_users_for" : m57, "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Search..."), - "user_search__searching_for" : m57, + "user_search__searching_for" : m58, "user_search__users" : MessageLookupByLibrary.simpleMessage("Users") }; } diff --git a/lib/locale/messages_es-ES.dart b/lib/locale/messages_es-ES.dart new file mode 100644 index 000000000..08f3fff1c --- /dev/null +++ b/lib/locale/messages_es-ES.dart @@ -0,0 +1,848 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a es_ES locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// ignore_for_file: unnecessary_brace_in_string_interps + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +// ignore: unnecessary_new +final messages = new MessageLookup(); + +// ignore: unused_element +final _keepAnalysisHappy = Intl.defaultLocale; + +// ignore: non_constant_identifier_names +typedef MessageIfAbsent(String message_str, List args); + +class MessageLookup extends MessageLookupByLibrary { + get localeName => 'es_ES'; + + static m0(minLength, maxLength) => "(${minLength}-${maxLength} caracteres)"; + + static m1(minLength, maxLength) => "La descripción debe tener entre ${minLength} y ${maxLength} caracteres."; + + static m2(minLength, maxLength) => "El nombre debe tener entre ${minLength} y ${maxLength} caracteres."; + + static m3(minLength, maxLength) => "La contraseña debe tener entre ${minLength} y ${maxLength} caracteres."; + + static m4(maxLength) => "El nombre de usuario no puede tener más de ${maxLength} caracteres."; + + static m5(maxLength) => "Los adjetivos no pueden ser más largos que ${maxLength} caracteres."; + + static m6(username) => "¿Seguro que quieres añadir @${username} como administrador de la comunidad?"; + + static m7(username) => "¿Seguro que quieres banear a @${username}?"; + + static m8(maxLength) => "La descripción no puede ser más larga que ${maxLength} caracteres."; + + static m9(username) => "¿Seguro que quieres añadir a @${username} como administrador de la comunidad?"; + + static m10(maxLength) => "El nombre no puede tener más de ${maxLength} caracteres."; + + static m11(min) => "Debes elegir al menos ${min} categorías."; + + static m12(min) => "Debes elegir al menos ${min} categoría."; + + static m13(max) => "Escoge hasta ${max} categorías"; + + static m14(maxLength) => "Las reglas no pueden tener más de ${maxLength} caracteres."; + + static m15(takenName) => "El nombre \'${takenName}\' esta tomado"; + + static m16(maxLength) => "El título no puede ser más largo que ${maxLength} caracteres."; + + static m17(categoryName) => "Trending en ${categoryName}"; + + static m18(currentUserLanguage) => "Idioma (${currentUserLanguage})"; + + static m19(resourceCount, resourceName) => "Ver todos los ${resourceCount} ${resourceName}"; + + static m20(postCommentText) => "[name] [username] también comentó: ${postCommentText}"; + + static m21(postCommentText) => "[name] [username] comentó en tu post: ${postCommentText}"; + + static m22(postCommentText) => "[name] [username] también respondió: ${postCommentText}"; + + static m23(postCommentText) => "[name] [username] respondió: ${postCommentText}"; + + static m24(postCommentText) => "[name] [username] te mencionó en un comentario: ${postCommentText}"; + + static m25(communityName) => "[name] [username] te ha invitado a unirte a la comunidad /c/${communityName}."; + + static m26(maxLength) => "Un comentario no puede ser más largo que ${maxLength} caracteres."; + + static m27(commentsCount) => "Ver los ${commentsCount} comentarios"; + + static m28(circlesSearchQuery) => "\'No se han encontrado círculos que coincidan con \'${circlesSearchQuery}\'."; + + static m29(name) => "${name} aún no ha compartido nada."; + + static m30(postCreatorUsername) => "los círculos de @${postCreatorUsername}\'s"; + + static m31(maxLength) => "El nombre del círculo no debe tener más de ${maxLength} caracteres."; + + static m32(prettyUsersCount) => "${prettyUsersCount} gente"; + + static m33(username) => "¿Seguro que quieres banear a @${username}?"; + + static m34(userName) => "Confirmar conexión con ${userName}"; + + static m35(userName) => "Conectar con ${userName}"; + + static m36(userName) => "Desconectarse de ${userName}"; + + static m37(limit) => "Imagen demasiado grande (límite: ${limit} MB)"; + + static m38(username) => "El nombre de usuario @${username} ya existe"; + + static m39(searchQuery) => "No se encontró un Emoji similar a \'${searchQuery}\'."; + + static m40(searchQuery) => "No se encontró lista con \'${searchQuery}\'"; + + static m41(prettyUsersCount) => "${prettyUsersCount} cuentas"; + + static m42(prettyUsersCount) => "${prettyUsersCount} Cuentas"; + + static m43(groupName) => "Ver ${groupName}"; + + static m44(iosLink, androidLink, inviteLink) => "Hola, me gustaría invitarte a Okuna. Primero, descarga la aplicación en iTunes (${iosLink}) on la PlayStore (${androidLink}). En segundo lugar, pega este enlace de invitación personalizado en el formulario \'Registrarse\' en la aplicación Okuna: ${inviteLink}"; + + static m45(username) => "Se unió con el nombre de usuario @${username}"; + + static m46(email) => "Pendiente, email de invitación enviado a ${email}"; + + static m47(maxLength) => "El nombre de la lista no debe tener más de ${maxLength} caracteres."; + + static m48(maxLength) => "La biografía no puede contener más de ${maxLength} caracteres."; + + static m49(maxLength) => "La ubicación no puede contener más de ${maxLength} caracteres."; + + static m50(takenConnectionsCircleName) => "El nombre de lista \'${takenConnectionsCircleName}\' esta tomado"; + + static m51(listName) => "El nombre de lista \'${listName}\' esta tomado"; + + static m52(searchQuery) => "Sin resultados para \'${searchQuery}\'."; + + static m53(resourcePluralName) => "No se encontró ningun ${resourcePluralName}."; + + static m54(resourcePluralName) => "Buscar ${resourcePluralName}..."; + + static m55(searchQuery) => "No se encontraron comunidades para \'${searchQuery}\'."; + + static m56(searchQuery) => "Sin resultados para \"${searchQuery}\"."; + + static m57(searchQuery) => "No se encontraron usuarios para \'${searchQuery}\'."; + + static m58(searchQuery) => "Buscando \'${searchQuery}\'"; + + final messages = _notInlinedMessages(_notInlinedMessages); + static _notInlinedMessages(_) => { + "auth__change_password_current_pwd" : MessageLookupByLibrary.simpleMessage("Contraseña actual"), + "auth__change_password_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Introduce tu contraseña actual"), + "auth__change_password_current_pwd_incorrect" : MessageLookupByLibrary.simpleMessage("La contraseña introducida fue incorrecta"), + "auth__change_password_new_pwd" : MessageLookupByLibrary.simpleMessage("Nueva contraseña"), + "auth__change_password_new_pwd_error" : MessageLookupByLibrary.simpleMessage("Por favor, asegúrate de que la contraseña tenga entre 10 y 100 caracteres"), + "auth__change_password_new_pwd_hint" : MessageLookupByLibrary.simpleMessage("Introduzca su nueva contraseña"), + "auth__change_password_save_success" : MessageLookupByLibrary.simpleMessage("¡Todo bien! Tu contraseña ha sido actualizada"), + "auth__change_password_save_text" : MessageLookupByLibrary.simpleMessage("Guardar"), + "auth__change_password_title" : MessageLookupByLibrary.simpleMessage("Cambiar contraseña"), + "auth__create_acc__almost_there" : MessageLookupByLibrary.simpleMessage("¡Ya casi!"), + "auth__create_acc__are_you_legal_age" : MessageLookupByLibrary.simpleMessage("¿Tienes más de 16 años?"), + "auth__create_acc__avatar_choose_camera" : MessageLookupByLibrary.simpleMessage("Toma una foto"), + "auth__create_acc__avatar_choose_gallery" : MessageLookupByLibrary.simpleMessage("Usar una foto existente"), + "auth__create_acc__avatar_remove_photo" : MessageLookupByLibrary.simpleMessage("Eliminar foto"), + "auth__create_acc__avatar_tap_to_change" : MessageLookupByLibrary.simpleMessage("Tocar para cambiar"), + "auth__create_acc__can_change_username" : MessageLookupByLibrary.simpleMessage("Puedes cambiarlo en cualquier momento en la configuración de tu perfil."), + "auth__create_acc__congratulations" : MessageLookupByLibrary.simpleMessage("¡Felicidades!"), + "auth__create_acc__create_account" : MessageLookupByLibrary.simpleMessage("Crear cuenta"), + "auth__create_acc__done" : MessageLookupByLibrary.simpleMessage("Crear cuenta"), + "auth__create_acc__done_continue" : MessageLookupByLibrary.simpleMessage("Entrar"), + "auth__create_acc__done_created" : MessageLookupByLibrary.simpleMessage("Tu cuenta ha sido creada con el nombre de usuario "), + "auth__create_acc__done_description" : MessageLookupByLibrary.simpleMessage("Tu cuenta ha sido creada."), + "auth__create_acc__done_subtext" : MessageLookupByLibrary.simpleMessage("Puedes cambiar esto en cualquier momento en la configuración de tu perfil."), + "auth__create_acc__done_title" : MessageLookupByLibrary.simpleMessage("¡Wohoo!"), + "auth__create_acc__email_empty_error" : MessageLookupByLibrary.simpleMessage("😱 Tu correo electrónico no puede estar vacío"), + "auth__create_acc__email_invalid_error" : MessageLookupByLibrary.simpleMessage("😅 Por favor, proporcione una dirección de correo electrónico válida."), + "auth__create_acc__email_placeholder" : MessageLookupByLibrary.simpleMessage("marc_anthony@salsa.com"), + "auth__create_acc__email_server_error" : MessageLookupByLibrary.simpleMessage("😭 Estamos experimentando problemas con nuestros servidores, por favor inténtalo de nuevo en un par de minutos."), + "auth__create_acc__email_taken_error" : MessageLookupByLibrary.simpleMessage("🤔 Una cuenta ya existe para ese correo electrónico."), + "auth__create_acc__lets_get_started" : MessageLookupByLibrary.simpleMessage("¡Empecemos!"), + "auth__create_acc__link_empty_error" : MessageLookupByLibrary.simpleMessage("La dirección no puede estar vacía."), + "auth__create_acc__link_invalid_error" : MessageLookupByLibrary.simpleMessage("Este enlace parece ser inválido."), + "auth__create_acc__name_characters_error" : MessageLookupByLibrary.simpleMessage("😅 Un nombre sólo puede contener caracteres alfanuméricos (por ahora)."), + "auth__create_acc__name_empty_error" : MessageLookupByLibrary.simpleMessage("😱 Tu nombre no puede estar vacío."), + "auth__create_acc__name_length_error" : MessageLookupByLibrary.simpleMessage("😱 Tu nombre no puede tener más de 50 caracteres. (Si es así, lo sentimos)"), + "auth__create_acc__name_placeholder" : MessageLookupByLibrary.simpleMessage("Luis Miguel"), + "auth__create_acc__next" : MessageLookupByLibrary.simpleMessage("Siguiente"), + "auth__create_acc__one_last_thing" : MessageLookupByLibrary.simpleMessage("Una última cosa..."), + "auth__create_acc__password_empty_error" : MessageLookupByLibrary.simpleMessage("😱 La contraseña no puede estar vacía"), + "auth__create_acc__password_length_error" : MessageLookupByLibrary.simpleMessage("😅 La contraseña debe tener entre 8 y 64 caracteres."), + "auth__create_acc__paste_link" : MessageLookupByLibrary.simpleMessage("Pega el enlace de registro a continuación"), + "auth__create_acc__paste_link_help_text" : MessageLookupByLibrary.simpleMessage("Utiliza el link en tu correo de invitación a Okuna."), + "auth__create_acc__paste_password_reset_link" : MessageLookupByLibrary.simpleMessage("Pega el enlace de restablecimiento de contraseña a continuación"), + "auth__create_acc__previous" : MessageLookupByLibrary.simpleMessage("Atrás"), + "auth__create_acc__register" : MessageLookupByLibrary.simpleMessage("Registro"), + "auth__create_acc__request_invite" : MessageLookupByLibrary.simpleMessage("¿No tienes invitación? Solicita una aquí."), + "auth__create_acc__submit_error_desc_server" : MessageLookupByLibrary.simpleMessage("😭 Estamos experimentando problemas con nuestros servidores, por favor inténtalo de nuevo en un par de minutos."), + "auth__create_acc__submit_error_desc_validation" : MessageLookupByLibrary.simpleMessage("😅 Parece que algunos de los datos no son correctos, por favor comprueba e intenta de nuevo."), + "auth__create_acc__submit_error_title" : MessageLookupByLibrary.simpleMessage("Oh no..."), + "auth__create_acc__submit_loading_desc" : MessageLookupByLibrary.simpleMessage("Estamos creando tu cuenta."), + "auth__create_acc__submit_loading_title" : MessageLookupByLibrary.simpleMessage("¡Ya casi!"), + "auth__create_acc__subscribe" : MessageLookupByLibrary.simpleMessage("Solicitar"), + "auth__create_acc__subscribe_to_waitlist_text" : MessageLookupByLibrary.simpleMessage("¡Solicitar una invitación!"), + "auth__create_acc__username_characters_error" : MessageLookupByLibrary.simpleMessage("😅 Un nombre de usuario sólo puede contener caracteres alfanuméricos y guiones bajos."), + "auth__create_acc__username_empty_error" : MessageLookupByLibrary.simpleMessage("😱 El nombre de usuario no puede estar vacío."), + "auth__create_acc__username_length_error" : MessageLookupByLibrary.simpleMessage("😅 Un nombre de usuario no puede tener más de 30 caracteres."), + "auth__create_acc__username_placeholder" : MessageLookupByLibrary.simpleMessage("juanga"), + "auth__create_acc__username_server_error" : MessageLookupByLibrary.simpleMessage("😭 Estamos experimentando problemas con nuestros servidores, por favor inténtalo de nuevo en un par de minutos."), + "auth__create_acc__username_taken_error" : MessageLookupByLibrary.simpleMessage("😩 El nombre de usuario @%s ya está tomado."), + "auth__create_acc__welcome_to_beta" : MessageLookupByLibrary.simpleMessage("¡Bienvenido a la Beta!"), + "auth__create_acc__what_avatar" : MessageLookupByLibrary.simpleMessage("Sube una foto de perfil"), + "auth__create_acc__what_email" : MessageLookupByLibrary.simpleMessage("¿Cuál es tu correo electrónico?"), + "auth__create_acc__what_name" : MessageLookupByLibrary.simpleMessage("Como te llamas?"), + "auth__create_acc__what_password" : MessageLookupByLibrary.simpleMessage("Elige una contraseña"), + "auth__create_acc__what_password_subtext" : MessageLookupByLibrary.simpleMessage("(min 10 caracteres)"), + "auth__create_acc__what_username" : MessageLookupByLibrary.simpleMessage("Que usuario te gustaria tener?"), + "auth__create_acc__your_subscribed" : MessageLookupByLibrary.simpleMessage("Eres el número {0} en la lista de espera."), + "auth__create_acc__your_username_is" : MessageLookupByLibrary.simpleMessage("Tu nombre de usuario es "), + "auth__create_acc_password_hint_text" : m0, + "auth__create_account" : MessageLookupByLibrary.simpleMessage("Registro"), + "auth__description_empty_error" : MessageLookupByLibrary.simpleMessage("La descripción no puede estar vacía."), + "auth__description_range_error" : m1, + "auth__email_empty_error" : MessageLookupByLibrary.simpleMessage("Correo electrónico no puede estar vacío."), + "auth__email_invalid_error" : MessageLookupByLibrary.simpleMessage("Ingresa un email válido."), + "auth__headline" : MessageLookupByLibrary.simpleMessage("🕊 Una red social mejor."), + "auth__login" : MessageLookupByLibrary.simpleMessage("Entrar"), + "auth__login__connection_error" : MessageLookupByLibrary.simpleMessage("No podemos llegar a nuestros servidores. ¿Estás conectado a Internet?"), + "auth__login__credentials_mismatch_error" : MessageLookupByLibrary.simpleMessage("Las credenciales proporcionadas no coinciden."), + "auth__login__email_label" : MessageLookupByLibrary.simpleMessage("Correo electrónico"), + "auth__login__forgot_password" : MessageLookupByLibrary.simpleMessage("Olvidé mi contraseña"), + "auth__login__forgot_password_subtitle" : MessageLookupByLibrary.simpleMessage("Introduce tu nombre de usuario o email"), + "auth__login__login" : MessageLookupByLibrary.simpleMessage("Continuar"), + "auth__login__or_text" : MessageLookupByLibrary.simpleMessage("O"), + "auth__login__password_empty_error" : MessageLookupByLibrary.simpleMessage("La contraseña es requerida."), + "auth__login__password_label" : MessageLookupByLibrary.simpleMessage("Contraseña"), + "auth__login__password_length_error" : MessageLookupByLibrary.simpleMessage("La contraseña debe tener entre 8 y 64 caracteres."), + "auth__login__previous" : MessageLookupByLibrary.simpleMessage("Anterior"), + "auth__login__server_error" : MessageLookupByLibrary.simpleMessage("Uh oh.. Estamos experimentando problemas del servidor. Por favor, inténtalo de nuevo en unos minutos."), + "auth__login__subtitle" : MessageLookupByLibrary.simpleMessage("Introduce tus credenciales para continuar."), + "auth__login__title" : MessageLookupByLibrary.simpleMessage("¡Bienvenido de nuevo!"), + "auth__login__username_characters_error" : MessageLookupByLibrary.simpleMessage("El nombre de usuario sólo puede contener caracteres alfanuméricos y guiones bajos."), + "auth__login__username_empty_error" : MessageLookupByLibrary.simpleMessage("El nombre de usuario es requerido."), + "auth__login__username_label" : MessageLookupByLibrary.simpleMessage("Usuario"), + "auth__login__username_length_error" : MessageLookupByLibrary.simpleMessage("El nombre de usuario no puede tener más de 30 caracteres."), + "auth__name_empty_error" : MessageLookupByLibrary.simpleMessage("El nombre no puede estar vacío."), + "auth__name_range_error" : m2, + "auth__password_empty_error" : MessageLookupByLibrary.simpleMessage("La contraseña no puede estar vacía."), + "auth__password_range_error" : m3, + "auth__reset_password_success_info" : MessageLookupByLibrary.simpleMessage("Su contraseña ha sido actualizada correctamente"), + "auth__reset_password_success_title" : MessageLookupByLibrary.simpleMessage("¡Todo Listo!"), + "auth__username_characters_error" : MessageLookupByLibrary.simpleMessage("Un nombre de usuario sólo puede contener caracteres alfanuméricos y guiones bajos."), + "auth__username_empty_error" : MessageLookupByLibrary.simpleMessage("El nombre de usuario no puede estar vacío."), + "auth__username_maxlength_error" : m4, + "community__about" : MessageLookupByLibrary.simpleMessage("Acerca de"), + "community__actions_invite_people_title" : MessageLookupByLibrary.simpleMessage("Invitar a la comunidad"), + "community__actions_manage_text" : MessageLookupByLibrary.simpleMessage("Gestionar"), + "community__add_administrators_title" : MessageLookupByLibrary.simpleMessage("Añadir administrador."), + "community__add_moderator_title" : MessageLookupByLibrary.simpleMessage("Añadir moderador"), + "community__adjectives_range_error" : m5, + "community__admin_add_confirmation" : m6, + "community__admin_desc" : MessageLookupByLibrary.simpleMessage("Esto permitirá al miembro editar los detalles de la comunidad, administradores, moderadores y usuarios baneados."), + "community__administrated_communities" : MessageLookupByLibrary.simpleMessage("comunidades administradas"), + "community__administrated_community" : MessageLookupByLibrary.simpleMessage("comunidad administrada"), + "community__administrated_title" : MessageLookupByLibrary.simpleMessage("Administradas"), + "community__administrator_plural" : MessageLookupByLibrary.simpleMessage("administradores"), + "community__administrator_text" : MessageLookupByLibrary.simpleMessage("administrador"), + "community__administrator_you" : MessageLookupByLibrary.simpleMessage("Tú"), + "community__administrators_title" : MessageLookupByLibrary.simpleMessage("Administradores"), + "community__ban_confirmation" : m7, + "community__ban_desc" : MessageLookupByLibrary.simpleMessage("Esto removera al usuario de la comunidad y no le permitirá volver a unirse."), + "community__ban_user_title" : MessageLookupByLibrary.simpleMessage("Banear usuario"), + "community__banned_user_text" : MessageLookupByLibrary.simpleMessage("usuario baneado"), + "community__banned_users_text" : MessageLookupByLibrary.simpleMessage("usuarios baneados"), + "community__banned_users_title" : MessageLookupByLibrary.simpleMessage("Usuarios baneados"), + "community__button_rules" : MessageLookupByLibrary.simpleMessage("Reglas"), + "community__button_staff" : MessageLookupByLibrary.simpleMessage("Equipo"), + "community__categories" : MessageLookupByLibrary.simpleMessage("categorías."), + "community__category" : MessageLookupByLibrary.simpleMessage("categoría."), + "community__communities" : MessageLookupByLibrary.simpleMessage("comunidades"), + "community__communities_all_text" : MessageLookupByLibrary.simpleMessage("Todo"), + "community__communities_no_category_found" : MessageLookupByLibrary.simpleMessage("No se encontraron categorías. Por favor, inténtalo de nuevo en unos minutos."), + "community__communities_refresh_text" : MessageLookupByLibrary.simpleMessage("Refrescar"), + "community__communities_title" : MessageLookupByLibrary.simpleMessage("Comunidades"), + "community__community" : MessageLookupByLibrary.simpleMessage("comunidad"), + "community__community_members" : MessageLookupByLibrary.simpleMessage("Miembros de la comunidad"), + "community__community_staff" : MessageLookupByLibrary.simpleMessage("Equipo de la comunidad"), + "community__confirmation_title" : MessageLookupByLibrary.simpleMessage("Confirmación"), + "community__delete_confirmation" : MessageLookupByLibrary.simpleMessage("¿Estás seguro de que deseas eliminar la comunidad?"), + "community__delete_desc" : MessageLookupByLibrary.simpleMessage("No verás sus posts en tus líneas de tiempo ni podrás publicar a la comunidad."), + "community__description_range_error" : m8, + "community__favorite_action" : MessageLookupByLibrary.simpleMessage("Favorizar comunidad"), + "community__favorite_communities" : MessageLookupByLibrary.simpleMessage("comunidades favoritas"), + "community__favorite_community" : MessageLookupByLibrary.simpleMessage("favorizar comunidad"), + "community__favorites_title" : MessageLookupByLibrary.simpleMessage("Favoritas"), + "community__invite_to_community_resource_plural" : MessageLookupByLibrary.simpleMessage("conexiones y seguidores"), + "community__invite_to_community_resource_singular" : MessageLookupByLibrary.simpleMessage("conexión o seguidor"), + "community__invite_to_community_title" : MessageLookupByLibrary.simpleMessage("Invitar a la comunidad"), + "community__invited_by_member" : MessageLookupByLibrary.simpleMessage("Debes ser invitado por un miembro."), + "community__invited_by_moderator" : MessageLookupByLibrary.simpleMessage("Debes ser invitado por un moderador."), + "community__is_private" : MessageLookupByLibrary.simpleMessage("Esta comunidad es privada."), + "community__join_communities_desc" : MessageLookupByLibrary.simpleMessage("¡Únete a comunidades para llenar esta pestaña!"), + "community__join_community" : MessageLookupByLibrary.simpleMessage("Unirse"), + "community__joined_communities" : MessageLookupByLibrary.simpleMessage("comunidades parte de"), + "community__joined_community" : MessageLookupByLibrary.simpleMessage("comunidad parte de"), + "community__joined_title" : MessageLookupByLibrary.simpleMessage("Parte de"), + "community__leave_community" : MessageLookupByLibrary.simpleMessage("Dejar"), + "community__leave_confirmation" : MessageLookupByLibrary.simpleMessage("¿Está seguro de que deseas abandonar la comunidad?"), + "community__leave_desc" : MessageLookupByLibrary.simpleMessage("No verás sus posts en tus líneas de tiempo ni podrás publicar a la comunidad."), + "community__manage_add_favourite" : MessageLookupByLibrary.simpleMessage("Añadir la comunidad a tus favoritos"), + "community__manage_admins_desc" : MessageLookupByLibrary.simpleMessage("Ver, añadir y eliminar administradores."), + "community__manage_admins_title" : MessageLookupByLibrary.simpleMessage("Administradores"), + "community__manage_banned_desc" : MessageLookupByLibrary.simpleMessage("Ver, añadir y eliminar usuarios baneados."), + "community__manage_banned_title" : MessageLookupByLibrary.simpleMessage("Usuarios baneados"), + "community__manage_closed_posts_desc" : MessageLookupByLibrary.simpleMessage("Ver y administrar posts cerrados"), + "community__manage_closed_posts_title" : MessageLookupByLibrary.simpleMessage("Posts cerrados"), + "community__manage_delete_desc" : MessageLookupByLibrary.simpleMessage("Eliminar la comunidad, para siempre."), + "community__manage_delete_title" : MessageLookupByLibrary.simpleMessage("Eliminar comunidad"), + "community__manage_details_desc" : MessageLookupByLibrary.simpleMessage("Cambia el título, nombre, avatar, foto de portada y más."), + "community__manage_details_title" : MessageLookupByLibrary.simpleMessage("Detalles"), + "community__manage_invite_desc" : MessageLookupByLibrary.simpleMessage("Invita a tus conexiones y seguidores a unirse a la comunidad."), + "community__manage_invite_title" : MessageLookupByLibrary.simpleMessage("Invitar a personas"), + "community__manage_leave_desc" : MessageLookupByLibrary.simpleMessage("Dejar la comunidad."), + "community__manage_leave_title" : MessageLookupByLibrary.simpleMessage("Dejar comunidad"), + "community__manage_mod_reports_desc" : MessageLookupByLibrary.simpleMessage("Revisa los reportes de moderación de la comunidad."), + "community__manage_mod_reports_title" : MessageLookupByLibrary.simpleMessage("Reportes de moderación"), + "community__manage_mods_desc" : MessageLookupByLibrary.simpleMessage("Ver, añadir y eliminar administradores."), + "community__manage_mods_title" : MessageLookupByLibrary.simpleMessage("Moderadores"), + "community__manage_remove_favourite" : MessageLookupByLibrary.simpleMessage("Remover la comunidad a tus favoritos"), + "community__manage_title" : MessageLookupByLibrary.simpleMessage("Gestionar comunidad"), + "community__member" : MessageLookupByLibrary.simpleMessage("miembro"), + "community__member_capitalized" : MessageLookupByLibrary.simpleMessage("Miembro"), + "community__member_plural" : MessageLookupByLibrary.simpleMessage("miembros"), + "community__members_capitalized" : MessageLookupByLibrary.simpleMessage("Miembros"), + "community__moderated_communities" : MessageLookupByLibrary.simpleMessage("comunidades moderadas"), + "community__moderated_community" : MessageLookupByLibrary.simpleMessage("comunidad moderada"), + "community__moderated_title" : MessageLookupByLibrary.simpleMessage("Moderadas"), + "community__moderator_add_confirmation" : m9, + "community__moderator_desc" : MessageLookupByLibrary.simpleMessage("Esto permitirá al miembro editar los detalles de la comunidad, administradores, moderadores y usuarios baneados."), + "community__moderator_resource_name" : MessageLookupByLibrary.simpleMessage("moderador"), + "community__moderators_resource_name" : MessageLookupByLibrary.simpleMessage("moderadores"), + "community__moderators_title" : MessageLookupByLibrary.simpleMessage("Moderadores"), + "community__moderators_you" : MessageLookupByLibrary.simpleMessage("Tú"), + "community__name_characters_error" : MessageLookupByLibrary.simpleMessage("El nombre sólo puede contener caracteres alfanuméricos y guiones bajos."), + "community__name_empty_error" : MessageLookupByLibrary.simpleMessage("El nombre no puede estar vacío."), + "community__name_range_error" : m10, + "community__no" : MessageLookupByLibrary.simpleMessage("No"), + "community__pick_atleast_min_categories" : m11, + "community__pick_atleast_min_category" : m12, + "community__pick_upto_max" : m13, + "community__post_plural" : MessageLookupByLibrary.simpleMessage("posts"), + "community__post_singular" : MessageLookupByLibrary.simpleMessage("post"), + "community__posts" : MessageLookupByLibrary.simpleMessage("Posts"), + "community__refresh_text" : MessageLookupByLibrary.simpleMessage("Refrescar"), + "community__refreshing" : MessageLookupByLibrary.simpleMessage("Refrescando comunidad"), + "community__rules_empty_error" : MessageLookupByLibrary.simpleMessage("Las reglas no pueden estar vacías."), + "community__rules_range_error" : m14, + "community__rules_text" : MessageLookupByLibrary.simpleMessage("Reglas"), + "community__rules_title" : MessageLookupByLibrary.simpleMessage("Reglas de la comunidad"), + "community__save_community_create_community" : MessageLookupByLibrary.simpleMessage("Crear comunidad"), + "community__save_community_create_text" : MessageLookupByLibrary.simpleMessage("Crear"), + "community__save_community_edit_community" : MessageLookupByLibrary.simpleMessage("Editar comunidad"), + "community__save_community_label_title" : MessageLookupByLibrary.simpleMessage("Título"), + "community__save_community_label_title_hint_text" : MessageLookupByLibrary.simpleMessage("por ejemplo, Viajes, Fotografía, Gaming."), + "community__save_community_name_category" : MessageLookupByLibrary.simpleMessage("Categoría"), + "community__save_community_name_label_color" : MessageLookupByLibrary.simpleMessage("Color"), + "community__save_community_name_label_color_hint_text" : MessageLookupByLibrary.simpleMessage("(Tocar para cambiar)"), + "community__save_community_name_label_desc_optional" : MessageLookupByLibrary.simpleMessage("Descripción · Opcional"), + "community__save_community_name_label_desc_optional_hint_text" : MessageLookupByLibrary.simpleMessage("¿De qué trata tu comunidad?"), + "community__save_community_name_label_member_adjective" : MessageLookupByLibrary.simpleMessage("Adjetivo de miembro · Opcional"), + "community__save_community_name_label_member_adjective_hint_text" : MessageLookupByLibrary.simpleMessage("por ejemplo, viajero, fotógrafo, jugador."), + "community__save_community_name_label_members_adjective" : MessageLookupByLibrary.simpleMessage("Adjetivo de miembros · Opcional"), + "community__save_community_name_label_members_adjective_hint_text" : MessageLookupByLibrary.simpleMessage("por ejemplo, viajeros, fotógrafos, jugadores."), + "community__save_community_name_label_rules_optional" : MessageLookupByLibrary.simpleMessage("Reglas · Opcional"), + "community__save_community_name_label_rules_optional_hint_text" : MessageLookupByLibrary.simpleMessage("¿Hay algo que te gustaría que tus miembros sepan?"), + "community__save_community_name_label_type" : MessageLookupByLibrary.simpleMessage("Tipo"), + "community__save_community_name_label_type_hint_text" : MessageLookupByLibrary.simpleMessage("(Tocar para cambiar)"), + "community__save_community_name_member_invites" : MessageLookupByLibrary.simpleMessage("Invitaciones de miembros"), + "community__save_community_name_member_invites_subtitle" : MessageLookupByLibrary.simpleMessage("Los miembros pueden invitar a gente a la comunidad"), + "community__save_community_name_taken" : m15, + "community__save_community_name_title" : MessageLookupByLibrary.simpleMessage("Nombre"), + "community__save_community_name_title_hint_text" : MessageLookupByLibrary.simpleMessage(" por ejemplo, viajes, fotografía, juegos."), + "community__save_community_save_text" : MessageLookupByLibrary.simpleMessage("Guardar"), + "community__title_empty_error" : MessageLookupByLibrary.simpleMessage("El título no puede estar vacío."), + "community__title_range_error" : m16, + "community__trending_in_all" : MessageLookupByLibrary.simpleMessage("Trending en todas las categorías"), + "community__trending_in_category" : m17, + "community__trending_none_found" : MessageLookupByLibrary.simpleMessage("No se encontraron comunidades trending. Inténtalo de nuevo en unos minutos."), + "community__trending_refresh" : MessageLookupByLibrary.simpleMessage("Refrescar"), + "community__type_private" : MessageLookupByLibrary.simpleMessage("Privada"), + "community__type_public" : MessageLookupByLibrary.simpleMessage("Pública"), + "community__unfavorite_action" : MessageLookupByLibrary.simpleMessage("Desfavorizar comunidad"), + "community__user_you_text" : MessageLookupByLibrary.simpleMessage("Tú"), + "community__yes" : MessageLookupByLibrary.simpleMessage("Si"), + "contextual_account_search_box__suggestions" : MessageLookupByLibrary.simpleMessage("Sugerencias"), + "drawer__account_settings" : MessageLookupByLibrary.simpleMessage("Configuración de cuenta"), + "drawer__account_settings_blocked_users" : MessageLookupByLibrary.simpleMessage("Usuarios bloqueados"), + "drawer__account_settings_change_email" : MessageLookupByLibrary.simpleMessage("Cambiar email"), + "drawer__account_settings_change_password" : MessageLookupByLibrary.simpleMessage("Cambiar contraseña"), + "drawer__account_settings_delete_account" : MessageLookupByLibrary.simpleMessage("Eliminar cuenta"), + "drawer__account_settings_language" : m18, + "drawer__account_settings_language_text" : MessageLookupByLibrary.simpleMessage("Idioma"), + "drawer__account_settings_notifications" : MessageLookupByLibrary.simpleMessage("Notificaciones"), + "drawer__app_account_text" : MessageLookupByLibrary.simpleMessage("App & cuenta"), + "drawer__application_settings" : MessageLookupByLibrary.simpleMessage("Configuración de la aplicación"), + "drawer__connections" : MessageLookupByLibrary.simpleMessage("Mis conexiones"), + "drawer__customize" : MessageLookupByLibrary.simpleMessage("Personalizar"), + "drawer__global_moderation" : MessageLookupByLibrary.simpleMessage("Moderación global"), + "drawer__help" : MessageLookupByLibrary.simpleMessage("Asistencia y comentarios"), + "drawer__lists" : MessageLookupByLibrary.simpleMessage("Mis listas"), + "drawer__logout" : MessageLookupByLibrary.simpleMessage("Cerrar sesión"), + "drawer__main_title" : MessageLookupByLibrary.simpleMessage("Mi Okuna"), + "drawer__menu_title" : MessageLookupByLibrary.simpleMessage("Menú"), + "drawer__my_circles" : MessageLookupByLibrary.simpleMessage("Mis círculos"), + "drawer__my_followers" : MessageLookupByLibrary.simpleMessage("Mis seguidores"), + "drawer__my_following" : MessageLookupByLibrary.simpleMessage("Mis seguidos"), + "drawer__my_invites" : MessageLookupByLibrary.simpleMessage("Mis invitaciones"), + "drawer__my_lists" : MessageLookupByLibrary.simpleMessage("Mis listas"), + "drawer__my_mod_penalties" : MessageLookupByLibrary.simpleMessage("Mis penalizaciones de moderación"), + "drawer__my_pending_mod_tasks" : MessageLookupByLibrary.simpleMessage("Mis tareas de moderación pendientes"), + "drawer__profile" : MessageLookupByLibrary.simpleMessage("Perfil"), + "drawer__settings" : MessageLookupByLibrary.simpleMessage("Configuración"), + "drawer__themes" : MessageLookupByLibrary.simpleMessage("Temas"), + "drawer__useful_links_guidelines" : MessageLookupByLibrary.simpleMessage("Reglas de Okuna"), + "drawer__useful_links_guidelines_bug_tracker" : MessageLookupByLibrary.simpleMessage("Rastreador de errores"), + "drawer__useful_links_guidelines_bug_tracker_desc" : MessageLookupByLibrary.simpleMessage("Reportar un error o votar errores existentes"), + "drawer__useful_links_guidelines_desc" : MessageLookupByLibrary.simpleMessage("Las reglas que todos esperamos sigan para una coexistencia sana y amistosa."), + "drawer__useful_links_guidelines_feature_requests" : MessageLookupByLibrary.simpleMessage("Solicitudes de funcionalidad"), + "drawer__useful_links_guidelines_feature_requests_desc" : MessageLookupByLibrary.simpleMessage("Solicitar una función o votar peticiones existentes"), + "drawer__useful_links_guidelines_github" : MessageLookupByLibrary.simpleMessage("Tabla de proyectos Github"), + "drawer__useful_links_guidelines_github_desc" : MessageLookupByLibrary.simpleMessage("Echa un vistazo a lo que estamos trabajando actualmente"), + "drawer__useful_links_guidelines_handbook" : MessageLookupByLibrary.simpleMessage("Manual de usuario"), + "drawer__useful_links_guidelines_handbook_desc" : MessageLookupByLibrary.simpleMessage("Un libro con todo lo que hay que saber sobre el uso de la plataforma"), + "drawer__useful_links_slack_channel" : MessageLookupByLibrary.simpleMessage("Slack de la comunidad"), + "drawer__useful_links_slack_channel_desc" : MessageLookupByLibrary.simpleMessage("Un lugar para discutir todo sobre Okuna"), + "drawer__useful_links_support" : MessageLookupByLibrary.simpleMessage("Soporte Okuna"), + "drawer__useful_links_support_desc" : MessageLookupByLibrary.simpleMessage("Encuentra una forma de ayudarnos en nuestro viaje!"), + "drawer__useful_links_title" : MessageLookupByLibrary.simpleMessage("Enlaces útiles"), + "error__no_internet_connection" : MessageLookupByLibrary.simpleMessage("Sin conexión al internet"), + "error__unknown_error" : MessageLookupByLibrary.simpleMessage("Error desconocido"), + "moderation__actions_chat_with_team" : MessageLookupByLibrary.simpleMessage("Chatear con el equipo"), + "moderation__actions_review" : MessageLookupByLibrary.simpleMessage("Revisar"), + "moderation__category_text" : MessageLookupByLibrary.simpleMessage("Categoria"), + "moderation__community_moderated_objects" : MessageLookupByLibrary.simpleMessage("Objectos moderados de la comunidad"), + "moderation__community_review_approve" : MessageLookupByLibrary.simpleMessage("Aprobar"), + "moderation__community_review_item_verified" : MessageLookupByLibrary.simpleMessage("Este elemento ha sido verificado"), + "moderation__community_review_object" : MessageLookupByLibrary.simpleMessage("Objeto"), + "moderation__community_review_reject" : MessageLookupByLibrary.simpleMessage("rechazar"), + "moderation__community_review_title" : MessageLookupByLibrary.simpleMessage("Revisar objeto moderado"), + "moderation__confirm_report_community_reported" : MessageLookupByLibrary.simpleMessage("Comunidad reportada"), + "moderation__confirm_report_item_reported" : MessageLookupByLibrary.simpleMessage("Objeto reportado"), + "moderation__confirm_report_post_comment_reported" : MessageLookupByLibrary.simpleMessage("Comentario reportado"), + "moderation__confirm_report_post_reported" : MessageLookupByLibrary.simpleMessage("Post reportado"), + "moderation__confirm_report_provide_details" : MessageLookupByLibrary.simpleMessage("¿Puedes proporcionar detalles adicionales que puedan ser relevantes para el reporte?"), + "moderation__confirm_report_provide_happen_next" : MessageLookupByLibrary.simpleMessage("Esto es lo que sucederá a continuación:"), + "moderation__confirm_report_provide_happen_next_desc" : MessageLookupByLibrary.simpleMessage("- El reporte se enviará de forma anónima. \n- Si estas reportando un post o comentario, el reporte se enviará al staff de Okuna y si aplicable, los moderadores de la comunidad donde el contenido se encuentra y se removerá de tu linea de tiempo.\n- Si estas reportando una cuenta, se enviará al staff de Okuna.\n- Lo revisaremos, si es aprobado, el contenido será eliminado y las penalidades serán entregadas a las personas involucradas, desde una suspensión temporal hasta la eliminación de la cuenta, dependiendo de la gravedad de la transgresión. \n- Si se descubre que el informe se ha realizado en un intento de dañar a otro miembro o comunidad de la plataforma sin infringir el motivo indicado, se te aplicarán sanciones.\n"), + "moderation__confirm_report_provide_optional_hint_text" : MessageLookupByLibrary.simpleMessage("Escribe aquí..."), + "moderation__confirm_report_provide_optional_info" : MessageLookupByLibrary.simpleMessage("(Opcional)"), + "moderation__confirm_report_submit" : MessageLookupByLibrary.simpleMessage("Entiendo, enviar."), + "moderation__confirm_report_title" : MessageLookupByLibrary.simpleMessage("Enviar reporte"), + "moderation__confirm_report_user_reported" : MessageLookupByLibrary.simpleMessage("Usuario reportado"), + "moderation__description_text" : MessageLookupByLibrary.simpleMessage("Descripción"), + "moderation__filters_apply" : MessageLookupByLibrary.simpleMessage("Aplicar los filtros"), + "moderation__filters_other" : MessageLookupByLibrary.simpleMessage("Otro"), + "moderation__filters_reset" : MessageLookupByLibrary.simpleMessage("Resetear"), + "moderation__filters_status" : MessageLookupByLibrary.simpleMessage("Estado"), + "moderation__filters_title" : MessageLookupByLibrary.simpleMessage("Filtros de moderación"), + "moderation__filters_type" : MessageLookupByLibrary.simpleMessage("Tipo"), + "moderation__filters_verified" : MessageLookupByLibrary.simpleMessage("Verificado"), + "moderation__global_review_object_text" : MessageLookupByLibrary.simpleMessage("Objeto"), + "moderation__global_review_title" : MessageLookupByLibrary.simpleMessage("Revisar objeto moderado"), + "moderation__global_review_unverify_text" : MessageLookupByLibrary.simpleMessage("Desverificar"), + "moderation__global_review_verify_text" : MessageLookupByLibrary.simpleMessage("Verificar"), + "moderation__globally_moderated_objects" : MessageLookupByLibrary.simpleMessage("Objetos moderados globalmente"), + "moderation__moderated_object_false_text" : MessageLookupByLibrary.simpleMessage("Falso"), + "moderation__moderated_object_reports_count" : MessageLookupByLibrary.simpleMessage("Cantidad de denuncias"), + "moderation__moderated_object_status" : MessageLookupByLibrary.simpleMessage("Estado"), + "moderation__moderated_object_title" : MessageLookupByLibrary.simpleMessage("Objeto"), + "moderation__moderated_object_true_text" : MessageLookupByLibrary.simpleMessage("Cierto"), + "moderation__moderated_object_verified" : MessageLookupByLibrary.simpleMessage("Verificado"), + "moderation__moderated_object_verified_by_staff" : MessageLookupByLibrary.simpleMessage("Verificado por el equipo de Okuna"), + "moderation__my_moderation_penalties_resouce_singular" : MessageLookupByLibrary.simpleMessage("penalizacion de moderación"), + "moderation__my_moderation_penalties_resource_plural" : MessageLookupByLibrary.simpleMessage("penalizaciones de moderación"), + "moderation__my_moderation_penalties_title" : MessageLookupByLibrary.simpleMessage("Penalizaciones de moderación"), + "moderation__my_moderation_tasks_title" : MessageLookupByLibrary.simpleMessage("Tareas de moderación pendientes"), + "moderation__no_description_text" : MessageLookupByLibrary.simpleMessage("Sin descripción"), + "moderation__object_status_title" : MessageLookupByLibrary.simpleMessage("Estado"), + "moderation__pending_moderation_tasks_plural" : MessageLookupByLibrary.simpleMessage("tareas de moderación pendientes"), + "moderation__pending_moderation_tasks_singular" : MessageLookupByLibrary.simpleMessage("tarea de moderación pendiente"), + "moderation__report_account_text" : MessageLookupByLibrary.simpleMessage("Reportar cuenta"), + "moderation__report_comment_text" : MessageLookupByLibrary.simpleMessage("Reportar comentario"), + "moderation__report_community_text" : MessageLookupByLibrary.simpleMessage("Reportar comunidad"), + "moderation__report_post_text" : MessageLookupByLibrary.simpleMessage("Reportar post"), + "moderation__reporter_text" : MessageLookupByLibrary.simpleMessage("Reportero"), + "moderation__reports_preview_resource_reports" : MessageLookupByLibrary.simpleMessage("reportes"), + "moderation__reports_preview_title" : MessageLookupByLibrary.simpleMessage("Reportes"), + "moderation__reports_see_all" : m19, + "moderation__tap_to_retry" : MessageLookupByLibrary.simpleMessage("Toca para reintentar la carga de elementos"), + "moderation__update_category_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "moderation__update_category_title" : MessageLookupByLibrary.simpleMessage("Actualizar categoría"), + "moderation__update_description_report_desc" : MessageLookupByLibrary.simpleMessage("Descripción del reporte"), + "moderation__update_description_report_hint_text" : MessageLookupByLibrary.simpleMessage("por ejemplo, el contenido fue encontrado que..."), + "moderation__update_description_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "moderation__update_description_title" : MessageLookupByLibrary.simpleMessage("Editar descripción"), + "moderation__update_status_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "moderation__update_status_title" : MessageLookupByLibrary.simpleMessage("Actualizar el estado"), + "moderation__you_have_reported_account_text" : MessageLookupByLibrary.simpleMessage("Has reportado esta cuenta"), + "moderation__you_have_reported_comment_text" : MessageLookupByLibrary.simpleMessage("Has reportado este comentario"), + "moderation__you_have_reported_community_text" : MessageLookupByLibrary.simpleMessage("Has reportado esta comunidad"), + "moderation__you_have_reported_post_text" : MessageLookupByLibrary.simpleMessage("Has reportado a este usuario"), + "notifications__accepted_connection_request_tile" : MessageLookupByLibrary.simpleMessage(". [name] [username] aceptó tu solicitud de conexión."), + "notifications__comment_comment_notification_tile_user_also_commented" : m20, + "notifications__comment_comment_notification_tile_user_commented" : m21, + "notifications__comment_desc" : MessageLookupByLibrary.simpleMessage("Se notificado cuando alguien comente en uno de tus posts o en uno que tu también comentaste."), + "notifications__comment_reaction_desc" : MessageLookupByLibrary.simpleMessage("Se notificado cuando alguien reacciona en uno de tus comentarios."), + "notifications__comment_reaction_title" : MessageLookupByLibrary.simpleMessage("Reacción a comentario"), + "notifications__comment_reply_desc" : MessageLookupByLibrary.simpleMessage("Se notificado cuando alguien responde a uno de tus comentarios o a uno que tu también comentaste."), + "notifications__comment_reply_notification_tile_user_also_replied" : m22, + "notifications__comment_reply_notification_tile_user_replied" : m23, + "notifications__comment_reply_title" : MessageLookupByLibrary.simpleMessage("Respuestas"), + "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("Comentario"), + "notifications__comment_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Ser notificado cuando alguien te mencione en uno de sus comentarios"), + "notifications__comment_user_mention_title" : MessageLookupByLibrary.simpleMessage("Menciónes en comentarios"), + "notifications__community_invite_desc" : MessageLookupByLibrary.simpleMessage("Se notificado cuando alguien te invita a unirte a una comunidad."), + "notifications__community_invite_title" : MessageLookupByLibrary.simpleMessage("Invitación a comunidad"), + "notifications__connection_desc" : MessageLookupByLibrary.simpleMessage("Se notificado cuando alguien quiere conectar contigo"), + "notifications__connection_request_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] quiere conectar contigo."), + "notifications__connection_title" : MessageLookupByLibrary.simpleMessage("Solicitud de conexión"), + "notifications__follow_desc" : MessageLookupByLibrary.simpleMessage("Se notificado cuando alguien comienza a seguirte"), + "notifications__follow_title" : MessageLookupByLibrary.simpleMessage("Seguir"), + "notifications__following_you_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] ahora te sigue."), + "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Se notificado cuando ocurra algo"), + "notifications__general_title" : MessageLookupByLibrary.simpleMessage("Notificaciones"), + "notifications__mentioned_in_post_comment_tile" : m24, + "notifications__mentioned_in_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] te mencionó en un post."), + "notifications__mute_post_turn_off_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Desactivar notificaciones de comentarios"), + "notifications__mute_post_turn_off_post_notifications" : MessageLookupByLibrary.simpleMessage("Desactivar notificaciones de post"), + "notifications__mute_post_turn_on_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Activar notificaciones de comentarios"), + "notifications__mute_post_turn_on_post_notifications" : MessageLookupByLibrary.simpleMessage("Activar notifications de post"), + "notifications__post_reaction_desc" : MessageLookupByLibrary.simpleMessage("Se notificado cuando alguien reacciona en uno de tus posts."), + "notifications__post_reaction_title" : MessageLookupByLibrary.simpleMessage("Reacción a post"), + "notifications__post_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Ser notificado cuando alguien te mencione en uno de sus mensajes"), + "notifications__post_user_mention_title" : MessageLookupByLibrary.simpleMessage("Menciónes en posts"), + "notifications__reacted_to_post_comment_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] reaccionó a tu comentario."), + "notifications__reacted_to_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] reaccionó a tu post."), + "notifications__settings_title" : MessageLookupByLibrary.simpleMessage("Configuración de notificaciones"), + "notifications__user_community_invite_tile" : m25, + "post__action_comment" : MessageLookupByLibrary.simpleMessage("Comentar"), + "post__action_react" : MessageLookupByLibrary.simpleMessage("Reaccionar"), + "post__action_reply" : MessageLookupByLibrary.simpleMessage("Responder"), + "post__actions_comment_deleted" : MessageLookupByLibrary.simpleMessage("Comentario eliminado"), + "post__actions_delete" : MessageLookupByLibrary.simpleMessage("Eliminar post"), + "post__actions_delete_comment" : MessageLookupByLibrary.simpleMessage("Eliminar comentario"), + "post__actions_deleted" : MessageLookupByLibrary.simpleMessage("Post eliminado"), + "post__actions_edit_comment" : MessageLookupByLibrary.simpleMessage("Editar comentario"), + "post__actions_report_text" : MessageLookupByLibrary.simpleMessage("Reportar"), + "post__actions_reported_text" : MessageLookupByLibrary.simpleMessage("Reportado"), + "post__actions_show_more_text" : MessageLookupByLibrary.simpleMessage("Ver más"), + "post__close_post" : MessageLookupByLibrary.simpleMessage("Cerrar post"), + "post__comment_maxlength_error" : m26, + "post__comment_reply_expanded_post" : MessageLookupByLibrary.simpleMessage("Post"), + "post__comment_reply_expanded_reply_comment" : MessageLookupByLibrary.simpleMessage("Responder a comentario"), + "post__comment_reply_expanded_reply_hint_text" : MessageLookupByLibrary.simpleMessage("Tu respuesta..."), + "post__comment_required_error" : MessageLookupByLibrary.simpleMessage("El comentario no puede estar vacío."), + "post__commenter_expanded_edit_comment" : MessageLookupByLibrary.simpleMessage("Editar comentario"), + "post__commenter_expanded_join_conversation" : MessageLookupByLibrary.simpleMessage("Únete a la conversación.."), + "post__commenter_expanded_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "post__commenter_expanded_start_conversation" : MessageLookupByLibrary.simpleMessage("Inicia la conversación.."), + "post__commenter_post_text" : MessageLookupByLibrary.simpleMessage("Publicar"), + "post__commenter_write_something" : MessageLookupByLibrary.simpleMessage("Escribe algo..."), + "post__comments_closed_post" : MessageLookupByLibrary.simpleMessage("Post cerrado"), + "post__comments_disabled" : MessageLookupByLibrary.simpleMessage("Comentarios deshabilitados"), + "post__comments_disabled_message" : MessageLookupByLibrary.simpleMessage("Comentarios deshabilitados"), + "post__comments_enabled_message" : MessageLookupByLibrary.simpleMessage("Comentarios habilitados"), + "post__comments_header_be_the_first_comments" : MessageLookupByLibrary.simpleMessage("Ser el primero en comentar"), + "post__comments_header_be_the_first_replies" : MessageLookupByLibrary.simpleMessage("Sé el primero en responder"), + "post__comments_header_newer" : MessageLookupByLibrary.simpleMessage("Más reciente"), + "post__comments_header_newest_comments" : MessageLookupByLibrary.simpleMessage("Más recientes"), + "post__comments_header_newest_replies" : MessageLookupByLibrary.simpleMessage("Respuestas más recientes"), + "post__comments_header_older" : MessageLookupByLibrary.simpleMessage("Más antiguo"), + "post__comments_header_oldest_comments" : MessageLookupByLibrary.simpleMessage("Más antiguos"), + "post__comments_header_oldest_replies" : MessageLookupByLibrary.simpleMessage("Respuestas más antiguas"), + "post__comments_header_see_newest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentarios más recientes"), + "post__comments_header_see_newest_replies" : MessageLookupByLibrary.simpleMessage("Ver respuestas más recientes"), + "post__comments_header_see_oldest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentarios más antiguos"), + "post__comments_header_see_oldest_replies" : MessageLookupByLibrary.simpleMessage("Ver respuestas más antiguas"), + "post__comments_header_view_newest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentarios más recientes"), + "post__comments_header_view_newest_replies" : MessageLookupByLibrary.simpleMessage("Ver respuestas más recientes"), + "post__comments_header_view_oldest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentarios más antiguos"), + "post__comments_header_view_oldest_replies" : MessageLookupByLibrary.simpleMessage("Ver respuestas más antiguas"), + "post__comments_page_no_more_replies_to_load" : MessageLookupByLibrary.simpleMessage("No hay más comentarios que cargar"), + "post__comments_page_no_more_to_load" : MessageLookupByLibrary.simpleMessage("No hay más comentarios que cargar"), + "post__comments_page_replies_title" : MessageLookupByLibrary.simpleMessage("Respuestas"), + "post__comments_page_tap_to_retry" : MessageLookupByLibrary.simpleMessage("Toca para reintentar cargar comentarios."), + "post__comments_page_tap_to_retry_replies" : MessageLookupByLibrary.simpleMessage("Toca para reintentar cargar las respuestas."), + "post__comments_page_title" : MessageLookupByLibrary.simpleMessage("Comentarios"), + "post__comments_view_all_comments" : m27, + "post__create_new" : MessageLookupByLibrary.simpleMessage("Nuevo post"), + "post__create_next" : MessageLookupByLibrary.simpleMessage("Siguiente"), + "post__create_photo" : MessageLookupByLibrary.simpleMessage("Foto"), + "post__disable_post_comments" : MessageLookupByLibrary.simpleMessage("Deshabilitar comentarios"), + "post__edit_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "post__edit_title" : MessageLookupByLibrary.simpleMessage("Editar post"), + "post__enable_post_comments" : MessageLookupByLibrary.simpleMessage("Habilitar comentarios"), + "post__have_not_shared_anything" : MessageLookupByLibrary.simpleMessage("Todavía no has compartido nada."), + "post__is_closed" : MessageLookupByLibrary.simpleMessage("Post cerrado"), + "post__my_circles" : MessageLookupByLibrary.simpleMessage("Mis círculos"), + "post__my_circles_desc" : MessageLookupByLibrary.simpleMessage("Compartir con uno o varios de tus círculos."), + "post__no_circles_for" : m28, + "post__open_post" : MessageLookupByLibrary.simpleMessage("Abrir post"), + "post__post_closed" : MessageLookupByLibrary.simpleMessage("Post cerrado "), + "post__post_opened" : MessageLookupByLibrary.simpleMessage("Post abierto"), + "post__post_reactions_title" : MessageLookupByLibrary.simpleMessage("Reacciones del post"), + "post__profile_counts_follower" : MessageLookupByLibrary.simpleMessage(" Seguidor"), + "post__profile_counts_followers" : MessageLookupByLibrary.simpleMessage(" Seguidores"), + "post__profile_counts_following" : MessageLookupByLibrary.simpleMessage(" Siguiendo"), + "post__profile_counts_post" : MessageLookupByLibrary.simpleMessage(" Publicar"), + "post__profile_counts_posts" : MessageLookupByLibrary.simpleMessage(" Posts"), + "post__reaction_list_tap_retry" : MessageLookupByLibrary.simpleMessage("Toca para reintentar cargar las reacciones."), + "post__search_circles" : MessageLookupByLibrary.simpleMessage("Buscar círculos..."), + "post__share" : MessageLookupByLibrary.simpleMessage("Compartir"), + "post__share_community" : MessageLookupByLibrary.simpleMessage("Compartir"), + "post__share_community_desc" : MessageLookupByLibrary.simpleMessage("Compartir con una comunidad de la que eres parte."), + "post__share_community_title" : MessageLookupByLibrary.simpleMessage("A una comunidad"), + "post__share_to" : MessageLookupByLibrary.simpleMessage("Compartir con"), + "post__share_to_circles" : MessageLookupByLibrary.simpleMessage("Compartir en círculos"), + "post__share_to_community" : MessageLookupByLibrary.simpleMessage("Compartir con comunidad"), + "post__shared_privately_on" : MessageLookupByLibrary.simpleMessage("Compartido en privado en"), + "post__sharing_post_to" : MessageLookupByLibrary.simpleMessage("Compartiendo post a"), + "post__text_copied" : MessageLookupByLibrary.simpleMessage("Texto copiado!"), + "post__time_short_days" : MessageLookupByLibrary.simpleMessage("d"), + "post__time_short_hours" : MessageLookupByLibrary.simpleMessage("h"), + "post__time_short_minutes" : MessageLookupByLibrary.simpleMessage("m"), + "post__time_short_now_text" : MessageLookupByLibrary.simpleMessage("ahora"), + "post__time_short_one_day" : MessageLookupByLibrary.simpleMessage("1d"), + "post__time_short_one_hour" : MessageLookupByLibrary.simpleMessage("1h"), + "post__time_short_one_minute" : MessageLookupByLibrary.simpleMessage("1m"), + "post__time_short_one_week" : MessageLookupByLibrary.simpleMessage("1s"), + "post__time_short_one_year" : MessageLookupByLibrary.simpleMessage("1a"), + "post__time_short_seconds" : MessageLookupByLibrary.simpleMessage("s"), + "post__time_short_weeks" : MessageLookupByLibrary.simpleMessage("s"), + "post__time_short_years" : MessageLookupByLibrary.simpleMessage("a"), + "post__timeline_posts_all_loaded" : MessageLookupByLibrary.simpleMessage("🎉 Todos los posts cargados"), + "post__timeline_posts_default_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Intenta refrescar la linea de tiempo."), + "post__timeline_posts_default_drhoo_title" : MessageLookupByLibrary.simpleMessage("Algo no está bien."), + "post__timeline_posts_failed_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Inténtalo de nuevo en un par de segundos"), + "post__timeline_posts_failed_drhoo_title" : MessageLookupByLibrary.simpleMessage("No se pudo cargar tu línea de tiempo."), + "post__timeline_posts_no_more_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("¡Sigue a usuarios o únete a una comunidad para empezar!"), + "post__timeline_posts_no_more_drhoo_title" : MessageLookupByLibrary.simpleMessage("Tu línea de tiempo está vacía."), + "post__timeline_posts_refresh_posts" : MessageLookupByLibrary.simpleMessage("Refrescar posts"), + "post__timeline_posts_refreshing_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Cargando tu línea de tiempo."), + "post__timeline_posts_refreshing_drhoo_title" : MessageLookupByLibrary.simpleMessage("¡Ya casi!"), + "post__trending_posts_no_trending_posts" : MessageLookupByLibrary.simpleMessage("No hay posts trending. Intenta refrescar en un par de segundos."), + "post__trending_posts_refresh" : MessageLookupByLibrary.simpleMessage("Refrescar"), + "post__trending_posts_title" : MessageLookupByLibrary.simpleMessage("Posts trending"), + "post__user_has_not_shared_anything" : m29, + "post__usernames_circles" : m30, + "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("Mundo"), + "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("Has compartido con"), + "user__add_account_done" : MessageLookupByLibrary.simpleMessage("Listo"), + "user__add_account_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "user__add_account_success" : MessageLookupByLibrary.simpleMessage("Listo"), + "user__add_account_to_lists" : MessageLookupByLibrary.simpleMessage("Agregar cuenta a lista"), + "user__add_account_update_account_lists" : MessageLookupByLibrary.simpleMessage("Actualizar listas de cuentas"), + "user__add_account_update_lists" : MessageLookupByLibrary.simpleMessage("Actualizar listas"), + "user__billion_postfix" : MessageLookupByLibrary.simpleMessage("b"), + "user__block_user" : MessageLookupByLibrary.simpleMessage("Bloquear usuario"), + "user__change_email_email_text" : MessageLookupByLibrary.simpleMessage("Email"), + "user__change_email_error" : MessageLookupByLibrary.simpleMessage("Email ya está registrado"), + "user__change_email_hint_text" : MessageLookupByLibrary.simpleMessage("Ingresa tu email nuevo"), + "user__change_email_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "user__change_email_success_info" : MessageLookupByLibrary.simpleMessage("Hemos enviado un enlace de confirmación a su nueva dirección de email, haz clic para verificar tu nuevo email"), + "user__change_email_title" : MessageLookupByLibrary.simpleMessage("Cambiar email"), + "user__circle_name_empty_error" : MessageLookupByLibrary.simpleMessage("El nombre del círculo no puede estar vacío."), + "user__circle_name_range_error" : m31, + "user__circle_peoples_count" : m32, + "user__clear_app_preferences_cleared_successfully" : MessageLookupByLibrary.simpleMessage("Preferencias borradas con éxito"), + "user__clear_app_preferences_desc" : MessageLookupByLibrary.simpleMessage("Borrar las preferencias de la aplicación. Actualmente, este es sólo el orden preferido de comentarios."), + "user__clear_app_preferences_error" : MessageLookupByLibrary.simpleMessage("No se pudieron borrar las preferencias"), + "user__clear_app_preferences_title" : MessageLookupByLibrary.simpleMessage("Borrar preferencias"), + "user__clear_application_cache_desc" : MessageLookupByLibrary.simpleMessage("Limpiar posts, cuentas, imágenes & más del caché."), + "user__clear_application_cache_failure" : MessageLookupByLibrary.simpleMessage("No se ha podido limpiar el caché"), + "user__clear_application_cache_success" : MessageLookupByLibrary.simpleMessage("Caché limpiada con éxito"), + "user__clear_application_cache_text" : MessageLookupByLibrary.simpleMessage("Limpiar caché"), + "user__confirm_block_user_blocked" : MessageLookupByLibrary.simpleMessage("Usuario bloqueado."), + "user__confirm_block_user_info" : MessageLookupByLibrary.simpleMessage("No verán las publicaciones del otro ni podrán interactuar de ninguna manera."), + "user__confirm_block_user_no" : MessageLookupByLibrary.simpleMessage("No"), + "user__confirm_block_user_question" : m33, + "user__confirm_block_user_title" : MessageLookupByLibrary.simpleMessage("Confirmación"), + "user__confirm_block_user_yes" : MessageLookupByLibrary.simpleMessage("Sí"), + "user__confirm_connection_add_connection" : MessageLookupByLibrary.simpleMessage("Añadir conexión al círculo"), + "user__confirm_connection_confirm_text" : MessageLookupByLibrary.simpleMessage("Confirmar"), + "user__confirm_connection_connection_confirmed" : MessageLookupByLibrary.simpleMessage("Conexión confirmada"), + "user__confirm_connection_with" : m34, + "user__confirm_guidelines_reject_chat_community" : MessageLookupByLibrary.simpleMessage("Chatear con la comunidad."), + "user__confirm_guidelines_reject_chat_immediately" : MessageLookupByLibrary.simpleMessage("Iniciar un chat inmediatamente."), + "user__confirm_guidelines_reject_chat_with_team" : MessageLookupByLibrary.simpleMessage("Chatear con el equipo."), + "user__confirm_guidelines_reject_delete_account" : MessageLookupByLibrary.simpleMessage("Eliminar cuenta"), + "user__confirm_guidelines_reject_go_back" : MessageLookupByLibrary.simpleMessage("Volver"), + "user__confirm_guidelines_reject_info" : MessageLookupByLibrary.simpleMessage("No puedes usar Okuna hasta que aceptes las reglas."), + "user__confirm_guidelines_reject_join_slack" : MessageLookupByLibrary.simpleMessage("Únete al canal Slack."), + "user__confirm_guidelines_reject_title" : MessageLookupByLibrary.simpleMessage("Rechazo de reglas"), + "user__connect_to_user_add_connection" : MessageLookupByLibrary.simpleMessage("Añadir conexión al círculo"), + "user__connect_to_user_connect_with_username" : m35, + "user__connect_to_user_done" : MessageLookupByLibrary.simpleMessage("Listo"), + "user__connect_to_user_request_sent" : MessageLookupByLibrary.simpleMessage("Solicitud de conexión enviada"), + "user__connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Editar"), + "user__connection_pending" : MessageLookupByLibrary.simpleMessage("Pendiente"), + "user__connections_circle_delete" : MessageLookupByLibrary.simpleMessage("Eliminar"), + "user__connections_header_circle_desc" : MessageLookupByLibrary.simpleMessage("El círculo al que se agregan todas tus conexiones."), + "user__connections_header_users" : MessageLookupByLibrary.simpleMessage("Usuarios"), + "user__delete_account_confirmation_desc" : MessageLookupByLibrary.simpleMessage("¿Seguro que deseas eliminar tu cuenta?"), + "user__delete_account_confirmation_desc_info" : MessageLookupByLibrary.simpleMessage("Ésta acción es permanente y no se puede deshacer."), + "user__delete_account_confirmation_goodbye" : MessageLookupByLibrary.simpleMessage("Adiós 😢"), + "user__delete_account_confirmation_no" : MessageLookupByLibrary.simpleMessage("No"), + "user__delete_account_confirmation_title" : MessageLookupByLibrary.simpleMessage("Confirmación"), + "user__delete_account_confirmation_yes" : MessageLookupByLibrary.simpleMessage("Sí"), + "user__delete_account_current_pwd" : MessageLookupByLibrary.simpleMessage("Contraseña actual"), + "user__delete_account_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Ingresa tu contraseña actual"), + "user__delete_account_next" : MessageLookupByLibrary.simpleMessage("Siguiente"), + "user__delete_account_title" : MessageLookupByLibrary.simpleMessage("Eliminar cuenta"), + "user__disconnect_from_user" : m36, + "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Desconectado exitosamente"), + "user__edit_profile_bio" : MessageLookupByLibrary.simpleMessage("Bio"), + "user__edit_profile_delete" : MessageLookupByLibrary.simpleMessage("Eliminar"), + "user__edit_profile_followers_count" : MessageLookupByLibrary.simpleMessage("Número de seguidores"), + "user__edit_profile_location" : MessageLookupByLibrary.simpleMessage("Ubicación"), + "user__edit_profile_name" : MessageLookupByLibrary.simpleMessage("Nombre"), + "user__edit_profile_pick_image" : MessageLookupByLibrary.simpleMessage("Elegir imagen"), + "user__edit_profile_pick_image_error_too_large" : m37, + "user__edit_profile_save_text" : MessageLookupByLibrary.simpleMessage("Guardar"), + "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Editar perfil"), + "user__edit_profile_url" : MessageLookupByLibrary.simpleMessage("Enlace"), + "user__edit_profile_user_name_taken" : m38, + "user__edit_profile_username" : MessageLookupByLibrary.simpleMessage("Nombre de usuario"), + "user__email_verification_error" : MessageLookupByLibrary.simpleMessage("¡Uy! Tu token no fue válido o ha expirado, por favor intentar de nuevo"), + "user__email_verification_successful" : MessageLookupByLibrary.simpleMessage("¡Genial! Tu email ya está verificado"), + "user__emoji_field_none_selected" : MessageLookupByLibrary.simpleMessage("No hay emoji seleccionado"), + "user__emoji_search_none_found" : m39, + "user__follow_button_follow_text" : MessageLookupByLibrary.simpleMessage("Seguir"), + "user__follow_button_unfollow_text" : MessageLookupByLibrary.simpleMessage("Siguiendo"), + "user__follow_lists_no_list_found" : MessageLookupByLibrary.simpleMessage("No se encontraron listas."), + "user__follow_lists_no_list_found_for" : m40, + "user__follow_lists_search_for" : MessageLookupByLibrary.simpleMessage("Buscar una lista..."), + "user__follow_lists_title" : MessageLookupByLibrary.simpleMessage("Mis listas"), + "user__follower_plural" : MessageLookupByLibrary.simpleMessage("seguidores"), + "user__follower_singular" : MessageLookupByLibrary.simpleMessage("seguidor"), + "user__followers_title" : MessageLookupByLibrary.simpleMessage("Seguidores"), + "user__following_resource_name" : MessageLookupByLibrary.simpleMessage("usuarios seguidos"), + "user__following_text" : MessageLookupByLibrary.simpleMessage("Siguiendo"), + "user__follows_list_accounts_count" : m41, + "user__follows_list_edit" : MessageLookupByLibrary.simpleMessage("Editar"), + "user__follows_list_header_title" : MessageLookupByLibrary.simpleMessage("Usuarios"), + "user__follows_lists_account" : MessageLookupByLibrary.simpleMessage("1 Cuenta"), + "user__follows_lists_accounts" : m42, + "user__groups_see_all" : m43, + "user__guidelines_accept" : MessageLookupByLibrary.simpleMessage("Aceptar"), + "user__guidelines_desc" : MessageLookupByLibrary.simpleMessage("Por favor, tómate un momento para leer y aceptar nuestras reglas."), + "user__guidelines_reject" : MessageLookupByLibrary.simpleMessage("Rechazar"), + "user__invite" : MessageLookupByLibrary.simpleMessage("Invitar"), + "user__invite_member" : MessageLookupByLibrary.simpleMessage("Miembro"), + "user__invite_someone_message" : m44, + "user__invites_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("invitación aceptada"), + "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("invitaciones aceptadas"), + "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Aceptada"), + "user__invites_create_create" : MessageLookupByLibrary.simpleMessage("Crear"), + "user__invites_create_create_title" : MessageLookupByLibrary.simpleMessage("Crear invitación"), + "user__invites_create_edit_title" : MessageLookupByLibrary.simpleMessage("Editar invitación"), + "user__invites_create_name_hint" : MessageLookupByLibrary.simpleMessage("por ejemplo Juan Gabriel"), + "user__invites_create_name_title" : MessageLookupByLibrary.simpleMessage("Nickname"), + "user__invites_create_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "user__invites_delete" : MessageLookupByLibrary.simpleMessage("Eliminar"), + "user__invites_edit_text" : MessageLookupByLibrary.simpleMessage("Editar"), + "user__invites_email_hint" : MessageLookupByLibrary.simpleMessage("por ejemplo juanga@email.com"), + "user__invites_email_invite_text" : MessageLookupByLibrary.simpleMessage("Invitación por email"), + "user__invites_email_send_text" : MessageLookupByLibrary.simpleMessage("Enviar"), + "user__invites_email_sent_text" : MessageLookupByLibrary.simpleMessage("Email de invitación enviado"), + "user__invites_email_text" : MessageLookupByLibrary.simpleMessage("Email"), + "user__invites_invite_a_friend" : MessageLookupByLibrary.simpleMessage("Invitar a un amigo"), + "user__invites_invite_text" : MessageLookupByLibrary.simpleMessage("Invitar"), + "user__invites_joined_with" : m45, + "user__invites_none_left" : MessageLookupByLibrary.simpleMessage("No tienes invitaciones disponibles."), + "user__invites_none_used" : MessageLookupByLibrary.simpleMessage("Parece que no has usado ninguna invitación."), + "user__invites_pending" : MessageLookupByLibrary.simpleMessage("Pendiente"), + "user__invites_pending_email" : m46, + "user__invites_pending_group_item_name" : MessageLookupByLibrary.simpleMessage("invitación pendiente"), + "user__invites_pending_group_name" : MessageLookupByLibrary.simpleMessage("invitaciones pendientes"), + "user__invites_refresh" : MessageLookupByLibrary.simpleMessage("Refrescar"), + "user__invites_share_email" : MessageLookupByLibrary.simpleMessage("Compartir invitación por correo"), + "user__invites_share_email_desc" : MessageLookupByLibrary.simpleMessage("Enviaremos un correo electrónico de invitación con instrucciones en tu nombre"), + "user__invites_share_yourself" : MessageLookupByLibrary.simpleMessage("Compartir invitación"), + "user__invites_share_yourself_desc" : MessageLookupByLibrary.simpleMessage("Ecoger de apps de mensajería, etc."), + "user__invites_title" : MessageLookupByLibrary.simpleMessage("Mis invitaciones"), + "user__language_settings_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "user__language_settings_saved_success" : MessageLookupByLibrary.simpleMessage("Idioma cambiado con éxito"), + "user__language_settings_title" : MessageLookupByLibrary.simpleMessage("Configuración de idioma"), + "user__list_name_empty_error" : MessageLookupByLibrary.simpleMessage("El nombre de la lista no puede estar vacío."), + "user__list_name_range_error" : m47, + "user__million_postfix" : MessageLookupByLibrary.simpleMessage("m"), + "user__profile_action_cancel_connection" : MessageLookupByLibrary.simpleMessage("Cancelar solicitud de conexión"), + "user__profile_action_deny_connection" : MessageLookupByLibrary.simpleMessage("Rechazar solicitud de conexión"), + "user__profile_action_user_blocked" : MessageLookupByLibrary.simpleMessage("Usuario bloqueado"), + "user__profile_action_user_unblocked" : MessageLookupByLibrary.simpleMessage("Usuario desbloqueado"), + "user__profile_bio_length_error" : m48, + "user__profile_location_length_error" : m49, + "user__profile_url_invalid_error" : MessageLookupByLibrary.simpleMessage("Por favor ingresa una url válida."), + "user__remove_account_from_list" : MessageLookupByLibrary.simpleMessage("Eliminar cuenta de listas"), + "user__remove_account_from_list_success" : MessageLookupByLibrary.simpleMessage("Éxito"), + "user__save_connection_circle_color_hint" : MessageLookupByLibrary.simpleMessage("(Toca para cambiar)"), + "user__save_connection_circle_color_name" : MessageLookupByLibrary.simpleMessage("Color"), + "user__save_connection_circle_create" : MessageLookupByLibrary.simpleMessage("Crear círculo"), + "user__save_connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Editar círculo"), + "user__save_connection_circle_hint" : MessageLookupByLibrary.simpleMessage("por ejemplo, Amigos, Familia, Trabajo."), + "user__save_connection_circle_name" : MessageLookupByLibrary.simpleMessage("Nombre"), + "user__save_connection_circle_name_taken" : m50, + "user__save_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "user__save_connection_circle_users" : MessageLookupByLibrary.simpleMessage("Usuarios"), + "user__save_follows_list_create" : MessageLookupByLibrary.simpleMessage("Crear lista"), + "user__save_follows_list_edit" : MessageLookupByLibrary.simpleMessage("Editar lista"), + "user__save_follows_list_emoji" : MessageLookupByLibrary.simpleMessage("Emoji"), + "user__save_follows_list_emoji_required_error" : MessageLookupByLibrary.simpleMessage("Emoji es requerido"), + "user__save_follows_list_hint_text" : MessageLookupByLibrary.simpleMessage("por ejemplo, Viajes, Fotografía, Gaming"), + "user__save_follows_list_name" : MessageLookupByLibrary.simpleMessage("Nombre"), + "user__save_follows_list_name_taken" : m51, + "user__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("Usuarios"), + "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("k"), + "user__tile_delete" : MessageLookupByLibrary.simpleMessage("Eliminar"), + "user__tile_following" : MessageLookupByLibrary.simpleMessage(" · Siguiendo"), + "user__timeline_filters_apply_all" : MessageLookupByLibrary.simpleMessage("Aplicar filtros"), + "user__timeline_filters_circles" : MessageLookupByLibrary.simpleMessage("Círculos"), + "user__timeline_filters_clear_all" : MessageLookupByLibrary.simpleMessage("Borrar todo"), + "user__timeline_filters_lists" : MessageLookupByLibrary.simpleMessage("Listas"), + "user__timeline_filters_no_match" : m52, + "user__timeline_filters_search_desc" : MessageLookupByLibrary.simpleMessage("Buscar círculos y listas..."), + "user__timeline_filters_title" : MessageLookupByLibrary.simpleMessage("Filtros de línea de tiempo"), + "user__translate_see_translation" : MessageLookupByLibrary.simpleMessage("Ver traducción"), + "user__translate_show_original" : MessageLookupByLibrary.simpleMessage("Mostrar original"), + "user__unblock_user" : MessageLookupByLibrary.simpleMessage("Desbloquear usuario"), + "user__uninvite" : MessageLookupByLibrary.simpleMessage("Invitado"), + "user__update_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Guardar"), + "user__update_connection_circle_updated" : MessageLookupByLibrary.simpleMessage("Conexión actualizada"), + "user__update_connection_circles_title" : MessageLookupByLibrary.simpleMessage("Actualizar círculos de conexión"), + "user_search__cancel" : MessageLookupByLibrary.simpleMessage("Cancelar"), + "user_search__communities" : MessageLookupByLibrary.simpleMessage("Comunidades"), + "user_search__list_no_results_found" : m53, + "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Refrescar"), + "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Toca para reintentar."), + "user_search__list_search_text" : m54, + "user_search__no_communities_for" : m55, + "user_search__no_results_for" : m56, + "user_search__no_users_for" : m57, + "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Buscar..."), + "user_search__searching_for" : m58, + "user_search__users" : MessageLookupByLibrary.simpleMessage("Usuarios") + }; +} diff --git a/lib/locale/messages_fr.dart b/lib/locale/messages_fr.dart index da4933ac0..6f68fa72b 100644 --- a/lib/locale/messages_fr.dart +++ b/lib/locale/messages_fr.dart @@ -68,73 +68,75 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] · [username] a répondu : ${postCommentText}"; - static m24(communityName) => "[name] · [username] vous a invité.e à rejoindre la communauté /c/${communityName}."; + static m24(postCommentText) => "[name] [username] vous a mentionné.e sur un commentaire: ${postCommentText}"; - static m25(maxLength) => "Un commentaire ne peut pas être plus long que ${maxLength} caractères."; + static m25(communityName) => "[name] · [username] vous a invité.e à rejoindre la communauté /c/${communityName}."; - static m26(commentsCount) => "Afficher tous les ${commentsCount} commentaires"; + static m26(maxLength) => "Un commentaire ne peut pas être plus long que ${maxLength} caractères."; - static m27(circlesSearchQuery) => "Aucun cercle trouvé correspondant à \'${circlesSearchQuery}\'."; + static m27(commentsCount) => "Afficher tous les ${commentsCount} commentaires"; - static m28(name) => "${name} n\'a encore rien partagé."; + static m28(circlesSearchQuery) => "Aucun cercle trouvé correspondant à \'${circlesSearchQuery}\'."; - static m29(postCreatorUsername) => "cercles de ${postCreatorUsername}"; + static m29(name) => "${name} n\'a encore rien partagé."; - static m30(maxLength) => "Le nom de cercle ne peut pas être plus long que ${maxLength} caractères."; + static m30(postCreatorUsername) => "cercles de ${postCreatorUsername}"; - static m31(prettyUsersCount) => "${prettyUsersCount} personnes"; + static m31(maxLength) => "Le nom de cercle ne peut pas être plus long que ${maxLength} caractères."; - static m32(username) => "Êtes-vous sûr.e de vouloir bloquer @${username}?"; + static m32(prettyUsersCount) => "${prettyUsersCount} personnes"; - static m33(userName) => "Confirmer la connexion avec ${userName}"; + static m33(username) => "Êtes-vous sûr.e de vouloir bloquer @${username}?"; - static m34(userName) => "Se connecter avec ${userName}"; + static m34(userName) => "Confirmer la connexion avec ${userName}"; - static m35(userName) => "Se déconnecter de ${userName}"; + static m35(userName) => "Se connecter avec ${userName}"; - static m36(limit) => "Image trop grande (limite : ${limit} Mo)"; + static m36(userName) => "Se déconnecter de ${userName}"; - static m37(username) => "Le nom d\'utilisateur.trice @${username} est pris"; + static m37(limit) => "Image trop grande (limite : ${limit} Mo)"; - static m38(searchQuery) => "Aucune émoticône trouvée correspondant à \'${searchQuery}\'."; + static m38(username) => "Le nom d\'utilisateur.trice @${username} est pris"; - static m39(searchQuery) => "Aucune liste trouvée pour \'${searchQuery}\'"; + static m39(searchQuery) => "Aucune émoticône trouvée correspondant à \'${searchQuery}\'."; - static m40(prettyUsersCount) => "${prettyUsersCount} comptes"; + static m40(searchQuery) => "Aucune liste trouvée pour \'${searchQuery}\'"; - static m41(prettyUsersCount) => "${prettyUsersCount} Comptes"; + static m41(prettyUsersCount) => "${prettyUsersCount} comptes"; - static m42(groupName) => "Voir tous.tes les ${groupName}"; + static m42(prettyUsersCount) => "${prettyUsersCount} Comptes"; - static m43(iosLink, androidLink, inviteLink) => "Bonjour, je voudrais vous inviter à Okuna! Premièrement, téléchargez l\'application sur iTunes (${iosLink}) ou le Play Store (${androidLink}). Deuxièmement, collez ce lien d\'invitation personnalisé dans le formulaire \"Inscription\" dans l\'application Okuna : ${inviteLink}"; + static m43(groupName) => "Voir tous.tes les ${groupName}"; - static m44(username) => "Inscrit.e avec le nom d\'utilisateur.trice @${username}"; + static m44(iosLink, androidLink, inviteLink) => "Bonjour, je voudrais vous inviter à Okuna! Premièrement, téléchargez l\'application sur iTunes (${iosLink}) ou le Play Store (${androidLink}). Deuxièmement, collez ce lien d\'invitation personnalisé dans le formulaire \"Inscription\" dans l\'application Okuna : ${inviteLink}"; - static m45(email) => "En attente, courriel d\'invitation envoyé à ${email}"; + static m45(username) => "Inscrit.e avec le nom d\'utilisateur.trice @${username}"; - static m46(maxLength) => "Le nom de liste ne peut pas être plus long que ${maxLength} caractères."; + static m46(email) => "En attente, courriel d\'invitation envoyé à ${email}"; - static m47(maxLength) => "La bio ne peut pas être plus longue que ${maxLength} caractères."; + static m47(maxLength) => "Le nom de liste ne peut pas être plus long que ${maxLength} caractères."; - static m48(maxLength) => "La nom de localité ne peut pas être plus long que ${maxLength} caractères."; + static m48(maxLength) => "La bio ne peut pas être plus longue que ${maxLength} caractères."; - static m49(takenConnectionsCircleName) => "Le nom de cercle \'${takenConnectionsCircleName}\' est pris"; + static m49(maxLength) => "La nom de localité ne peut pas être plus long que ${maxLength} caractères."; - static m50(listName) => "Le nom de liste \'${listName}\' est pris"; + static m50(takenConnectionsCircleName) => "Le nom de cercle \'${takenConnectionsCircleName}\' est pris"; - static m51(searchQuery) => "Aucun résultat pour \'${searchQuery}\'."; + static m51(listName) => "Le nom de liste \'${listName}\' est pris"; - static m52(resourcePluralName) => "Pas de ${resourcePluralName} trouvé.e.s."; + static m52(searchQuery) => "Aucun résultat pour \'${searchQuery}\'."; - static m53(resourcePluralName) => "Recherche ${resourcePluralName} ..."; + static m53(resourcePluralName) => "Pas de ${resourcePluralName} trouvé.e.s."; - static m54(searchQuery) => "Aucune communauté trouvée pour \'${searchQuery}\'."; + static m54(resourcePluralName) => "Recherche ${resourcePluralName} ..."; - static m55(searchQuery) => "Aucun résultat pour \'${searchQuery}\'."; + static m55(searchQuery) => "Aucune communauté trouvée pour \'${searchQuery}\'."; - static m56(searchQuery) => "Aucun.e utilisateur.trice trouvé.e pour \'${searchQuery}\'."; + static m56(searchQuery) => "Aucun résultat pour \'${searchQuery}\'."; - static m57(searchQuery) => "Recherche de \'${searchQuery}\'"; + static m57(searchQuery) => "Aucun.e utilisateur.trice trouvé.e pour \'${searchQuery}\'."; + + static m58(searchQuery) => "Recherche de \'${searchQuery}\'"; final messages = _notInlinedMessages(_notInlinedMessages); static _notInlinedMessages(_) => { @@ -381,6 +383,7 @@ class MessageLookup extends MessageLookupByLibrary { "community__unfavorite_action" : MessageLookupByLibrary.simpleMessage("Retirer la communauté de vos favorites"), "community__user_you_text" : MessageLookupByLibrary.simpleMessage("Vous"), "community__yes" : MessageLookupByLibrary.simpleMessage("Oui"), + "contextual_account_search_box__suggestions" : MessageLookupByLibrary.simpleMessage("Suggestions"), "drawer__account_settings" : MessageLookupByLibrary.simpleMessage("Paramètres du compte"), "drawer__account_settings_blocked_users" : MessageLookupByLibrary.simpleMessage("Utilisateurs.trices bloqué.e.s"), "drawer__account_settings_change_email" : MessageLookupByLibrary.simpleMessage("Changer l\'adresse courriel"), @@ -507,6 +510,8 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__comment_reply_notification_tile_user_replied" : m23, "notifications__comment_reply_title" : MessageLookupByLibrary.simpleMessage("Réponse à l\'un de vos commentaires sur une publication"), "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("Commentaire sur l\'une de vos publications"), + "notifications__comment_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Soyez averti.e lorsque quelqu\'un vous mentionne sur l\'un de leurs commentaires"), + "notifications__comment_user_mention_title" : MessageLookupByLibrary.simpleMessage("Mention sur un commentaire d\'une publication"), "notifications__community_invite_desc" : MessageLookupByLibrary.simpleMessage("Soyez averti.e lorsque quelqu\'un vous invite à rejoindre une communauté"), "notifications__community_invite_title" : MessageLookupByLibrary.simpleMessage("Invitation à une communauté"), "notifications__connection_desc" : MessageLookupByLibrary.simpleMessage("Soyez averti.e lorsque quelqu\'un veut se connecter avec vous"), @@ -517,16 +522,20 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__following_you_tile" : MessageLookupByLibrary.simpleMessage("[name] · [username] est maintenant l\'un.e de vos abonné.e.s"), "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Soyez averti.e lorsque quelque chose se produit"), "notifications__general_title" : MessageLookupByLibrary.simpleMessage("Notifications"), + "notifications__mentioned_in_post_comment_tile" : m24, + "notifications__mentioned_in_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] vous a mentionné.e sur une publication."), "notifications__mute_post_turn_off_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Désactiver les notifications de commentaires sur les publications"), "notifications__mute_post_turn_off_post_notifications" : MessageLookupByLibrary.simpleMessage("Désactiver les notifications de publications"), "notifications__mute_post_turn_on_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Activer les notifications de commentaires sur les publications"), "notifications__mute_post_turn_on_post_notifications" : MessageLookupByLibrary.simpleMessage("Activer les notifications de publications"), "notifications__post_reaction_desc" : MessageLookupByLibrary.simpleMessage("Soyez averti.e lorsque quelqu\'un réagit à l\'une de vos publications"), "notifications__post_reaction_title" : MessageLookupByLibrary.simpleMessage("Réaction sur l\'une de vos publications"), + "notifications__post_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Soyez averti.e lorsque quelqu\'un vous mentionne sur l\'une de leurs publications"), + "notifications__post_user_mention_title" : MessageLookupByLibrary.simpleMessage("Mention sur une publication"), "notifications__reacted_to_post_comment_tile" : MessageLookupByLibrary.simpleMessage("[name] · [username] a réagi à votre commentaire sur une publication."), "notifications__reacted_to_post_tile" : MessageLookupByLibrary.simpleMessage("[name] · [username] a réagi à votre publication."), "notifications__settings_title" : MessageLookupByLibrary.simpleMessage("Paramètres de notifications"), - "notifications__user_community_invite_tile" : m24, + "notifications__user_community_invite_tile" : m25, "post__action_comment" : MessageLookupByLibrary.simpleMessage("Commenter"), "post__action_react" : MessageLookupByLibrary.simpleMessage("Réagir"), "post__action_reply" : MessageLookupByLibrary.simpleMessage("Répondre"), @@ -539,7 +548,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__actions_reported_text" : MessageLookupByLibrary.simpleMessage("Signalé.e"), "post__actions_show_more_text" : MessageLookupByLibrary.simpleMessage("Afficher plus"), "post__close_post" : MessageLookupByLibrary.simpleMessage("Fermer la publication"), - "post__comment_maxlength_error" : m25, + "post__comment_maxlength_error" : m26, "post__comment_reply_expanded_post" : MessageLookupByLibrary.simpleMessage("Publication"), "post__comment_reply_expanded_reply_comment" : MessageLookupByLibrary.simpleMessage("Répondre au commentaire"), "post__comment_reply_expanded_reply_hint_text" : MessageLookupByLibrary.simpleMessage("Votre réponse..."), @@ -576,7 +585,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__comments_page_tap_to_retry" : MessageLookupByLibrary.simpleMessage("Appuyer pour réessayer de charger les commentaires."), "post__comments_page_tap_to_retry_replies" : MessageLookupByLibrary.simpleMessage("Appuyer pour réessayer de charger les réponses."), "post__comments_page_title" : MessageLookupByLibrary.simpleMessage("Commentaires sur la publication"), - "post__comments_view_all_comments" : m26, + "post__comments_view_all_comments" : m27, "post__create_new" : MessageLookupByLibrary.simpleMessage("Nouvelle publication"), "post__create_next" : MessageLookupByLibrary.simpleMessage("Suivant"), "post__create_photo" : MessageLookupByLibrary.simpleMessage("Photo"), @@ -588,7 +597,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__is_closed" : MessageLookupByLibrary.simpleMessage("Publication fermée"), "post__my_circles" : MessageLookupByLibrary.simpleMessage("Mes cercles"), "post__my_circles_desc" : MessageLookupByLibrary.simpleMessage("Partagez la publication vers un ou plusieurs de vos cercles."), - "post__no_circles_for" : m27, + "post__no_circles_for" : m28, "post__open_post" : MessageLookupByLibrary.simpleMessage("Ouvrir la publication"), "post__post_closed" : MessageLookupByLibrary.simpleMessage("Publication fermée"), "post__post_opened" : MessageLookupByLibrary.simpleMessage("Publication ouverte"), @@ -635,8 +644,8 @@ class MessageLookup extends MessageLookupByLibrary { "post__trending_posts_no_trending_posts" : MessageLookupByLibrary.simpleMessage("Il n\'y a pas de publications tendance. Essayez d\'actualiser la page dans quelques secondes."), "post__trending_posts_refresh" : MessageLookupByLibrary.simpleMessage("Actualiser"), "post__trending_posts_title" : MessageLookupByLibrary.simpleMessage("Publications tendance"), - "post__user_has_not_shared_anything" : m28, - "post__usernames_circles" : m29, + "post__user_has_not_shared_anything" : m29, + "post__usernames_circles" : m30, "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("Monde entier"), "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("Vous avez partagé avec"), "user__add_account_done" : MessageLookupByLibrary.simpleMessage("Terminé"), @@ -654,8 +663,8 @@ class MessageLookup extends MessageLookupByLibrary { "user__change_email_success_info" : MessageLookupByLibrary.simpleMessage("Nous avons envoyé un lien de confirmation à votre nouvelle adresse courriel, cliquez-le pour vérifier votre nouvelle adresse courriel"), "user__change_email_title" : MessageLookupByLibrary.simpleMessage("Changer l\'adresse courriel"), "user__circle_name_empty_error" : MessageLookupByLibrary.simpleMessage("Le nom de cercle ne peut pas être vide."), - "user__circle_name_range_error" : m30, - "user__circle_peoples_count" : m31, + "user__circle_name_range_error" : m31, + "user__circle_peoples_count" : m32, "user__clear_app_preferences_cleared_successfully" : MessageLookupByLibrary.simpleMessage("Préférences réinitialisées avec succès"), "user__clear_app_preferences_desc" : MessageLookupByLibrary.simpleMessage("Réinitialiser les préférences de l\'application. Actuellement, ce n\'est que l\'ordre préféré d\'affichage des commentaires."), "user__clear_app_preferences_error" : MessageLookupByLibrary.simpleMessage("Impossible d\'effacer les préférences"), @@ -667,13 +676,13 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_block_user_blocked" : MessageLookupByLibrary.simpleMessage("Utilisateur.trice bloqué.e."), "user__confirm_block_user_info" : MessageLookupByLibrary.simpleMessage("Vous ne verrez pas vos publications respectives ni ne pourrez interagir de quelque manière que ce soit."), "user__confirm_block_user_no" : MessageLookupByLibrary.simpleMessage("Non"), - "user__confirm_block_user_question" : m32, + "user__confirm_block_user_question" : m33, "user__confirm_block_user_title" : MessageLookupByLibrary.simpleMessage("Confirmation"), "user__confirm_block_user_yes" : MessageLookupByLibrary.simpleMessage("Oui"), "user__confirm_connection_add_connection" : MessageLookupByLibrary.simpleMessage("Ajouter la connexion au cercle"), "user__confirm_connection_confirm_text" : MessageLookupByLibrary.simpleMessage("Confirmer"), "user__confirm_connection_connection_confirmed" : MessageLookupByLibrary.simpleMessage("Connexion confirmée"), - "user__confirm_connection_with" : m33, + "user__confirm_connection_with" : m34, "user__confirm_guidelines_reject_chat_community" : MessageLookupByLibrary.simpleMessage("Discutez avec la communauté."), "user__confirm_guidelines_reject_chat_immediately" : MessageLookupByLibrary.simpleMessage("Commencer une discussion immédiatement."), "user__confirm_guidelines_reject_chat_with_team" : MessageLookupByLibrary.simpleMessage("Discutez avec l\'équipe."), @@ -683,7 +692,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_guidelines_reject_join_slack" : MessageLookupByLibrary.simpleMessage("Rejoignez le canal Slack d\'Okuna."), "user__confirm_guidelines_reject_title" : MessageLookupByLibrary.simpleMessage("Rejet des lignes directrices"), "user__connect_to_user_add_connection" : MessageLookupByLibrary.simpleMessage("Ajouter la connexion au cercle"), - "user__connect_to_user_connect_with_username" : m34, + "user__connect_to_user_connect_with_username" : m35, "user__connect_to_user_done" : MessageLookupByLibrary.simpleMessage("Terminé"), "user__connect_to_user_request_sent" : MessageLookupByLibrary.simpleMessage("Demande de connexion envoyée"), "user__connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Modifier"), @@ -701,7 +710,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__delete_account_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Entrez votre mot de passe actuel"), "user__delete_account_next" : MessageLookupByLibrary.simpleMessage("Suivant"), "user__delete_account_title" : MessageLookupByLibrary.simpleMessage("Supprimer mon compte"), - "user__disconnect_from_user" : m35, + "user__disconnect_from_user" : m36, "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Déconnecté.e avec succès"), "user__edit_profile_bio" : MessageLookupByLibrary.simpleMessage("Bio"), "user__edit_profile_delete" : MessageLookupByLibrary.simpleMessage("Supprimer"), @@ -709,20 +718,20 @@ class MessageLookup extends MessageLookupByLibrary { "user__edit_profile_location" : MessageLookupByLibrary.simpleMessage("Localité"), "user__edit_profile_name" : MessageLookupByLibrary.simpleMessage("Nom"), "user__edit_profile_pick_image" : MessageLookupByLibrary.simpleMessage("Choisir une image"), - "user__edit_profile_pick_image_error_too_large" : m36, + "user__edit_profile_pick_image_error_too_large" : m37, "user__edit_profile_save_text" : MessageLookupByLibrary.simpleMessage("Enregistrer"), "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Modifier le profil"), "user__edit_profile_url" : MessageLookupByLibrary.simpleMessage("Site web"), - "user__edit_profile_user_name_taken" : m37, + "user__edit_profile_user_name_taken" : m38, "user__edit_profile_username" : MessageLookupByLibrary.simpleMessage("Nom d\'utilisateur.trice"), "user__email_verification_error" : MessageLookupByLibrary.simpleMessage("Oups ! Votre jeton n\'était pas valide ou a expiré, veuillez s.v.p. réessayer"), "user__email_verification_successful" : MessageLookupByLibrary.simpleMessage("Super ! Votre adresse courriel est maintenant vérifiée"), "user__emoji_field_none_selected" : MessageLookupByLibrary.simpleMessage("Aucune émoticône sélectionnée"), - "user__emoji_search_none_found" : m38, + "user__emoji_search_none_found" : m39, "user__follow_button_follow_text" : MessageLookupByLibrary.simpleMessage("Suivre"), "user__follow_button_unfollow_text" : MessageLookupByLibrary.simpleMessage("Ne plus suivre"), "user__follow_lists_no_list_found" : MessageLookupByLibrary.simpleMessage("Aucune liste trouvée."), - "user__follow_lists_no_list_found_for" : m39, + "user__follow_lists_no_list_found_for" : m40, "user__follow_lists_search_for" : MessageLookupByLibrary.simpleMessage("Rechercher une liste..."), "user__follow_lists_title" : MessageLookupByLibrary.simpleMessage("Mes listes"), "user__follower_plural" : MessageLookupByLibrary.simpleMessage("abonné.e.s"), @@ -730,18 +739,18 @@ class MessageLookup extends MessageLookupByLibrary { "user__followers_title" : MessageLookupByLibrary.simpleMessage("Abonné.e.s"), "user__following_resource_name" : MessageLookupByLibrary.simpleMessage("utilisateurs.trices auxquels.elles vous êtes abonné.e"), "user__following_text" : MessageLookupByLibrary.simpleMessage("Abonné.e à"), - "user__follows_list_accounts_count" : m40, + "user__follows_list_accounts_count" : m41, "user__follows_list_edit" : MessageLookupByLibrary.simpleMessage("Modifier"), "user__follows_list_header_title" : MessageLookupByLibrary.simpleMessage("Utilisateurs.trices"), "user__follows_lists_account" : MessageLookupByLibrary.simpleMessage("1 Compte"), - "user__follows_lists_accounts" : m41, - "user__groups_see_all" : m42, + "user__follows_lists_accounts" : m42, + "user__groups_see_all" : m43, "user__guidelines_accept" : MessageLookupByLibrary.simpleMessage("Accepter"), "user__guidelines_desc" : MessageLookupByLibrary.simpleMessage("Veuillez s.v.p. prendre un moment pour lire et accepter nos lignes directrices."), "user__guidelines_reject" : MessageLookupByLibrary.simpleMessage("Rejeter"), "user__invite" : MessageLookupByLibrary.simpleMessage("Inviter"), "user__invite_member" : MessageLookupByLibrary.simpleMessage("Membre"), - "user__invite_someone_message" : m43, + "user__invite_someone_message" : m44, "user__invites_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("invitation acceptée"), "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("invitation(s) acceptée(s)"), "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Acceptée(s)"), @@ -760,11 +769,11 @@ class MessageLookup extends MessageLookupByLibrary { "user__invites_email_text" : MessageLookupByLibrary.simpleMessage("Adresse courriel"), "user__invites_invite_a_friend" : MessageLookupByLibrary.simpleMessage("Inviter un.e ami.e"), "user__invites_invite_text" : MessageLookupByLibrary.simpleMessage("Inviter"), - "user__invites_joined_with" : m44, + "user__invites_joined_with" : m45, "user__invites_none_left" : MessageLookupByLibrary.simpleMessage("Vous n\'avez pas d\'invitations disponibles."), "user__invites_none_used" : MessageLookupByLibrary.simpleMessage("Il semble que vous n\'ayez utilisé aucune invitation."), "user__invites_pending" : MessageLookupByLibrary.simpleMessage("En attente"), - "user__invites_pending_email" : m45, + "user__invites_pending_email" : m46, "user__invites_pending_group_item_name" : MessageLookupByLibrary.simpleMessage("invitation en attente"), "user__invites_pending_group_name" : MessageLookupByLibrary.simpleMessage("invitation(s) en attente"), "user__invites_refresh" : MessageLookupByLibrary.simpleMessage("Actualiser"), @@ -777,14 +786,14 @@ class MessageLookup extends MessageLookupByLibrary { "user__language_settings_saved_success" : MessageLookupByLibrary.simpleMessage("Langue changée avec succès"), "user__language_settings_title" : MessageLookupByLibrary.simpleMessage("Paramètres de langue"), "user__list_name_empty_error" : MessageLookupByLibrary.simpleMessage("Le nom de liste ne peut pas être vide."), - "user__list_name_range_error" : m46, + "user__list_name_range_error" : m47, "user__million_postfix" : MessageLookupByLibrary.simpleMessage("million"), "user__profile_action_cancel_connection" : MessageLookupByLibrary.simpleMessage("Annuler la demande de connexion"), "user__profile_action_deny_connection" : MessageLookupByLibrary.simpleMessage("Refuser la demande de connexion"), "user__profile_action_user_blocked" : MessageLookupByLibrary.simpleMessage("Utilisateur.trice bloqué.e"), "user__profile_action_user_unblocked" : MessageLookupByLibrary.simpleMessage("Utilisateur.trice débloqué.e"), - "user__profile_bio_length_error" : m47, - "user__profile_location_length_error" : m48, + "user__profile_bio_length_error" : m48, + "user__profile_location_length_error" : m49, "user__profile_url_invalid_error" : MessageLookupByLibrary.simpleMessage("Veuillez fournir une adresse web valide."), "user__remove_account_from_list" : MessageLookupByLibrary.simpleMessage("Supprimer le compte des listes"), "user__remove_account_from_list_success" : MessageLookupByLibrary.simpleMessage("Opération réussie"), @@ -794,7 +803,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Modifier le cercle"), "user__save_connection_circle_hint" : MessageLookupByLibrary.simpleMessage("par exemple: amis, famille, travail."), "user__save_connection_circle_name" : MessageLookupByLibrary.simpleMessage("Nom"), - "user__save_connection_circle_name_taken" : m49, + "user__save_connection_circle_name_taken" : m50, "user__save_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Enregistrer"), "user__save_connection_circle_users" : MessageLookupByLibrary.simpleMessage("Utilisateurs.trices"), "user__save_follows_list_create" : MessageLookupByLibrary.simpleMessage("Créer une liste"), @@ -803,7 +812,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_follows_list_emoji_required_error" : MessageLookupByLibrary.simpleMessage("Émoticône est requise"), "user__save_follows_list_hint_text" : MessageLookupByLibrary.simpleMessage("par exemple : Voyage, Photographie"), "user__save_follows_list_name" : MessageLookupByLibrary.simpleMessage("Nom"), - "user__save_follows_list_name_taken" : m50, + "user__save_follows_list_name_taken" : m51, "user__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Enregistrer"), "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("Utilisateurs.trices"), "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("mille"), @@ -813,7 +822,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__timeline_filters_circles" : MessageLookupByLibrary.simpleMessage("Cercles"), "user__timeline_filters_clear_all" : MessageLookupByLibrary.simpleMessage("Tout effacer"), "user__timeline_filters_lists" : MessageLookupByLibrary.simpleMessage("Listes"), - "user__timeline_filters_no_match" : m51, + "user__timeline_filters_no_match" : m52, "user__timeline_filters_search_desc" : MessageLookupByLibrary.simpleMessage("Recherche de cercles et de listes..."), "user__timeline_filters_title" : MessageLookupByLibrary.simpleMessage("Filtres du fil d\'actualités"), "user__translate_see_translation" : MessageLookupByLibrary.simpleMessage("Voir la traduction"), @@ -825,15 +834,15 @@ class MessageLookup extends MessageLookupByLibrary { "user__update_connection_circles_title" : MessageLookupByLibrary.simpleMessage("Mettre à jour les cercles de connexions"), "user_search__cancel" : MessageLookupByLibrary.simpleMessage("Annuler"), "user_search__communities" : MessageLookupByLibrary.simpleMessage("Communautés"), - "user_search__list_no_results_found" : m52, + "user_search__list_no_results_found" : m53, "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Actualiser"), "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Appuyez pour réessayer."), - "user_search__list_search_text" : m53, - "user_search__no_communities_for" : m54, - "user_search__no_results_for" : m55, - "user_search__no_users_for" : m56, + "user_search__list_search_text" : m54, + "user_search__no_communities_for" : m55, + "user_search__no_results_for" : m56, + "user_search__no_users_for" : m57, "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Rechercher..."), - "user_search__searching_for" : m57, + "user_search__searching_for" : m58, "user_search__users" : MessageLookupByLibrary.simpleMessage("Utilisateurs.trices") }; } diff --git a/lib/locale/messages_it.dart b/lib/locale/messages_it.dart index 379ac23e7..c3cb9e881 100644 --- a/lib/locale/messages_it.dart +++ b/lib/locale/messages_it.dart @@ -68,73 +68,75 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] ha risposto: ${postCommentText}"; - static m24(communityName) => "[name] [username] ti ha invitato a unirti alla comunità /c/${communityName}."; + static m24(postCommentText) => "[name] [username] ti ha menzionato in un commento: ${postCommentText}"; - static m25(maxLength) => "Un commento non può essere più lungo di ${maxLength} caratteri."; + static m25(communityName) => "[name] [username] ti ha invitato a unirti alla comunità /c/${communityName}."; - static m26(commentsCount) => "Mostra tutti i ${commentsCount} commenti"; + static m26(maxLength) => "Un commento non può essere più lungo di ${maxLength} caratteri."; - static m27(circlesSearchQuery) => "Nessuna cerchia trovata corrisponde a \'${circlesSearchQuery}\'."; + static m27(commentsCount) => "Mostra tutti i ${commentsCount} commenti"; - static m28(name) => "${name} non ha ancora condiviso niente."; + static m28(circlesSearchQuery) => "Nessuna cerchia trovata corrisponde a \'${circlesSearchQuery}\'."; - static m29(postCreatorUsername) => "le cerchie di @${postCreatorUsername}"; + static m29(name) => "${name} non ha ancora condiviso niente."; - static m30(maxLength) => "Il nome della cerchia non può essere più lungo di ${maxLength} caratteri."; + static m30(postCreatorUsername) => "le cerchie di @${postCreatorUsername}"; - static m31(prettyUsersCount) => "${prettyUsersCount} persone"; + static m31(maxLength) => "Il nome della cerchia non può essere più lungo di ${maxLength} caratteri."; - static m32(username) => "Sei sicuro di voler bloccare @${username}?"; + static m32(prettyUsersCount) => "${prettyUsersCount} persone"; - static m33(userName) => "Conferma la connessione con ${userName}"; + static m33(username) => "Sei sicuro di voler bloccare @${username}?"; - static m34(userName) => "Connettiti con ${userName}"; + static m34(userName) => "Conferma la connessione con ${userName}"; - static m35(userName) => "Disconnetti da ${userName}"; + static m35(userName) => "Connettiti con ${userName}"; - static m36(limit) => "Immagine troppo grande (limite: ${limit} MB)"; + static m36(userName) => "Disconnetti da ${userName}"; - static m37(username) => "Il nome utente @${username} è stato preso"; + static m37(limit) => "Immagine troppo grande (limite: ${limit} MB)"; - static m38(searchQuery) => "Nessun emoji trovato corrispondente a \'${searchQuery}\'."; + static m38(username) => "Il nome utente @${username} è stato preso"; - static m39(searchQuery) => "Nessuna lista trovata per \'${searchQuery}\'"; + static m39(searchQuery) => "Nessun emoji trovato corrispondente a \'${searchQuery}\'."; - static m40(prettyUsersCount) => "${prettyUsersCount} account"; + static m40(searchQuery) => "Nessuna lista trovata per \'${searchQuery}\'"; - static m41(prettyUsersCount) => "${prettyUsersCount} Profili"; + static m41(prettyUsersCount) => "${prettyUsersCount} account"; - static m42(groupName) => "Vedi tutti/e ${groupName}"; + static m42(prettyUsersCount) => "${prettyUsersCount} Profili"; - static m43(iosLink, androidLink, inviteLink) => "Ehi, vorrei invitarti su Okuna. Per prima cosa scarica l\'app da iTunes (${iosLink}) o dal Play store (${androidLink}). Poi incolla questo link di invito personalizzato nel modulo \'Iscriviti\' nell\'App Okuna: ${inviteLink}"; + static m43(groupName) => "Vedi tutti/e ${groupName}"; - static m44(username) => "Iscritto con nome utente @${username}"; + static m44(iosLink, androidLink, inviteLink) => "Ehi, vorrei invitarti su Okuna. Per prima cosa scarica l\'app da iTunes (${iosLink}) o dal Play store (${androidLink}). Poi incolla questo link di invito personalizzato nel modulo \'Iscriviti\' nell\'App Okuna: ${inviteLink}"; - static m45(email) => "In attesa, invia email di invito a ${email}"; + static m45(username) => "Iscritto con nome utente @${username}"; - static m46(maxLength) => "Il nome della lista non può essere più lungo di ${maxLength} caratteri."; + static m46(email) => "In attesa, invia email di invito a ${email}"; - static m47(maxLength) => "La biografia non può essere più lunga di ${maxLength} caratteri."; + static m47(maxLength) => "Il nome della lista non può essere più lungo di ${maxLength} caratteri."; - static m48(maxLength) => "Il luogo non può essere più lungo di ${maxLength} caratteri."; + static m48(maxLength) => "La biografia non può essere più lunga di ${maxLength} caratteri."; - static m49(takenConnectionsCircleName) => "Nome cerchia \'${takenConnectionsCircleName}\' già utilizzato"; + static m49(maxLength) => "Il luogo non può essere più lungo di ${maxLength} caratteri."; - static m50(listName) => "Il nome per la lista \'${listName}\' è già utilizzato"; + static m50(takenConnectionsCircleName) => "Nome cerchia \'${takenConnectionsCircleName}\' già utilizzato"; - static m51(searchQuery) => "Nessun risultato per \'${searchQuery}\'."; + static m51(listName) => "Il nome per la lista \'${listName}\' è già utilizzato"; - static m52(resourcePluralName) => "Impossibile trovare ${resourcePluralName}."; + static m52(searchQuery) => "Nessun risultato per \'${searchQuery}\'."; - static m53(resourcePluralName) => "Cerca ${resourcePluralName}..."; + static m53(resourcePluralName) => "Impossibile trovare ${resourcePluralName}."; - static m54(searchQuery) => "Nessuna Comunità trovata per \'${searchQuery}\'."; + static m54(resourcePluralName) => "Cerca ${resourcePluralName}..."; - static m55(searchQuery) => "Nessun risultato per \'${searchQuery}\'."; + static m55(searchQuery) => "Nessuna Comunità trovata per \'${searchQuery}\'."; - static m56(searchQuery) => "Nessun Utente trovato per \'${searchQuery}\'."; + static m56(searchQuery) => "Nessun risultato per \'${searchQuery}\'."; - static m57(searchQuery) => "Ricerca di \'${searchQuery}\'"; + static m57(searchQuery) => "Nessun Utente trovato per \'${searchQuery}\'."; + + static m58(searchQuery) => "Ricerca di \'${searchQuery}\'"; final messages = _notInlinedMessages(_notInlinedMessages); static _notInlinedMessages(_) => { @@ -381,6 +383,7 @@ class MessageLookup extends MessageLookupByLibrary { "community__unfavorite_action" : MessageLookupByLibrary.simpleMessage("Rimuovi la comunità dalle preferite"), "community__user_you_text" : MessageLookupByLibrary.simpleMessage("Tu"), "community__yes" : MessageLookupByLibrary.simpleMessage("Sì"), + "contextual_account_search_box__suggestions" : MessageLookupByLibrary.simpleMessage("Suggerimenti"), "drawer__account_settings" : MessageLookupByLibrary.simpleMessage("Impostazioni Account"), "drawer__account_settings_blocked_users" : MessageLookupByLibrary.simpleMessage("Utenti bloccati"), "drawer__account_settings_change_email" : MessageLookupByLibrary.simpleMessage("Cambia Email"), @@ -507,6 +510,8 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__comment_reply_notification_tile_user_replied" : m23, "notifications__comment_reply_title" : MessageLookupByLibrary.simpleMessage("Risposta al commento"), "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("Pubblica commento"), + "notifications__comment_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Ricevi una notifica quando qualcuno ti cita su uno dei suoi commenti"), + "notifications__comment_user_mention_title" : MessageLookupByLibrary.simpleMessage("Menzione nel commento di un post"), "notifications__community_invite_desc" : MessageLookupByLibrary.simpleMessage("Ricevi una notifica quando qualcuno ti invita unirti a una comunità."), "notifications__community_invite_title" : MessageLookupByLibrary.simpleMessage("Invito comunità"), "notifications__connection_desc" : MessageLookupByLibrary.simpleMessage("Ricevi una notifica quando qualcuno desidera connettersi con te"), @@ -517,16 +522,20 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__following_you_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] ha iniziato a seguirti."), "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Ricevi notifiche quando succede qualcosa"), "notifications__general_title" : MessageLookupByLibrary.simpleMessage("Notifiche"), + "notifications__mentioned_in_post_comment_tile" : m24, + "notifications__mentioned_in_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] ti ha menzionato in un post."), "notifications__mute_post_turn_off_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Disattiva notifiche ai commenti dei post"), "notifications__mute_post_turn_off_post_notifications" : MessageLookupByLibrary.simpleMessage("Disattiva notifiche ai post"), "notifications__mute_post_turn_on_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Attiva notifiche ai commenti dei post"), "notifications__mute_post_turn_on_post_notifications" : MessageLookupByLibrary.simpleMessage("Attiva notifiche ai post"), "notifications__post_reaction_desc" : MessageLookupByLibrary.simpleMessage("Ricevi una notifica quando qualcuno reagisce a uno dei tuoi post."), "notifications__post_reaction_title" : MessageLookupByLibrary.simpleMessage("Pubblica reaction"), + "notifications__post_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Ricevi una notifica quando qualcuno ti cita su uno dei suoi post"), + "notifications__post_user_mention_title" : MessageLookupByLibrary.simpleMessage("Menzione in un post"), "notifications__reacted_to_post_comment_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] ha reagito al tuo commento."), "notifications__reacted_to_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] ha reagito al tuo post."), "notifications__settings_title" : MessageLookupByLibrary.simpleMessage("Impostazioni Notifiche"), - "notifications__user_community_invite_tile" : m24, + "notifications__user_community_invite_tile" : m25, "post__action_comment" : MessageLookupByLibrary.simpleMessage("Commenta"), "post__action_react" : MessageLookupByLibrary.simpleMessage("Reagisci"), "post__action_reply" : MessageLookupByLibrary.simpleMessage("Rispondi"), @@ -539,7 +548,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__actions_reported_text" : MessageLookupByLibrary.simpleMessage("Segnalato"), "post__actions_show_more_text" : MessageLookupByLibrary.simpleMessage("Mostra altro"), "post__close_post" : MessageLookupByLibrary.simpleMessage("Chiudi post"), - "post__comment_maxlength_error" : m25, + "post__comment_maxlength_error" : m26, "post__comment_reply_expanded_post" : MessageLookupByLibrary.simpleMessage("Post"), "post__comment_reply_expanded_reply_comment" : MessageLookupByLibrary.simpleMessage("Rispondi al commento"), "post__comment_reply_expanded_reply_hint_text" : MessageLookupByLibrary.simpleMessage("La tua risposta..."), @@ -576,7 +585,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__comments_page_tap_to_retry" : MessageLookupByLibrary.simpleMessage("Tocca per riprovare a caricare i commenti."), "post__comments_page_tap_to_retry_replies" : MessageLookupByLibrary.simpleMessage("Tocca per riprovare a caricare le risposte."), "post__comments_page_title" : MessageLookupByLibrary.simpleMessage("Commenti del post"), - "post__comments_view_all_comments" : m26, + "post__comments_view_all_comments" : m27, "post__create_new" : MessageLookupByLibrary.simpleMessage("Nuovo post"), "post__create_next" : MessageLookupByLibrary.simpleMessage("Successivo"), "post__create_photo" : MessageLookupByLibrary.simpleMessage("Foto"), @@ -588,7 +597,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__is_closed" : MessageLookupByLibrary.simpleMessage("Post chiuso"), "post__my_circles" : MessageLookupByLibrary.simpleMessage("Cerchie"), "post__my_circles_desc" : MessageLookupByLibrary.simpleMessage("Condividi il post con una o più delle tue cerchie."), - "post__no_circles_for" : m27, + "post__no_circles_for" : m28, "post__open_post" : MessageLookupByLibrary.simpleMessage("Apri post"), "post__post_closed" : MessageLookupByLibrary.simpleMessage("Post chiuso "), "post__post_opened" : MessageLookupByLibrary.simpleMessage("Post aperto"), @@ -635,8 +644,8 @@ class MessageLookup extends MessageLookupByLibrary { "post__trending_posts_no_trending_posts" : MessageLookupByLibrary.simpleMessage("Non ci sono post in tendenza. Prova ad aggiornare fra qualche secondo."), "post__trending_posts_refresh" : MessageLookupByLibrary.simpleMessage("Aggiorna"), "post__trending_posts_title" : MessageLookupByLibrary.simpleMessage("Post in tendenza"), - "post__user_has_not_shared_anything" : m28, - "post__usernames_circles" : m29, + "post__user_has_not_shared_anything" : m29, + "post__usernames_circles" : m30, "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("Tutto il mondo"), "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("Hai condiviso con"), "user__add_account_done" : MessageLookupByLibrary.simpleMessage("Fatto"), @@ -654,8 +663,8 @@ class MessageLookup extends MessageLookupByLibrary { "user__change_email_success_info" : MessageLookupByLibrary.simpleMessage("Abbiamo inviato un link di conferma al tuo nuovo indirizzo email, clicca su di esso per verificare la tua nuova email"), "user__change_email_title" : MessageLookupByLibrary.simpleMessage("Cambia Email"), "user__circle_name_empty_error" : MessageLookupByLibrary.simpleMessage("Il nome della cerchia non può essere vuoto."), - "user__circle_name_range_error" : m30, - "user__circle_peoples_count" : m31, + "user__circle_name_range_error" : m31, + "user__circle_peoples_count" : m32, "user__clear_app_preferences_cleared_successfully" : MessageLookupByLibrary.simpleMessage("Preferenze cancellate con successo"), "user__clear_app_preferences_desc" : MessageLookupByLibrary.simpleMessage("Cancella le preferenze dell\'applicazione. Per ora riguarda solo l\'ordine preferito dei commenti."), "user__clear_app_preferences_error" : MessageLookupByLibrary.simpleMessage("Impossibile cancellare le preferenze"), @@ -667,13 +676,13 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_block_user_blocked" : MessageLookupByLibrary.simpleMessage("Utente bloccato."), "user__confirm_block_user_info" : MessageLookupByLibrary.simpleMessage("Non vedrete i rispettivi post né potrete interagire in alcun modo."), "user__confirm_block_user_no" : MessageLookupByLibrary.simpleMessage("No"), - "user__confirm_block_user_question" : m32, + "user__confirm_block_user_question" : m33, "user__confirm_block_user_title" : MessageLookupByLibrary.simpleMessage("Conferma"), "user__confirm_block_user_yes" : MessageLookupByLibrary.simpleMessage("Sì"), "user__confirm_connection_add_connection" : MessageLookupByLibrary.simpleMessage("Aggiungi connessione alla cerchia"), "user__confirm_connection_confirm_text" : MessageLookupByLibrary.simpleMessage("Conferma"), "user__confirm_connection_connection_confirmed" : MessageLookupByLibrary.simpleMessage("Connessione confermata"), - "user__confirm_connection_with" : m33, + "user__confirm_connection_with" : m34, "user__confirm_guidelines_reject_chat_community" : MessageLookupByLibrary.simpleMessage("Chatta con la comunità."), "user__confirm_guidelines_reject_chat_immediately" : MessageLookupByLibrary.simpleMessage("Avvia una chat immediatamente."), "user__confirm_guidelines_reject_chat_with_team" : MessageLookupByLibrary.simpleMessage("Chatta con il team."), @@ -683,7 +692,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_guidelines_reject_join_slack" : MessageLookupByLibrary.simpleMessage("Entra nel canale Slack."), "user__confirm_guidelines_reject_title" : MessageLookupByLibrary.simpleMessage("Rifiuto Linee guida"), "user__connect_to_user_add_connection" : MessageLookupByLibrary.simpleMessage("Aggiungi connessione alla cerchia"), - "user__connect_to_user_connect_with_username" : m34, + "user__connect_to_user_connect_with_username" : m35, "user__connect_to_user_done" : MessageLookupByLibrary.simpleMessage("Fatto"), "user__connect_to_user_request_sent" : MessageLookupByLibrary.simpleMessage("Richiesta di connessione inviata"), "user__connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Modifica"), @@ -701,7 +710,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__delete_account_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Inserisci la password attuale"), "user__delete_account_next" : MessageLookupByLibrary.simpleMessage("Prossimo"), "user__delete_account_title" : MessageLookupByLibrary.simpleMessage("Elimina account"), - "user__disconnect_from_user" : m35, + "user__disconnect_from_user" : m36, "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Disconnesso con successo"), "user__edit_profile_bio" : MessageLookupByLibrary.simpleMessage("Biografia"), "user__edit_profile_delete" : MessageLookupByLibrary.simpleMessage("Elimina"), @@ -709,20 +718,20 @@ class MessageLookup extends MessageLookupByLibrary { "user__edit_profile_location" : MessageLookupByLibrary.simpleMessage("Luogo"), "user__edit_profile_name" : MessageLookupByLibrary.simpleMessage("Nome"), "user__edit_profile_pick_image" : MessageLookupByLibrary.simpleMessage("Scegli immagine"), - "user__edit_profile_pick_image_error_too_large" : m36, + "user__edit_profile_pick_image_error_too_large" : m37, "user__edit_profile_save_text" : MessageLookupByLibrary.simpleMessage("Salva"), "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Modifica profilo"), "user__edit_profile_url" : MessageLookupByLibrary.simpleMessage("Url"), - "user__edit_profile_user_name_taken" : m37, + "user__edit_profile_user_name_taken" : m38, "user__edit_profile_username" : MessageLookupByLibrary.simpleMessage("Nome utente"), "user__email_verification_error" : MessageLookupByLibrary.simpleMessage("Oops! Il tuo token non è valido o scaduto, per favore riprova"), "user__email_verification_successful" : MessageLookupByLibrary.simpleMessage("Fantastico! La tua email è ora verificata"), "user__emoji_field_none_selected" : MessageLookupByLibrary.simpleMessage("Nessun emoji selezionato"), - "user__emoji_search_none_found" : m38, + "user__emoji_search_none_found" : m39, "user__follow_button_follow_text" : MessageLookupByLibrary.simpleMessage("Segui"), "user__follow_button_unfollow_text" : MessageLookupByLibrary.simpleMessage("Smetti di seguire"), "user__follow_lists_no_list_found" : MessageLookupByLibrary.simpleMessage("Nessuna lista trovata."), - "user__follow_lists_no_list_found_for" : m39, + "user__follow_lists_no_list_found_for" : m40, "user__follow_lists_search_for" : MessageLookupByLibrary.simpleMessage("Cerca una lista..."), "user__follow_lists_title" : MessageLookupByLibrary.simpleMessage("Liste"), "user__follower_plural" : MessageLookupByLibrary.simpleMessage("follower"), @@ -730,18 +739,18 @@ class MessageLookup extends MessageLookupByLibrary { "user__followers_title" : MessageLookupByLibrary.simpleMessage("Follower"), "user__following_resource_name" : MessageLookupByLibrary.simpleMessage("utenti seguiti"), "user__following_text" : MessageLookupByLibrary.simpleMessage("Seguiti"), - "user__follows_list_accounts_count" : m40, + "user__follows_list_accounts_count" : m41, "user__follows_list_edit" : MessageLookupByLibrary.simpleMessage("Modifica"), "user__follows_list_header_title" : MessageLookupByLibrary.simpleMessage("Utenti"), "user__follows_lists_account" : MessageLookupByLibrary.simpleMessage("1 Account"), - "user__follows_lists_accounts" : m41, - "user__groups_see_all" : m42, + "user__follows_lists_accounts" : m42, + "user__groups_see_all" : m43, "user__guidelines_accept" : MessageLookupByLibrary.simpleMessage("Accetta"), "user__guidelines_desc" : MessageLookupByLibrary.simpleMessage("Per favore prenditi un momento per leggere e accettare le nostre linee guida."), "user__guidelines_reject" : MessageLookupByLibrary.simpleMessage("Rifiuta"), "user__invite" : MessageLookupByLibrary.simpleMessage("Invita"), "user__invite_member" : MessageLookupByLibrary.simpleMessage("Membro"), - "user__invite_someone_message" : m43, + "user__invite_someone_message" : m44, "user__invites_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("invito accettato"), "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("inviti accettati"), "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Accettato"), @@ -760,11 +769,11 @@ class MessageLookup extends MessageLookupByLibrary { "user__invites_email_text" : MessageLookupByLibrary.simpleMessage("Email"), "user__invites_invite_a_friend" : MessageLookupByLibrary.simpleMessage("Invita un amico"), "user__invites_invite_text" : MessageLookupByLibrary.simpleMessage("Invita"), - "user__invites_joined_with" : m44, + "user__invites_joined_with" : m45, "user__invites_none_left" : MessageLookupByLibrary.simpleMessage("Non hai inviti disponibili."), "user__invites_none_used" : MessageLookupByLibrary.simpleMessage("Sembra che tu non abbia usato nessun invito."), "user__invites_pending" : MessageLookupByLibrary.simpleMessage("In attesa"), - "user__invites_pending_email" : m45, + "user__invites_pending_email" : m46, "user__invites_pending_group_item_name" : MessageLookupByLibrary.simpleMessage("invito in attesa"), "user__invites_pending_group_name" : MessageLookupByLibrary.simpleMessage("inviti in attesa"), "user__invites_refresh" : MessageLookupByLibrary.simpleMessage("Aggiorna"), @@ -777,14 +786,14 @@ class MessageLookup extends MessageLookupByLibrary { "user__language_settings_saved_success" : MessageLookupByLibrary.simpleMessage("Lingua modificata con successo"), "user__language_settings_title" : MessageLookupByLibrary.simpleMessage("Impostazioni lingua"), "user__list_name_empty_error" : MessageLookupByLibrary.simpleMessage("Il nome della lista non può essere vuoto."), - "user__list_name_range_error" : m46, + "user__list_name_range_error" : m47, "user__million_postfix" : MessageLookupByLibrary.simpleMessage("milioni"), "user__profile_action_cancel_connection" : MessageLookupByLibrary.simpleMessage("Annulla richiesta di connessione"), "user__profile_action_deny_connection" : MessageLookupByLibrary.simpleMessage("Rifiuta richiesta di connessione"), "user__profile_action_user_blocked" : MessageLookupByLibrary.simpleMessage("Utente bloccato"), "user__profile_action_user_unblocked" : MessageLookupByLibrary.simpleMessage("Utente sbloccato"), - "user__profile_bio_length_error" : m47, - "user__profile_location_length_error" : m48, + "user__profile_bio_length_error" : m48, + "user__profile_location_length_error" : m49, "user__profile_url_invalid_error" : MessageLookupByLibrary.simpleMessage("Per favore inserisci un url valido."), "user__remove_account_from_list" : MessageLookupByLibrary.simpleMessage("Rimuovi account dalle liste"), "user__remove_account_from_list_success" : MessageLookupByLibrary.simpleMessage("Operazione riuscita"), @@ -794,7 +803,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Modifica cerchia"), "user__save_connection_circle_hint" : MessageLookupByLibrary.simpleMessage("es. Amici, Famiglia, Lavoro."), "user__save_connection_circle_name" : MessageLookupByLibrary.simpleMessage("Nome"), - "user__save_connection_circle_name_taken" : m49, + "user__save_connection_circle_name_taken" : m50, "user__save_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Salva"), "user__save_connection_circle_users" : MessageLookupByLibrary.simpleMessage("Utenti"), "user__save_follows_list_create" : MessageLookupByLibrary.simpleMessage("Crea lista"), @@ -803,7 +812,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_follows_list_emoji_required_error" : MessageLookupByLibrary.simpleMessage("L\'Emoji è richiesto"), "user__save_follows_list_hint_text" : MessageLookupByLibrary.simpleMessage("es. Viaggi, Fotografia"), "user__save_follows_list_name" : MessageLookupByLibrary.simpleMessage("Nome"), - "user__save_follows_list_name_taken" : m50, + "user__save_follows_list_name_taken" : m51, "user__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Salva"), "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("Utenti"), "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("mila"), @@ -813,7 +822,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__timeline_filters_circles" : MessageLookupByLibrary.simpleMessage("Cerchie"), "user__timeline_filters_clear_all" : MessageLookupByLibrary.simpleMessage("Svuota tutto"), "user__timeline_filters_lists" : MessageLookupByLibrary.simpleMessage("Liste"), - "user__timeline_filters_no_match" : m51, + "user__timeline_filters_no_match" : m52, "user__timeline_filters_search_desc" : MessageLookupByLibrary.simpleMessage("Cerca cerchie e liste..."), "user__timeline_filters_title" : MessageLookupByLibrary.simpleMessage("Filtri timeline"), "user__translate_see_translation" : MessageLookupByLibrary.simpleMessage("Mostra traduzione"), @@ -825,15 +834,15 @@ class MessageLookup extends MessageLookupByLibrary { "user__update_connection_circles_title" : MessageLookupByLibrary.simpleMessage("Aggiorna cerchie connessioni"), "user_search__cancel" : MessageLookupByLibrary.simpleMessage("Annulla"), "user_search__communities" : MessageLookupByLibrary.simpleMessage("Comunità"), - "user_search__list_no_results_found" : m52, + "user_search__list_no_results_found" : m53, "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Aggiorna"), "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Tocca per riprovare."), - "user_search__list_search_text" : m53, - "user_search__no_communities_for" : m54, - "user_search__no_results_for" : m55, - "user_search__no_users_for" : m56, + "user_search__list_search_text" : m54, + "user_search__no_communities_for" : m55, + "user_search__no_results_for" : m56, + "user_search__no_users_for" : m57, "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Cerca..."), - "user_search__searching_for" : m57, + "user_search__searching_for" : m58, "user_search__users" : MessageLookupByLibrary.simpleMessage("Utenti") }; } diff --git a/lib/locale/messages_pt-BR.dart b/lib/locale/messages_pt-BR.dart index 8526f815a..ae0ef0f01 100644 --- a/lib/locale/messages_pt-BR.dart +++ b/lib/locale/messages_pt-BR.dart @@ -68,73 +68,75 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] respondeu: ${postCommentText}"; - static m24(communityName) => "[name] [username] convidou você para se juntar à comunidade /c/${communityName}."; + static m24(postCommentText) => "[name] [username] mencionou você em um comentário: ${postCommentText}"; - static m25(maxLength) => "Um comentário não pode ter mais de ${maxLength} caracteres."; + static m25(communityName) => "[name] [username] convidou você para se juntar à comunidade /c/${communityName}."; - static m26(commentsCount) => "Ver todos os ${commentsCount} comentários"; + static m26(maxLength) => "Um comentário não pode ter mais de ${maxLength} caracteres."; - static m27(circlesSearchQuery) => "\'Nenhum círculo encontrado para \'${circlesSearchQuery}\'."; + static m27(commentsCount) => "Ver todos os ${commentsCount} comentários"; - static m28(name) => "${name} ainda não compartilhou nada."; + static m28(circlesSearchQuery) => "\'Nenhum círculo encontrado para \'${circlesSearchQuery}\'."; - static m29(postCreatorUsername) => "círculos de @${postCreatorUsername}"; + static m29(name) => "${name} ainda não compartilhou nada."; - static m30(maxLength) => "O nome do círculo não deve ter mais de ${maxLength} caracteres."; + static m30(postCreatorUsername) => "círculos de @${postCreatorUsername}"; - static m31(prettyUsersCount) => "${prettyUsersCount} pessoas"; + static m31(maxLength) => "O nome do círculo não deve ter mais de ${maxLength} caracteres."; - static m32(username) => "Tem certeza de que deseja bloquear @${username}?"; + static m32(prettyUsersCount) => "${prettyUsersCount} pessoas"; - static m33(userName) => "Confirmar a conexão com ${userName}"; + static m33(username) => "Tem certeza de que deseja bloquear @${username}?"; - static m34(userName) => "Conectar-se com ${userName}"; + static m34(userName) => "Confirmar a conexão com ${userName}"; - static m35(userName) => "Desconectar-se de ${userName}"; + static m35(userName) => "Conectar-se com ${userName}"; - static m36(limit) => "Imagem muito grande (limite: ${limit} MB)"; + static m36(userName) => "Desconectar-se de ${userName}"; - static m37(username) => "O nome de usuário @${username} já está em uso"; + static m37(limit) => "Imagem muito grande (limite: ${limit} MB)"; - static m38(searchQuery) => "Nenhum emoji encontrado para \'${searchQuery}\'."; + static m38(username) => "O nome de usuário @${username} já está em uso"; - static m39(searchQuery) => "Nenhuma lista encontrada para \'${searchQuery}\'"; + static m39(searchQuery) => "Nenhum emoji encontrado para \'${searchQuery}\'."; - static m40(prettyUsersCount) => "${prettyUsersCount} contas"; + static m40(searchQuery) => "Nenhuma lista encontrada para \'${searchQuery}\'"; - static m41(prettyUsersCount) => "${prettyUsersCount} Contas"; + static m41(prettyUsersCount) => "${prettyUsersCount} contas"; - static m42(groupName) => "Ver ${groupName}"; + static m42(prettyUsersCount) => "${prettyUsersCount} Contas"; - static m43(iosLink, androidLink, inviteLink) => "Ei! Eu gostaria de convidar você para a Okuna. Primeiro, baixe o app no iTunes (${iosLink}) ou na Play Store (${androidLink}). Depois, copie e cole o seguinte link de convite no formulário de criação de conta no app da Okuna: ${inviteLink}"; + static m43(groupName) => "Ver ${groupName}"; - static m44(username) => "Entrou com o nome de usuário @${username}"; + static m44(iosLink, androidLink, inviteLink) => "Ei! Eu gostaria de convidar você para a Okuna. Primeiro, baixe o app no iTunes (${iosLink}) ou na Play Store (${androidLink}). Depois, copie e cole o seguinte link de convite no formulário de criação de conta no app da Okuna: ${inviteLink}"; - static m45(email) => "Pendente, convite enviado para o email ${email}"; + static m45(username) => "Entrou com o nome de usuário @${username}"; - static m46(maxLength) => "O nome da lista não deve ter mais de ${maxLength} caracteres."; + static m46(email) => "Pendente, convite enviado para o email ${email}"; - static m47(maxLength) => "A bio não pode ser maior que ${maxLength} caracteres."; + static m47(maxLength) => "O nome da lista não deve ter mais de ${maxLength} caracteres."; - static m48(maxLength) => "O local não pode ser maior que ${maxLength} caracteres."; + static m48(maxLength) => "A bio não pode ser maior que ${maxLength} caracteres."; - static m49(takenConnectionsCircleName) => "O nome de círculo \'${takenConnectionsCircleName}\' já está em uso"; + static m49(maxLength) => "O local não pode ser maior que ${maxLength} caracteres."; - static m50(listName) => "O nome de lista \'${listName}\' já está sendo usado"; + static m50(takenConnectionsCircleName) => "O nome de círculo \'${takenConnectionsCircleName}\' já está em uso"; - static m51(searchQuery) => "Nada encontrado para \'${searchQuery}\'."; + static m51(listName) => "O nome de lista \'${listName}\' já está sendo usado"; - static m52(resourcePluralName) => "Sem ${resourcePluralName}."; + static m52(searchQuery) => "Nada encontrado para \'${searchQuery}\'."; - static m53(resourcePluralName) => "Pesquisar ${resourcePluralName} ..."; + static m53(resourcePluralName) => "Sem ${resourcePluralName}."; - static m54(searchQuery) => "Nenhuma comunidade encontrada para \'${searchQuery}\'."; + static m54(resourcePluralName) => "Pesquisar ${resourcePluralName} ..."; - static m55(searchQuery) => "Nenhum resultado para \'${searchQuery}\'."; + static m55(searchQuery) => "Nenhuma comunidade encontrada para \'${searchQuery}\'."; - static m56(searchQuery) => "Nenhum usuário encontrado para \'${searchQuery}\'."; + static m56(searchQuery) => "Nenhum resultado para \'${searchQuery}\'."; - static m57(searchQuery) => "Procurando por \'${searchQuery}\'"; + static m57(searchQuery) => "Nenhum usuário encontrado para \'${searchQuery}\'."; + + static m58(searchQuery) => "Procurando por \'${searchQuery}\'"; final messages = _notInlinedMessages(_notInlinedMessages); static _notInlinedMessages(_) => { @@ -381,6 +383,7 @@ class MessageLookup extends MessageLookupByLibrary { "community__unfavorite_action" : MessageLookupByLibrary.simpleMessage("Desfavoritar comunidade"), "community__user_you_text" : MessageLookupByLibrary.simpleMessage("Você"), "community__yes" : MessageLookupByLibrary.simpleMessage("Sim"), + "contextual_account_search_box__suggestions" : MessageLookupByLibrary.simpleMessage("Sugestões"), "drawer__account_settings" : MessageLookupByLibrary.simpleMessage("Configurações da conta"), "drawer__account_settings_blocked_users" : MessageLookupByLibrary.simpleMessage("Usuários bloqueados"), "drawer__account_settings_change_email" : MessageLookupByLibrary.simpleMessage("Alterar Email"), @@ -507,6 +510,8 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__comment_reply_notification_tile_user_replied" : m23, "notifications__comment_reply_title" : MessageLookupByLibrary.simpleMessage("Respostas aos comentários"), "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("Comentários"), + "notifications__comment_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguém mencionar você em um comentário"), + "notifications__comment_user_mention_title" : MessageLookupByLibrary.simpleMessage("Menções em comentários"), "notifications__community_invite_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguém convida você para entrar em uma comunidade."), "notifications__community_invite_title" : MessageLookupByLibrary.simpleMessage("Convites para comunidades"), "notifications__connection_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguém quiser se conectar com você"), @@ -517,16 +522,20 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__following_you_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] está te seguindo agora."), "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando algo acontecer"), "notifications__general_title" : MessageLookupByLibrary.simpleMessage("Notificações"), + "notifications__mentioned_in_post_comment_tile" : m24, + "notifications__mentioned_in_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] mencionou você em uma publicação."), "notifications__mute_post_turn_off_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Desativar notificações do comentário"), "notifications__mute_post_turn_off_post_notifications" : MessageLookupByLibrary.simpleMessage("Desativar notificações do post"), "notifications__mute_post_turn_on_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Ativar notificações do comentário"), "notifications__mute_post_turn_on_post_notifications" : MessageLookupByLibrary.simpleMessage("Ativar notificações do post"), "notifications__post_reaction_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguém reage a uma das suas publicações."), "notifications__post_reaction_title" : MessageLookupByLibrary.simpleMessage("Reações aos posts"), + "notifications__post_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguém mencionar você em uma publicação"), + "notifications__post_user_mention_title" : MessageLookupByLibrary.simpleMessage("Menções em publicações"), "notifications__reacted_to_post_comment_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] reagiu ao seu comentário."), "notifications__reacted_to_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] reagiu à sua publicação."), "notifications__settings_title" : MessageLookupByLibrary.simpleMessage("Configurações de notificação"), - "notifications__user_community_invite_tile" : m24, + "notifications__user_community_invite_tile" : m25, "post__action_comment" : MessageLookupByLibrary.simpleMessage("Comentar"), "post__action_react" : MessageLookupByLibrary.simpleMessage("Reagir"), "post__action_reply" : MessageLookupByLibrary.simpleMessage("Responder"), @@ -539,7 +548,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__actions_reported_text" : MessageLookupByLibrary.simpleMessage("Denunciado"), "post__actions_show_more_text" : MessageLookupByLibrary.simpleMessage("Ver mais"), "post__close_post" : MessageLookupByLibrary.simpleMessage("Fechar post"), - "post__comment_maxlength_error" : m25, + "post__comment_maxlength_error" : m26, "post__comment_reply_expanded_post" : MessageLookupByLibrary.simpleMessage("Enviar"), "post__comment_reply_expanded_reply_comment" : MessageLookupByLibrary.simpleMessage("Responder comentário"), "post__comment_reply_expanded_reply_hint_text" : MessageLookupByLibrary.simpleMessage("Sua resposta..."), @@ -576,7 +585,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__comments_page_tap_to_retry" : MessageLookupByLibrary.simpleMessage("Toque para tentar atualizar os comentários novamente."), "post__comments_page_tap_to_retry_replies" : MessageLookupByLibrary.simpleMessage("Toque para tentar atualizar as respostas novamente."), "post__comments_page_title" : MessageLookupByLibrary.simpleMessage("Comentários"), - "post__comments_view_all_comments" : m26, + "post__comments_view_all_comments" : m27, "post__create_new" : MessageLookupByLibrary.simpleMessage("Novo post"), "post__create_next" : MessageLookupByLibrary.simpleMessage("Avançar"), "post__create_photo" : MessageLookupByLibrary.simpleMessage("Imagem"), @@ -588,7 +597,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__is_closed" : MessageLookupByLibrary.simpleMessage("Post fechado"), "post__my_circles" : MessageLookupByLibrary.simpleMessage("Meus círculos"), "post__my_circles_desc" : MessageLookupByLibrary.simpleMessage("Compartilhe a publicação para um ou vários dos seus círculos."), - "post__no_circles_for" : m27, + "post__no_circles_for" : m28, "post__open_post" : MessageLookupByLibrary.simpleMessage("Abrir post"), "post__post_closed" : MessageLookupByLibrary.simpleMessage("Post fechado "), "post__post_opened" : MessageLookupByLibrary.simpleMessage("Post aberto"), @@ -635,8 +644,8 @@ class MessageLookup extends MessageLookupByLibrary { "post__trending_posts_no_trending_posts" : MessageLookupByLibrary.simpleMessage("Não há publicações em alta. Tente atualizar em alguns segundos."), "post__trending_posts_refresh" : MessageLookupByLibrary.simpleMessage("Atualizar"), "post__trending_posts_title" : MessageLookupByLibrary.simpleMessage("Posts em alta"), - "post__user_has_not_shared_anything" : m28, - "post__usernames_circles" : m29, + "post__user_has_not_shared_anything" : m29, + "post__usernames_circles" : m30, "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("Mundo"), "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("Você compartilhou com"), "user__add_account_done" : MessageLookupByLibrary.simpleMessage("Concluído"), @@ -654,8 +663,8 @@ class MessageLookup extends MessageLookupByLibrary { "user__change_email_success_info" : MessageLookupByLibrary.simpleMessage("Enviamos um link de confirmação para seu novo endereço de email, clique nele para verificar seu novo email"), "user__change_email_title" : MessageLookupByLibrary.simpleMessage("Alterar Email"), "user__circle_name_empty_error" : MessageLookupByLibrary.simpleMessage("O nome do círculo não pode ficar vazio."), - "user__circle_name_range_error" : m30, - "user__circle_peoples_count" : m31, + "user__circle_name_range_error" : m31, + "user__circle_peoples_count" : m32, "user__clear_app_preferences_cleared_successfully" : MessageLookupByLibrary.simpleMessage("Preferências limpas com sucesso"), "user__clear_app_preferences_desc" : MessageLookupByLibrary.simpleMessage("Limpe as preferências do aplicativo. Atualmente, isso influencia apenas a ordem preferida dos comentários."), "user__clear_app_preferences_error" : MessageLookupByLibrary.simpleMessage("Não foi possível limpar as preferências"), @@ -667,13 +676,13 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_block_user_blocked" : MessageLookupByLibrary.simpleMessage("Usuário bloqueado."), "user__confirm_block_user_info" : MessageLookupByLibrary.simpleMessage("Vocês não verão os posts um do outro nem serão capazes de interagir de qualquer forma."), "user__confirm_block_user_no" : MessageLookupByLibrary.simpleMessage("Não"), - "user__confirm_block_user_question" : m32, + "user__confirm_block_user_question" : m33, "user__confirm_block_user_title" : MessageLookupByLibrary.simpleMessage("Confirmação"), "user__confirm_block_user_yes" : MessageLookupByLibrary.simpleMessage("Sim"), "user__confirm_connection_add_connection" : MessageLookupByLibrary.simpleMessage("Adicionar conexão ao círculo"), "user__confirm_connection_confirm_text" : MessageLookupByLibrary.simpleMessage("Confirmar"), "user__confirm_connection_connection_confirmed" : MessageLookupByLibrary.simpleMessage("Conexão confirmada"), - "user__confirm_connection_with" : m33, + "user__confirm_connection_with" : m34, "user__confirm_guidelines_reject_chat_community" : MessageLookupByLibrary.simpleMessage("Converse com a comunidade."), "user__confirm_guidelines_reject_chat_immediately" : MessageLookupByLibrary.simpleMessage("Inicie o chat agora."), "user__confirm_guidelines_reject_chat_with_team" : MessageLookupByLibrary.simpleMessage("Converse com a equipe."), @@ -683,7 +692,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_guidelines_reject_join_slack" : MessageLookupByLibrary.simpleMessage("Junte-se ao canal no Slack."), "user__confirm_guidelines_reject_title" : MessageLookupByLibrary.simpleMessage("Rejeição das diretrizes"), "user__connect_to_user_add_connection" : MessageLookupByLibrary.simpleMessage("Adicionar conexão ao círculo"), - "user__connect_to_user_connect_with_username" : m34, + "user__connect_to_user_connect_with_username" : m35, "user__connect_to_user_done" : MessageLookupByLibrary.simpleMessage("Pronto"), "user__connect_to_user_request_sent" : MessageLookupByLibrary.simpleMessage("Pedido de conexão enviado"), "user__connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Editar"), @@ -701,7 +710,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__delete_account_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Digite a sua senha atual"), "user__delete_account_next" : MessageLookupByLibrary.simpleMessage("Avançar"), "user__delete_account_title" : MessageLookupByLibrary.simpleMessage("Excluir a minha conta"), - "user__disconnect_from_user" : m35, + "user__disconnect_from_user" : m36, "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Desconectado com sucesso"), "user__edit_profile_bio" : MessageLookupByLibrary.simpleMessage("Bio"), "user__edit_profile_delete" : MessageLookupByLibrary.simpleMessage("Excluir"), @@ -709,20 +718,20 @@ class MessageLookup extends MessageLookupByLibrary { "user__edit_profile_location" : MessageLookupByLibrary.simpleMessage("Localização"), "user__edit_profile_name" : MessageLookupByLibrary.simpleMessage("Nome"), "user__edit_profile_pick_image" : MessageLookupByLibrary.simpleMessage("Escolher imagem"), - "user__edit_profile_pick_image_error_too_large" : m36, + "user__edit_profile_pick_image_error_too_large" : m37, "user__edit_profile_save_text" : MessageLookupByLibrary.simpleMessage("Salvar"), "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Editar perfil"), "user__edit_profile_url" : MessageLookupByLibrary.simpleMessage("Url"), - "user__edit_profile_user_name_taken" : m37, + "user__edit_profile_user_name_taken" : m38, "user__edit_profile_username" : MessageLookupByLibrary.simpleMessage("Nome de usuário"), "user__email_verification_error" : MessageLookupByLibrary.simpleMessage("Opa! Seu token não era válido ou expirou, por favor tente novamente"), "user__email_verification_successful" : MessageLookupByLibrary.simpleMessage("Incrível! Seu email foi verificado"), "user__emoji_field_none_selected" : MessageLookupByLibrary.simpleMessage("Nenhum emoji selecionado"), - "user__emoji_search_none_found" : m38, + "user__emoji_search_none_found" : m39, "user__follow_button_follow_text" : MessageLookupByLibrary.simpleMessage("Seguir"), "user__follow_button_unfollow_text" : MessageLookupByLibrary.simpleMessage("Parar de seguir"), "user__follow_lists_no_list_found" : MessageLookupByLibrary.simpleMessage("Nenhuma lista encontrada."), - "user__follow_lists_no_list_found_for" : m39, + "user__follow_lists_no_list_found_for" : m40, "user__follow_lists_search_for" : MessageLookupByLibrary.simpleMessage("Procurar por uma lista..."), "user__follow_lists_title" : MessageLookupByLibrary.simpleMessage("Minhas listas"), "user__follower_plural" : MessageLookupByLibrary.simpleMessage("seguidores"), @@ -730,18 +739,18 @@ class MessageLookup extends MessageLookupByLibrary { "user__followers_title" : MessageLookupByLibrary.simpleMessage("Seguidores"), "user__following_resource_name" : MessageLookupByLibrary.simpleMessage("usuários seguidos"), "user__following_text" : MessageLookupByLibrary.simpleMessage("Seguindo"), - "user__follows_list_accounts_count" : m40, + "user__follows_list_accounts_count" : m41, "user__follows_list_edit" : MessageLookupByLibrary.simpleMessage("Editar"), "user__follows_list_header_title" : MessageLookupByLibrary.simpleMessage("Usuários"), "user__follows_lists_account" : MessageLookupByLibrary.simpleMessage("1 Conta"), - "user__follows_lists_accounts" : m41, - "user__groups_see_all" : m42, + "user__follows_lists_accounts" : m42, + "user__groups_see_all" : m43, "user__guidelines_accept" : MessageLookupByLibrary.simpleMessage("Aceitar"), "user__guidelines_desc" : MessageLookupByLibrary.simpleMessage("Por favor, dedique este momento para ler e aceitar as nossas diretrizes."), "user__guidelines_reject" : MessageLookupByLibrary.simpleMessage("Rejeitar"), "user__invite" : MessageLookupByLibrary.simpleMessage("Convidar"), "user__invite_member" : MessageLookupByLibrary.simpleMessage("Membro"), - "user__invite_someone_message" : m43, + "user__invite_someone_message" : m44, "user__invites_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("convite aceito"), "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("convites aceitos"), "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Aceitos"), @@ -760,11 +769,11 @@ class MessageLookup extends MessageLookupByLibrary { "user__invites_email_text" : MessageLookupByLibrary.simpleMessage("Email"), "user__invites_invite_a_friend" : MessageLookupByLibrary.simpleMessage("Convidar um amigo"), "user__invites_invite_text" : MessageLookupByLibrary.simpleMessage("Convidar"), - "user__invites_joined_with" : m44, + "user__invites_joined_with" : m45, "user__invites_none_left" : MessageLookupByLibrary.simpleMessage("Você não tem convites disponíveis."), "user__invites_none_used" : MessageLookupByLibrary.simpleMessage("Parece que você não usou nenhum convite."), "user__invites_pending" : MessageLookupByLibrary.simpleMessage("Pendente"), - "user__invites_pending_email" : m45, + "user__invites_pending_email" : m46, "user__invites_pending_group_item_name" : MessageLookupByLibrary.simpleMessage("convite pendente"), "user__invites_pending_group_name" : MessageLookupByLibrary.simpleMessage("convites pendentes"), "user__invites_refresh" : MessageLookupByLibrary.simpleMessage("Atualizar"), @@ -777,14 +786,14 @@ class MessageLookup extends MessageLookupByLibrary { "user__language_settings_saved_success" : MessageLookupByLibrary.simpleMessage("Idioma alterado com sucesso"), "user__language_settings_title" : MessageLookupByLibrary.simpleMessage("Configurações de idioma"), "user__list_name_empty_error" : MessageLookupByLibrary.simpleMessage("O nome da lista não pode ficar vazio."), - "user__list_name_range_error" : m46, + "user__list_name_range_error" : m47, "user__million_postfix" : MessageLookupByLibrary.simpleMessage("M"), "user__profile_action_cancel_connection" : MessageLookupByLibrary.simpleMessage("Cancelar pedido de conexão"), "user__profile_action_deny_connection" : MessageLookupByLibrary.simpleMessage("Recusar pedido de conexão"), "user__profile_action_user_blocked" : MessageLookupByLibrary.simpleMessage("Usuário bloqueado"), "user__profile_action_user_unblocked" : MessageLookupByLibrary.simpleMessage("Usuário desbloqueado"), - "user__profile_bio_length_error" : m47, - "user__profile_location_length_error" : m48, + "user__profile_bio_length_error" : m48, + "user__profile_location_length_error" : m49, "user__profile_url_invalid_error" : MessageLookupByLibrary.simpleMessage("Por favor, forneça uma url válida."), "user__remove_account_from_list" : MessageLookupByLibrary.simpleMessage("Remover conta das listas"), "user__remove_account_from_list_success" : MessageLookupByLibrary.simpleMessage("Sucesso"), @@ -794,7 +803,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Editar círculo"), "user__save_connection_circle_hint" : MessageLookupByLibrary.simpleMessage("ex: Amigos, Família, Trabalho."), "user__save_connection_circle_name" : MessageLookupByLibrary.simpleMessage("Nome"), - "user__save_connection_circle_name_taken" : m49, + "user__save_connection_circle_name_taken" : m50, "user__save_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Salvar"), "user__save_connection_circle_users" : MessageLookupByLibrary.simpleMessage("Usuários"), "user__save_follows_list_create" : MessageLookupByLibrary.simpleMessage("Criar lista"), @@ -803,7 +812,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_follows_list_emoji_required_error" : MessageLookupByLibrary.simpleMessage("Emoji necessário"), "user__save_follows_list_hint_text" : MessageLookupByLibrary.simpleMessage("ex: Viagem, Fotografia"), "user__save_follows_list_name" : MessageLookupByLibrary.simpleMessage("Nome"), - "user__save_follows_list_name_taken" : m50, + "user__save_follows_list_name_taken" : m51, "user__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Salvar"), "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("Usuários"), "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("k"), @@ -813,7 +822,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__timeline_filters_circles" : MessageLookupByLibrary.simpleMessage("Círculos"), "user__timeline_filters_clear_all" : MessageLookupByLibrary.simpleMessage("Limpar tudo"), "user__timeline_filters_lists" : MessageLookupByLibrary.simpleMessage("Listas"), - "user__timeline_filters_no_match" : m51, + "user__timeline_filters_no_match" : m52, "user__timeline_filters_search_desc" : MessageLookupByLibrary.simpleMessage("Procurar por círculos e listas..."), "user__timeline_filters_title" : MessageLookupByLibrary.simpleMessage("Filtros da linha do tempo"), "user__translate_see_translation" : MessageLookupByLibrary.simpleMessage("Mostrar tradução"), @@ -825,15 +834,15 @@ class MessageLookup extends MessageLookupByLibrary { "user__update_connection_circles_title" : MessageLookupByLibrary.simpleMessage("Atualizar círculos de conexão"), "user_search__cancel" : MessageLookupByLibrary.simpleMessage("Cancelar"), "user_search__communities" : MessageLookupByLibrary.simpleMessage("Comunidades"), - "user_search__list_no_results_found" : m52, + "user_search__list_no_results_found" : m53, "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Atualizar"), "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Toque para tentar novamente."), - "user_search__list_search_text" : m53, - "user_search__no_communities_for" : m54, - "user_search__no_results_for" : m55, - "user_search__no_users_for" : m56, + "user_search__list_search_text" : m54, + "user_search__no_communities_for" : m55, + "user_search__no_results_for" : m56, + "user_search__no_users_for" : m57, "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Pesquisar..."), - "user_search__searching_for" : m57, + "user_search__searching_for" : m58, "user_search__users" : MessageLookupByLibrary.simpleMessage("Usuários") }; } diff --git a/lib/locale/messages_sv-SE.dart b/lib/locale/messages_sv-SE.dart new file mode 100644 index 000000000..b349ca4d8 --- /dev/null +++ b/lib/locale/messages_sv-SE.dart @@ -0,0 +1,847 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a sv_SE locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// ignore_for_file: unnecessary_brace_in_string_interps + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +// ignore: unnecessary_new +final messages = new MessageLookup(); + +// ignore: unused_element +final _keepAnalysisHappy = Intl.defaultLocale; + +// ignore: non_constant_identifier_names +typedef MessageIfAbsent(String message_str, List args); + +class MessageLookup extends MessageLookupByLibrary { + get localeName => 'sv_SE'; + + static m0(minLength, maxLength) => "(${minLength}-${maxLength} tecken)"; + + static m1(minLength, maxLength) => "Beskrivningen måste vara mellan ${minLength} och ${maxLength} tecken."; + + static m2(minLength, maxLength) => "Namnet måste vara mellan ${minLength} och ${maxLength} tecken."; + + static m3(minLength, maxLength) => "Lösenordet måste vara mellan ${minLength} och ${maxLength} tecken."; + + static m4(maxLength) => "Ett användarnamn kan inte vara längre än ${maxLength} tecken."; + + static m5(maxLength) => "Adjektiv får inte vara längre än ${maxLength} tecken."; + + static m6(username) => "Är du säker på att du vill lägga till @${username} som administratör för gemenskapen?"; + + static m7(username) => "Är du säker på att du vill banna @${username}?"; + + static m8(maxLength) => "Beskrivningen kan inte vara längre än ${maxLength} tecken."; + + static m9(username) => "Är du säker på att du vill lägga till @${username} som gemenskapsmoderator?"; + + static m10(maxLength) => "Namnet får inte vara längre än ${maxLength} tecken."; + + static m11(min) => "Du måste välja åtminstone ${min} kategorier."; + + static m12(min) => "Du måste välja åtminstone ${min} kategori."; + + static m13(max) => "Välj upp till ${max} kategorier"; + + static m14(maxLength) => "Reglerna får inte vara längre än ${maxLength} tecken."; + + static m15(takenName) => "Gemenskapsnamnet \'${takenName}\' är upptaget"; + + static m16(maxLength) => "Titeln får inte vara längre än ${maxLength} tecken."; + + static m17(categoryName) => "Trendiga i ${categoryName}"; + + static m18(currentUserLanguage) => "Språk (${currentUserLanguage})"; + + static m19(resourceCount, resourceName) => "Visa alla ${resourceCount} ${resourceName}"; + + static m20(postCommentText) => "[name] [username] kommenterade också: ${postCommentText}"; + + static m21(postCommentText) => "[name] [username] kommenterade på ditt inlägg: ${postCommentText}"; + + static m22(postCommentText) => "[name] [username] svarade också: ${postCommentText}"; + + static m23(postCommentText) => "[name] [username] svarade: ${postCommentText}"; + + static m24(postCommentText) => "[name] [username] nämnde dig i en kommentar: ${postCommentText}"; + + static m25(communityName) => "[name] [username] har bjudit in dig till gemenskapen /c/${communityName}."; + + static m26(maxLength) => "En kommentar kan inte vara längre än ${maxLength} tecken."; + + static m27(commentsCount) => "Visa alla ${commentsCount} kommentarer"; + + static m28(circlesSearchQuery) => "Inga kretsar hittades som matchar \'${circlesSearchQuery}\'."; + + static m29(name) => "${name} har inte delat något ännu."; + + static m30(postCreatorUsername) => "@${postCreatorUsername}s kretsar"; + + static m31(maxLength) => "Kretsens namn får inte vara längre än ${maxLength} tecken."; + + static m32(prettyUsersCount) => "${prettyUsersCount} personer"; + + static m33(username) => "Är du säker på att du vill blockera @${username}?"; + + static m34(userName) => "Bekräfta ${userName}s kontaktförfrågan"; + + static m35(userName) => "Lägg till ${userName} som kontakt"; + + static m36(userName) => "Ta bort ${userName} som kontakt"; + + static m37(limit) => "Bilden är för stor (gräns: ${limit} MB)"; + + static m38(username) => "Användarnamnet @${username} är upptaget"; + + static m39(searchQuery) => "Ingen emoji hittades som matchar \'${searchQuery}\'."; + + static m40(searchQuery) => "Inga listor hittades för \'${searchQuery}\'"; + + static m41(prettyUsersCount) => "${prettyUsersCount} konton"; + + static m42(prettyUsersCount) => "${prettyUsersCount} Konton"; + + static m43(groupName) => "Visa alla ${groupName}"; + + static m44(iosLink, androidLink, inviteLink) => "Hej, jag vill bjuda in dig till Okuna. Först, ladda ner appen från iTunes (${iosLink}) eller Play Store (${androidLink}). Sedan klistrar du in din personliga inbjudningslänk i \'Registrera dig\'-formuläret i Okuna-appen: ${inviteLink}"; + + static m45(username) => "Gick med under användarnamnet @${username}"; + + static m46(email) => "Väntande, inbjudan skickad till ${email}"; + + static m47(maxLength) => "Listans namn får inte vara längre än ${maxLength} tecken."; + + static m48(maxLength) => "Bion kan inte vara längre än ${maxLength} tecken."; + + static m49(maxLength) => "En plats kan inte vara längre än ${maxLength} tecken."; + + static m50(takenConnectionsCircleName) => "Kretsnamnet \'${takenConnectionsCircleName}\' är upptaget"; + + static m51(listName) => "Listnamnet \'${listName}\' är upptaget"; + + static m52(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; + + static m53(resourcePluralName) => "Inga ${resourcePluralName} hittades."; + + static m54(resourcePluralName) => "Sök ${resourcePluralName} ..."; + + static m55(searchQuery) => "Inga gemenskaper hittades för \'${searchQuery}\'."; + + static m56(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; + + static m57(searchQuery) => "Inga användare hittades för \'${searchQuery}\'."; + + static m58(searchQuery) => "Söker efter \'${searchQuery}\'"; + + final messages = _notInlinedMessages(_notInlinedMessages); + static _notInlinedMessages(_) => { + "auth__change_password_current_pwd" : MessageLookupByLibrary.simpleMessage("Nuvarande lösenord"), + "auth__change_password_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Ange ditt nuvarande lösenord"), + "auth__change_password_current_pwd_incorrect" : MessageLookupByLibrary.simpleMessage("Det angivna lösenordet var felaktigt"), + "auth__change_password_new_pwd" : MessageLookupByLibrary.simpleMessage("Nytt lösenord"), + "auth__change_password_new_pwd_error" : MessageLookupByLibrary.simpleMessage("Vänligen se till att lösenordet är mellan 10 och 100 tecken långt"), + "auth__change_password_new_pwd_hint" : MessageLookupByLibrary.simpleMessage("Ange ditt nya lösenord"), + "auth__change_password_save_success" : MessageLookupByLibrary.simpleMessage("Allt klart! Ditt lösenord har uppdaterats"), + "auth__change_password_save_text" : MessageLookupByLibrary.simpleMessage("Spara"), + "auth__change_password_title" : MessageLookupByLibrary.simpleMessage("Ändra lösenord"), + "auth__create_acc__almost_there" : MessageLookupByLibrary.simpleMessage("Nästan klart..."), + "auth__create_acc__are_you_legal_age" : MessageLookupByLibrary.simpleMessage("Är du äldre än 16 år?"), + "auth__create_acc__avatar_choose_camera" : MessageLookupByLibrary.simpleMessage("Ta ett foto"), + "auth__create_acc__avatar_choose_gallery" : MessageLookupByLibrary.simpleMessage("Använd ett existerande foto"), + "auth__create_acc__avatar_remove_photo" : MessageLookupByLibrary.simpleMessage("Ta bort foto"), + "auth__create_acc__avatar_tap_to_change" : MessageLookupByLibrary.simpleMessage("Tryck för att ändra"), + "auth__create_acc__can_change_username" : MessageLookupByLibrary.simpleMessage("Om du vill så kan du ändra det när som helst från din profilsida."), + "auth__create_acc__congratulations" : MessageLookupByLibrary.simpleMessage("Gratulerar!"), + "auth__create_acc__create_account" : MessageLookupByLibrary.simpleMessage("Skapa konto"), + "auth__create_acc__done" : MessageLookupByLibrary.simpleMessage("Skapa konto"), + "auth__create_acc__done_continue" : MessageLookupByLibrary.simpleMessage("Logga in"), + "auth__create_acc__done_created" : MessageLookupByLibrary.simpleMessage("Ditt konto har skapats med användarnamnet "), + "auth__create_acc__done_description" : MessageLookupByLibrary.simpleMessage("Ditt konto har skapats."), + "auth__create_acc__done_subtext" : MessageLookupByLibrary.simpleMessage("Du kan ändra detta i dina profilinställningar."), + "auth__create_acc__done_title" : MessageLookupByLibrary.simpleMessage("Hurra!"), + "auth__create_acc__email_empty_error" : MessageLookupByLibrary.simpleMessage("😱 Du måste ange en e-postadress"), + "auth__create_acc__email_invalid_error" : MessageLookupByLibrary.simpleMessage("😅 Vänligen ange en giltig e-postadress."), + "auth__create_acc__email_placeholder" : MessageLookupByLibrary.simpleMessage("john_travolta@mail.com"), + "auth__create_acc__email_server_error" : MessageLookupByLibrary.simpleMessage("😭 Vi har serverproblem, vänligen försök igen om några minuter."), + "auth__create_acc__email_taken_error" : MessageLookupByLibrary.simpleMessage("🤔 Det finns redan ett konto med den e-postadressen."), + "auth__create_acc__lets_get_started" : MessageLookupByLibrary.simpleMessage("Låt oss komma igång"), + "auth__create_acc__link_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste ange en länk."), + "auth__create_acc__link_invalid_error" : MessageLookupByLibrary.simpleMessage("Länken verkar vara ogiltig."), + "auth__create_acc__name_characters_error" : MessageLookupByLibrary.simpleMessage("😅 Ett namn kan bara innehålla alfanumeriska tecken (för tillfället)."), + "auth__create_acc__name_empty_error" : MessageLookupByLibrary.simpleMessage("😱 Du måste ange ett namn."), + "auth__create_acc__name_length_error" : MessageLookupByLibrary.simpleMessage("😱 Ditt namn får inte vara längre än 50 tecken. (Vi är ledsna om det är det.)"), + "auth__create_acc__name_placeholder" : MessageLookupByLibrary.simpleMessage("James Bond"), + "auth__create_acc__next" : MessageLookupByLibrary.simpleMessage("Nästa"), + "auth__create_acc__one_last_thing" : MessageLookupByLibrary.simpleMessage("En sista sak..."), + "auth__create_acc__password_empty_error" : MessageLookupByLibrary.simpleMessage("😱 Du måste ange ett lösenord"), + "auth__create_acc__password_length_error" : MessageLookupByLibrary.simpleMessage("😅 Ett lösenord måste vara mellan 8 och 64 tecken."), + "auth__create_acc__paste_link" : MessageLookupByLibrary.simpleMessage("Klistra in din registreringslänk nedan"), + "auth__create_acc__paste_link_help_text" : MessageLookupByLibrary.simpleMessage("Använd länken från Join Okuna-knappen i din inbjudan."), + "auth__create_acc__paste_password_reset_link" : MessageLookupByLibrary.simpleMessage("Klistra in din lösenordsåterställningslänk nedan"), + "auth__create_acc__previous" : MessageLookupByLibrary.simpleMessage("Tillbaka"), + "auth__create_acc__register" : MessageLookupByLibrary.simpleMessage("Registrera"), + "auth__create_acc__request_invite" : MessageLookupByLibrary.simpleMessage("Ingen inbjudan? Be om en här."), + "auth__create_acc__submit_error_desc_server" : MessageLookupByLibrary.simpleMessage("😭 Vi har serverproblem, vänligen försök igen om några minuter."), + "auth__create_acc__submit_error_desc_validation" : MessageLookupByLibrary.simpleMessage("😅 Det ser ut som att en del av informationen var felaktig, vänligen kontrollera den och försök igen."), + "auth__create_acc__submit_error_title" : MessageLookupByLibrary.simpleMessage("Åh, nej..."), + "auth__create_acc__submit_loading_desc" : MessageLookupByLibrary.simpleMessage("Vi skapar ditt konto."), + "auth__create_acc__submit_loading_title" : MessageLookupByLibrary.simpleMessage("Håll ut!"), + "auth__create_acc__subscribe" : MessageLookupByLibrary.simpleMessage("Begär"), + "auth__create_acc__subscribe_to_waitlist_text" : MessageLookupByLibrary.simpleMessage("Be om en inbjudan!"), + "auth__create_acc__username_characters_error" : MessageLookupByLibrary.simpleMessage("😅 Ett användarnamn kan bara innehålla alfanumeriska tecken och understreck."), + "auth__create_acc__username_empty_error" : MessageLookupByLibrary.simpleMessage("😱 Du måste ange ett användarnamn."), + "auth__create_acc__username_length_error" : MessageLookupByLibrary.simpleMessage("😅 Ett användarnamn kan inte vara längre än 30 tecken."), + "auth__create_acc__username_placeholder" : MessageLookupByLibrary.simpleMessage("pablopicasso"), + "auth__create_acc__username_server_error" : MessageLookupByLibrary.simpleMessage("😭 Vi har serverproblem, vänligen försök igen om några minuter."), + "auth__create_acc__username_taken_error" : MessageLookupByLibrary.simpleMessage("😩 Användarnamnet @%s är upptaget."), + "auth__create_acc__welcome_to_beta" : MessageLookupByLibrary.simpleMessage("Välkommen till betan!"), + "auth__create_acc__what_avatar" : MessageLookupByLibrary.simpleMessage("Välj en profilbild"), + "auth__create_acc__what_email" : MessageLookupByLibrary.simpleMessage("Vad är din e-post?"), + "auth__create_acc__what_name" : MessageLookupByLibrary.simpleMessage("Vad heter du?"), + "auth__create_acc__what_password" : MessageLookupByLibrary.simpleMessage("Välj ett lösenord"), + "auth__create_acc__what_password_subtext" : MessageLookupByLibrary.simpleMessage("(minst 10 tecken)"), + "auth__create_acc__what_username" : MessageLookupByLibrary.simpleMessage("Välj ett användarnamn"), + "auth__create_acc__your_subscribed" : MessageLookupByLibrary.simpleMessage("Du är {0} på väntelistan."), + "auth__create_acc__your_username_is" : MessageLookupByLibrary.simpleMessage("Ditt användarnamn är "), + "auth__create_acc_password_hint_text" : m0, + "auth__create_account" : MessageLookupByLibrary.simpleMessage("Registrera dig"), + "auth__description_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste skriva en beskrivning."), + "auth__description_range_error" : m1, + "auth__email_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste ange en e-postadress."), + "auth__email_invalid_error" : MessageLookupByLibrary.simpleMessage("Vänligen ange en giltig e-postadress."), + "auth__headline" : MessageLookupByLibrary.simpleMessage("Bättre socialt."), + "auth__login" : MessageLookupByLibrary.simpleMessage("Logga in"), + "auth__login__connection_error" : MessageLookupByLibrary.simpleMessage("Vi kan inte nå våra servrar. Är du uppkopplad mot internet?"), + "auth__login__credentials_mismatch_error" : MessageLookupByLibrary.simpleMessage("De angivna uppgifterna matchar inte."), + "auth__login__email_label" : MessageLookupByLibrary.simpleMessage("E-postadress"), + "auth__login__forgot_password" : MessageLookupByLibrary.simpleMessage("Glömt lösenordet"), + "auth__login__forgot_password_subtitle" : MessageLookupByLibrary.simpleMessage("Ange ditt användarnamn eller e-postadress"), + "auth__login__login" : MessageLookupByLibrary.simpleMessage("Fortsätt"), + "auth__login__or_text" : MessageLookupByLibrary.simpleMessage("Eller"), + "auth__login__password_empty_error" : MessageLookupByLibrary.simpleMessage("Ett lösenord krävs."), + "auth__login__password_label" : MessageLookupByLibrary.simpleMessage("Lösenord"), + "auth__login__password_length_error" : MessageLookupByLibrary.simpleMessage("Lösenordet måste vara mellan 8 och 64 tecken."), + "auth__login__previous" : MessageLookupByLibrary.simpleMessage("Tillbaka"), + "auth__login__server_error" : MessageLookupByLibrary.simpleMessage("Åh nej.. Vi har serverproblem. Vänligen försök igen om några minuter."), + "auth__login__subtitle" : MessageLookupByLibrary.simpleMessage("Ange dina inloggningsuppgifter för att fortsätta."), + "auth__login__title" : MessageLookupByLibrary.simpleMessage("Välkommen tillbaka!"), + "auth__login__username_characters_error" : MessageLookupByLibrary.simpleMessage("Användarnamnet kan bara innehålla alfanumeriska tecken och understreck."), + "auth__login__username_empty_error" : MessageLookupByLibrary.simpleMessage("Ett användarnamn krävs."), + "auth__login__username_label" : MessageLookupByLibrary.simpleMessage("Användarnamn"), + "auth__login__username_length_error" : MessageLookupByLibrary.simpleMessage("Användarnamnet kan inte vara längre än 30 tecken."), + "auth__name_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste ange ett namn."), + "auth__name_range_error" : m2, + "auth__password_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste ange ett lösenord."), + "auth__password_range_error" : m3, + "auth__reset_password_success_info" : MessageLookupByLibrary.simpleMessage("Ditt lösenord har uppdaterats"), + "auth__reset_password_success_title" : MessageLookupByLibrary.simpleMessage("Allt klart!"), + "auth__username_characters_error" : MessageLookupByLibrary.simpleMessage("Ett användarnamn kan bara innehålla alfanumeriska tecken och understreck."), + "auth__username_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste ange ett användarnamn."), + "auth__username_maxlength_error" : m4, + "community__about" : MessageLookupByLibrary.simpleMessage("Om"), + "community__actions_invite_people_title" : MessageLookupByLibrary.simpleMessage("Bjud in folk till gemenskapen"), + "community__actions_manage_text" : MessageLookupByLibrary.simpleMessage("Hantera"), + "community__add_administrators_title" : MessageLookupByLibrary.simpleMessage("Lägg till administratör."), + "community__add_moderator_title" : MessageLookupByLibrary.simpleMessage("Lägg till moderator"), + "community__adjectives_range_error" : m5, + "community__admin_add_confirmation" : m6, + "community__admin_desc" : MessageLookupByLibrary.simpleMessage("Detta kommer tillåta medlemmen att redigera gemenskapens information, administratörer, moderatorer och bannade användare."), + "community__administrated_communities" : MessageLookupByLibrary.simpleMessage("administrerade gemenskaper"), + "community__administrated_community" : MessageLookupByLibrary.simpleMessage("administrerad gemenskap"), + "community__administrated_title" : MessageLookupByLibrary.simpleMessage("Administrerade"), + "community__administrator_plural" : MessageLookupByLibrary.simpleMessage("administratörer"), + "community__administrator_text" : MessageLookupByLibrary.simpleMessage("administratör"), + "community__administrator_you" : MessageLookupByLibrary.simpleMessage("Du"), + "community__administrators_title" : MessageLookupByLibrary.simpleMessage("Administratörer"), + "community__ban_confirmation" : m7, + "community__ban_desc" : MessageLookupByLibrary.simpleMessage("Detta kommer ta bort användaren från gemenskapen och hindra dem från att gå med igen."), + "community__ban_user_title" : MessageLookupByLibrary.simpleMessage("Banna användare"), + "community__banned_user_text" : MessageLookupByLibrary.simpleMessage("bannad användare"), + "community__banned_users_text" : MessageLookupByLibrary.simpleMessage("bannade användare"), + "community__banned_users_title" : MessageLookupByLibrary.simpleMessage("Bannade användare"), + "community__button_rules" : MessageLookupByLibrary.simpleMessage("Regler"), + "community__button_staff" : MessageLookupByLibrary.simpleMessage("Personal"), + "community__categories" : MessageLookupByLibrary.simpleMessage("kategorier."), + "community__category" : MessageLookupByLibrary.simpleMessage("kategori."), + "community__communities" : MessageLookupByLibrary.simpleMessage("gemenskaper"), + "community__communities_all_text" : MessageLookupByLibrary.simpleMessage("Alla"), + "community__communities_no_category_found" : MessageLookupByLibrary.simpleMessage("Inga kategorier hittades. Vänligen försök igen om några minuter."), + "community__communities_refresh_text" : MessageLookupByLibrary.simpleMessage("Uppdatera"), + "community__communities_title" : MessageLookupByLibrary.simpleMessage("Gemenskaper"), + "community__community" : MessageLookupByLibrary.simpleMessage("gemenskap"), + "community__community_members" : MessageLookupByLibrary.simpleMessage("Gemenskapens medlemmar"), + "community__community_staff" : MessageLookupByLibrary.simpleMessage("Gemenskapens personal"), + "community__confirmation_title" : MessageLookupByLibrary.simpleMessage("Bekräftelse"), + "community__delete_confirmation" : MessageLookupByLibrary.simpleMessage("Är du säker på att du vill ta bort gemenskapen?"), + "community__delete_desc" : MessageLookupByLibrary.simpleMessage("Du kommer inte se dess inlägg i din tidslinje eller kunna skapa nya inlägg i den längre."), + "community__description_range_error" : m8, + "community__favorite_action" : MessageLookupByLibrary.simpleMessage("Markera gemenskap som favorit"), + "community__favorite_communities" : MessageLookupByLibrary.simpleMessage("favoritgemenskaper"), + "community__favorite_community" : MessageLookupByLibrary.simpleMessage("favoritgemenskap"), + "community__favorites_title" : MessageLookupByLibrary.simpleMessage("Favoriter"), + "community__invite_to_community_resource_plural" : MessageLookupByLibrary.simpleMessage("kontakter och följare"), + "community__invite_to_community_resource_singular" : MessageLookupByLibrary.simpleMessage("kontakt eller följare"), + "community__invite_to_community_title" : MessageLookupByLibrary.simpleMessage("Bjud in till gemenskapen"), + "community__invited_by_member" : MessageLookupByLibrary.simpleMessage("Du måste bli inbjuden av en medlem."), + "community__invited_by_moderator" : MessageLookupByLibrary.simpleMessage("Du måste bli inbjuden av en moderator."), + "community__is_private" : MessageLookupByLibrary.simpleMessage("Den här gemenskapen är privat."), + "community__join_communities_desc" : MessageLookupByLibrary.simpleMessage("Gå med i gemenskaper för att se den här fliken komma till liv!"), + "community__join_community" : MessageLookupByLibrary.simpleMessage("Gå med"), + "community__joined_communities" : MessageLookupByLibrary.simpleMessage("gemenskaper du är medlem i"), + "community__joined_community" : MessageLookupByLibrary.simpleMessage("gemenskap du är medlem i"), + "community__joined_title" : MessageLookupByLibrary.simpleMessage("Medlem i"), + "community__leave_community" : MessageLookupByLibrary.simpleMessage("Lämna"), + "community__leave_confirmation" : MessageLookupByLibrary.simpleMessage("Är du säker på att du vill lämna gemenskapen?"), + "community__leave_desc" : MessageLookupByLibrary.simpleMessage("Du kommer inte se dess inlägg i din tidslinje eller kunna skapa nya inlägg i den längre."), + "community__manage_add_favourite" : MessageLookupByLibrary.simpleMessage("Lägg till gemenskapen bland dina favoriter"), + "community__manage_admins_desc" : MessageLookupByLibrary.simpleMessage("Se, lägg till och ta bort administratörer."), + "community__manage_admins_title" : MessageLookupByLibrary.simpleMessage("Administratörer"), + "community__manage_banned_desc" : MessageLookupByLibrary.simpleMessage("Se, lägg till och ta bort bannade användare."), + "community__manage_banned_title" : MessageLookupByLibrary.simpleMessage("Bannade användare"), + "community__manage_closed_posts_desc" : MessageLookupByLibrary.simpleMessage("Se och hantera stängda inlägg"), + "community__manage_closed_posts_title" : MessageLookupByLibrary.simpleMessage("Stängda inlägg"), + "community__manage_delete_desc" : MessageLookupByLibrary.simpleMessage("Ta bort gemenskapen, för alltid."), + "community__manage_delete_title" : MessageLookupByLibrary.simpleMessage("Ta bort gemenskapen"), + "community__manage_details_desc" : MessageLookupByLibrary.simpleMessage("Ändra titel, namn, avatar, omslagsfoto och mer."), + "community__manage_details_title" : MessageLookupByLibrary.simpleMessage("Detaljer"), + "community__manage_invite_desc" : MessageLookupByLibrary.simpleMessage("Bjud in dina kontakter och följare till gemenskapen."), + "community__manage_invite_title" : MessageLookupByLibrary.simpleMessage("Bjud in folk"), + "community__manage_leave_desc" : MessageLookupByLibrary.simpleMessage("Lämna gemenskapen."), + "community__manage_leave_title" : MessageLookupByLibrary.simpleMessage("Lämna gemenskapen"), + "community__manage_mod_reports_desc" : MessageLookupByLibrary.simpleMessage("Granska gemenskapens anmälningar."), + "community__manage_mod_reports_title" : MessageLookupByLibrary.simpleMessage("Anmälningar"), + "community__manage_mods_desc" : MessageLookupByLibrary.simpleMessage("Se, lägg till och ta bort moderatorer."), + "community__manage_mods_title" : MessageLookupByLibrary.simpleMessage("Moderatorer"), + "community__manage_remove_favourite" : MessageLookupByLibrary.simpleMessage("Ta bort gemenskapen från dina favoriter"), + "community__manage_title" : MessageLookupByLibrary.simpleMessage("Hantera gemenskap"), + "community__member" : MessageLookupByLibrary.simpleMessage("medlem"), + "community__member_capitalized" : MessageLookupByLibrary.simpleMessage("Medlem"), + "community__member_plural" : MessageLookupByLibrary.simpleMessage("medlemmar"), + "community__members_capitalized" : MessageLookupByLibrary.simpleMessage("Medlemmar"), + "community__moderated_communities" : MessageLookupByLibrary.simpleMessage("modererade gemenskaper"), + "community__moderated_community" : MessageLookupByLibrary.simpleMessage("modererad gemenskap"), + "community__moderated_title" : MessageLookupByLibrary.simpleMessage("Modererade"), + "community__moderator_add_confirmation" : m9, + "community__moderator_desc" : MessageLookupByLibrary.simpleMessage("Detta kommer tillåta medlemmen att redigera gemenskapens information, moderatorer och bannade användare."), + "community__moderator_resource_name" : MessageLookupByLibrary.simpleMessage("moderator"), + "community__moderators_resource_name" : MessageLookupByLibrary.simpleMessage("moderatorer"), + "community__moderators_title" : MessageLookupByLibrary.simpleMessage("Moderatorer"), + "community__moderators_you" : MessageLookupByLibrary.simpleMessage("Du"), + "community__name_characters_error" : MessageLookupByLibrary.simpleMessage("Ett namn kan bara innehålla alfanumeriska tecken och understreck."), + "community__name_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste ange ett namn."), + "community__name_range_error" : m10, + "community__no" : MessageLookupByLibrary.simpleMessage("Nej"), + "community__pick_atleast_min_categories" : m11, + "community__pick_atleast_min_category" : m12, + "community__pick_upto_max" : m13, + "community__post_plural" : MessageLookupByLibrary.simpleMessage("inlägg"), + "community__post_singular" : MessageLookupByLibrary.simpleMessage("inlägg"), + "community__posts" : MessageLookupByLibrary.simpleMessage("Inlägg"), + "community__refresh_text" : MessageLookupByLibrary.simpleMessage("Uppdatera"), + "community__refreshing" : MessageLookupByLibrary.simpleMessage("Uppdaterar gemenskap"), + "community__rules_empty_error" : MessageLookupByLibrary.simpleMessage("Regelfältet kan inte vara tomt."), + "community__rules_range_error" : m14, + "community__rules_text" : MessageLookupByLibrary.simpleMessage("Regler"), + "community__rules_title" : MessageLookupByLibrary.simpleMessage("Gemenskapens regler"), + "community__save_community_create_community" : MessageLookupByLibrary.simpleMessage("Skapa gemenskap"), + "community__save_community_create_text" : MessageLookupByLibrary.simpleMessage("Skapa"), + "community__save_community_edit_community" : MessageLookupByLibrary.simpleMessage("Redigera gemenskap"), + "community__save_community_label_title" : MessageLookupByLibrary.simpleMessage("Titel"), + "community__save_community_label_title_hint_text" : MessageLookupByLibrary.simpleMessage("t. ex. Resor, Fotografering, Datorspel."), + "community__save_community_name_category" : MessageLookupByLibrary.simpleMessage("Kategori"), + "community__save_community_name_label_color" : MessageLookupByLibrary.simpleMessage("Färg"), + "community__save_community_name_label_color_hint_text" : MessageLookupByLibrary.simpleMessage("(Tryck för att ändra)"), + "community__save_community_name_label_desc_optional" : MessageLookupByLibrary.simpleMessage("Beskrivning · Valfri"), + "community__save_community_name_label_desc_optional_hint_text" : MessageLookupByLibrary.simpleMessage("Vad handlar din gemenskap om?"), + "community__save_community_name_label_member_adjective" : MessageLookupByLibrary.simpleMessage("Medlem-adjektiv · Valfritt"), + "community__save_community_name_label_member_adjective_hint_text" : MessageLookupByLibrary.simpleMessage("t. ex. resenär, fotograf, gamer."), + "community__save_community_name_label_members_adjective" : MessageLookupByLibrary.simpleMessage("Medlemmar-adjektiv · Valfritt"), + "community__save_community_name_label_members_adjective_hint_text" : MessageLookupByLibrary.simpleMessage("t. ex. resenärer, fotografer, gamers."), + "community__save_community_name_label_rules_optional" : MessageLookupByLibrary.simpleMessage("Regler · Valfritt"), + "community__save_community_name_label_rules_optional_hint_text" : MessageLookupByLibrary.simpleMessage("Finns det något som du vill att dina användare känner till?"), + "community__save_community_name_label_type" : MessageLookupByLibrary.simpleMessage("Typ"), + "community__save_community_name_label_type_hint_text" : MessageLookupByLibrary.simpleMessage("(Tryck för att ändra)"), + "community__save_community_name_member_invites" : MessageLookupByLibrary.simpleMessage("Medlemsinbjudningar"), + "community__save_community_name_member_invites_subtitle" : MessageLookupByLibrary.simpleMessage("Medlemmar kan bjuda in folk till gemenskapen"), + "community__save_community_name_taken" : m15, + "community__save_community_name_title" : MessageLookupByLibrary.simpleMessage("Namn"), + "community__save_community_name_title_hint_text" : MessageLookupByLibrary.simpleMessage(" t. ex. resor, fotografering, datorspel."), + "community__save_community_save_text" : MessageLookupByLibrary.simpleMessage("Spara"), + "community__title_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste ange en titel."), + "community__title_range_error" : m16, + "community__trending_in_all" : MessageLookupByLibrary.simpleMessage("Trendiga från alla kategorier"), + "community__trending_in_category" : m17, + "community__trending_none_found" : MessageLookupByLibrary.simpleMessage("Inga trendiga gemenskaper hittades. Försök igen om några minuter."), + "community__trending_refresh" : MessageLookupByLibrary.simpleMessage("Uppdatera"), + "community__type_private" : MessageLookupByLibrary.simpleMessage("Privat"), + "community__type_public" : MessageLookupByLibrary.simpleMessage("Offentlig"), + "community__unfavorite_action" : MessageLookupByLibrary.simpleMessage("Ta bort gemenskap från favoriter"), + "community__user_you_text" : MessageLookupByLibrary.simpleMessage("Du"), + "community__yes" : MessageLookupByLibrary.simpleMessage("Ja"), + "drawer__account_settings" : MessageLookupByLibrary.simpleMessage("Kontoinställningar"), + "drawer__account_settings_blocked_users" : MessageLookupByLibrary.simpleMessage("Blockerade användare"), + "drawer__account_settings_change_email" : MessageLookupByLibrary.simpleMessage("Ändra e-post"), + "drawer__account_settings_change_password" : MessageLookupByLibrary.simpleMessage("Ändra lösenord"), + "drawer__account_settings_delete_account" : MessageLookupByLibrary.simpleMessage("Ta bort konto"), + "drawer__account_settings_language" : m18, + "drawer__account_settings_language_text" : MessageLookupByLibrary.simpleMessage("Språk"), + "drawer__account_settings_notifications" : MessageLookupByLibrary.simpleMessage("Aviseringar"), + "drawer__app_account_text" : MessageLookupByLibrary.simpleMessage("App & Konto"), + "drawer__application_settings" : MessageLookupByLibrary.simpleMessage("Programinställningar"), + "drawer__connections" : MessageLookupByLibrary.simpleMessage("Mina kontakter"), + "drawer__customize" : MessageLookupByLibrary.simpleMessage("Anpassa"), + "drawer__global_moderation" : MessageLookupByLibrary.simpleMessage("Global moderering"), + "drawer__help" : MessageLookupByLibrary.simpleMessage("Hjälp och feedback"), + "drawer__lists" : MessageLookupByLibrary.simpleMessage("Mina listor"), + "drawer__logout" : MessageLookupByLibrary.simpleMessage("Logga ut"), + "drawer__main_title" : MessageLookupByLibrary.simpleMessage("Mitt Okuna"), + "drawer__menu_title" : MessageLookupByLibrary.simpleMessage("Meny"), + "drawer__my_circles" : MessageLookupByLibrary.simpleMessage("Mina cirklar"), + "drawer__my_followers" : MessageLookupByLibrary.simpleMessage("Mina följare"), + "drawer__my_following" : MessageLookupByLibrary.simpleMessage("Mitt följande"), + "drawer__my_invites" : MessageLookupByLibrary.simpleMessage("Mina inbjudningar"), + "drawer__my_lists" : MessageLookupByLibrary.simpleMessage("Mina listor"), + "drawer__my_mod_penalties" : MessageLookupByLibrary.simpleMessage("Mina modereringsstraff"), + "drawer__my_pending_mod_tasks" : MessageLookupByLibrary.simpleMessage("Mina väntande modereringsuppgifter"), + "drawer__profile" : MessageLookupByLibrary.simpleMessage("Profil"), + "drawer__settings" : MessageLookupByLibrary.simpleMessage("Inställningar"), + "drawer__themes" : MessageLookupByLibrary.simpleMessage("Teman"), + "drawer__useful_links_guidelines" : MessageLookupByLibrary.simpleMessage("Okunas riktlinjer"), + "drawer__useful_links_guidelines_bug_tracker" : MessageLookupByLibrary.simpleMessage("Felrapportering"), + "drawer__useful_links_guidelines_bug_tracker_desc" : MessageLookupByLibrary.simpleMessage("Rapportera ett fel eller rösta för existerande rapporter"), + "drawer__useful_links_guidelines_desc" : MessageLookupByLibrary.simpleMessage("Riktlinjerna vi alla förväntas att följa för en hälsosam och vänlig samvaro."), + "drawer__useful_links_guidelines_feature_requests" : MessageLookupByLibrary.simpleMessage("Funktionsförslag"), + "drawer__useful_links_guidelines_feature_requests_desc" : MessageLookupByLibrary.simpleMessage("Föreslå en ny funktion eller rösta för existerande förslag"), + "drawer__useful_links_guidelines_github" : MessageLookupByLibrary.simpleMessage("Projekttavla på Github"), + "drawer__useful_links_guidelines_github_desc" : MessageLookupByLibrary.simpleMessage("Ta en titt på vad vi arbetar på just nu"), + "drawer__useful_links_guidelines_handbook" : MessageLookupByLibrary.simpleMessage("Okunas handbok"), + "drawer__useful_links_guidelines_handbook_desc" : MessageLookupByLibrary.simpleMessage("En bok med allt du behöver veta om att använda plattformen"), + "drawer__useful_links_slack_channel" : MessageLookupByLibrary.simpleMessage("Gemenskapens Slack-kanal"), + "drawer__useful_links_slack_channel_desc" : MessageLookupByLibrary.simpleMessage("En plats för diskussioner om allt om Okuna"), + "drawer__useful_links_support" : MessageLookupByLibrary.simpleMessage("Stöd Okuna"), + "drawer__useful_links_support_desc" : MessageLookupByLibrary.simpleMessage("Hitta ett sätt på vilket du kan hjälpa oss under vår resa!"), + "drawer__useful_links_title" : MessageLookupByLibrary.simpleMessage("Användbara länkar"), + "error__no_internet_connection" : MessageLookupByLibrary.simpleMessage("Ingen internetuppkoppling"), + "error__unknown_error" : MessageLookupByLibrary.simpleMessage("Okänt fel"), + "moderation__actions_chat_with_team" : MessageLookupByLibrary.simpleMessage("Chatta med teamet"), + "moderation__actions_review" : MessageLookupByLibrary.simpleMessage("Granska"), + "moderation__category_text" : MessageLookupByLibrary.simpleMessage("Kategori"), + "moderation__community_moderated_objects" : MessageLookupByLibrary.simpleMessage("Gemenskapens modererade objekt"), + "moderation__community_review_approve" : MessageLookupByLibrary.simpleMessage("Godkänn"), + "moderation__community_review_item_verified" : MessageLookupByLibrary.simpleMessage("Den här anmälan har verifierats"), + "moderation__community_review_object" : MessageLookupByLibrary.simpleMessage("Objekt"), + "moderation__community_review_reject" : MessageLookupByLibrary.simpleMessage("avvisa"), + "moderation__community_review_title" : MessageLookupByLibrary.simpleMessage("Granska modererat objekt"), + "moderation__confirm_report_community_reported" : MessageLookupByLibrary.simpleMessage("Gemenskap anmäld"), + "moderation__confirm_report_item_reported" : MessageLookupByLibrary.simpleMessage("Objekt anmält"), + "moderation__confirm_report_post_comment_reported" : MessageLookupByLibrary.simpleMessage("Inläggskommentar anmäld"), + "moderation__confirm_report_post_reported" : MessageLookupByLibrary.simpleMessage("Inlägg anmält"), + "moderation__confirm_report_provide_details" : MessageLookupByLibrary.simpleMessage("Kan du delge extra information som kan vara relevant för anmälan?"), + "moderation__confirm_report_provide_happen_next" : MessageLookupByLibrary.simpleMessage("Detta kommer hända härnäst:"), + "moderation__confirm_report_provide_happen_next_desc" : MessageLookupByLibrary.simpleMessage("- Din anmälan skickas in anonymt.\n- Om du anmäler ett inlägg eller en kommentar så kommer anmälan skickas till Okunas personal och, om tillämpligt, gemenskapens moderatorer, och inlägget kommer döljas från ditt flöde.\n- Om du anmäler ett konto eller en gemenskap kommer anmälan skickas till Okunas personal.\n- Vi granskar anmälan och om den godkänns kommer innehållet tas bort och straff utmätas till de som är inblandade, från tillfällig avstängning till borttagning av konto beroende på hur allvarlig överträdelsen var.\n- Om anmälan bedöms vara gjord för att försöka skada en annan medlem eller gemenskap på plattformen utan att den angivna överträdelsen har skett kommer straff istället utmätas mot dig. \n"), + "moderation__confirm_report_provide_optional_hint_text" : MessageLookupByLibrary.simpleMessage("Skriv här..."), + "moderation__confirm_report_provide_optional_info" : MessageLookupByLibrary.simpleMessage("(Valfritt)"), + "moderation__confirm_report_submit" : MessageLookupByLibrary.simpleMessage("Jag förstår, skicka."), + "moderation__confirm_report_title" : MessageLookupByLibrary.simpleMessage("Skicka anmälan"), + "moderation__confirm_report_user_reported" : MessageLookupByLibrary.simpleMessage("Användare anmäld"), + "moderation__description_text" : MessageLookupByLibrary.simpleMessage("Beskrivning"), + "moderation__filters_apply" : MessageLookupByLibrary.simpleMessage("Applicera filter"), + "moderation__filters_other" : MessageLookupByLibrary.simpleMessage("Övrigt"), + "moderation__filters_reset" : MessageLookupByLibrary.simpleMessage("Återställ"), + "moderation__filters_status" : MessageLookupByLibrary.simpleMessage("Status"), + "moderation__filters_title" : MessageLookupByLibrary.simpleMessage("Modereringsfilter"), + "moderation__filters_type" : MessageLookupByLibrary.simpleMessage("Typ"), + "moderation__filters_verified" : MessageLookupByLibrary.simpleMessage("Verifierad"), + "moderation__global_review_object_text" : MessageLookupByLibrary.simpleMessage("Objekt"), + "moderation__global_review_title" : MessageLookupByLibrary.simpleMessage("Granska modererat objekt"), + "moderation__global_review_unverify_text" : MessageLookupByLibrary.simpleMessage("Av-verifiera"), + "moderation__global_review_verify_text" : MessageLookupByLibrary.simpleMessage("Verifiera"), + "moderation__globally_moderated_objects" : MessageLookupByLibrary.simpleMessage("Globalt modererade objekt"), + "moderation__moderated_object_false_text" : MessageLookupByLibrary.simpleMessage("Falskt"), + "moderation__moderated_object_reports_count" : MessageLookupByLibrary.simpleMessage("Antal anmälningar"), + "moderation__moderated_object_status" : MessageLookupByLibrary.simpleMessage("Status"), + "moderation__moderated_object_title" : MessageLookupByLibrary.simpleMessage("Objekt"), + "moderation__moderated_object_true_text" : MessageLookupByLibrary.simpleMessage("Sant"), + "moderation__moderated_object_verified" : MessageLookupByLibrary.simpleMessage("Verifierad"), + "moderation__moderated_object_verified_by_staff" : MessageLookupByLibrary.simpleMessage("Verifierad av Okunas personal"), + "moderation__my_moderation_penalties_resouce_singular" : MessageLookupByLibrary.simpleMessage("modereringsstraff"), + "moderation__my_moderation_penalties_resource_plural" : MessageLookupByLibrary.simpleMessage("modereringsstraff"), + "moderation__my_moderation_penalties_title" : MessageLookupByLibrary.simpleMessage("Modereringsstraff"), + "moderation__my_moderation_tasks_title" : MessageLookupByLibrary.simpleMessage("Väntande modereringsuppgifter"), + "moderation__no_description_text" : MessageLookupByLibrary.simpleMessage("Ingen beskrivning"), + "moderation__object_status_title" : MessageLookupByLibrary.simpleMessage("Status"), + "moderation__pending_moderation_tasks_plural" : MessageLookupByLibrary.simpleMessage("väntande modereringsuppgifter"), + "moderation__pending_moderation_tasks_singular" : MessageLookupByLibrary.simpleMessage("väntande modereringsuppgift"), + "moderation__report_account_text" : MessageLookupByLibrary.simpleMessage("Anmäl konto"), + "moderation__report_comment_text" : MessageLookupByLibrary.simpleMessage("Anmäl kommentar"), + "moderation__report_community_text" : MessageLookupByLibrary.simpleMessage("Anmäl gemenskap"), + "moderation__report_post_text" : MessageLookupByLibrary.simpleMessage("Anmäl inlägg"), + "moderation__reporter_text" : MessageLookupByLibrary.simpleMessage("Anmälare"), + "moderation__reports_preview_resource_reports" : MessageLookupByLibrary.simpleMessage("anmälningar"), + "moderation__reports_preview_title" : MessageLookupByLibrary.simpleMessage("Anmälningar"), + "moderation__reports_see_all" : m19, + "moderation__tap_to_retry" : MessageLookupByLibrary.simpleMessage("Tryck för att försöka läsa in poster igen"), + "moderation__update_category_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "moderation__update_category_title" : MessageLookupByLibrary.simpleMessage("Uppdatera kategori"), + "moderation__update_description_report_desc" : MessageLookupByLibrary.simpleMessage("Anmäl beskrivning"), + "moderation__update_description_report_hint_text" : MessageLookupByLibrary.simpleMessage("t. ex. anmälan var..."), + "moderation__update_description_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "moderation__update_description_title" : MessageLookupByLibrary.simpleMessage("Redigera beskrivning"), + "moderation__update_status_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "moderation__update_status_title" : MessageLookupByLibrary.simpleMessage("Uppdatera status"), + "moderation__you_have_reported_account_text" : MessageLookupByLibrary.simpleMessage("Du har anmält det här kontot"), + "moderation__you_have_reported_comment_text" : MessageLookupByLibrary.simpleMessage("Du har anmält den här kommentaren"), + "moderation__you_have_reported_community_text" : MessageLookupByLibrary.simpleMessage("Du har anmält den här gemenskapen"), + "moderation__you_have_reported_post_text" : MessageLookupByLibrary.simpleMessage("Du har anmält det här inlägget"), + "notifications__accepted_connection_request_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] accepterade din kontaktförfrågan."), + "notifications__comment_comment_notification_tile_user_also_commented" : m20, + "notifications__comment_comment_notification_tile_user_commented" : m21, + "notifications__comment_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när någon kommenterar på ett av dina inlägg eller ett inlägg du också kommenterat på."), + "notifications__comment_reaction_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när någon reagerar på en av dina inläggskommentarer."), + "notifications__comment_reaction_title" : MessageLookupByLibrary.simpleMessage("Reaktion på kommentar"), + "notifications__comment_reply_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när någon svarar på en av dina kommentarer eller en kommentar du också svarat på."), + "notifications__comment_reply_notification_tile_user_also_replied" : m22, + "notifications__comment_reply_notification_tile_user_replied" : m23, + "notifications__comment_reply_title" : MessageLookupByLibrary.simpleMessage("Svar på kommentar"), + "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("Kommentar på inlägg"), + "notifications__comment_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när någon nämner dig i en av sina kommentarer"), + "notifications__comment_user_mention_title" : MessageLookupByLibrary.simpleMessage("Omnämnande i kommentar"), + "notifications__community_invite_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när någon bjuder in dig till en gemenskap."), + "notifications__community_invite_title" : MessageLookupByLibrary.simpleMessage("Gemenskapsinbjudan"), + "notifications__connection_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när någon vill ha dig som kontakt"), + "notifications__connection_request_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] vill knyta kontakt med dig."), + "notifications__connection_title" : MessageLookupByLibrary.simpleMessage("Kontaktförfrågan"), + "notifications__follow_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när någon börjar följa dig"), + "notifications__follow_title" : MessageLookupByLibrary.simpleMessage("Följare"), + "notifications__following_you_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] har börjat följa dig."), + "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när något händer"), + "notifications__general_title" : MessageLookupByLibrary.simpleMessage("Aviseringar"), + "notifications__mentioned_in_post_comment_tile" : m24, + "notifications__mentioned_in_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] nämnde dig i ett inlägg."), + "notifications__mute_post_turn_off_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Inaktivera aviseringar för inläggskommentarer"), + "notifications__mute_post_turn_off_post_notifications" : MessageLookupByLibrary.simpleMessage("Inaktivera aviseringar för inlägg"), + "notifications__mute_post_turn_on_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Aktivera aviseringar för inläggskommentarer"), + "notifications__mute_post_turn_on_post_notifications" : MessageLookupByLibrary.simpleMessage("Aktivera aviseringar för inlägg"), + "notifications__post_reaction_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när någon reagerar på ett av dina inlägg."), + "notifications__post_reaction_title" : MessageLookupByLibrary.simpleMessage("Reaktion på inlägg"), + "notifications__post_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Bli meddelad när någon nämner dig i ett av sina inlägg"), + "notifications__post_user_mention_title" : MessageLookupByLibrary.simpleMessage("Omnämnande i inlägg"), + "notifications__reacted_to_post_comment_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] reagerade på din inläggskommentar."), + "notifications__reacted_to_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] reagerade på ditt inlägg."), + "notifications__settings_title" : MessageLookupByLibrary.simpleMessage("Aviseringsinställningar"), + "notifications__user_community_invite_tile" : m25, + "post__action_comment" : MessageLookupByLibrary.simpleMessage("Kommentera"), + "post__action_react" : MessageLookupByLibrary.simpleMessage("Reagera"), + "post__action_reply" : MessageLookupByLibrary.simpleMessage("Svara"), + "post__actions_comment_deleted" : MessageLookupByLibrary.simpleMessage("Kommentar borttagen"), + "post__actions_delete" : MessageLookupByLibrary.simpleMessage("Ta bort inlägg"), + "post__actions_delete_comment" : MessageLookupByLibrary.simpleMessage("Ta bort kommentar"), + "post__actions_deleted" : MessageLookupByLibrary.simpleMessage("Inlägg borttaget"), + "post__actions_edit_comment" : MessageLookupByLibrary.simpleMessage("Redigera kommentar"), + "post__actions_report_text" : MessageLookupByLibrary.simpleMessage("Anmäl"), + "post__actions_reported_text" : MessageLookupByLibrary.simpleMessage("Anmäld"), + "post__actions_show_more_text" : MessageLookupByLibrary.simpleMessage("Visa mer"), + "post__close_post" : MessageLookupByLibrary.simpleMessage("Stäng inlägg"), + "post__comment_maxlength_error" : m26, + "post__comment_reply_expanded_post" : MessageLookupByLibrary.simpleMessage("Skicka"), + "post__comment_reply_expanded_reply_comment" : MessageLookupByLibrary.simpleMessage("Svar på kommentar"), + "post__comment_reply_expanded_reply_hint_text" : MessageLookupByLibrary.simpleMessage("Ditt svar..."), + "post__comment_required_error" : MessageLookupByLibrary.simpleMessage("Kommentaren kan inte vara tom."), + "post__commenter_expanded_edit_comment" : MessageLookupByLibrary.simpleMessage("Redigera kommentar"), + "post__commenter_expanded_join_conversation" : MessageLookupByLibrary.simpleMessage("Gå med i konversationen..."), + "post__commenter_expanded_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "post__commenter_expanded_start_conversation" : MessageLookupByLibrary.simpleMessage("Starta en konversation..."), + "post__commenter_post_text" : MessageLookupByLibrary.simpleMessage("Skicka"), + "post__commenter_write_something" : MessageLookupByLibrary.simpleMessage("Skriv något..."), + "post__comments_closed_post" : MessageLookupByLibrary.simpleMessage("Stängt inlägg"), + "post__comments_disabled" : MessageLookupByLibrary.simpleMessage("Kommentarsfältet avstängt"), + "post__comments_disabled_message" : MessageLookupByLibrary.simpleMessage("Kommentarer inaktiverade för inlägget"), + "post__comments_enabled_message" : MessageLookupByLibrary.simpleMessage("Kommentarer aktiverade för inlägget"), + "post__comments_header_be_the_first_comments" : MessageLookupByLibrary.simpleMessage("Bli den första som skriver en kommentar"), + "post__comments_header_be_the_first_replies" : MessageLookupByLibrary.simpleMessage("Bli den första som skriver ett svar"), + "post__comments_header_newer" : MessageLookupByLibrary.simpleMessage("Senare"), + "post__comments_header_newest_comments" : MessageLookupByLibrary.simpleMessage("Senaste kommentarerna"), + "post__comments_header_newest_replies" : MessageLookupByLibrary.simpleMessage("Senaste svaren"), + "post__comments_header_older" : MessageLookupByLibrary.simpleMessage("Äldre"), + "post__comments_header_oldest_comments" : MessageLookupByLibrary.simpleMessage("Äldsta kommentarerna"), + "post__comments_header_oldest_replies" : MessageLookupByLibrary.simpleMessage("Äldsta svaren"), + "post__comments_header_see_newest_comments" : MessageLookupByLibrary.simpleMessage("Visa de senaste kommentarerna"), + "post__comments_header_see_newest_replies" : MessageLookupByLibrary.simpleMessage("Visa de senaste svaren"), + "post__comments_header_see_oldest_comments" : MessageLookupByLibrary.simpleMessage("Visa de äldsta kommentarerna"), + "post__comments_header_see_oldest_replies" : MessageLookupByLibrary.simpleMessage("Visa de äldsta svaren"), + "post__comments_header_view_newest_comments" : MessageLookupByLibrary.simpleMessage("Visa de senaste kommentarerna"), + "post__comments_header_view_newest_replies" : MessageLookupByLibrary.simpleMessage("Visa de senaste svaren"), + "post__comments_header_view_oldest_comments" : MessageLookupByLibrary.simpleMessage("Visa de äldsta kommentarerna"), + "post__comments_header_view_oldest_replies" : MessageLookupByLibrary.simpleMessage("Visa de äldsta svaren"), + "post__comments_page_no_more_replies_to_load" : MessageLookupByLibrary.simpleMessage("Inga fler svar att läsa in"), + "post__comments_page_no_more_to_load" : MessageLookupByLibrary.simpleMessage("Inga fler kommentarer att läsa in"), + "post__comments_page_replies_title" : MessageLookupByLibrary.simpleMessage("Inläggssvar"), + "post__comments_page_tap_to_retry" : MessageLookupByLibrary.simpleMessage("Tryck för att försöka läsa in kommentarerna igen."), + "post__comments_page_tap_to_retry_replies" : MessageLookupByLibrary.simpleMessage("Tryck för att försöka läsa in svaren igen."), + "post__comments_page_title" : MessageLookupByLibrary.simpleMessage("Inläggskommentarer"), + "post__comments_view_all_comments" : m27, + "post__create_new" : MessageLookupByLibrary.simpleMessage("Nytt inlägg"), + "post__create_next" : MessageLookupByLibrary.simpleMessage("Nästa"), + "post__create_photo" : MessageLookupByLibrary.simpleMessage("Foto"), + "post__disable_post_comments" : MessageLookupByLibrary.simpleMessage("Stäng kommentarsfältet"), + "post__edit_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "post__edit_title" : MessageLookupByLibrary.simpleMessage("Redigera inlägg"), + "post__enable_post_comments" : MessageLookupByLibrary.simpleMessage("Öppna kommentarsfältet"), + "post__have_not_shared_anything" : MessageLookupByLibrary.simpleMessage("Du har inte delat något ännu."), + "post__is_closed" : MessageLookupByLibrary.simpleMessage("Stängt inlägg"), + "post__my_circles" : MessageLookupByLibrary.simpleMessage("Mina kretsar"), + "post__my_circles_desc" : MessageLookupByLibrary.simpleMessage("Dela inlägget med en eller flera av dina kretsar."), + "post__no_circles_for" : m28, + "post__open_post" : MessageLookupByLibrary.simpleMessage("Öppna inlägg"), + "post__post_closed" : MessageLookupByLibrary.simpleMessage("Inlägg stängt "), + "post__post_opened" : MessageLookupByLibrary.simpleMessage("Inlägg öppnat"), + "post__post_reactions_title" : MessageLookupByLibrary.simpleMessage("Reaktioner på inlägget"), + "post__profile_counts_follower" : MessageLookupByLibrary.simpleMessage(" Följare"), + "post__profile_counts_followers" : MessageLookupByLibrary.simpleMessage(" Följare"), + "post__profile_counts_following" : MessageLookupByLibrary.simpleMessage(" Följer"), + "post__profile_counts_post" : MessageLookupByLibrary.simpleMessage(" Inlägg"), + "post__profile_counts_posts" : MessageLookupByLibrary.simpleMessage(" Inlägg"), + "post__reaction_list_tap_retry" : MessageLookupByLibrary.simpleMessage("Tryck för att försöka läsa in reaktionerna igen."), + "post__search_circles" : MessageLookupByLibrary.simpleMessage("Sök kretsar..."), + "post__share" : MessageLookupByLibrary.simpleMessage("Dela"), + "post__share_community" : MessageLookupByLibrary.simpleMessage("Dela"), + "post__share_community_desc" : MessageLookupByLibrary.simpleMessage("Dela inlägget med en gemenskap du är del av."), + "post__share_community_title" : MessageLookupByLibrary.simpleMessage("En gemenskap"), + "post__share_to" : MessageLookupByLibrary.simpleMessage("Dela med"), + "post__share_to_circles" : MessageLookupByLibrary.simpleMessage("Dela med kretsar"), + "post__share_to_community" : MessageLookupByLibrary.simpleMessage("Dela med en gemenskap"), + "post__shared_privately_on" : MessageLookupByLibrary.simpleMessage("Delat privat i"), + "post__sharing_post_to" : MessageLookupByLibrary.simpleMessage("Delar inlägg med"), + "post__text_copied" : MessageLookupByLibrary.simpleMessage("Text kopierad!"), + "post__time_short_days" : MessageLookupByLibrary.simpleMessage("d"), + "post__time_short_hours" : MessageLookupByLibrary.simpleMessage("h"), + "post__time_short_minutes" : MessageLookupByLibrary.simpleMessage("m"), + "post__time_short_now_text" : MessageLookupByLibrary.simpleMessage("nu"), + "post__time_short_one_day" : MessageLookupByLibrary.simpleMessage("1d"), + "post__time_short_one_hour" : MessageLookupByLibrary.simpleMessage("1h"), + "post__time_short_one_minute" : MessageLookupByLibrary.simpleMessage("1m"), + "post__time_short_one_week" : MessageLookupByLibrary.simpleMessage("1v"), + "post__time_short_one_year" : MessageLookupByLibrary.simpleMessage("1å"), + "post__time_short_seconds" : MessageLookupByLibrary.simpleMessage("s"), + "post__time_short_weeks" : MessageLookupByLibrary.simpleMessage("v"), + "post__time_short_years" : MessageLookupByLibrary.simpleMessage("å"), + "post__timeline_posts_all_loaded" : MessageLookupByLibrary.simpleMessage("🎉 Alla inlägg inlästa"), + "post__timeline_posts_default_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Försök läsa in tidslinjen igen."), + "post__timeline_posts_default_drhoo_title" : MessageLookupByLibrary.simpleMessage("Det är något som inte stämmer."), + "post__timeline_posts_failed_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Försök igen om några sekunder"), + "post__timeline_posts_failed_drhoo_title" : MessageLookupByLibrary.simpleMessage("Din tidslinje kunde inte läsas in."), + "post__timeline_posts_no_more_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Följ användare eller gå med i en gemenskap för att komma igång!"), + "post__timeline_posts_no_more_drhoo_title" : MessageLookupByLibrary.simpleMessage("Din tidslinje är tom."), + "post__timeline_posts_refresh_posts" : MessageLookupByLibrary.simpleMessage("Läs in inlägg"), + "post__timeline_posts_refreshing_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Läser in din tidslinje."), + "post__timeline_posts_refreshing_drhoo_title" : MessageLookupByLibrary.simpleMessage("Håll ut!"), + "post__trending_posts_no_trending_posts" : MessageLookupByLibrary.simpleMessage("Det finns inga trendiga inlägg. Försök uppdatera om några sekunder."), + "post__trending_posts_refresh" : MessageLookupByLibrary.simpleMessage("Uppdatera"), + "post__trending_posts_title" : MessageLookupByLibrary.simpleMessage("Trendiga inlägg"), + "post__user_has_not_shared_anything" : m29, + "post__usernames_circles" : m30, + "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("Världen"), + "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("Du delade med"), + "user__add_account_done" : MessageLookupByLibrary.simpleMessage("Klar"), + "user__add_account_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "user__add_account_success" : MessageLookupByLibrary.simpleMessage("Kontot lades till"), + "user__add_account_to_lists" : MessageLookupByLibrary.simpleMessage("Lägg till konto i lista"), + "user__add_account_update_account_lists" : MessageLookupByLibrary.simpleMessage("Uppdatera kontolistor"), + "user__add_account_update_lists" : MessageLookupByLibrary.simpleMessage("Uppdatera listor"), + "user__billion_postfix" : MessageLookupByLibrary.simpleMessage("md"), + "user__block_user" : MessageLookupByLibrary.simpleMessage("Blockera användare"), + "user__change_email_email_text" : MessageLookupByLibrary.simpleMessage("E-post"), + "user__change_email_error" : MessageLookupByLibrary.simpleMessage("E-postadressen är redan registrerad"), + "user__change_email_hint_text" : MessageLookupByLibrary.simpleMessage("Ange din nya e-postadress"), + "user__change_email_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "user__change_email_success_info" : MessageLookupByLibrary.simpleMessage("Vi har skickat en bekräftelselänk till din nya e-postadress, klicka på den för att verifiera din nya e-post"), + "user__change_email_title" : MessageLookupByLibrary.simpleMessage("Ändra e-postadress"), + "user__circle_name_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste ge kretsen ett namn."), + "user__circle_name_range_error" : m31, + "user__circle_peoples_count" : m32, + "user__clear_app_preferences_cleared_successfully" : MessageLookupByLibrary.simpleMessage("Inställningarna har rensats"), + "user__clear_app_preferences_desc" : MessageLookupByLibrary.simpleMessage("Rensa applikationsinställningarna. Just nu är detta enbart den föredragna kommentarsordningen."), + "user__clear_app_preferences_error" : MessageLookupByLibrary.simpleMessage("Inställningarna kunde inte rensas"), + "user__clear_app_preferences_title" : MessageLookupByLibrary.simpleMessage("Rensa inställningar"), + "user__clear_application_cache_desc" : MessageLookupByLibrary.simpleMessage("Rensa cachelagrade inlägg, konton, bilder & mer."), + "user__clear_application_cache_failure" : MessageLookupByLibrary.simpleMessage("Kunde inte rensa cacheminnet"), + "user__clear_application_cache_success" : MessageLookupByLibrary.simpleMessage("Cacheminnet har rensats"), + "user__clear_application_cache_text" : MessageLookupByLibrary.simpleMessage("Rensa cacheminnet"), + "user__confirm_block_user_blocked" : MessageLookupByLibrary.simpleMessage("Användare blockerad."), + "user__confirm_block_user_info" : MessageLookupByLibrary.simpleMessage("Ni kommer inte kunna se varandras inlägg eller kunna interagera med varandra."), + "user__confirm_block_user_no" : MessageLookupByLibrary.simpleMessage("Nej"), + "user__confirm_block_user_question" : m33, + "user__confirm_block_user_title" : MessageLookupByLibrary.simpleMessage("Bekräftelse"), + "user__confirm_block_user_yes" : MessageLookupByLibrary.simpleMessage("Ja"), + "user__confirm_connection_add_connection" : MessageLookupByLibrary.simpleMessage("Lägg till kontakt i krets"), + "user__confirm_connection_confirm_text" : MessageLookupByLibrary.simpleMessage("Bekräfta"), + "user__confirm_connection_connection_confirmed" : MessageLookupByLibrary.simpleMessage("Kontaktförfrågan bekräftad"), + "user__confirm_connection_with" : m34, + "user__confirm_guidelines_reject_chat_community" : MessageLookupByLibrary.simpleMessage("Chatta med gemenskapen."), + "user__confirm_guidelines_reject_chat_immediately" : MessageLookupByLibrary.simpleMessage("Starta en chat direkt."), + "user__confirm_guidelines_reject_chat_with_team" : MessageLookupByLibrary.simpleMessage("Chatta med teamet."), + "user__confirm_guidelines_reject_delete_account" : MessageLookupByLibrary.simpleMessage("Ta bort konto"), + "user__confirm_guidelines_reject_go_back" : MessageLookupByLibrary.simpleMessage("Tillbaka"), + "user__confirm_guidelines_reject_info" : MessageLookupByLibrary.simpleMessage("Du kan inte använda Okuna förrän du har godkänt riktlinjerna."), + "user__confirm_guidelines_reject_join_slack" : MessageLookupByLibrary.simpleMessage("Gå med i Slack-kanalen."), + "user__confirm_guidelines_reject_title" : MessageLookupByLibrary.simpleMessage("Avvisande av riktlinjer"), + "user__connect_to_user_add_connection" : MessageLookupByLibrary.simpleMessage("Lägg till kontakt i krets"), + "user__connect_to_user_connect_with_username" : m35, + "user__connect_to_user_done" : MessageLookupByLibrary.simpleMessage("Klar"), + "user__connect_to_user_request_sent" : MessageLookupByLibrary.simpleMessage("Kontaktförfrågan skickad"), + "user__connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Redigera"), + "user__connection_pending" : MessageLookupByLibrary.simpleMessage("Väntande"), + "user__connections_circle_delete" : MessageLookupByLibrary.simpleMessage("Ta bort"), + "user__connections_header_circle_desc" : MessageLookupByLibrary.simpleMessage("Kretsen alla dina kontakter läggs till i."), + "user__connections_header_users" : MessageLookupByLibrary.simpleMessage("Användare"), + "user__delete_account_confirmation_desc" : MessageLookupByLibrary.simpleMessage("Är du säker på att du vill ta bort ditt konto?"), + "user__delete_account_confirmation_desc_info" : MessageLookupByLibrary.simpleMessage("Detta är permanent och kan inte ångras senare."), + "user__delete_account_confirmation_goodbye" : MessageLookupByLibrary.simpleMessage("Hej då 😢"), + "user__delete_account_confirmation_no" : MessageLookupByLibrary.simpleMessage("Nej"), + "user__delete_account_confirmation_title" : MessageLookupByLibrary.simpleMessage("Bekräftelse"), + "user__delete_account_confirmation_yes" : MessageLookupByLibrary.simpleMessage("Ja"), + "user__delete_account_current_pwd" : MessageLookupByLibrary.simpleMessage("Nuvarande lösenord"), + "user__delete_account_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Ange ditt nuvarande lösenord"), + "user__delete_account_next" : MessageLookupByLibrary.simpleMessage("Nästa"), + "user__delete_account_title" : MessageLookupByLibrary.simpleMessage("Ta bort konto"), + "user__disconnect_from_user" : m36, + "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Er kontakt har brutits"), + "user__edit_profile_bio" : MessageLookupByLibrary.simpleMessage("Bio"), + "user__edit_profile_delete" : MessageLookupByLibrary.simpleMessage("Ta bort"), + "user__edit_profile_followers_count" : MessageLookupByLibrary.simpleMessage("Följarantal"), + "user__edit_profile_location" : MessageLookupByLibrary.simpleMessage("Plats"), + "user__edit_profile_name" : MessageLookupByLibrary.simpleMessage("Namn"), + "user__edit_profile_pick_image" : MessageLookupByLibrary.simpleMessage("Välj bild"), + "user__edit_profile_pick_image_error_too_large" : m37, + "user__edit_profile_save_text" : MessageLookupByLibrary.simpleMessage("Spara"), + "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Redigera profil"), + "user__edit_profile_url" : MessageLookupByLibrary.simpleMessage("Url"), + "user__edit_profile_user_name_taken" : m38, + "user__edit_profile_username" : MessageLookupByLibrary.simpleMessage("Användarnamn"), + "user__email_verification_error" : MessageLookupByLibrary.simpleMessage("Hoppsan! Din kod är ogiltigt eller har gått ut, vänligen försök igen"), + "user__email_verification_successful" : MessageLookupByLibrary.simpleMessage("Häftigt! Din e-post har verifierats"), + "user__emoji_field_none_selected" : MessageLookupByLibrary.simpleMessage("Ingen emoji vald"), + "user__emoji_search_none_found" : m39, + "user__follow_button_follow_text" : MessageLookupByLibrary.simpleMessage("Följ"), + "user__follow_button_unfollow_text" : MessageLookupByLibrary.simpleMessage("Sluta följa"), + "user__follow_lists_no_list_found" : MessageLookupByLibrary.simpleMessage("Inga listor hittades."), + "user__follow_lists_no_list_found_for" : m40, + "user__follow_lists_search_for" : MessageLookupByLibrary.simpleMessage("Sök efter en lista..."), + "user__follow_lists_title" : MessageLookupByLibrary.simpleMessage("Mina listor"), + "user__follower_plural" : MessageLookupByLibrary.simpleMessage("följare"), + "user__follower_singular" : MessageLookupByLibrary.simpleMessage("följare"), + "user__followers_title" : MessageLookupByLibrary.simpleMessage("Följare"), + "user__following_resource_name" : MessageLookupByLibrary.simpleMessage("följda användare"), + "user__following_text" : MessageLookupByLibrary.simpleMessage("Följer"), + "user__follows_list_accounts_count" : m41, + "user__follows_list_edit" : MessageLookupByLibrary.simpleMessage("Redigera"), + "user__follows_list_header_title" : MessageLookupByLibrary.simpleMessage("Användare"), + "user__follows_lists_account" : MessageLookupByLibrary.simpleMessage("1 Konto"), + "user__follows_lists_accounts" : m42, + "user__groups_see_all" : m43, + "user__guidelines_accept" : MessageLookupByLibrary.simpleMessage("Godkänn"), + "user__guidelines_desc" : MessageLookupByLibrary.simpleMessage("Vänligen lägg en stund på att läsa igenom och godkänna våra riktlinjer."), + "user__guidelines_reject" : MessageLookupByLibrary.simpleMessage("Avvisa"), + "user__invite" : MessageLookupByLibrary.simpleMessage("Bjud in"), + "user__invite_member" : MessageLookupByLibrary.simpleMessage("Medlem"), + "user__invite_someone_message" : m44, + "user__invites_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("accepterad inbjudan"), + "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("accepterade inbjudningar"), + "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Accepterad"), + "user__invites_create_create" : MessageLookupByLibrary.simpleMessage("Skapa"), + "user__invites_create_create_title" : MessageLookupByLibrary.simpleMessage("Skapa inbjudan"), + "user__invites_create_edit_title" : MessageLookupByLibrary.simpleMessage("Redigera inbjudan"), + "user__invites_create_name_hint" : MessageLookupByLibrary.simpleMessage("t. ex. Sven Svensson"), + "user__invites_create_name_title" : MessageLookupByLibrary.simpleMessage("Smeknamn"), + "user__invites_create_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "user__invites_delete" : MessageLookupByLibrary.simpleMessage("Ta bort"), + "user__invites_edit_text" : MessageLookupByLibrary.simpleMessage("Redigera"), + "user__invites_email_hint" : MessageLookupByLibrary.simpleMessage("t. ex. svensvensson@email.com"), + "user__invites_email_invite_text" : MessageLookupByLibrary.simpleMessage("E-postinbjudan"), + "user__invites_email_send_text" : MessageLookupByLibrary.simpleMessage("Skicka"), + "user__invites_email_sent_text" : MessageLookupByLibrary.simpleMessage("E-postinbjudan skickad"), + "user__invites_email_text" : MessageLookupByLibrary.simpleMessage("E-post"), + "user__invites_invite_a_friend" : MessageLookupByLibrary.simpleMessage("Bjud in en vän"), + "user__invites_invite_text" : MessageLookupByLibrary.simpleMessage("Bjud in"), + "user__invites_joined_with" : m45, + "user__invites_none_left" : MessageLookupByLibrary.simpleMessage("Du har inga inbjudningar tillgängliga."), + "user__invites_none_used" : MessageLookupByLibrary.simpleMessage("Det ser ut som att du inte använt några inbjudningar."), + "user__invites_pending" : MessageLookupByLibrary.simpleMessage("Väntande"), + "user__invites_pending_email" : m46, + "user__invites_pending_group_item_name" : MessageLookupByLibrary.simpleMessage("väntande inbjudan"), + "user__invites_pending_group_name" : MessageLookupByLibrary.simpleMessage("väntande inbjudningar"), + "user__invites_refresh" : MessageLookupByLibrary.simpleMessage("Uppdatera"), + "user__invites_share_email" : MessageLookupByLibrary.simpleMessage("Dela inbjudan via e-post"), + "user__invites_share_email_desc" : MessageLookupByLibrary.simpleMessage("Vi kommer skicka en inbjudan med instruktioner å dina vägnar"), + "user__invites_share_yourself" : MessageLookupByLibrary.simpleMessage("Dela inbjudan själv"), + "user__invites_share_yourself_desc" : MessageLookupByLibrary.simpleMessage("Välj mellan meddelandeappar, etc."), + "user__invites_title" : MessageLookupByLibrary.simpleMessage("Mina inbjudningar"), + "user__language_settings_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "user__language_settings_saved_success" : MessageLookupByLibrary.simpleMessage("Språket har uppdaterats"), + "user__language_settings_title" : MessageLookupByLibrary.simpleMessage("Språkinställningar"), + "user__list_name_empty_error" : MessageLookupByLibrary.simpleMessage("Du måste ge listan ett namn."), + "user__list_name_range_error" : m47, + "user__million_postfix" : MessageLookupByLibrary.simpleMessage("mn"), + "user__profile_action_cancel_connection" : MessageLookupByLibrary.simpleMessage("Avbryt kontaktförfrågan"), + "user__profile_action_deny_connection" : MessageLookupByLibrary.simpleMessage("Neka kontaktförfrågan"), + "user__profile_action_user_blocked" : MessageLookupByLibrary.simpleMessage("Användare blockerad"), + "user__profile_action_user_unblocked" : MessageLookupByLibrary.simpleMessage("Användare avblockerad"), + "user__profile_bio_length_error" : m48, + "user__profile_location_length_error" : m49, + "user__profile_url_invalid_error" : MessageLookupByLibrary.simpleMessage("Vänligen ange en giltig URL."), + "user__remove_account_from_list" : MessageLookupByLibrary.simpleMessage("Ta bort konto från listor"), + "user__remove_account_from_list_success" : MessageLookupByLibrary.simpleMessage("Konto borttaget från listor"), + "user__save_connection_circle_color_hint" : MessageLookupByLibrary.simpleMessage("(Tryck för att ändra)"), + "user__save_connection_circle_color_name" : MessageLookupByLibrary.simpleMessage("Färg"), + "user__save_connection_circle_create" : MessageLookupByLibrary.simpleMessage("Skapa krets"), + "user__save_connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Redigera krets"), + "user__save_connection_circle_hint" : MessageLookupByLibrary.simpleMessage("t. ex. Vänner, Familj, Jobb."), + "user__save_connection_circle_name" : MessageLookupByLibrary.simpleMessage("Namn"), + "user__save_connection_circle_name_taken" : m50, + "user__save_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "user__save_connection_circle_users" : MessageLookupByLibrary.simpleMessage("Användare"), + "user__save_follows_list_create" : MessageLookupByLibrary.simpleMessage("Skapa lista"), + "user__save_follows_list_edit" : MessageLookupByLibrary.simpleMessage("Redigera lista"), + "user__save_follows_list_emoji" : MessageLookupByLibrary.simpleMessage("Emoji"), + "user__save_follows_list_emoji_required_error" : MessageLookupByLibrary.simpleMessage("En emoji krävs"), + "user__save_follows_list_hint_text" : MessageLookupByLibrary.simpleMessage("t. ex. Resor, Fotografering"), + "user__save_follows_list_name" : MessageLookupByLibrary.simpleMessage("Namn"), + "user__save_follows_list_name_taken" : m51, + "user__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("Användare"), + "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("t"), + "user__tile_delete" : MessageLookupByLibrary.simpleMessage("Ta bort"), + "user__tile_following" : MessageLookupByLibrary.simpleMessage(" · Följer"), + "user__timeline_filters_apply_all" : MessageLookupByLibrary.simpleMessage("Applicera filter"), + "user__timeline_filters_circles" : MessageLookupByLibrary.simpleMessage("Kretsar"), + "user__timeline_filters_clear_all" : MessageLookupByLibrary.simpleMessage("Återställ"), + "user__timeline_filters_lists" : MessageLookupByLibrary.simpleMessage("Listor"), + "user__timeline_filters_no_match" : m52, + "user__timeline_filters_search_desc" : MessageLookupByLibrary.simpleMessage("Sök efter kretsar och listor..."), + "user__timeline_filters_title" : MessageLookupByLibrary.simpleMessage("Tidslinjefilter"), + "user__translate_see_translation" : MessageLookupByLibrary.simpleMessage("Visa översättning"), + "user__translate_show_original" : MessageLookupByLibrary.simpleMessage("Visa original"), + "user__unblock_user" : MessageLookupByLibrary.simpleMessage("Avblockera användare"), + "user__uninvite" : MessageLookupByLibrary.simpleMessage("Avbryt inbjudan"), + "user__update_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Spara"), + "user__update_connection_circle_updated" : MessageLookupByLibrary.simpleMessage("Kontakt uppdaterad"), + "user__update_connection_circles_title" : MessageLookupByLibrary.simpleMessage("Uppdatera kontaktkretsar"), + "user_search__cancel" : MessageLookupByLibrary.simpleMessage("Avbryt"), + "user_search__communities" : MessageLookupByLibrary.simpleMessage("Gemenskaper"), + "user_search__list_no_results_found" : m53, + "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Uppdatera"), + "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Tryck för att försöka igen."), + "user_search__list_search_text" : m54, + "user_search__no_communities_for" : m55, + "user_search__no_results_for" : m56, + "user_search__no_users_for" : m57, + "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Sök..."), + "user_search__searching_for" : m58, + "user_search__users" : MessageLookupByLibrary.simpleMessage("Användare") + }; +} diff --git a/lib/locale/messages_tr.dart b/lib/locale/messages_tr.dart index a6ccc73ce..dc976fe53 100644 --- a/lib/locale/messages_tr.dart +++ b/lib/locale/messages_tr.dart @@ -68,73 +68,75 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] yanıtladı: ${postCommentText}"; - static m24(communityName) => "[name] [username] sizi /c/${communityName} topluluğuna davet etti."; + static m24(postCommentText) => "[name] [username] bir yorumda sizden bahsetti: ${postCommentText}"; - static m25(maxLength) => "Yorum kısmı ${maxLength} karakterden daha uzun olamaz."; + static m25(communityName) => "[name] [username] sizi /c/${communityName} topluluğuna davet etti."; - static m26(commentsCount) => "${commentsCount} yorumun tümünü görüntüle"; + static m26(maxLength) => "Yorum kısmı ${maxLength} karakterden daha uzun olamaz."; - static m27(circlesSearchQuery) => "\'\'\'${circlesSearchQuery}\' ile eşleşen hiçbir çevre bulunamadı."; + static m27(commentsCount) => "${commentsCount} yorumun tümünü görüntüle"; - static m28(name) => "${name} henüz bir şey paylaşmadı."; + static m28(circlesSearchQuery) => "\'\'\'${circlesSearchQuery}\' ile eşleşen hiçbir çevre bulunamadı."; - static m29(postCreatorUsername) => "@${postCreatorUsername} adlı kullanıcının çevreleri"; + static m29(name) => "${name} henüz bir şey paylaşmadı."; - static m30(maxLength) => "Çevre adı ${maxLength} karakterden daha uzun olamaz."; + static m30(postCreatorUsername) => "@${postCreatorUsername} adlı kullanıcının çevreleri"; - static m31(prettyUsersCount) => "${prettyUsersCount} kişi"; + static m31(maxLength) => "Çevre adı ${maxLength} karakterden daha uzun olamaz."; - static m32(username) => "@${username} adlı kullanıcıyı engellemek istediğinizden emin misiniz?"; + static m32(prettyUsersCount) => "${prettyUsersCount} kişi"; - static m33(userName) => "${userName} ile bağlantıyı onaylayın"; + static m33(username) => "@${username} adlı kullanıcıyı engellemek istediğinizden emin misiniz?"; - static m34(userName) => "${userName} ile bağlan"; + static m34(userName) => "${userName} ile bağlantıyı onaylayın"; - static m35(userName) => "${userName} ile bağlantını kes"; + static m35(userName) => "${userName} ile bağlan"; - static m36(limit) => "Resim çok büyük (limit: ${limit} MB)"; + static m36(userName) => "${userName} ile bağlantını kes"; - static m37(username) => "Kullanıcı adı @${username} alındı"; + static m37(limit) => "Resim çok büyük (limit: ${limit} MB)"; - static m38(searchQuery) => "\'${searchQuery}\' ile eşleşen hiçbir emoji bulunamadı."; + static m38(username) => "Kullanıcı adı @${username} alındı"; - static m39(searchQuery) => "\'${searchQuery}\' için hiç bir liste bulunamadı"; + static m39(searchQuery) => "\'${searchQuery}\' ile eşleşen hiçbir emoji bulunamadı."; - static m40(prettyUsersCount) => "${prettyUsersCount} hesap"; + static m40(searchQuery) => "\'${searchQuery}\' için hiç bir liste bulunamadı"; - static m41(prettyUsersCount) => "${prettyUsersCount} Hesap"; + static m41(prettyUsersCount) => "${prettyUsersCount} hesap"; - static m42(groupName) => "${groupName} Tümünü gör"; + static m42(prettyUsersCount) => "${prettyUsersCount} Hesap"; - static m43(iosLink, androidLink, inviteLink) => "Hey, seni Okuna\'ya davet etmek istiyorum. Öncelikle, iTunes (${iosLink}) veya Google Play Store\'dan (${androidLink}) uygulamayı indirin. İkinci olarak, bu kişiselleştirilmiş davet bağlantısını Okuna Uygulamasındaki \'Kayıt ol\' formuna yapıştırın: ${inviteLink}"; + static m43(groupName) => "${groupName} Tümünü gör"; - static m44(username) => "@${username} kullanıcı adı ile katıldı"; + static m44(iosLink, androidLink, inviteLink) => "Hey, seni Okuna\'ya davet etmek istiyorum. Öncelikle, iTunes (${iosLink}) veya Google Play Store\'dan (${androidLink}) uygulamayı indirin. İkinci olarak, bu kişiselleştirilmiş davet bağlantısını Okuna Uygulamasındaki \'Kayıt ol\' formuna yapıştırın: ${inviteLink}"; - static m45(email) => "${email} adresine gönderilen e-posta davetiyesi beklemede"; + static m45(username) => "@${username} kullanıcı adı ile katıldı"; - static m46(maxLength) => "Liste adı ${maxLength} karakterden daha uzun olamaz."; + static m46(email) => "${email} adresine gönderilen e-posta davetiyesi beklemede"; - static m47(maxLength) => "Biyografi kısmı ${maxLength} karakterden daha uzun olamaz."; + static m47(maxLength) => "Liste adı ${maxLength} karakterden daha uzun olamaz."; - static m48(maxLength) => "Konum adı ${maxLength} karakterden daha uzun olamaz."; + static m48(maxLength) => "Biyografi kısmı ${maxLength} karakterden daha uzun olamaz."; - static m49(takenConnectionsCircleName) => "Çevre adı \'${takenConnectionsCircleName}\' olarak alındı"; + static m49(maxLength) => "Konum adı ${maxLength} karakterden daha uzun olamaz."; - static m50(listName) => "Liste adı \'${listName}\' olarak alındı"; + static m50(takenConnectionsCircleName) => "Çevre adı \'${takenConnectionsCircleName}\' olarak alındı"; - static m51(searchQuery) => "\'${searchQuery}\' ile ilgili bir eşleşme yok."; + static m51(listName) => "Liste adı \'${listName}\' olarak alındı"; - static m52(resourcePluralName) => "${resourcePluralName} için hiç bir bulunamadı."; + static m52(searchQuery) => "\'${searchQuery}\' ile ilgili bir eşleşme yok."; - static m53(resourcePluralName) => "${resourcePluralName} Aranıyor..."; + static m53(resourcePluralName) => "${resourcePluralName} için hiç bir bulunamadı."; - static m54(searchQuery) => "\'\'${searchQuery} \'için hiç topluluk bulunamadı."; + static m54(resourcePluralName) => "${resourcePluralName} Aranıyor..."; - static m55(searchQuery) => "\'${searchQuery}\' için hiç bir sonuç bulunamadı."; + static m55(searchQuery) => "\'\'${searchQuery} \'için hiç topluluk bulunamadı."; - static m56(searchQuery) => "\'\'${searchQuery}\' için hiç bir kullanıcı bulunamadı."; + static m56(searchQuery) => "\'${searchQuery}\' için hiç bir sonuç bulunamadı."; - static m57(searchQuery) => "\'${searchQuery}\' için arama yapılıyor"; + static m57(searchQuery) => "\'\'${searchQuery}\' için hiç bir kullanıcı bulunamadı."; + + static m58(searchQuery) => "\'${searchQuery}\' için arama yapılıyor"; final messages = _notInlinedMessages(_notInlinedMessages); static _notInlinedMessages(_) => { @@ -212,7 +214,7 @@ class MessageLookup extends MessageLookupByLibrary { "auth__description_range_error" : m1, "auth__email_empty_error" : MessageLookupByLibrary.simpleMessage("Eposta boş bırakılamaz."), "auth__email_invalid_error" : MessageLookupByLibrary.simpleMessage("Lütfen geçerli bir e-posta adresi girin."), - "auth__headline" : MessageLookupByLibrary.simpleMessage("Daha iyi sosyal."), + "auth__headline" : MessageLookupByLibrary.simpleMessage("Daha iyi bir sosyal ağ."), "auth__login" : MessageLookupByLibrary.simpleMessage("Oturum aç"), "auth__login__connection_error" : MessageLookupByLibrary.simpleMessage("Sunucularımıza ulaşamıyoruz. İnternete bağlı mısınız?"), "auth__login__credentials_mismatch_error" : MessageLookupByLibrary.simpleMessage("Verdiğiniz kimlik bilgileri uyuşmuyor."), @@ -381,6 +383,7 @@ class MessageLookup extends MessageLookupByLibrary { "community__unfavorite_action" : MessageLookupByLibrary.simpleMessage("Topluluğu favorilerden çıkar"), "community__user_you_text" : MessageLookupByLibrary.simpleMessage("Sen"), "community__yes" : MessageLookupByLibrary.simpleMessage("Evet"), + "contextual_account_search_box__suggestions" : MessageLookupByLibrary.simpleMessage("Öneriler"), "drawer__account_settings" : MessageLookupByLibrary.simpleMessage("Hesap Ayarları"), "drawer__account_settings_blocked_users" : MessageLookupByLibrary.simpleMessage("Engellenmiş kullanıcılar"), "drawer__account_settings_change_email" : MessageLookupByLibrary.simpleMessage("E-Postanı Değiştir"), @@ -507,6 +510,8 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__comment_reply_notification_tile_user_replied" : m23, "notifications__comment_reply_title" : MessageLookupByLibrary.simpleMessage("Gönderideki cevap bildirildi"), "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("Gönderi yorumu"), + "notifications__comment_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Birisi sizden yorumlarından birinde bahsettiğinde haberdar olun"), + "notifications__comment_user_mention_title" : MessageLookupByLibrary.simpleMessage("Gönderi yorumunda bahsedilmesi"), "notifications__community_invite_desc" : MessageLookupByLibrary.simpleMessage("Birisi sizi bir topluluğa katılmaya davet ettiğinde haberdar olun."), "notifications__community_invite_title" : MessageLookupByLibrary.simpleMessage("Topluluk daveti"), "notifications__connection_desc" : MessageLookupByLibrary.simpleMessage("Birisi sizinle bağlantı kurmak istediğinde haberdar olun"), @@ -517,16 +522,20 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__following_you_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] seni şimdi takip ediyor."), "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Bir şey olduğunda haberdar olun"), "notifications__general_title" : MessageLookupByLibrary.simpleMessage("Bildirimler"), + "notifications__mentioned_in_post_comment_tile" : m24, + "notifications__mentioned_in_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] bir gönderide sizden bahsetti."), "notifications__mute_post_turn_off_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Gönderi yorumlarının bildirimlerini kapat"), "notifications__mute_post_turn_off_post_notifications" : MessageLookupByLibrary.simpleMessage("Gönderi bildirimlerini kapat"), "notifications__mute_post_turn_on_post_comment_notifications" : MessageLookupByLibrary.simpleMessage("Gönderi yorumlarının bildirimlerini aç"), "notifications__mute_post_turn_on_post_notifications" : MessageLookupByLibrary.simpleMessage("Gönderi bildirimlerini aç"), "notifications__post_reaction_desc" : MessageLookupByLibrary.simpleMessage("Birisi gönderinize yanıt verdiğinde haberdar olun."), "notifications__post_reaction_title" : MessageLookupByLibrary.simpleMessage("Gönderi tepkisi"), + "notifications__post_user_mention_desc" : MessageLookupByLibrary.simpleMessage("Birisi gönderilerinden birinde sizden bahsettiğinde haberdar olun"), + "notifications__post_user_mention_title" : MessageLookupByLibrary.simpleMessage("Gönderide bahsedilmesi"), "notifications__reacted_to_post_comment_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] yorumunuza tepki verdi."), "notifications__reacted_to_post_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] gönderinize yanıt verdi."), "notifications__settings_title" : MessageLookupByLibrary.simpleMessage("Bildirim ayarları"), - "notifications__user_community_invite_tile" : m24, + "notifications__user_community_invite_tile" : m25, "post__action_comment" : MessageLookupByLibrary.simpleMessage("Yorum"), "post__action_react" : MessageLookupByLibrary.simpleMessage("Tepki"), "post__action_reply" : MessageLookupByLibrary.simpleMessage("Cevapla"), @@ -539,7 +548,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__actions_reported_text" : MessageLookupByLibrary.simpleMessage("Bildirildi"), "post__actions_show_more_text" : MessageLookupByLibrary.simpleMessage("Daha fazla göster"), "post__close_post" : MessageLookupByLibrary.simpleMessage("Gönderiyi kapat"), - "post__comment_maxlength_error" : m25, + "post__comment_maxlength_error" : m26, "post__comment_reply_expanded_post" : MessageLookupByLibrary.simpleMessage("Gönderi"), "post__comment_reply_expanded_reply_comment" : MessageLookupByLibrary.simpleMessage("Yorumu cevapla"), "post__comment_reply_expanded_reply_hint_text" : MessageLookupByLibrary.simpleMessage("Cevabınız..."), @@ -576,7 +585,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__comments_page_tap_to_retry" : MessageLookupByLibrary.simpleMessage("Yorumları yüklemeyi yeniden denemek için dokunun."), "post__comments_page_tap_to_retry_replies" : MessageLookupByLibrary.simpleMessage("Cevapları tekrar yüklemek için dokunun."), "post__comments_page_title" : MessageLookupByLibrary.simpleMessage("Gönderi yorumları"), - "post__comments_view_all_comments" : m26, + "post__comments_view_all_comments" : m27, "post__create_new" : MessageLookupByLibrary.simpleMessage("Yeni gönderi"), "post__create_next" : MessageLookupByLibrary.simpleMessage("Sonraki"), "post__create_photo" : MessageLookupByLibrary.simpleMessage("Fotoğraf"), @@ -588,7 +597,7 @@ class MessageLookup extends MessageLookupByLibrary { "post__is_closed" : MessageLookupByLibrary.simpleMessage("Yorumu kapat"), "post__my_circles" : MessageLookupByLibrary.simpleMessage("Çevrelerim"), "post__my_circles_desc" : MessageLookupByLibrary.simpleMessage("Gönderiyi çevrelerinizden birine veya çoğunluğa paylaşın."), - "post__no_circles_for" : m27, + "post__no_circles_for" : m28, "post__open_post" : MessageLookupByLibrary.simpleMessage("Gönderiyi aç"), "post__post_closed" : MessageLookupByLibrary.simpleMessage("Gönderi kapatıldı "), "post__post_opened" : MessageLookupByLibrary.simpleMessage("Gönderi açıldı"), @@ -635,8 +644,8 @@ class MessageLookup extends MessageLookupByLibrary { "post__trending_posts_no_trending_posts" : MessageLookupByLibrary.simpleMessage("Popüler gönderiler yok. Birkaç saniye içinde yenilemeyi deneyin."), "post__trending_posts_refresh" : MessageLookupByLibrary.simpleMessage("Yenile"), "post__trending_posts_title" : MessageLookupByLibrary.simpleMessage("Popüler gönderiler"), - "post__user_has_not_shared_anything" : m28, - "post__usernames_circles" : m29, + "post__user_has_not_shared_anything" : m29, + "post__usernames_circles" : m30, "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("Dünya"), "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("İle paylaştı"), "user__add_account_done" : MessageLookupByLibrary.simpleMessage("Tamam"), @@ -654,8 +663,8 @@ class MessageLookup extends MessageLookupByLibrary { "user__change_email_success_info" : MessageLookupByLibrary.simpleMessage("Yeni e-posta adresinize bir onay linki gönderdik, yeni e-postanızı doğrulamak için tıklayın"), "user__change_email_title" : MessageLookupByLibrary.simpleMessage("E-postanı değiştir"), "user__circle_name_empty_error" : MessageLookupByLibrary.simpleMessage("Çevre adı boş bırakılmaz."), - "user__circle_name_range_error" : m30, - "user__circle_peoples_count" : m31, + "user__circle_name_range_error" : m31, + "user__circle_peoples_count" : m32, "user__clear_app_preferences_cleared_successfully" : MessageLookupByLibrary.simpleMessage("Tercihler başarıyla temizlendi"), "user__clear_app_preferences_desc" : MessageLookupByLibrary.simpleMessage("Uygulama tercihlerini temizleyin. Şu anda bu sadece tercih edilen yorumların sırası için geçerlidir."), "user__clear_app_preferences_error" : MessageLookupByLibrary.simpleMessage("Tercihler temizlenemedi"), @@ -667,13 +676,13 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_block_user_blocked" : MessageLookupByLibrary.simpleMessage("Kullanıcı engellendi."), "user__confirm_block_user_info" : MessageLookupByLibrary.simpleMessage("Birbiriniz ile hiçbir paylaşımda bulunamazsınız ve hiçbir şekilde etkileşime giremezsiniz."), "user__confirm_block_user_no" : MessageLookupByLibrary.simpleMessage("Hayır"), - "user__confirm_block_user_question" : m32, + "user__confirm_block_user_question" : m33, "user__confirm_block_user_title" : MessageLookupByLibrary.simpleMessage("Onay"), "user__confirm_block_user_yes" : MessageLookupByLibrary.simpleMessage("Evet"), "user__confirm_connection_add_connection" : MessageLookupByLibrary.simpleMessage("Çevrene bağlantı ekle"), "user__confirm_connection_confirm_text" : MessageLookupByLibrary.simpleMessage("Onayla"), "user__confirm_connection_connection_confirmed" : MessageLookupByLibrary.simpleMessage("Bağlantı onaylandı"), - "user__confirm_connection_with" : m33, + "user__confirm_connection_with" : m34, "user__confirm_guidelines_reject_chat_community" : MessageLookupByLibrary.simpleMessage("Topluluk ile sohbet edin."), "user__confirm_guidelines_reject_chat_immediately" : MessageLookupByLibrary.simpleMessage("Hemen bir sohbet başlat."), "user__confirm_guidelines_reject_chat_with_team" : MessageLookupByLibrary.simpleMessage("Ekiple sohbet et."), @@ -683,7 +692,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__confirm_guidelines_reject_join_slack" : MessageLookupByLibrary.simpleMessage("Çözüm kanalına katılın."), "user__confirm_guidelines_reject_title" : MessageLookupByLibrary.simpleMessage("Kurallar Redded"), "user__connect_to_user_add_connection" : MessageLookupByLibrary.simpleMessage("Çevrene bağlantı ekle"), - "user__connect_to_user_connect_with_username" : m34, + "user__connect_to_user_connect_with_username" : m35, "user__connect_to_user_done" : MessageLookupByLibrary.simpleMessage("Tamam"), "user__connect_to_user_request_sent" : MessageLookupByLibrary.simpleMessage("Bağlantı isteği gönderildi"), "user__connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Düzenle"), @@ -701,7 +710,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__delete_account_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Mevcut şifrenizi giriniz"), "user__delete_account_next" : MessageLookupByLibrary.simpleMessage("Sonraki"), "user__delete_account_title" : MessageLookupByLibrary.simpleMessage("Hesabı sil"), - "user__disconnect_from_user" : m35, + "user__disconnect_from_user" : m36, "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Bağlantı başarıyla kesildi"), "user__edit_profile_bio" : MessageLookupByLibrary.simpleMessage("Biyografi"), "user__edit_profile_delete" : MessageLookupByLibrary.simpleMessage("Sil"), @@ -709,20 +718,20 @@ class MessageLookup extends MessageLookupByLibrary { "user__edit_profile_location" : MessageLookupByLibrary.simpleMessage("Konum"), "user__edit_profile_name" : MessageLookupByLibrary.simpleMessage("İsim"), "user__edit_profile_pick_image" : MessageLookupByLibrary.simpleMessage("Resim seç"), - "user__edit_profile_pick_image_error_too_large" : m36, + "user__edit_profile_pick_image_error_too_large" : m37, "user__edit_profile_save_text" : MessageLookupByLibrary.simpleMessage("Kaydet"), "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Profili düzenle"), "user__edit_profile_url" : MessageLookupByLibrary.simpleMessage("Url"), - "user__edit_profile_user_name_taken" : m37, + "user__edit_profile_user_name_taken" : m38, "user__edit_profile_username" : MessageLookupByLibrary.simpleMessage("Kullanıcı adı"), "user__email_verification_error" : MessageLookupByLibrary.simpleMessage("Oops! Belirteciniz geçerli veya süresi doldu, lütfen yeniden deneyin"), "user__email_verification_successful" : MessageLookupByLibrary.simpleMessage("Harika! E-postanız şimdi doğrulandı"), "user__emoji_field_none_selected" : MessageLookupByLibrary.simpleMessage("Emoji seçilmedi"), - "user__emoji_search_none_found" : m38, + "user__emoji_search_none_found" : m39, "user__follow_button_follow_text" : MessageLookupByLibrary.simpleMessage("Takip et"), "user__follow_button_unfollow_text" : MessageLookupByLibrary.simpleMessage("Takip etmekten vazgeç"), "user__follow_lists_no_list_found" : MessageLookupByLibrary.simpleMessage("Hiç liste bulunmadı."), - "user__follow_lists_no_list_found_for" : m39, + "user__follow_lists_no_list_found_for" : m40, "user__follow_lists_search_for" : MessageLookupByLibrary.simpleMessage("Liste ara..."), "user__follow_lists_title" : MessageLookupByLibrary.simpleMessage("Listelerim"), "user__follower_plural" : MessageLookupByLibrary.simpleMessage("takipçiler"), @@ -730,18 +739,18 @@ class MessageLookup extends MessageLookupByLibrary { "user__followers_title" : MessageLookupByLibrary.simpleMessage("Takipçiler"), "user__following_resource_name" : MessageLookupByLibrary.simpleMessage("takip edilen kullanıcılar"), "user__following_text" : MessageLookupByLibrary.simpleMessage("Takip edilen"), - "user__follows_list_accounts_count" : m40, + "user__follows_list_accounts_count" : m41, "user__follows_list_edit" : MessageLookupByLibrary.simpleMessage("Düzenle"), "user__follows_list_header_title" : MessageLookupByLibrary.simpleMessage("Kullanıcılar"), "user__follows_lists_account" : MessageLookupByLibrary.simpleMessage("1 Hesap"), - "user__follows_lists_accounts" : m41, - "user__groups_see_all" : m42, + "user__follows_lists_accounts" : m42, + "user__groups_see_all" : m43, "user__guidelines_accept" : MessageLookupByLibrary.simpleMessage("Kabul et"), "user__guidelines_desc" : MessageLookupByLibrary.simpleMessage("Lütfen kurallarımızı okumak ve kabul etmek için bir dakikanızı ayırın."), "user__guidelines_reject" : MessageLookupByLibrary.simpleMessage("Reddet"), "user__invite" : MessageLookupByLibrary.simpleMessage("Davet et"), "user__invite_member" : MessageLookupByLibrary.simpleMessage("Üyeler"), - "user__invite_someone_message" : m43, + "user__invite_someone_message" : m44, "user__invites_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("kabul edilen davet"), "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("kabul edilen davetler"), "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Kabul edilen"), @@ -760,11 +769,11 @@ class MessageLookup extends MessageLookupByLibrary { "user__invites_email_text" : MessageLookupByLibrary.simpleMessage("E-posta"), "user__invites_invite_a_friend" : MessageLookupByLibrary.simpleMessage("Bir arkadaşını davet et"), "user__invites_invite_text" : MessageLookupByLibrary.simpleMessage("Davet et"), - "user__invites_joined_with" : m44, + "user__invites_joined_with" : m45, "user__invites_none_left" : MessageLookupByLibrary.simpleMessage("Hiç davetiniz yok."), "user__invites_none_used" : MessageLookupByLibrary.simpleMessage("Görünüşe göre hiç davet etmeyi kullanmadın."), "user__invites_pending" : MessageLookupByLibrary.simpleMessage("Beklet"), - "user__invites_pending_email" : m45, + "user__invites_pending_email" : m46, "user__invites_pending_group_item_name" : MessageLookupByLibrary.simpleMessage("bekleyen davet"), "user__invites_pending_group_name" : MessageLookupByLibrary.simpleMessage("bekleyen davetler"), "user__invites_refresh" : MessageLookupByLibrary.simpleMessage("Yenile"), @@ -777,14 +786,14 @@ class MessageLookup extends MessageLookupByLibrary { "user__language_settings_saved_success" : MessageLookupByLibrary.simpleMessage("Dil başarıyla değiştirildi"), "user__language_settings_title" : MessageLookupByLibrary.simpleMessage("Dil ayarları"), "user__list_name_empty_error" : MessageLookupByLibrary.simpleMessage("Liste adı boş olamaz."), - "user__list_name_range_error" : m46, + "user__list_name_range_error" : m47, "user__million_postfix" : MessageLookupByLibrary.simpleMessage("m"), "user__profile_action_cancel_connection" : MessageLookupByLibrary.simpleMessage("Bağlantı isteğini iptal et"), "user__profile_action_deny_connection" : MessageLookupByLibrary.simpleMessage("Bağlantı isteğini reddet"), "user__profile_action_user_blocked" : MessageLookupByLibrary.simpleMessage("Kullanıcı engellendi"), "user__profile_action_user_unblocked" : MessageLookupByLibrary.simpleMessage("Kullanıcının engeli kaldırıldı"), - "user__profile_bio_length_error" : m47, - "user__profile_location_length_error" : m48, + "user__profile_bio_length_error" : m48, + "user__profile_location_length_error" : m49, "user__profile_url_invalid_error" : MessageLookupByLibrary.simpleMessage("Lütfen geçerli bir url adresi girin."), "user__remove_account_from_list" : MessageLookupByLibrary.simpleMessage("Hesabı listelerden kaldır"), "user__remove_account_from_list_success" : MessageLookupByLibrary.simpleMessage("Başarılı"), @@ -794,7 +803,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_connection_circle_edit" : MessageLookupByLibrary.simpleMessage("Çevreni düzenle"), "user__save_connection_circle_hint" : MessageLookupByLibrary.simpleMessage("örneğin Arkadaşlar, Aile, İş."), "user__save_connection_circle_name" : MessageLookupByLibrary.simpleMessage("İsim"), - "user__save_connection_circle_name_taken" : m49, + "user__save_connection_circle_name_taken" : m50, "user__save_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Kaydet"), "user__save_connection_circle_users" : MessageLookupByLibrary.simpleMessage("Kullanıcılar"), "user__save_follows_list_create" : MessageLookupByLibrary.simpleMessage("Liste oluştur"), @@ -803,7 +812,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__save_follows_list_emoji_required_error" : MessageLookupByLibrary.simpleMessage("Emoji gerekli"), "user__save_follows_list_hint_text" : MessageLookupByLibrary.simpleMessage("örneğin Seyahat, Fotoğrafçılık"), "user__save_follows_list_name" : MessageLookupByLibrary.simpleMessage("İsim"), - "user__save_follows_list_name_taken" : m50, + "user__save_follows_list_name_taken" : m51, "user__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Kaydet"), "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("Kullanıcılar"), "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("b"), @@ -813,7 +822,7 @@ class MessageLookup extends MessageLookupByLibrary { "user__timeline_filters_circles" : MessageLookupByLibrary.simpleMessage("Çevreler"), "user__timeline_filters_clear_all" : MessageLookupByLibrary.simpleMessage("Tümünü temizle"), "user__timeline_filters_lists" : MessageLookupByLibrary.simpleMessage("Listeler"), - "user__timeline_filters_no_match" : m51, + "user__timeline_filters_no_match" : m52, "user__timeline_filters_search_desc" : MessageLookupByLibrary.simpleMessage("Çevreleri ve listeleri ara..."), "user__timeline_filters_title" : MessageLookupByLibrary.simpleMessage("Zaman Tüneli filtreleri"), "user__translate_see_translation" : MessageLookupByLibrary.simpleMessage("Çeviriyi gör"), @@ -825,15 +834,15 @@ class MessageLookup extends MessageLookupByLibrary { "user__update_connection_circles_title" : MessageLookupByLibrary.simpleMessage("Çevre bağlantılarını güncelle"), "user_search__cancel" : MessageLookupByLibrary.simpleMessage("İptal et"), "user_search__communities" : MessageLookupByLibrary.simpleMessage("Topluluklar"), - "user_search__list_no_results_found" : m52, + "user_search__list_no_results_found" : m53, "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Yenile"), "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Tekrar denemek için tıkla."), - "user_search__list_search_text" : m53, - "user_search__no_communities_for" : m54, - "user_search__no_results_for" : m55, - "user_search__no_users_for" : m56, + "user_search__list_search_text" : m54, + "user_search__no_communities_for" : m55, + "user_search__no_results_for" : m56, + "user_search__no_users_for" : m57, "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Ara..."), - "user_search__searching_for" : m57, + "user_search__searching_for" : m58, "user_search__users" : MessageLookupByLibrary.simpleMessage("Kullanıcılar") }; } diff --git a/lib/main.dart b/lib/main.dart index baa163c65..99d4fcb7e 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -32,8 +32,9 @@ import 'package:flutter\_localizations/flutter\_localizations.dart'; import 'package:sentry/sentry.dart'; import 'dart:async'; +import 'delegates/es_es_material_localizations_delegate.dart'; import 'delegates/pt_br_material_localizations_delegate.dart'; - +import 'delegates/sv_se_material_localizations_delegate.dart'; class MyApp extends StatefulWidget { final openbookProviderKey = new GlobalKey(); @@ -42,14 +43,12 @@ class MyApp extends StatefulWidget { _MyAppState createState() => _MyAppState(); static void setLocale(BuildContext context, Locale newLocale) { - _MyAppState state = - context.ancestorStateOfType(TypeMatcher<_MyAppState>()); + _MyAppState state = context.ancestorStateOfType(TypeMatcher<_MyAppState>()); state.setState(() { state.locale = newLocale; }); } - } class _MyAppState extends State { @@ -76,11 +75,16 @@ class _MyAppState extends State { return this.locale; } // initialise locale from device - if (deviceLocale != null && supportedLanguages.contains(deviceLocale.languageCode) && this.locale == null) { - Locale supportedMatchedLocale = supportedLocales.firstWhere((Locale locale) => locale.languageCode == deviceLocale.languageCode); - this.locale = supportedMatchedLocale; + if (deviceLocale != null && + supportedLanguages.contains(deviceLocale.languageCode) && + this.locale == null) { + Locale supportedMatchedLocale = supportedLocales.firstWhere( + (Locale locale) => + locale.languageCode == deviceLocale.languageCode); + this.locale = supportedMatchedLocale; } else if (this.locale == null) { - print('Locale ${deviceLocale.languageCode} not supported, defaulting to en'); + print( + 'Locale ${deviceLocale.languageCode} not supported, defaulting to en'); this.locale = Locale('en', 'US'); } return this.locale; @@ -93,6 +97,8 @@ class _MyAppState extends State { GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, const MaterialLocalizationPtBRDelegate(), + const MaterialLocalizationEsESDelegate(), + const MaterialLocalizationSvSEDelegate(), ], theme: new ThemeData( buttonTheme: ButtonThemeData( @@ -185,7 +191,8 @@ class _MyAppState extends State { }, '/waitlist/subscribe_done_step': (BuildContext context) { bootstrapOpenbookProviderInContext(context); - WaitlistSubscribeArguments args = ModalRoute.of(context).settings.arguments; + WaitlistSubscribeArguments args = + ModalRoute.of(context).settings.arguments; return OBWaitlistSubscribeDoneStep(count: args.count); } }), @@ -196,7 +203,8 @@ class _MyAppState extends State { void bootstrapOpenbookProviderInContext(BuildContext context) { var openbookProvider = OpenbookProvider.of(context); var localizationService = LocalizationService.of(context); - if (this.locale.languageCode != localizationService.getLocale().languageCode) { + if (this.locale.languageCode != + localizationService.getLocale().languageCode) { Future.delayed(Duration(milliseconds: 0), () { MyApp.setLocale(context, this.locale); }); @@ -205,9 +213,9 @@ class _MyAppState extends State { UniversalLinksService universalLinksService = openbookProvider.universalLinksService; universalLinksService.digestLinksWithContext(context); - openbookProvider.validationService.setLocalizationService(localizationService); + openbookProvider.validationService + .setLocalizationService(localizationService); } - } void _setPlatformOverrideForDesktop() { diff --git a/lib/models/user_notifications_settings.dart b/lib/models/user_notifications_settings.dart index a8aa23e3f..1cbefef42 100644 --- a/lib/models/user_notifications_settings.dart +++ b/lib/models/user_notifications_settings.dart @@ -3,6 +3,8 @@ class UserNotificationsSettings { bool postCommentNotifications; bool postCommentReactionNotifications; bool postCommentReplyNotifications; + bool postCommentUserMentionNotifications; + bool postUserMentionNotifications; bool postReactionNotifications; bool followNotifications; bool connectionRequestNotifications; @@ -16,6 +18,8 @@ class UserNotificationsSettings { this.followNotifications, this.postCommentNotifications, this.postCommentReactionNotifications, + this.postCommentUserMentionNotifications, + this.postUserMentionNotifications, this.postCommentReplyNotifications, this.postReactionNotifications, this.communityInviteNotifications}); @@ -33,6 +37,10 @@ class UserNotificationsSettings { parsedJson['post_comment_reaction_notifications'], postCommentReplyNotifications: parsedJson['post_comment_reply_notifications'], + postCommentUserMentionNotifications: + parsedJson['post_comment_user_mention_notifications'], + postUserMentionNotifications: + parsedJson['post_user_mention_notifications'], postReactionNotifications: parsedJson['post_reaction_notifications'], communityInviteNotifications: parsedJson['community_invite_notifications'], @@ -57,6 +65,12 @@ class UserNotificationsSettings { if (json.containsKey('post_comment_reply_notifications')) postCommentReplyNotifications = json['post_comment_reply_notifications']; + if (json.containsKey('post_comment_user_mention_notifications')) + postCommentUserMentionNotifications = json['post_comment_user_mention_notifications']; + + if (json.containsKey('post_user_mention_notifications')) + postUserMentionNotifications = json['post_user_mention_notifications']; + if (json.containsKey('post_reaction_notifications')) postReactionNotifications = json['post_reaction_notifications']; if (json.containsKey('community_invite_notifications')) diff --git a/lib/pages/home/pages/communities/widgets/trending_communities.dart b/lib/pages/home/pages/communities/widgets/trending_communities.dart index f5cf06cb9..ddc6e3454 100644 --- a/lib/pages/home/pages/communities/widgets/trending_communities.dart +++ b/lib/pages/home/pages/communities/widgets/trending_communities.dart @@ -97,7 +97,8 @@ class OBTrendingCommunitiesState extends State padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 20), child: OBText( hasCategory - ? _localizationService.community__trending_in_category(widget.category.title) + ? _localizationService + .community__trending_in_category(widget.category.title) : _localizationService.community__trending_in_all, style: TextStyle(fontWeight: FontWeight.bold, fontSize: 24), ), @@ -134,7 +135,9 @@ class OBTrendingCommunitiesState extends State Duration( milliseconds: 0, ), () { - _refreshIndicatorKey.currentState.show(); + if (_refreshIndicatorKey.currentState != null) { + _refreshIndicatorKey.currentState.show(); + } }); } @@ -160,7 +163,8 @@ class OBTrendingCommunitiesState extends State String errorMessage = await error.toHumanReadableMessage(); _toastService.error(message: errorMessage, context: context); } else { - _toastService.error(message: _localizationService.error__unknown_error, context: context); + _toastService.error( + message: _localizationService.error__unknown_error, context: context); throw error; } } diff --git a/lib/pages/home/pages/notifications/pages/notifications_settings.dart b/lib/pages/home/pages/notifications/pages/notifications_settings.dart index e2ddb7ff7..15917b78a 100644 --- a/lib/pages/home/pages/notifications/pages/notifications_settings.dart +++ b/lib/pages/home/pages/notifications/pages/notifications_settings.dart @@ -38,6 +38,8 @@ class OBNotificationsSettingsPageState bool _postCommentNotifications; bool _postCommentReactionNotifications; bool _postCommentReplyNotifications; + bool _postCommentUserMentionNotifications; + bool _postUserMentionNotifications; bool _postReactionNotifications; bool _followNotifications; bool _connectionRequestNotifications; @@ -57,6 +59,8 @@ class OBNotificationsSettingsPageState _followNotifications = true; _connectionRequestNotifications = true; _communityInviteNotifications = true; + _postUserMentionNotifications = true; + _postCommentUserMentionNotifications = true; } @override @@ -107,9 +111,11 @@ class OBNotificationsSettingsPageState List toggles = [ OBToggleField( + key: Key('All'), value: _pushNotifications, title: _localizationService.trans('notifications__general_title'), - subtitle: OBText(_localizationService.trans('notifications__general_desc')), + subtitle: + OBText(_localizationService.trans('notifications__general_desc')), onChanged: _setPushNotifications, onTap: _togglePushNotifications, hasDivider: false, @@ -120,36 +126,42 @@ class OBNotificationsSettingsPageState toggles.addAll([ OBDivider(), OBToggleField( + key: Key('Follow'), value: _followNotifications, title: _localizationService.trans('notifications__follow_title'), - subtitle: OBText(_localizationService.trans('notifications__follow_desc')), + subtitle: + OBText(_localizationService.trans('notifications__follow_desc')), onChanged: _setFollowNotifications, onTap: _toggleFollowNotifications, hasDivider: false, ), listItemSeparator, OBToggleField( + key: Key('Connection request'), value: _connectionRequestNotifications, title: _localizationService.trans('notifications__connection_title'), - subtitle: - OBText(_localizationService.trans('notifications__connection_desc')), + subtitle: OBText( + _localizationService.trans('notifications__connection_desc')), onChanged: _setConnectionRequestNotifications, onTap: _toggleConnectionRequestNotifications, hasDivider: false, ), listItemSeparator, OBToggleField( + key: Key('Post comments'), value: _postCommentNotifications, title: _localizationService.trans('notifications__comment_title'), - subtitle: OBText( - _localizationService.trans('notifications__comment_desc')), + subtitle: + OBText(_localizationService.trans('notifications__comment_desc')), onChanged: _setPostCommentNotifications, onTap: _togglePostCommentNotifications, hasDivider: false, ), OBToggleField( + key: Key('Post comments replies'), value: _postCommentReplyNotifications, - title: _localizationService.trans('notifications__comment_reply_title'), + title: + _localizationService.trans('notifications__comment_reply_title'), subtitle: OBText( _localizationService.trans('notifications__comment_reply_desc')), onChanged: _setPostCommentReplyNotifications, @@ -157,29 +169,56 @@ class OBNotificationsSettingsPageState hasDivider: false, ), OBToggleField( - value: _postCommentReactionNotifications, - title: _localizationService.trans('notifications__comment_reaction_title'), + key: Key('Post comment user mentions'), + value: _postCommentUserMentionNotifications, + title: _localizationService.notifications__comment_user_mention_title, subtitle: OBText( - _localizationService.trans('notifications__comment_reaction_desc')), + _localizationService.notifications__comment_user_mention_desc), + onChanged: _setPostCommentUserMentionNotifications, + onTap: _togglePostCommentUserMentionNotifications, + hasDivider: false, + ), + OBToggleField( + key: Key('Post user mentions'), + value: _postUserMentionNotifications, + title: _localizationService.notifications__post_user_mention_title, + subtitle: OBText( + _localizationService.notifications__post_user_mention_desc), + onChanged: _setPostUserMentionNotifications, + onTap: _togglePostUserMentionNotifications, + hasDivider: false, + ), + OBToggleField( + key: Key('Post comment reactions'), + value: _postCommentReactionNotifications, + title: _localizationService + .trans('notifications__comment_reaction_title'), + subtitle: OBText(_localizationService + .trans('notifications__comment_reaction_desc')), onChanged: _setPostCommentReactionNotifications, onTap: _togglePostCommentReactionNotifications, hasDivider: false, ), listItemSeparator, OBToggleField( + key: Key('Post reaction'), value: _postReactionNotifications, - title: _localizationService.trans('notifications__post_reaction_title'), - subtitle: - OBText(_localizationService.trans('notifications__post_reaction_desc'),), + title: + _localizationService.trans('notifications__post_reaction_title'), + subtitle: OBText( + _localizationService.trans('notifications__post_reaction_desc'), + ), onChanged: _setPostReactionNotifications, onTap: _togglePostReactionNotifications, hasDivider: false, ), OBToggleField( + key: Key('Community invite'), value: _communityInviteNotifications, - title: _localizationService.trans('notifications__community_invite_title'), - subtitle: OBText( - _localizationService.trans('notifications__community_invite_desc')), + title: _localizationService + .trans('notifications__community_invite_title'), + subtitle: OBText(_localizationService + .trans('notifications__community_invite_desc')), onChanged: _setCommunityInviteNotifications, onTap: _toggleCommunityInviteNotifications, hasDivider: false, @@ -283,6 +322,31 @@ class OBNotificationsSettingsPageState _submitNotificationsSettings(); } + void _togglePostCommentUserMentionNotifications() { + _setPostCommentUserMentionNotifications( + !_postCommentUserMentionNotifications); + } + + void _setPostCommentUserMentionNotifications(bool newValue) { + setState(() { + _postCommentUserMentionNotifications = newValue; + }); + + _submitNotificationsSettings(); + } + + void _togglePostUserMentionNotifications() { + _setPostUserMentionNotifications(!_postUserMentionNotifications); + } + + void _setPostUserMentionNotifications(bool newValue) { + setState(() { + _postUserMentionNotifications = newValue; + }); + + _submitNotificationsSettings(); + } + void _togglePostReactionNotifications() { _setPostReactionNotifications(!_postReactionNotifications); } @@ -329,6 +393,8 @@ class OBNotificationsSettingsPageState followNotifications: _followNotifications, postCommentNotifications: _postCommentNotifications, postCommentReplyNotifications: _postCommentReplyNotifications, + postCommentUserMentionNotifications: _postCommentUserMentionNotifications, + postUserMentionNotifications: _postUserMentionNotifications, postCommentReactionNotifications: _postCommentReactionNotifications, postReactionNotifications: _postReactionNotifications, connectionRequestNotifications: _connectionRequestNotifications, @@ -346,7 +412,9 @@ class OBNotificationsSettingsPageState String errorMessage = await error.toHumanReadableMessage(); _toastService.error(message: errorMessage, context: context); } else { - _toastService.error(message: _localizationService.trans('error__unknown_error'), context: context); + _toastService.error( + message: _localizationService.trans('error__unknown_error'), + context: context); throw error; } } @@ -359,6 +427,10 @@ class OBNotificationsSettingsPageState _postCommentNotifications = notificationSettings.postCommentNotifications; _postCommentReactionNotifications = notificationSettings.postCommentReactionNotifications; + _postCommentUserMentionNotifications = + notificationSettings.postCommentUserMentionNotifications; + _postUserMentionNotifications = + notificationSettings.postUserMentionNotifications; _postCommentReplyNotifications = notificationSettings.postCommentReplyNotifications; _postReactionNotifications = diff --git a/lib/services/auth_api.dart b/lib/services/auth_api.dart index 90469b484..5a58232ab 100644 --- a/lib/services/auth_api.dart +++ b/lib/services/auth_api.dart @@ -328,6 +328,8 @@ class AuthApiService { bool postCommentNotifications, bool postCommentReplyNotifications, bool postCommentReactionNotifications, + bool postCommentUserMentionNotifications, + bool postUserMentionNotifications, bool postReactionNotifications, bool followNotifications, bool connectionRequestNotifications, @@ -342,6 +344,13 @@ class AuthApiService { if (postCommentReplyNotifications != null) body['post_comment_reply_notifications'] = postCommentReplyNotifications; + if (postCommentUserMentionNotifications != null) + body['post_comment_user_mention_notifications'] = + postCommentUserMentionNotifications; + + if (postUserMentionNotifications != null) + body['post_user_mention_notifications'] = postUserMentionNotifications; + if (postCommentReactionNotifications != null) body['post_comment_reaction_notifications'] = postCommentReactionNotifications; @@ -380,11 +389,9 @@ class AuthApiService { } Future setNewLanguage(Language language) { - Map body = {'language_id': language.id.toString()}; - return this - ._httpService - .post('$apiURL$SET_NEW_LANGUAGE', body: body, appendAuthorizationToken: true); + return this._httpService.post('$apiURL$SET_NEW_LANGUAGE', + body: body, appendAuthorizationToken: true); } Future reportUserWithUsername( diff --git a/lib/services/localization.dart b/lib/services/localization.dart index a9c577a5b..96e6b3f50 100644 --- a/lib/services/localization.dart +++ b/lib/services/localization.dart @@ -19,7 +19,7 @@ class LocalizationService { /// See README 7.c for a word on localizedLocales. /// These are locales where we have custom crowdin language codes like pt-BR /// to support Brazilian Portuguese with a particular country, say Brazil. - static const localizedLocales = ['pt-BR']; + static const localizedLocales = ['pt-BR', 'es-ES', 'sv-SE']; Future load() { final String name = locale.countryCode == null ? locale.languageCode : locale.toString(); @@ -2931,6 +2931,26 @@ class LocalizationService { name: 'notifications__comment_reply_desc'); } + String get notifications__comment_user_mention_title { + return Intl.message("Post comment mention", + name: 'notifications__comment_user_mention_title'); + } + + String get notifications__comment_user_mention_desc { + return Intl.message("Be notified when someone mentions you on one of their comments", + name: 'notifications__comment_user_mention_desc'); + } + + String get notifications__post_user_mention_title { + return Intl.message("Post mention", + name: 'notifications__post_user_mention_title'); + } + + String get notifications__post_user_mention_desc { + return Intl.message("Be notified when someone mentions you on one of their posts", + name: 'notifications__post_user_mention_desc'); + } + String get notifications__comment_reaction_title { return Intl.message("Post comment reaction", name: 'notifications__comment_reaction_title'); @@ -3404,9 +3424,10 @@ class LocalizationService { name: 'moderation__my_moderation_penalties_resource_plural'); } - String get notifications__mentioned_in_post_comment_tile { - return Intl.message("[name] [username] mentioned you on a comment.", - desc: "Eg.: James @jamest mentioned you on a comment.", + String notifications__mentioned_in_post_comment_tile(String postCommentText) { + return Intl.message("[name] [username] mentioned you on a comment: $postCommentText", + args: [postCommentText], + desc: "Eg.: James @jamest mentioned you on a comment: hello @jamest", name: 'notifications__mentioned_in_post_comment_tile'); } diff --git a/lib/services/user.dart b/lib/services/user.dart index aed248ad6..374462684 100644 --- a/lib/services/user.dart +++ b/lib/services/user.dart @@ -1548,6 +1548,8 @@ class UserService { bool postCommentNotifications, bool postCommentReplyNotifications, bool postCommentReactionNotifications, + bool postCommentUserMentionNotifications, + bool postUserMentionNotifications, bool postReactionNotifications, bool followNotifications, bool connectionRequestNotifications, @@ -1558,6 +1560,8 @@ class UserService { await _authApiService.updateAuthenticatedUserNotificationsSettings( postCommentNotifications: postCommentNotifications, postCommentReplyNotifications: postCommentReplyNotifications, + postCommentUserMentionNotifications: postCommentUserMentionNotifications, + postUserMentionNotifications: postUserMentionNotifications, postCommentReactionNotifications: postCommentReactionNotifications, postReactionNotifications: postReactionNotifications, followNotifications: followNotifications, diff --git a/lib/translation/constants.dart b/lib/translation/constants.dart index f817c3592..e14094de5 100644 --- a/lib/translation/constants.dart +++ b/lib/translation/constants.dart @@ -3,7 +3,7 @@ import 'dart:ui'; const supportedLocales = [ const Locale('en', 'US'), - const Locale('es', 'ES'), + const Locale('es-ES', 'ES'), // const Locale('nl', 'NL'), // const Locale('ar', 'SA'), // const Locale('zh', 'CN'), @@ -25,7 +25,7 @@ const supportedLocales = [ // const Locale('pl', 'PL'), const Locale('pt-BR', 'BR'), // const Locale('ru', 'RU'), - const Locale('sv', 'SE'), + const Locale('sv-SE', 'SE'), const Locale('tr', 'TR'), ]; diff --git a/lib/widgets/fields/toggle_field.dart b/lib/widgets/fields/toggle_field.dart index 06129f04c..80fa0e189 100644 --- a/lib/widgets/fields/toggle_field.dart +++ b/lib/widgets/fields/toggle_field.dart @@ -12,14 +12,8 @@ class OBToggleField extends StatelessWidget { final Widget subtitle; final bool hasDivider; - OBToggleField( - {@required this.value, - this.onChanged, - this.onTap, - this.leading, - @required this.title, - this.hasDivider = true, - this.subtitle}); + const OBToggleField({Key key, @required this.value, this.onChanged, this.onTap, this.leading, @required this.title, this.subtitle, this.hasDivider=true}) : super(key: key); + @override Widget build(BuildContext context) { diff --git a/lib/widgets/tiles/notification_tile/widgets/post_comment_reply_notification_tile.dart b/lib/widgets/tiles/notification_tile/widgets/post_comment_reply_notification_tile.dart index aebc0bc09..41872ea2a 100644 --- a/lib/widgets/tiles/notification_tile/widgets/post_comment_reply_notification_tile.dart +++ b/lib/widgets/tiles/notification_tile/widgets/post_comment_reply_notification_tile.dart @@ -1,5 +1,4 @@ import 'package:Okuna/models/notifications/notification.dart'; -import 'package:Okuna/models/notifications/post_comment_notification.dart'; import 'package:Okuna/models/notifications/post_comment_reply_notification.dart'; import 'package:Okuna/models/post.dart'; import 'package:Okuna/models/post_comment.dart'; diff --git a/lib/widgets/tiles/notification_tile/widgets/post_comment_user_mention_notification_tile.dart b/lib/widgets/tiles/notification_tile/widgets/post_comment_user_mention_notification_tile.dart index 12a5d612e..5dab62137 100644 --- a/lib/widgets/tiles/notification_tile/widgets/post_comment_user_mention_notification_tile.dart +++ b/lib/widgets/tiles/notification_tile/widgets/post_comment_user_mention_notification_tile.dart @@ -55,6 +55,7 @@ class OBPostCommentUserMentionNotificationTile extends StatelessWidget { }; LocalizationService _localizationService = openbookProvider.localizationService; + String postCommentText = postComment.text; return OBNotificationTileSkeleton( onTap: () { if (onPressed != null) onPressed(); @@ -77,7 +78,7 @@ class OBPostCommentUserMentionNotificationTile extends StatelessWidget { avatarUrl: postCommentUserMention.postComment.commenter.getProfileAvatar(), ), title: OBNotificationTileTitle( - text: TextSpan(text: _localizationService.notifications__mentioned_in_post_comment_tile), + text: TextSpan(text: _localizationService.notifications__mentioned_in_post_comment_tile(postCommentText)), onUsernamePressed: navigateToMentionerProfile, user: postCommentUserMention.postComment.commenter, ), diff --git a/lib/widgets/tiles/notification_tile/widgets/post_user_mention_notification_tile.dart b/lib/widgets/tiles/notification_tile/widgets/post_user_mention_notification_tile.dart index 337006989..983a262a3 100644 --- a/lib/widgets/tiles/notification_tile/widgets/post_user_mention_notification_tile.dart +++ b/lib/widgets/tiles/notification_tile/widgets/post_user_mention_notification_tile.dart @@ -5,7 +5,6 @@ import 'package:Okuna/models/post_user_mention.dart'; import 'package:Okuna/provider.dart'; import 'package:Okuna/services/localization.dart'; import 'package:Okuna/widgets/avatars/avatar.dart'; -import 'package:Okuna/widgets/theming/actionable_smart_text.dart'; import 'package:Okuna/widgets/theming/secondary_text.dart'; import 'package:flutter/material.dart'; import 'package:flutter_advanced_networkimage/provider.dart'; @@ -53,27 +52,27 @@ class OBPostUserMentionNotificationTile extends StatelessWidget { }; LocalizationService _localizationService = openbookProvider.localizationService; + Function onTileTapped = (){ + if (onPressed != null) onPressed(); + OpenbookProviderState openbookProvider = OpenbookProvider.of(context); + openbookProvider.navigationService + .navigateToPost(post: postUserMention.post, context: context); + }; return OBNotificationTileSkeleton( - onTap: () { - if (onPressed != null) onPressed(); - OpenbookProviderState openbookProvider = OpenbookProvider.of(context); - openbookProvider.navigationService - .navigateToPost(post: postUserMention.post, context: context); - }, + onTap: onTileTapped, leading: OBAvatar( onPressed: navigateToMentionerProfile, size: OBAvatarSize.medium, avatarUrl: postUserMention.post.creator.getProfileAvatar(), ), title: OBNotificationTileTitle( - text: TextSpan(text: _localizationService.notifications__mentioned_in_post_tile), onUsernamePressed: navigateToMentionerProfile, user: postUserMention.post.creator, + text: TextSpan( + text: _localizationService.notifications__mentioned_in_post_tile), ), - subtitle: OBSecondaryText( - utilsService.timeAgo(notification.created, _localizationService), - size: OBTextSize.small, - ), + trailing: postImagePreview, + subtitle: OBSecondaryText(utilsService.timeAgo(notification.created, _localizationService)), ); } } diff --git a/pubspec.lock b/pubspec.lock index dd129a84c..c01b451c3 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -42,7 +42,7 @@ packages: name: back_button_interceptor url: "https://pub.dartlang.org" source: hosted - version: "4.0.6" + version: "4.0.7" boolean_selector: dependency: transitive description: @@ -358,7 +358,7 @@ packages: name: multi_image_picker url: "https://pub.dartlang.org" source: hosted - version: "4.4.1" + version: "4.5.0+2" multi_server_socket: dependency: transitive description: @@ -379,7 +379,7 @@ packages: name: onesignal_flutter url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.2" package_config: dependency: transitive description: @@ -727,7 +727,7 @@ packages: name: web_socket_channel url: "https://pub.dartlang.org" source: hosted - version: "1.0.14" + version: "1.0.15" xml: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 16be58efe..1200d93e7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,7 +7,7 @@ description: Social Network # Both the version and the builder number may be overridden in flutter # build by specifying --build-name and --build-number, respectively. # Read more about versioning at semver.org. -version: 0.0.50+55 +version: 0.0.51+56 environment: sdk: ">=2.1.0 <3.0.0"