From 33bef1b9100b80845dcfe8e23a7cce3e2784e838 Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Mon, 12 Aug 2019 14:10:20 +0200 Subject: [PATCH 01/13] :sparkles: add new localization strings in english --- README.md | 2 +- assets/i18n/en/contextual_account_search_box.arb | 8 ++++++++ assets/i18n/en/notifications.arb | 12 ++++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 assets/i18n/en/contextual_account_search_box.arb diff --git a/README.md b/README.md index 4ba80f3d7..d3bab86e9 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` 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..1880fcd33 100644 --- a/assets/i18n/en/notifications.arb +++ b/assets/i18n/en/notifications.arb @@ -170,5 +170,17 @@ "placeholders": { "postCommentText": {} } + }, + "mentioned_in_post_comment_tile": "[name] [username] mentioned you on a comment.", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment.", + "type": "text", + "placeholders": {} + }, + "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 From 1e75a3419bf7adeab75c231d8f96f4fe8128ab1f Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Mon, 12 Aug 2019 15:38:20 +0200 Subject: [PATCH 02/13] :sparkles: add notification settings for mentions --- lib/models/user_notifications_settings.dart | 14 +++ .../pages/notifications_settings.dart | 106 +++++++++++++++--- lib/services/auth_api.dart | 15 ++- lib/services/localization.dart | 20 ++++ lib/services/user.dart | 4 + lib/widgets/fields/toggle_field.dart | 10 +- 6 files changed, 140 insertions(+), 29 deletions(-) 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/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..adf5524e6 100644 --- a/lib/services/localization.dart +++ b/lib/services/localization.dart @@ -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'); 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/widgets/fields/toggle_field.dart b/lib/widgets/fields/toggle_field.dart index 06129f04c..34c108f30 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}) : super(key: key); + @override Widget build(BuildContext context) { From abf3365102da70c1117f411f8f918f5c3578c511 Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Mon, 12 Aug 2019 15:43:03 +0200 Subject: [PATCH 03/13] :globe_with_meridians: add more strings --- assets/i18n/en/notifications.arb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/assets/i18n/en/notifications.arb b/assets/i18n/en/notifications.arb index 1880fcd33..cb8875283 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", From b387604563fd897b83d7967199826cce92441672 Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Tue, 13 Aug 2019 17:05:00 +0200 Subject: [PATCH 04/13] :bug: add missing localised locales :grimacing: --- .gitignore | 1 + Makefile | 13 ++++ Pipfile | 0 README.md | 10 ++- assets/i18n/{es => es-ES}/auth.arb | 0 assets/i18n/{es => es-ES}/community.arb | 0 assets/i18n/{es => es-ES}/drawer.arb | 0 assets/i18n/{es => es-ES}/error.arb | 0 assets/i18n/{es => es-ES}/moderation.arb | 0 assets/i18n/{es => es-ES}/notifications.arb | 0 assets/i18n/{es => es-ES}/post.arb | 0 assets/i18n/{es => es-ES}/user.arb | 0 assets/i18n/{es => es-ES}/user_search.arb | 0 assets/i18n/{sv => sv-SE}/auth.arb | 0 assets/i18n/{sv => sv-SE}/community.arb | 0 assets/i18n/{sv => sv-SE}/drawer.arb | 0 assets/i18n/{sv => sv-SE}/error.arb | 0 assets/i18n/{sv => sv-SE}/moderation.arb | 0 assets/i18n/{sv => sv-SE}/notifications.arb | 0 assets/i18n/{sv => sv-SE}/post.arb | 0 assets/i18n/{sv => sv-SE}/user.arb | 0 assets/i18n/{sv => sv-SE}/user_search.arb | 0 ...es_es_material_localizations_delegate.dart | 62 +++++++++++++++++++ ...sv_se_material_localizations_delegate.dart | 62 +++++++++++++++++++ lib/services/localization.dart | 2 +- lib/translation/constants.dart | 4 +- 26 files changed, 148 insertions(+), 6 deletions(-) create mode 100644 Pipfile rename assets/i18n/{es => es-ES}/auth.arb (100%) rename assets/i18n/{es => es-ES}/community.arb (100%) rename assets/i18n/{es => es-ES}/drawer.arb (100%) rename assets/i18n/{es => es-ES}/error.arb (100%) rename assets/i18n/{es => es-ES}/moderation.arb (100%) rename assets/i18n/{es => es-ES}/notifications.arb (100%) rename assets/i18n/{es => es-ES}/post.arb (100%) rename assets/i18n/{es => es-ES}/user.arb (100%) rename assets/i18n/{es => es-ES}/user_search.arb (100%) rename assets/i18n/{sv => sv-SE}/auth.arb (100%) rename assets/i18n/{sv => sv-SE}/community.arb (100%) rename assets/i18n/{sv => sv-SE}/drawer.arb (100%) rename assets/i18n/{sv => sv-SE}/error.arb (100%) rename assets/i18n/{sv => sv-SE}/moderation.arb (100%) rename assets/i18n/{sv => sv-SE}/notifications.arb (100%) rename assets/i18n/{sv => sv-SE}/post.arb (100%) rename assets/i18n/{sv => sv-SE}/user.arb (100%) rename assets/i18n/{sv => sv-SE}/user_search.arb (100%) create mode 100644 lib/delegates/es_es_material_localizations_delegate.dart create mode 100644 lib/delegates/sv_se_material_localizations_delegate.dart 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/Makefile b/Makefile index 34d5c9c7c..9d1e95ed7 100644 --- a/Makefile +++ b/Makefile @@ -27,3 +27,16 @@ generate_locale: build_locale: node bin/buildLocales flutter pub pub run intl_translation:generate_from_arb --output-dir=lib/locale --no-use-deferred-loading lib/services/localization.dart assets/i18n/intl_*.arb + +upload_crowdin_locales: + crowdin upload sources + +download_crowdin_locales: + crowdin download -l de + crowdin download -l es-ES + crowdin download -l fr + crowdin download -l it + crowdin download -l pt-BR + crowdin download -l sv-SE + crowdin download -l tr + diff --git a/Pipfile b/Pipfile new file mode 100644 index 000000000..e69de29bb diff --git a/README.md b/README.md index d3bab86e9..1c366fedf 100644 --- a/README.md +++ b/README.md @@ -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/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/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 100% rename from assets/i18n/es/notifications.arb rename to assets/i18n/es-ES/notifications.arb 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/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 100% rename from assets/i18n/sv/notifications.arb rename to assets/i18n/sv-SE/notifications.arb 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/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/services/localization.dart b/lib/services/localization.dart index adf5524e6..9c49f1cbf 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(); 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'), ]; From 72b31b6d6bfad0d1910f96612a427fd4069b441f Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Tue, 13 Aug 2019 17:40:01 +0200 Subject: [PATCH 05/13] :globe_with_meridians: update localisation files --- Makefile | 13 - assets/i18n/de/auth.arb | 16 +- assets/i18n/de/community.arb | 8 +- .../i18n/de/contextual_account_search_box.arb | 10 + assets/i18n/de/drawer.arb | 6 +- assets/i18n/de/moderation.arb | 14 +- assets/i18n/de/notifications.arb | 46 ++- assets/i18n/de/post.arb | 24 +- assets/i18n/de/user.arb | 8 +- .../es-ES/contextual_account_search_box.arb | 10 + assets/i18n/es-ES/notifications.arb | 44 +++ .../i18n/fr/contextual_account_search_box.arb | 10 + assets/i18n/fr/notifications.arb | 44 +++ .../i18n/it/contextual_account_search_box.arb | 10 + assets/i18n/it/notifications.arb | 44 +++ assets/i18n/pt-BR/auth.arb | 206 +++++----- assets/i18n/pt-BR/community.arb | 280 +++++++------- .../pt-BR/contextual_account_search_box.arb | 10 + assets/i18n/pt-BR/drawer.arb | 86 ++--- assets/i18n/pt-BR/error.arb | 4 +- assets/i18n/pt-BR/moderation.arb | 134 +++---- assets/i18n/pt-BR/notifications.arb | 106 +++-- assets/i18n/pt-BR/post.arb | 214 +++++------ assets/i18n/pt-BR/user.arb | 362 +++++++++--------- assets/i18n/pt-BR/user_search.arb | 24 +- assets/i18n/tr/auth.arb | 2 +- .../i18n/tr/contextual_account_search_box.arb | 10 + assets/i18n/tr/notifications.arb | 44 +++ 28 files changed, 1050 insertions(+), 739 deletions(-) create mode 100644 assets/i18n/de/contextual_account_search_box.arb create mode 100644 assets/i18n/es-ES/contextual_account_search_box.arb create mode 100644 assets/i18n/fr/contextual_account_search_box.arb create mode 100644 assets/i18n/it/contextual_account_search_box.arb create mode 100644 assets/i18n/pt-BR/contextual_account_search_box.arb create mode 100644 assets/i18n/tr/contextual_account_search_box.arb diff --git a/Makefile b/Makefile index 9d1e95ed7..34d5c9c7c 100644 --- a/Makefile +++ b/Makefile @@ -27,16 +27,3 @@ generate_locale: build_locale: node bin/buildLocales flutter pub pub run intl_translation:generate_from_arb --output-dir=lib/locale --no-use-deferred-loading lib/services/localization.dart assets/i18n/intl_*.arb - -upload_crowdin_locales: - crowdin upload sources - -download_crowdin_locales: - crowdin download -l de - crowdin download -l es-ES - crowdin download -l fr - crowdin download -l it - crowdin download -l pt-BR - crowdin download -l sv-SE - crowdin download -l tr - 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..1e808a6f1 100644 --- a/assets/i18n/de/notifications.arb +++ b/assets/i18n/de/notifications.arb @@ -13,7 +13,7 @@ } }, - "general_desc": "Werde benachrichtigt wenn etwas passiert", + "general_desc": "Werde benachrichtigt, wenn etwas passiert", "@general_desc": { "type": "text", "placeholders": { @@ -76,6 +76,34 @@ } }, + "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", @@ -232,5 +260,21 @@ } } + }, + "mentioned_in_post_comment_tile": "[name] [username] hat dich in einem Kommentar erwĂ€hnt.", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment.", + "type": "text", + "placeholders": { + + } + }, + "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/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-ES/notifications.arb b/assets/i18n/es-ES/notifications.arb index daf2f4678..8f5662c4d 100644 --- a/assets/i18n/es-ES/notifications.arb +++ b/assets/i18n/es-ES/notifications.arb @@ -76,6 +76,34 @@ } }, + "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", @@ -232,5 +260,21 @@ } } + }, + "mentioned_in_post_comment_tile": "[name] [username] te mencionĂł en un comentario.", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment.", + "type": "text", + "placeholders": { + + } + }, + "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/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..b928eff2e 100644 --- a/assets/i18n/fr/notifications.arb +++ b/assets/i18n/fr/notifications.arb @@ -76,6 +76,34 @@ } }, + "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", @@ -232,5 +260,21 @@ } } + }, + "mentioned_in_post_comment_tile": "[name] [username] vous a mentionnĂ©.e sur un commentaire.", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment.", + "type": "text", + "placeholders": { + + } + }, + "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..5f11c415b 100644 --- a/assets/i18n/it/notifications.arb +++ b/assets/i18n/it/notifications.arb @@ -76,6 +76,34 @@ } }, + "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", @@ -232,5 +260,21 @@ } } + }, + "mentioned_in_post_comment_tile": "[name] [username] ti ha menzionato in un commento.", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment.", + "type": "text", + "placeholders": { + + } + }, + "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/auth.arb b/assets/i18n/pt-BR/auth.arb index e90e7a1f9..683981096 100644 --- a/assets/i18n/pt-BR/auth.arb +++ b/assets/i18n/pt-BR/auth.arb @@ -1,47 +1,47 @@ { - "headline": "Uma rede social melhor.", + "headline": "Better social.", "@headline": { "type": "text", "placeholders": { } }, - "login": "Entrar", + "login": "Logga in", "@login": { "type": "text", "placeholders": { } }, - "email_empty_error": "O email nĂŁo pode ficar vazio.", + "email_empty_error": "Du mĂ„ste ange en e-postadress.", "@email_empty_error": { "type": "text", "placeholders": { } }, - "email_invalid_error": "Por favor, forneça um email vĂĄlido.", + "email_invalid_error": "VĂ€nligen ange en giltig e-postadress.", "@email_invalid_error": { "type": "text", "placeholders": { } }, - "username_empty_error": "O nome de usuĂĄrio nĂŁo pode ficar vazio.", + "username_empty_error": "Du mĂ„ste ange ett anvĂ€ndarnamn.", "@username_empty_error": { "type": "text", "placeholders": { } }, - "username_characters_error": "Um nome de usuĂĄrio sĂł pode conter caracteres alfanumĂ©ricos e underlines (_).", + "username_characters_error": "Ett anvĂ€ndarnamn kan bara innehĂ„lla alfanumeriska tecken och understreck.", "@username_characters_error": { "type": "text", "placeholders": { } }, - "username_maxlength_error": "Um nome de usuĂĄrio nĂŁo pode ser maior que {maxLength} caracteres.", + "username_maxlength_error": "Ett anvĂ€ndarnamn kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@username_maxlength_error": { "type": "text", "placeholders": { @@ -50,91 +50,91 @@ } } }, - "create_account": "Cadastrar-se", + "create_account": "Registrera dig", "@create_account": { "type": "text", "placeholders": { } }, - "create_acc__lets_get_started": "Vamos começar", + "create_acc__lets_get_started": "LĂ„t oss komma igĂ„ng", "@create_acc__lets_get_started": { "type": "text", "placeholders": { } }, - "create_acc__welcome_to_beta": "Bem-vindo(a) Ă  Beta!", + "create_acc__welcome_to_beta": "VĂ€lkommen till betan!", "@create_acc__welcome_to_beta": { "type": "text", "placeholders": { } }, - "create_acc__previous": "Voltar", + "create_acc__previous": "Tillbaka", "@create_acc__previous": { "type": "text", "placeholders": { } }, - "create_acc__next": "Avançar", + "create_acc__next": "NĂ€sta", "@create_acc__next": { "type": "text", "placeholders": { } }, - "create_acc__create_account": "Criar uma conta", + "create_acc__create_account": "Skapa konto", "@create_acc__create_account": { "type": "text", "placeholders": { } }, - "create_acc__paste_link": "Cole seu link de registro abaixo", + "create_acc__paste_link": "Klistra in din registreringslĂ€nk nedan", "@create_acc__paste_link": { "type": "text", "placeholders": { } }, - "create_acc__paste_password_reset_link": "Cole o link de redefinição de senha abaixo", + "create_acc__paste_password_reset_link": "Klistra in din lösenordsĂ„terstĂ€llningslĂ€nk nedan", "@create_acc__paste_password_reset_link": { "type": "text", "placeholders": { } }, - "create_acc__paste_link_help_text": "Use o link do seu convite recebido por email.", + "create_acc__paste_link_help_text": "AnvĂ€nd lĂ€nken frĂ„n Join Okuna-knappen i din inbjudan.", "@create_acc__paste_link_help_text": { "type": "text", "placeholders": { } }, - "create_acc__link_empty_error": "O campo de link nĂŁo pode ficar vazio.", + "create_acc__link_empty_error": "Du mĂ„ste ange en lĂ€nk.", "@create_acc__link_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__link_invalid_error": "Este link parece ser invĂĄlido.", + "create_acc__link_invalid_error": "LĂ€nken verkar vara ogiltig.", "@create_acc__link_invalid_error": { "type": "text", "placeholders": { } }, - "password_empty_error": "A senha nĂŁo pode ficar vazia.", + "password_empty_error": "Du mĂ„ste ange ett lösenord.", "@password_empty_error": { "type": "text", "placeholders": { } }, - "password_range_error": "A senha deve ter entre {minLength} e {maxLength} caracteres.", + "password_range_error": "Lösenordet mĂ„ste vara mellan {minLength} och {maxLength} tecken.", "@password_range_error": { "type": "text", "placeholders": { @@ -146,14 +146,14 @@ } } }, - "name_empty_error": "O nome nĂŁo pode ficar vazio.", + "name_empty_error": "Du mĂ„ste ange ett namn.", "@name_empty_error": { "type": "text", "placeholders": { } }, - "name_range_error": "O nome deve ter entre {minLength} e {maxLength} caracteres.", + "name_range_error": "Namnet mĂ„ste vara mellan {minLength} och {maxLength} tecken.", "@name_range_error": { "type": "text", "placeholders": { @@ -165,14 +165,14 @@ } } }, - "description_empty_error": "A descrição nĂŁo pode ficar vazia.", + "description_empty_error": "Du mĂ„ste skriva en beskrivning.", "@description_empty_error": { "type": "text", "placeholders": { } }, - "description_range_error": "A descrição deve ter entre {minLength} e {maxLength} caracteres.", + "description_range_error": "Beskrivningen mĂ„ste vara mellan {minLength} och {maxLength} tecken.", "@description_range_error": { "type": "text", "placeholders": { @@ -184,196 +184,196 @@ } } }, - "reset_password_success_title": "Tudo pronto!", + "reset_password_success_title": "Allt klart!", "@reset_password_success_title": { "type": "text", "placeholders": { } }, - "reset_password_success_info": "Sua senha foi alterada com sucesso", + "reset_password_success_info": "Ditt lösenord har uppdaterats", "@reset_password_success_info": { "type": "text", "placeholders": { } }, - "create_acc__request_invite": "Sem convite? Solicite um aqui.", + "create_acc__request_invite": "Ingen inbjudan? Be om en hĂ€r.", "@create_acc__request_invite": { "type": "text", "placeholders": { } }, - "create_acc__subscribe": "Solicitar", + "create_acc__subscribe": "BegĂ€r", "@create_acc__subscribe": { "type": "text", "placeholders": { } }, - "create_acc__subscribe_to_waitlist_text": "Solicitar um convite!", + "create_acc__subscribe_to_waitlist_text": "Be om en inbjudan!", "@create_acc__subscribe_to_waitlist_text": { "type": "text", "placeholders": { } }, - "create_acc__congratulations": "ParabĂ©ns!", + "create_acc__congratulations": "Gratulerar!", "@create_acc__congratulations": { "type": "text", "placeholders": { } }, - "create_acc__your_subscribed": "VocĂȘ Ă© o nĂșmero {0} da lista de espera.", + "create_acc__your_subscribed": "Du Ă€r {0} pĂ„ vĂ€ntelistan.", "@create_acc__your_subscribed": { "type": "text", "placeholders": { } }, - "create_acc__almost_there": "Quase lĂĄ...", + "create_acc__almost_there": "NĂ€stan klart...", "@create_acc__almost_there": { "type": "text", "placeholders": { } }, - "create_acc__what_name": "Qual Ă© o seu nome?", + "create_acc__what_name": "Vad heter du?", "@create_acc__what_name": { "type": "text", "placeholders": { } }, - "create_acc__name_placeholder": "Ayrton Senna", + "create_acc__name_placeholder": "James Bond", "@create_acc__name_placeholder": { "type": "text", "placeholders": { } }, - "create_acc__name_empty_error": "đŸ˜± Seu nome nĂŁo pode ficar vazio.", + "create_acc__name_empty_error": "đŸ˜± Du mĂ„ste ange ett namn.", "@create_acc__name_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__name_length_error": "đŸ˜± Seu nome nĂŁo pode ter mais de 50 caracteres. (Se ele tem, lamentamos muito.)", + "create_acc__name_length_error": "đŸ˜± Ditt namn fĂ„r inte vara lĂ€ngre Ă€n 50 tecken. (Vi Ă€r ledsna om det Ă€r det.)", "@create_acc__name_length_error": { "type": "text", "placeholders": { } }, - "create_acc__name_characters_error": "😅 Um nome sĂł pode conter caracteres alfanumĂ©ricos (por enquanto).", + "create_acc__name_characters_error": "😅 Ett namn kan bara innehĂ„lla alfanumeriska tecken (för tillfĂ€llet).", "@create_acc__name_characters_error": { "type": "text", "placeholders": { } }, - "create_acc__what_username": "Escolha um nome de usuĂĄrio", + "create_acc__what_username": "VĂ€lj ett anvĂ€ndarnamn", "@create_acc__what_username": { "type": "text", "placeholders": { } }, - "create_acc__username_placeholder": "santosdumont", + "create_acc__username_placeholder": "pablopicasso", "@create_acc__username_placeholder": { "type": "text", "placeholders": { } }, - "create_acc__username_empty_error": "đŸ˜± O nome de usuĂĄrio nĂŁo pode ficar vazio.", + "create_acc__username_empty_error": "đŸ˜± Du mĂ„ste ange ett anvĂ€ndarnamn.", "@create_acc__username_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__username_length_error": "😅 Um nome de usuĂĄrio nĂŁo pode ter mais de 30 caracteres.", + "create_acc__username_length_error": "😅 Ett anvĂ€ndarnamn kan inte vara lĂ€ngre Ă€n 30 tecken.", "@create_acc__username_length_error": { "type": "text", "placeholders": { } }, - "create_acc__username_characters_error": "😅 Um nome de usuĂĄrio deve conter apenas caracteres alfanumĂ©ricos e underlines (_).", + "create_acc__username_characters_error": "😅 Ett anvĂ€ndarnamn kan bara innehĂ„lla alfanumeriska tecken och understreck.", "@create_acc__username_characters_error": { "type": "text", "placeholders": { } }, - "create_acc__username_taken_error": "đŸ˜© O nome de usuĂĄrio @%s jĂĄ estĂĄ em uso.", + "create_acc__username_taken_error": "đŸ˜© AnvĂ€ndarnamnet @%s Ă€r upptaget.", "@create_acc__username_taken_error": { "type": "text", "placeholders": { } }, - "create_acc__username_server_error": "😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos.", + "create_acc__username_server_error": "😭 Vi har serverproblem, vĂ€nligen försök igen om nĂ„gra minuter.", "@create_acc__username_server_error": { "type": "text", "placeholders": { } }, - "create_acc__what_email": "Qual Ă© o seu email?", + "create_acc__what_email": "Vad Ă€r din e-post?", "@create_acc__what_email": { "type": "text", "placeholders": { } }, - "create_acc__email_placeholder": "gisele_bundchen@mail.com", + "create_acc__email_placeholder": "john_travolta@mail.com", "@create_acc__email_placeholder": { "type": "text", "placeholders": { } }, - "create_acc__email_empty_error": "đŸ˜± Seu email nĂŁo pode ficar vazio", + "create_acc__email_empty_error": "đŸ˜± Du mĂ„ste ange en e-postadress", "@create_acc__email_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__email_invalid_error": "😅 Por favor, forneça um endereço de email vĂĄlido.", + "create_acc__email_invalid_error": "😅 VĂ€nligen ange en giltig e-postadress.", "@create_acc__email_invalid_error": { "type": "text", "placeholders": { } }, - "create_acc__email_taken_error": "đŸ€” JĂĄ existe uma conta associada a esse email.", + "create_acc__email_taken_error": "đŸ€” Det finns redan ett konto med den e-postadressen.", "@create_acc__email_taken_error": { "type": "text", "placeholders": { } }, - "create_acc__email_server_error": "😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos.", + "create_acc__email_server_error": "😭 Vi har serverproblem, vĂ€nligen försök igen om nĂ„gra minuter.", "@create_acc__email_server_error": { "type": "text", "placeholders": { } }, - "create_acc__what_password": "Escolha uma senha", + "create_acc__what_password": "VĂ€lj ett lösenord", "@create_acc__what_password": { "type": "text", "placeholders": { } }, - "create_acc_password_hint_text": "({minLength}-{maxLength} caracteres)", + "create_acc_password_hint_text": "({minLength}-{maxLength} tecken)", "@create_acc_password_hint_text": { "type": "text", "placeholders": { @@ -385,357 +385,357 @@ } } }, - "create_acc__what_password_subtext": "(mĂ­n. 10 caracteres)", + "create_acc__what_password_subtext": "(minst 10 tecken)", "@create_acc__what_password_subtext": { "type": "text", "placeholders": { } }, - "create_acc__password_empty_error": "đŸ˜± Sua senha nĂŁo pode ficar vazia", + "create_acc__password_empty_error": "đŸ˜± Du mĂ„ste ange ett lösenord", "@create_acc__password_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__password_length_error": "😅 Uma senha precisa ter entre 8 e 64 caracteres.", + "create_acc__password_length_error": "😅 Ett lösenord mĂ„ste vara mellan 8 och 64 tecken.", "@create_acc__password_length_error": { "type": "text", "placeholders": { } }, - "create_acc__what_avatar": "Escolha uma imagem de perfil", + "create_acc__what_avatar": "VĂ€lj en profilbild", "@create_acc__what_avatar": { "type": "text", "placeholders": { } }, - "create_acc__avatar_tap_to_change": "Toque para alterar", + "create_acc__avatar_tap_to_change": "Tryck för att Ă€ndra", "@create_acc__avatar_tap_to_change": { "type": "text", "placeholders": { } }, - "create_acc__avatar_choose_camera": "Tirar uma foto", + "create_acc__avatar_choose_camera": "Ta ett foto", "@create_acc__avatar_choose_camera": { "type": "text", "placeholders": { } }, - "create_acc__avatar_choose_gallery": "Usar uma foto existente", + "create_acc__avatar_choose_gallery": "AnvĂ€nd ett existerande foto", "@create_acc__avatar_choose_gallery": { "type": "text", "placeholders": { } }, - "create_acc__avatar_remove_photo": "Remover foto", + "create_acc__avatar_remove_photo": "Ta bort foto", "@create_acc__avatar_remove_photo": { "type": "text", "placeholders": { } }, - "create_acc__done": "Criar conta", + "create_acc__done": "Skapa konto", "@create_acc__done": { "type": "text", "placeholders": { } }, - "create_acc__done_subtext": "VocĂȘ pode mudar isso nas configuraçÔes de perfil.", + "create_acc__done_subtext": "Du kan Ă€ndra detta i dina profilinstĂ€llningar.", "@create_acc__done_subtext": { "type": "text", "placeholders": { } }, - "create_acc__done_created": "Sua conta foi criada com o nome de usuĂĄrio ", + "create_acc__done_created": "Ditt konto har skapats med anvĂ€ndarnamnet ", "@create_acc__done_created": { "type": "text", "placeholders": { } }, - "create_acc__submit_loading_title": "Segura aĂ­!", + "create_acc__submit_loading_title": "HĂ„ll ut!", "@create_acc__submit_loading_title": { "type": "text", "placeholders": { } }, - "create_acc__submit_loading_desc": "Estamos criando sua conta.", + "create_acc__submit_loading_desc": "Vi skapar ditt konto.", "@create_acc__submit_loading_desc": { "type": "text", "placeholders": { } }, - "create_acc__submit_error_title": "Ah nĂŁo...", + "create_acc__submit_error_title": "Åh, nej...", "@create_acc__submit_error_title": { "type": "text", "placeholders": { } }, - "create_acc__submit_error_desc_server": "😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos.", + "create_acc__submit_error_desc_server": "😭 Vi har serverproblem, vĂ€nligen försök igen om nĂ„gra minuter.", "@create_acc__submit_error_desc_server": { "type": "text", "placeholders": { } }, - "create_acc__submit_error_desc_validation": "😅 Parece que algumas das informaçÔes nĂŁo estavam corretas, por favor, verifique e tente novamente.", + "create_acc__submit_error_desc_validation": "😅 Det ser ut som att en del av informationen var felaktig, vĂ€nligen kontrollera den och försök igen.", "@create_acc__submit_error_desc_validation": { "type": "text", "placeholders": { } }, - "create_acc__done_title": "Aeee!", + "create_acc__done_title": "Hurra!", "@create_acc__done_title": { "type": "text", "placeholders": { } }, - "create_acc__done_description": "Sua conta foi criada com sucesso.", + "create_acc__done_description": "Ditt konto har skapats.", "@create_acc__done_description": { "type": "text", "placeholders": { } }, - "create_acc__your_username_is": "Seu nome de usuĂĄrio Ă© ", + "create_acc__your_username_is": "Ditt anvĂ€ndarnamn Ă€r ", "@create_acc__your_username_is": { "type": "text", "placeholders": { } }, - "create_acc__can_change_username": "Se desejar, vocĂȘ pode alterĂĄ-lo a qualquer momento atravĂ©s da sua pĂĄgina de perfil.", + "create_acc__can_change_username": "Om du vill sĂ„ kan du Ă€ndra det nĂ€r som helst frĂ„n din profilsida.", "@create_acc__can_change_username": { "type": "text", "placeholders": { } }, - "create_acc__done_continue": "Entrar", + "create_acc__done_continue": "Logga in", "@create_acc__done_continue": { "type": "text", "placeholders": { } }, - "create_acc__one_last_thing": "Uma Ășltima coisa...", + "create_acc__one_last_thing": "En sista sak...", "@create_acc__one_last_thing": { "type": "text", "placeholders": { } }, - "create_acc__register": "Criar uma conta", + "create_acc__register": "Registrera", "@create_acc__register": { "type": "text", "placeholders": { } }, - "create_acc__are_you_legal_age": "VocĂȘ tem mais de 16 anos?", + "create_acc__are_you_legal_age": "Är du Ă€ldre Ă€n 16 Ă„r?", "@create_acc__are_you_legal_age": { "type": "text", "placeholders": { } }, - "login__login": "Continuar", + "login__login": "FortsĂ€tt", "@login__login": { "type": "text", "placeholders": { } }, - "login__previous": "Voltar", + "login__previous": "Tillbaka", "@login__previous": { "type": "text", "placeholders": { } }, - "login__title": "Bem-vindo(a) de volta!", + "login__title": "VĂ€lkommen tillbaka!", "@login__title": { "type": "text", "placeholders": { } }, - "login__subtitle": "Insira suas credenciais para continuar.", + "login__subtitle": "Ange dina inloggningsuppgifter för att fortsĂ€tta.", "@login__subtitle": { "type": "text", "placeholders": { } }, - "login__forgot_password": "Esqueci a senha", + "login__forgot_password": "Glömt lösenordet", "@login__forgot_password": { "type": "text", "placeholders": { } }, - "login__forgot_password_subtitle": "Digite seu nome de usuĂĄrio ou email", + "login__forgot_password_subtitle": "Ange ditt anvĂ€ndarnamn eller e-postadress", "@login__forgot_password_subtitle": { "type": "text", "placeholders": { } }, - "login__username_label": "Nome de usuĂĄrio", + "login__username_label": "AnvĂ€ndarnamn", "@login__username_label": { "type": "text", "placeholders": { } }, - "login__password_label": "Senha", + "login__password_label": "Lösenord", "@login__password_label": { "type": "text", "placeholders": { } }, - "login__email_label": "Email", + "login__email_label": "E-postadress", "@login__email_label": { "type": "text", "placeholders": { } }, - "login__or_text": "Ou", + "login__or_text": "Eller", "@login__or_text": { "type": "text", "placeholders": { } }, - "login__password_empty_error": "A senha Ă© necessĂĄria.", + "login__password_empty_error": "Ett lösenord krĂ€vs.", "@login__password_empty_error": { "type": "text", "placeholders": { } }, - "login__password_length_error": "Sua senha deve ter entre 8 e 64 caracteres.", + "login__password_length_error": "Lösenordet mĂ„ste vara mellan 8 och 64 tecken.", "@login__password_length_error": { "type": "text", "placeholders": { } }, - "login__username_empty_error": "O nome de usuĂĄrio Ă© necessĂĄrio.", + "login__username_empty_error": "Ett anvĂ€ndarnamn krĂ€vs.", "@login__username_empty_error": { "type": "text", "placeholders": { } }, - "login__username_length_error": "O nome de usuĂĄrio nĂŁo pode ter mais de 30 caracteres.", + "login__username_length_error": "AnvĂ€ndarnamnet kan inte vara lĂ€ngre Ă€n 30 tecken.", "@login__username_length_error": { "type": "text", "placeholders": { } }, - "login__username_characters_error": "O nome de usuĂĄrio sĂł pode conter caracteres alfanumĂ©ricos e underlines (_).", + "login__username_characters_error": "AnvĂ€ndarnamnet kan bara innehĂ„lla alfanumeriska tecken och understreck.", "@login__username_characters_error": { "type": "text", "placeholders": { } }, - "login__credentials_mismatch_error": "As credenciais fornecidas nĂŁo coincidem.", + "login__credentials_mismatch_error": "De angivna uppgifterna matchar inte.", "@login__credentials_mismatch_error": { "type": "text", "placeholders": { } }, - "login__server_error": "Ops... Estamos passando por problemas em nossos servidores. Por favor, tente novamente em alguns minutos.", + "login__server_error": "Åh nej.. Vi har serverproblem. VĂ€nligen försök igen om nĂ„gra minuter.", "@login__server_error": { "type": "text", "placeholders": { } }, - "login__connection_error": "NĂŁo conseguimos alcançar nossos servidores. VocĂȘ estĂĄ conectado Ă  internet?", + "login__connection_error": "Vi kan inte nĂ„ vĂ„ra servrar. Är du uppkopplad mot internet?", "@login__connection_error": { "type": "text", "placeholders": { } }, - "change_password_title": "Alterar senha", + "change_password_title": "Ändra lösenord", "@change_password_title": { "type": "text", "placeholders": { } }, - "change_password_current_pwd": "Senha atual", + "change_password_current_pwd": "Nuvarande lösenord", "@change_password_current_pwd": { "type": "text", "placeholders": { } }, - "change_password_current_pwd_hint": "Digite a sua senha atual", + "change_password_current_pwd_hint": "Ange ditt nuvarande lösenord", "@change_password_current_pwd_hint": { "type": "text", "placeholders": { } }, - "change_password_current_pwd_incorrect": "A senha inserida estĂĄ incorreta", + "change_password_current_pwd_incorrect": "Det angivna lösenordet var felaktigt", "@change_password_current_pwd_incorrect": { "type": "text", "placeholders": { } }, - "change_password_new_pwd": "Nova senha", + "change_password_new_pwd": "Nytt lösenord", "@change_password_new_pwd": { "type": "text", "placeholders": { } }, - "change_password_new_pwd_hint": "Digite a sua nova senha", + "change_password_new_pwd_hint": "Ange ditt nya lösenord", "@change_password_new_pwd_hint": { "type": "text", "placeholders": { } }, - "change_password_new_pwd_error": "Por favor, certifique-se de que a senha tenha entre 10 e 100 caracteres", + "change_password_new_pwd_error": "VĂ€nligen se till att lösenordet Ă€r mellan 10 och 100 tecken lĂ„ngt", "@change_password_new_pwd_error": { "type": "text", "placeholders": { } }, - "change_password_save_text": "Salvar", + "change_password_save_text": "Spara", "@change_password_save_text": { "type": "text", "placeholders": { } }, - "change_password_save_success": "Tudo certo! Sua senha foi atualizada", + "change_password_save_success": "Allt klart! Ditt lösenord har uppdaterats", "@change_password_save_success": { "type": "text", "placeholders": { diff --git a/assets/i18n/pt-BR/community.arb b/assets/i18n/pt-BR/community.arb index a39f25e9c..ca388fb2e 100644 --- a/assets/i18n/pt-BR/community.arb +++ b/assets/i18n/pt-BR/community.arb @@ -1,89 +1,89 @@ { - "no": "NĂŁo", + "no": "Nej", "@no": { "type": "text", "placeholders": { } }, - "yes": "Sim", + "yes": "Ja", "@yes": { "type": "text", "placeholders": { } }, - "button_staff": "Equipe", + "button_staff": "Personal", "@button_staff": { "type": "text", "placeholders": { } }, - "button_rules": "Regras", + "button_rules": "Regler", "@button_rules": { "type": "text", "placeholders": { } }, - "community": "comunidade", + "community": "gemenskap", "@community": { "type": "text", "placeholders": { } }, - "communities": "comunidades", + "communities": "gemenskaper", "@communities": { "type": "text", "placeholders": { } }, - "type_public": "PĂșblica", + "type_public": "Offentlig", "@type_public": { "type": "text", "placeholders": { } }, - "type_private": "Privada", + "type_private": "Privat", "@type_private": { "type": "text", "placeholders": { } }, - "member_capitalized": "Membro", + "member_capitalized": "Medlem", "@member_capitalized": { "type": "text", "placeholders": { } }, - "members_capitalized": "Membros", + "members_capitalized": "Medlemmar", "@members_capitalized": { "type": "text", "placeholders": { } }, - "admin_desc": "Isso permitirĂĄ que o membro edite os detalhes da comunidade, administradores, moderadores e usuĂĄrios banidos.", + "admin_desc": "Detta kommer tillĂ„ta medlemmen att redigera gemenskapens information, administratörer, moderatorer och bannade anvĂ€ndare.", "@admin_desc": { "type": "text", "placeholders": { } }, - "confirmation_title": "Confirmação", + "confirmation_title": "BekrĂ€ftelse", "@confirmation_title": { "type": "text", "placeholders": { } }, - "admin_add_confirmation": "VocĂȘ tem certeza de que deseja adicionar @{username} como administrador da comunidade?", + "admin_add_confirmation": "Är du sĂ€ker pĂ„ att du vill lĂ€gga till @{username} som administratör för gemenskapen?", "@admin_add_confirmation": { "type": "text", "placeholders": { @@ -92,7 +92,7 @@ } } }, - "ban_confirmation": "VocĂȘ tem certeza de que deseja banir @{username}?", + "ban_confirmation": "Är du sĂ€ker pĂ„ att du vill banna @{username}?", "@ban_confirmation": { "type": "text", "placeholders": { @@ -101,14 +101,14 @@ } } }, - "ban_desc": "Isso removerĂĄ o usuĂĄrio da comunidade e impedirĂĄ que ele entre novamente.", + "ban_desc": "Detta kommer ta bort anvĂ€ndaren frĂ„n gemenskapen och hindra dem frĂ„n att gĂ„ med igen.", "@ban_desc": { "type": "text", "placeholders": { } }, - "moderator_add_confirmation": "VocĂȘ tem certeza de que deseja adicionar @{username} como moderador da comunidade?", + "moderator_add_confirmation": "Är du sĂ€ker pĂ„ att du vill lĂ€gga till @{username} som gemenskapsmoderator?", "@moderator_add_confirmation": { "type": "text", "placeholders": { @@ -117,301 +117,301 @@ } } }, - "moderator_desc": "Isso permitirĂĄ que o membro edite os detalhes da comunidade, moderadores e usuĂĄrios banidos.", + "moderator_desc": "Detta kommer tillĂ„ta medlemmen att redigera gemenskapens information, moderatorer och bannade anvĂ€ndare.", "@moderator_desc": { "type": "text", "placeholders": { } }, - "moderators_you": "VocĂȘ", + "moderators_you": "Du", "@moderators_you": { "type": "text", "placeholders": { } }, - "moderators_title": "Moderadores", + "moderators_title": "Moderatorer", "@moderators_title": { "type": "text", "placeholders": { } }, - "leave_desc": "VocĂȘ nĂŁo poderĂĄ mais ver as publicaçÔes desta comunidade, nem publicar nela.", + "leave_desc": "Du kommer inte se dess inlĂ€gg i din tidslinje eller kunna skapa nya inlĂ€gg i den lĂ€ngre.", "@leave_desc": { "type": "text", "placeholders": { } }, - "leave_confirmation": "VocĂȘ tem certeza de que deseja sair da comunidade?", + "leave_confirmation": "Är du sĂ€ker pĂ„ att du vill lĂ€mna gemenskapen?", "@leave_confirmation": { "type": "text", "placeholders": { } }, - "moderator_resource_name": "moderador", + "moderator_resource_name": "moderator", "@moderator_resource_name": { "type": "text", "placeholders": { } }, - "moderators_resource_name": "moderadores", + "moderators_resource_name": "moderatorer", "@moderators_resource_name": { "type": "text", "placeholders": { } }, - "add_moderator_title": "Adicionar moderador", + "add_moderator_title": "LĂ€gg till moderator", "@add_moderator_title": { "type": "text", "placeholders": { } }, - "delete_confirmation": "VocĂȘ tem certeza de que deseja excluir a comunidade?", + "delete_confirmation": "Är du sĂ€ker pĂ„ att du vill ta bort gemenskapen?", "@delete_confirmation": { "type": "text", "placeholders": { } }, - "delete_desc": "VocĂȘ nĂŁo poderĂĄ mais ver as publicaçÔes desta comunidade, nem publicar nela.", + "delete_desc": "Du kommer inte se dess inlĂ€gg i din tidslinje eller kunna skapa nya inlĂ€gg i den lĂ€ngre.", "@delete_desc": { "type": "text", "placeholders": { } }, - "actions_manage_text": "Gerenciar", + "actions_manage_text": "Hantera", "@actions_manage_text": { "type": "text", "placeholders": { } }, - "manage_title": "Gerenciar comunidade", + "manage_title": "Hantera gemenskap", "@manage_title": { "type": "text", "placeholders": { } }, - "manage_details_title": "Detalhes", + "manage_details_title": "Detaljer", "@manage_details_title": { "type": "text", "placeholders": { } }, - "manage_details_desc": "Alterar tĂ­tulo, nome, avatar, foto de capa e mais.", + "manage_details_desc": "Ändra titel, namn, avatar, omslagsfoto och mer.", "@manage_details_desc": { "type": "text", "placeholders": { } }, - "manage_admins_title": "Administradores", + "manage_admins_title": "Administratörer", "@manage_admins_title": { "type": "text", "placeholders": { } }, - "manage_admins_desc": "Ver, adicionar e remover administradores.", + "manage_admins_desc": "Se, lĂ€gg till och ta bort administratörer.", "@manage_admins_desc": { "type": "text", "placeholders": { } }, - "manage_mods_title": "Moderadores", + "manage_mods_title": "Moderatorer", "@manage_mods_title": { "type": "text", "placeholders": { } }, - "manage_mods_desc": "Ver, adicionar e remover moderadores.", + "manage_mods_desc": "Se, lĂ€gg till och ta bort moderatorer.", "@manage_mods_desc": { "type": "text", "placeholders": { } }, - "manage_banned_title": "UsuĂĄrios banidos", + "manage_banned_title": "Bannade anvĂ€ndare", "@manage_banned_title": { "type": "text", "placeholders": { } }, - "manage_banned_desc": "Ver, adicionar e remover usuĂĄrios banidos.", + "manage_banned_desc": "Se, lĂ€gg till och ta bort bannade anvĂ€ndare.", "@manage_banned_desc": { "type": "text", "placeholders": { } }, - "manage_mod_reports_title": "Reportado Ă  moderação", + "manage_mod_reports_title": "AnmĂ€lningar", "@manage_mod_reports_title": { "type": "text", "placeholders": { } }, - "manage_mod_reports_desc": "Revise as denĂșncias Ă  moderação da comunidade.", + "manage_mod_reports_desc": "Granska gemenskapens anmĂ€lningar.", "@manage_mod_reports_desc": { "type": "text", "placeholders": { } }, - "manage_closed_posts_title": "Posts fechados", + "manage_closed_posts_title": "StĂ€ngda inlĂ€gg", "@manage_closed_posts_title": { "type": "text", "placeholders": { } }, - "manage_closed_posts_desc": "Ver e gerenciar os posts fechados", + "manage_closed_posts_desc": "Se och hantera stĂ€ngda inlĂ€gg", "@manage_closed_posts_desc": { "type": "text", "placeholders": { } }, - "manage_invite_title": "Convidar pessoas", + "manage_invite_title": "Bjud in folk", "@manage_invite_title": { "type": "text", "placeholders": { } }, - "manage_invite_desc": "Convide suas conexĂ”es e seguidores para se juntar Ă  comunidade.", + "manage_invite_desc": "Bjud in dina kontakter och följare till gemenskapen.", "@manage_invite_desc": { "type": "text", "placeholders": { } }, - "manage_delete_title": "Excluir comunidade", + "manage_delete_title": "Ta bort gemenskapen", "@manage_delete_title": { "type": "text", "placeholders": { } }, - "manage_delete_desc": "Excluir a comunidade, para sempre.", + "manage_delete_desc": "Ta bort gemenskapen, för alltid.", "@manage_delete_desc": { "type": "text", "placeholders": { } }, - "manage_leave_title": "Sair da comunidade", + "manage_leave_title": "LĂ€mna gemenskapen", "@manage_leave_title": { "type": "text", "placeholders": { } }, - "manage_leave_desc": "Sair da comunidade.", + "manage_leave_desc": "LĂ€mna gemenskapen.", "@manage_leave_desc": { "type": "text", "placeholders": { } }, - "manage_add_favourite": "Adicionar a comunidade Ă s suas favoritas", + "manage_add_favourite": "LĂ€gg till gemenskapen bland dina favoriter", "@manage_add_favourite": { "type": "text", "placeholders": { } }, - "manage_remove_favourite": "Remover a comunidade de suas favoritas", + "manage_remove_favourite": "Ta bort gemenskapen frĂ„n dina favoriter", "@manage_remove_favourite": { "type": "text", "placeholders": { } }, - "is_private": "Essa comunidade Ă© privada.", + "is_private": "Den hĂ€r gemenskapen Ă€r privat.", "@is_private": { "type": "text", "placeholders": { } }, - "invited_by_member": "VocĂȘ deve ser convidado(a) por um membro.", + "invited_by_member": "Du mĂ„ste bli inbjuden av en medlem.", "@invited_by_member": { "type": "text", "placeholders": { } }, - "invited_by_moderator": "VocĂȘ deve ser convidado(a) por um moderador.", + "invited_by_moderator": "Du mĂ„ste bli inbjuden av en moderator.", "@invited_by_moderator": { "type": "text", "placeholders": { } }, - "refreshing": "Atualizando a comunidade", + "refreshing": "Uppdaterar gemenskap", "@refreshing": { "type": "text", "placeholders": { } }, - "posts": "Posts", + "posts": "InlĂ€gg", "@posts": { "type": "text", "placeholders": { } }, - "about": "Sobre", + "about": "Om", "@about": { "type": "text", "placeholders": { } }, - "category": "categoria.", + "category": "kategori.", "@category": { "type": "text", "placeholders": { } }, - "categories": "categorias.", + "categories": "kategorier.", "@categories": { "type": "text", "placeholders": { } }, - "add_administrators_title": "Adicionar administrador.", + "add_administrators_title": "LĂ€gg till administratör.", "@add_administrators_title": { "type": "text", "placeholders": { } }, - "community_members": "Membros da comunidade", + "community_members": "Gemenskapens medlemmar", "@community_members": { "type": "text", "placeholders": { } }, - "member": "membro", + "member": "medlem", "@member": { "description": "Currently not used in app, reserved for potential use. Could be used as: Showing 1 member", "type": "text", @@ -419,7 +419,7 @@ } }, - "member_plural": "membros", + "member_plural": "medlemmar", "@member_plural": { "description": "See all members ,Search all members", "type": "text", @@ -427,14 +427,14 @@ } }, - "administrators_title": "Administradores", + "administrators_title": "Administratörer", "@administrators_title": { "type": "text", "placeholders": { } }, - "administrator_text": "administrador", + "administrator_text": "administratör", "@administrator_text": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 administrator", "type": "text", @@ -442,7 +442,7 @@ } }, - "administrator_plural": "administradores", + "administrator_plural": "administratörer", "@administrator_plural": { "description": "Egs. Search administrators, See list_search_text in user_search.arb ", "type": "text", @@ -450,21 +450,21 @@ } }, - "administrator_you": "VocĂȘ", + "administrator_you": "Du", "@administrator_you": { "type": "text", "placeholders": { } }, - "user_you_text": "VocĂȘ", + "user_you_text": "Du", "@user_you_text": { "type": "text", "placeholders": { } }, - "pick_upto_max": "Escolha atĂ© {max} categorias", + "pick_upto_max": "VĂ€lj upp till {max} kategorier", "@pick_upto_max": { "type": "text", "placeholders": { @@ -473,7 +473,7 @@ } } }, - "pick_atleast_min_category": "VocĂȘ deve escolher pelo menos {min} categoria.", + "pick_atleast_min_category": "Du mĂ„ste vĂ€lja Ă„tminstone {min} kategori.", "@pick_atleast_min_category": { "description": "You must pick at least 1 category", "type": "text", @@ -483,7 +483,7 @@ } } }, - "pick_atleast_min_categories": "VocĂȘ deve escolher pelo menos {min} categorias.", + "pick_atleast_min_categories": "Du mĂ„ste vĂ€lja Ă„tminstone {min} kategorier.", "@pick_atleast_min_categories": { "description": "Eg. Variable min will be 3-5. You must pick at least (3-5) categories", "type": "text", @@ -493,21 +493,21 @@ } } }, - "ban_user_title": "Banir usuĂĄrio", + "ban_user_title": "Banna anvĂ€ndare", "@ban_user_title": { "type": "text", "placeholders": { } }, - "banned_users_title": "UsuĂĄrios banidos", + "banned_users_title": "Bannade anvĂ€ndare", "@banned_users_title": { "type": "text", "placeholders": { } }, - "banned_user_text": "usuĂĄrio banido", + "banned_user_text": "bannad anvĂ€ndare", "@banned_user_text": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 banned user", "type": "text", @@ -515,7 +515,7 @@ } }, - "banned_users_text": "usuĂĄrios banidos", + "banned_users_text": "bannade anvĂ€ndare", "@banned_users_text": { "description": "Egs. Search banned users, See list_search_text in user_search.arb ", "type": "text", @@ -523,14 +523,14 @@ } }, - "favorites_title": "Favoritas", + "favorites_title": "Favoriter", "@favorites_title": { "type": "text", "placeholders": { } }, - "favorite_community": "comunidade favorita", + "favorite_community": "favoritgemenskap", "@favorite_community": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 favorite community", "type": "text", @@ -538,7 +538,7 @@ } }, - "favorite_communities": "comunidades favoritas", + "favorite_communities": "favoritgemenskaper", "@favorite_communities": { "description": "Egs. Search favorite communities, See list_search_text in user_search.arb ", "type": "text", @@ -546,14 +546,14 @@ } }, - "administrated_title": "Administradas", + "administrated_title": "Administrerade", "@administrated_title": { "type": "text", "placeholders": { } }, - "administrated_community": "comunidade administrada", + "administrated_community": "administrerad gemenskap", "@administrated_community": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 administrated community", "type": "text", @@ -561,7 +561,7 @@ } }, - "administrated_communities": "comunidades administradas", + "administrated_communities": "administrerade gemenskaper", "@administrated_communities": { "description": "Egs. Search administrated communities, See list_search_text in user_search.arb ", "type": "text", @@ -569,14 +569,14 @@ } }, - "moderated_title": "Moderadas", + "moderated_title": "Modererade", "@moderated_title": { "type": "text", "placeholders": { } }, - "moderated_community": "comunidade moderada", + "moderated_community": "modererad gemenskap", "@moderated_community": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 moderated community", "type": "text", @@ -584,7 +584,7 @@ } }, - "moderated_communities": "comunidades moderadas", + "moderated_communities": "modererade gemenskaper", "@moderated_communities": { "description": "Egs. Search moderated communities, See list_search_text in user_search.arb ", "type": "text", @@ -592,14 +592,14 @@ } }, - "joined_title": "Ingressadas", + "joined_title": "Medlem i", "@joined_title": { "type": "text", "placeholders": { } }, - "joined_community": "comunidade ingressada", + "joined_community": "gemenskap du Ă€r medlem i", "@joined_community": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 joined community", "type": "text", @@ -607,7 +607,7 @@ } }, - "joined_communities": "comunidades ingressadas", + "joined_communities": "gemenskaper du Ă€r medlem i", "@joined_communities": { "description": "Egs. Search joined communities, See list_search_text in user_search.arb ", "type": "text", @@ -615,42 +615,42 @@ } }, - "join_communities_desc": "Entre nas comunidades para ver esta aba ganhar vida!", + "join_communities_desc": "GĂ„ med i gemenskaper för att se den hĂ€r fliken komma till liv!", "@join_communities_desc": { "type": "text", "placeholders": { } }, - "refresh_text": "Atualizar", + "refresh_text": "Uppdatera", "@refresh_text": { "type": "text", "placeholders": { } }, - "trending_none_found": "Nenhuma comunidade em alta encontrada. Tente novamente em alguns minutos.", + "trending_none_found": "Inga trendiga gemenskaper hittades. Försök igen om nĂ„gra minuter.", "@trending_none_found": { "type": "text", "placeholders": { } }, - "trending_refresh": "Atualizar", + "trending_refresh": "Uppdatera", "@trending_refresh": { "type": "text", "placeholders": { } }, - "trending_in_all": "Em alta em todas as categorias", + "trending_in_all": "Trendiga frĂ„n alla kategorier", "@trending_in_all": { "type": "text", "placeholders": { } }, - "trending_in_category": "Em alta em {categoryName}", + "trending_in_category": "Trendiga i {categoryName}", "@trending_in_category": { "type": "text", "placeholders": { @@ -659,42 +659,42 @@ } } }, - "communities_title": "Comunidades", + "communities_title": "Gemenskaper", "@communities_title": { "type": "text", "placeholders": { } }, - "communities_no_category_found": "Nenhuma categoria encontrada. Por favor, tente novamente em alguns minutos.", + "communities_no_category_found": "Inga kategorier hittades. VĂ€nligen försök igen om nĂ„gra minuter.", "@communities_no_category_found": { "type": "text", "placeholders": { } }, - "communities_refresh_text": "Atualizar", + "communities_refresh_text": "Uppdatera", "@communities_refresh_text": { "type": "text", "placeholders": { } }, - "communities_all_text": "Todas", + "communities_all_text": "Alla", "@communities_all_text": { "type": "text", "placeholders": { } }, - "invite_to_community_title": "Convidar para a comunidade", + "invite_to_community_title": "Bjud in till gemenskapen", "@invite_to_community_title": { "type": "text", "placeholders": { } }, - "invite_to_community_resource_singular": "conexĂŁo ou seguidor", + "invite_to_community_resource_singular": "kontakt eller följare", "@invite_to_community_resource_singular": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 connection or follower", "type": "text", @@ -702,7 +702,7 @@ } }, - "invite_to_community_resource_plural": "conexĂ”es e seguidores", + "invite_to_community_resource_plural": "kontakter och följare", "@invite_to_community_resource_plural": { "description": "Egs. Search connections and followers, See list_search_text in user_search.arb ", "type": "text", @@ -710,49 +710,49 @@ } }, - "favorite_action": "Favoritar comunidade", + "favorite_action": "Markera gemenskap som favorit", "@favorite_action": { "type": "text", "placeholders": { } }, - "unfavorite_action": "Desfavoritar comunidade", + "unfavorite_action": "Ta bort gemenskap frĂ„n favoriter", "@unfavorite_action": { "type": "text", "placeholders": { } }, - "save_community_label_title": "TĂ­tulo", + "save_community_label_title": "Titel", "@save_community_label_title": { "type": "text", "placeholders": { } }, - "save_community_label_title_hint_text": "ex: Viagem, Fotografia, Jogos.", + "save_community_label_title_hint_text": "t. ex. Resor, Fotografering, Datorspel.", "@save_community_label_title_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_title": "Nome", + "save_community_name_title": "Namn", "@save_community_name_title": { "type": "text", "placeholders": { } }, - "save_community_name_title_hint_text": " ex: viagem, fotografia, jogos.", + "save_community_name_title_hint_text": " t. ex. resor, fotografering, datorspel.", "@save_community_name_title_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_taken": "O nome de comunidade '{takenName}' jĂĄ estĂĄ em uso", + "save_community_name_taken": "Gemenskapsnamnet '{takenName}' Ă€r upptaget", "@save_community_name_taken": { "type": "text", "placeholders": { @@ -761,203 +761,203 @@ } } }, - "save_community_name_label_color": "Cor", + "save_community_name_label_color": "FĂ€rg", "@save_community_name_label_color": { "type": "text", "placeholders": { } }, - "save_community_name_label_color_hint_text": "(Toque para alterar)", + "save_community_name_label_color_hint_text": "(Tryck för att Ă€ndra)", "@save_community_name_label_color_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_label_type": "Tipo", + "save_community_name_label_type": "Typ", "@save_community_name_label_type": { "type": "text", "placeholders": { } }, - "save_community_name_label_type_hint_text": "(Toque para alterar)", + "save_community_name_label_type_hint_text": "(Tryck för att Ă€ndra)", "@save_community_name_label_type_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_member_invites": "Convites de membros", + "save_community_name_member_invites": "Medlemsinbjudningar", "@save_community_name_member_invites": { "type": "text", "placeholders": { } }, - "save_community_name_member_invites_subtitle": "Membros podem convidar pessoas para a comunidade", + "save_community_name_member_invites_subtitle": "Medlemmar kan bjuda in folk till gemenskapen", "@save_community_name_member_invites_subtitle": { "type": "text", "placeholders": { } }, - "save_community_name_category": "Categoria", + "save_community_name_category": "Kategori", "@save_community_name_category": { "type": "text", "placeholders": { } }, - "save_community_name_label_desc_optional": "Descrição · Opcional", + "save_community_name_label_desc_optional": "Beskrivning · Valfri", "@save_community_name_label_desc_optional": { "type": "text", "placeholders": { } }, - "save_community_name_label_desc_optional_hint_text": "Sobre o que Ă© a sua comunidade?", + "save_community_name_label_desc_optional_hint_text": "Vad handlar din gemenskap om?", "@save_community_name_label_desc_optional_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_label_rules_optional": "Regras · Opcional", + "save_community_name_label_rules_optional": "Regler · Valfritt", "@save_community_name_label_rules_optional": { "type": "text", "placeholders": { } }, - "save_community_name_label_rules_optional_hint_text": "HĂĄ algo que vocĂȘ gostaria que seus usuĂĄrios soubessem?", + "save_community_name_label_rules_optional_hint_text": "Finns det nĂ„got som du vill att dina anvĂ€ndare kĂ€nner till?", "@save_community_name_label_rules_optional_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_label_member_adjective": "Adjetivo para membro · Opcional", + "save_community_name_label_member_adjective": "Medlem-adjektiv · Valfritt", "@save_community_name_label_member_adjective": { "type": "text", "placeholders": { } }, - "save_community_name_label_member_adjective_hint_text": "ex: viajante, fotĂłgrafo, gamer.", + "save_community_name_label_member_adjective_hint_text": "t. ex. resenĂ€r, fotograf, gamer.", "@save_community_name_label_member_adjective_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_label_members_adjective": "Adjetivo para membros · Opcional", + "save_community_name_label_members_adjective": "Medlemmar-adjektiv · Valfritt", "@save_community_name_label_members_adjective": { "type": "text", "placeholders": { } }, - "save_community_name_label_members_adjective_hint_text": "ex: viajantes, fotĂłgrafos, gamers.", + "save_community_name_label_members_adjective_hint_text": "t. ex. resenĂ€rer, fotografer, gamers.", "@save_community_name_label_members_adjective_hint_text": { "type": "text", "placeholders": { } }, - "save_community_edit_community": "Editar comunidade", + "save_community_edit_community": "Redigera gemenskap", "@save_community_edit_community": { "type": "text", "placeholders": { } }, - "save_community_create_community": "Criar comunidade", + "save_community_create_community": "Skapa gemenskap", "@save_community_create_community": { "type": "text", "placeholders": { } }, - "save_community_save_text": "Salvar", + "save_community_save_text": "Spara", "@save_community_save_text": { "type": "text", "placeholders": { } }, - "save_community_create_text": "Criar", + "save_community_create_text": "Skapa", "@save_community_create_text": { "type": "text", "placeholders": { } }, - "actions_invite_people_title": "Convide pessoas para a comunidade", + "actions_invite_people_title": "Bjud in folk till gemenskapen", "@actions_invite_people_title": { "type": "text", "placeholders": { } }, - "join_community": "Entrar", + "join_community": "GĂ„ med", "@join_community": { "type": "text", "placeholders": { } }, - "leave_community": "Sair", + "leave_community": "LĂ€mna", "@leave_community": { "type": "text", "placeholders": { } }, - "community_staff": "Equipe da comunidade", + "community_staff": "Gemenskapens personal", "@community_staff": { "type": "text", "placeholders": { } }, - "post_singular": "post", + "post_singular": "inlĂ€gg", "@post_singular": { "type": "text", "placeholders": { } }, - "post_plural": "posts", + "post_plural": "inlĂ€gg", "@post_plural": { "type": "text", "placeholders": { } }, - "rules_title": "Regras da comunidade", + "rules_title": "Gemenskapens regler", "@rules_title": { "type": "text", "placeholders": { } }, - "rules_text": "Regras", + "rules_text": "Regler", "@rules_text": { "type": "text", "placeholders": { } }, - "name_characters_error": "O nome sĂł pode conter caracteres alfanumĂ©ricos e underlines (_).", + "name_characters_error": "Ett namn kan bara innehĂ„lla alfanumeriska tecken och understreck.", "@name_characters_error": { "type": "text", "placeholders": { } }, - "name_range_error": "O nome nĂŁo pode ser maior que {maxLength} caracteres.", + "name_range_error": "Namnet fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@name_range_error": { "type": "text", "placeholders": { @@ -966,14 +966,14 @@ } } }, - "name_empty_error": "O nome nĂŁo pode ficar vazio.", + "name_empty_error": "Du mĂ„ste ange ett namn.", "@name_empty_error": { "type": "text", "placeholders": { } }, - "title_range_error": "O tĂ­tulo nĂŁo pode ser maior que {maxLength} caracteres.", + "title_range_error": "Titeln fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@title_range_error": { "type": "text", "placeholders": { @@ -982,14 +982,14 @@ } } }, - "title_empty_error": "O tĂ­tulo nĂŁo pode ficar vazio.", + "title_empty_error": "Du mĂ„ste ange en titel.", "@title_empty_error": { "type": "text", "placeholders": { } }, - "rules_range_error": "As regras nĂŁo podem ser maiores que {maxLength} caracteres.", + "rules_range_error": "Reglerna fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@rules_range_error": { "type": "text", "placeholders": { @@ -998,14 +998,14 @@ } } }, - "rules_empty_error": "As regras nĂŁo podem ficar vazias.", + "rules_empty_error": "RegelfĂ€ltet kan inte vara tomt.", "@rules_empty_error": { "type": "text", "placeholders": { } }, - "description_range_error": "A descrição nĂŁo pode ser maior que {maxLength} caracteres.", + "description_range_error": "Beskrivningen kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@description_range_error": { "type": "text", "placeholders": { @@ -1014,7 +1014,7 @@ } } }, - "adjectives_range_error": "Os adjetivos nĂŁo podem ser mais longos que {maxLength} caracteres.", + "adjectives_range_error": "Adjektiv fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@adjectives_range_error": { "description": "This refers to the customisable adjectives assigned to community members,eg. 1k travellers,5k photographers", "type": "text", 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..5291c367d --- /dev/null +++ b/assets/i18n/pt-BR/contextual_account_search_box.arb @@ -0,0 +1,10 @@ +{ + "suggestions": "Förslag", + "@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/drawer.arb b/assets/i18n/pt-BR/drawer.arb index b3ddcd3e8..dae115338 100644 --- a/assets/i18n/pt-BR/drawer.arb +++ b/assets/i18n/pt-BR/drawer.arb @@ -1,159 +1,159 @@ { - "menu_title": "Menu", + "menu_title": "Meny", "@menu_title": { "type": "text", "placeholders": { } }, - "main_title": "Minha Okuna", + "main_title": "Mitt Okuna", "@main_title": { "type": "text", "placeholders": { } }, - "my_circles": "Meus cĂ­rculos", + "my_circles": "Mina cirklar", "@my_circles": { "type": "text", "placeholders": { } }, - "my_lists": "Minhas listas", + "my_lists": "Mina listor", "@my_lists": { "type": "text", "placeholders": { } }, - "my_followers": "Meus seguidores", + "my_followers": "Mina följare", "@my_followers": { "type": "text", "placeholders": { } }, - "my_following": "Meus seguidos", + "my_following": "Mitt följande", "@my_following": { "type": "text", "placeholders": { } }, - "my_invites": "Meus convites", + "my_invites": "Mina inbjudningar", "@my_invites": { "type": "text", "placeholders": { } }, - "my_pending_mod_tasks": "Minhas tarefas de moderação pendentes", + "my_pending_mod_tasks": "Mina vĂ€ntande modereringsuppgifter", "@my_pending_mod_tasks": { "type": "text", "placeholders": { } }, - "my_mod_penalties": "Minhas penalidades", + "my_mod_penalties": "Mina modereringsstraff", "@my_mod_penalties": { "type": "text", "placeholders": { } }, - "app_account_text": "Aplicativo & Conta", + "app_account_text": "App & Konto", "@app_account_text": { "type": "text", "placeholders": { } }, - "themes": "Temas", + "themes": "Teman", "@themes": { "type": "text", "placeholders": { } }, - "global_moderation": "Moderação global", + "global_moderation": "Global moderering", "@global_moderation": { "type": "text", "placeholders": { } }, - "profile": "Perfil", + "profile": "Profil", "@profile": { "type": "text", "placeholders": { } }, - "connections": "Minhas conexĂ”es", + "connections": "Mina kontakter", "@connections": { "type": "text", "placeholders": { } }, - "lists": "Minhas listas", + "lists": "Mina listor", "@lists": { "type": "text", "placeholders": { } }, - "settings": "ConfiguraçÔes", + "settings": "InstĂ€llningar", "@settings": { "type": "text", "placeholders": { } }, - "application_settings": "ConfiguraçÔes do aplicativo", + "application_settings": "PrograminstĂ€llningar", "@application_settings": { "type": "text", "placeholders": { } }, - "account_settings": "ConfiguraçÔes da conta", + "account_settings": "KontoinstĂ€llningar", "@account_settings": { "type": "text", "placeholders": { } }, - "account_settings_change_email": "Alterar Email", + "account_settings_change_email": "Ändra e-post", "@account_settings_change_email": { "type": "text", "placeholders": { } }, - "account_settings_change_password": "Alterar Senha", + "account_settings_change_password": "Ändra lösenord", "@account_settings_change_password": { "type": "text", "placeholders": { } }, - "account_settings_notifications": "NotificaçÔes", + "account_settings_notifications": "Aviseringar", "@account_settings_notifications": { "type": "text", "placeholders": { } }, - "account_settings_language_text": "Idioma", + "account_settings_language_text": "SprĂ„k", "@account_settings_language_text": { "type": "text", "placeholders": { } }, - "account_settings_language": "Idioma ({currentUserLanguage})", + "account_settings_language": "SprĂ„k ({currentUserLanguage})", "@account_settings_language": { "type": "text", "placeholders": { @@ -162,140 +162,140 @@ } } }, - "account_settings_blocked_users": "UsuĂĄrios bloqueados", + "account_settings_blocked_users": "Blockerade anvĂ€ndare", "@account_settings_blocked_users": { "type": "text", "placeholders": { } }, - "account_settings_delete_account": "Excluir a minha conta", + "account_settings_delete_account": "Ta bort konto", "@account_settings_delete_account": { "type": "text", "placeholders": { } }, - "help": "Suporte e Feedback", + "help": "HjĂ€lp och feedback", "@help": { "type": "text", "placeholders": { } }, - "customize": "Personalizar", + "customize": "Anpassa", "@customize": { "type": "text", "placeholders": { } }, - "logout": "Sair", + "logout": "Logga ut", "@logout": { "type": "text", "placeholders": { } }, - "useful_links_title": "Links Ășteis", + "useful_links_title": "AnvĂ€ndbara lĂ€nkar", "@useful_links_title": { "type": "text", "placeholders": { } }, - "useful_links_guidelines": "Diretrizes da Okuna", + "useful_links_guidelines": "Okunas riktlinjer", "@useful_links_guidelines": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_desc": "As diretrizes que todos esperamos seguir para uma coexistĂȘncia saudĂĄvel e amigĂĄvel.", + "useful_links_guidelines_desc": "Riktlinjerna vi alla förvĂ€ntas att följa för en hĂ€lsosam och vĂ€nlig samvaro.", "@useful_links_guidelines_desc": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_github": "Projeto no Github", + "useful_links_guidelines_github": "Projekttavla pĂ„ Github", "@useful_links_guidelines_github": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_github_desc": "DĂȘ uma olhada no que estamos trabalhando atualmente", + "useful_links_guidelines_github_desc": "Ta en titt pĂ„ vad vi arbetar pĂ„ just nu", "@useful_links_guidelines_github_desc": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_feature_requests": "SugestĂ”es de recursos", + "useful_links_guidelines_feature_requests": "Funktionsförslag", "@useful_links_guidelines_feature_requests": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_feature_requests_desc": "Sugerir um recurso ou votar em sugestĂ”es existentes", + "useful_links_guidelines_feature_requests_desc": "FöreslĂ„ en ny funktion eller rösta för existerande förslag", "@useful_links_guidelines_feature_requests_desc": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_bug_tracker": "Rastreador de bugs", + "useful_links_guidelines_bug_tracker": "Felrapportering", "@useful_links_guidelines_bug_tracker": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_bug_tracker_desc": "Reportar um bug ou votar em bugs existentes", + "useful_links_guidelines_bug_tracker_desc": "Rapportera ett fel eller rösta för existerande rapporter", "@useful_links_guidelines_bug_tracker_desc": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_handbook": "Manual da Okuna", + "useful_links_guidelines_handbook": "Okunas handbok", "@useful_links_guidelines_handbook": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_handbook_desc": "Um livro com tudo o que hĂĄ para saber sobre usar a plataforma", + "useful_links_guidelines_handbook_desc": "En bok med allt du behöver veta om att anvĂ€nda plattformen", "@useful_links_guidelines_handbook_desc": { "type": "text", "placeholders": { } }, - "useful_links_support": "Apoie a Okuna", + "useful_links_support": "Stöd Okuna", "@useful_links_support": { "type": "text", "placeholders": { } }, - "useful_links_support_desc": "Encontre uma maneira de nos apoiar em nossa jornada!", + "useful_links_support_desc": "Hitta ett sĂ€tt pĂ„ vilket du kan hjĂ€lpa oss under vĂ„r resa!", "@useful_links_support_desc": { "type": "text", "placeholders": { } }, - "useful_links_slack_channel": "Canal da comunidade no Slack", + "useful_links_slack_channel": "Gemenskapens Slack-kanal", "@useful_links_slack_channel": { "type": "text", "placeholders": { } }, - "useful_links_slack_channel_desc": "Um lugar para discutir tudo sobre a Okuna", + "useful_links_slack_channel_desc": "En plats för diskussioner om allt om Okuna", "@useful_links_slack_channel_desc": { "type": "text", "placeholders": { diff --git a/assets/i18n/pt-BR/error.arb b/assets/i18n/pt-BR/error.arb index 63f691a4e..d368cb835 100644 --- a/assets/i18n/pt-BR/error.arb +++ b/assets/i18n/pt-BR/error.arb @@ -1,12 +1,12 @@ { - "unknown_error": "Erro desconhecido", + "unknown_error": "OkĂ€nt fel", "@unknown_error": { "type": "text", "placeholders": { } }, - "no_internet_connection": "Sem conexĂŁo com a internet", + "no_internet_connection": "Ingen internetuppkoppling", "@no_internet_connection": { "type": "text", "placeholders": { diff --git a/assets/i18n/pt-BR/moderation.arb b/assets/i18n/pt-BR/moderation.arb index 8e4f23cd3..6d9c87088 100644 --- a/assets/i18n/pt-BR/moderation.arb +++ b/assets/i18n/pt-BR/moderation.arb @@ -1,33 +1,33 @@ { - "filters_title": "Filtros de moderação", + "filters_title": "Modereringsfilter", "@filters_title": { "type": "text", "placeholders": { } }, - "filters_reset": "Redefinir", + "filters_reset": "ÅterstĂ€ll", "@filters_reset": { "type": "text", "placeholders": { } }, - "filters_verified": "Verificado", + "filters_verified": "Verifierad", "@filters_verified": { "type": "text", "placeholders": { } }, - "filters_apply": "Aplicar filtros", + "filters_apply": "Applicera filter", "@filters_apply": { "type": "text", "placeholders": { } }, - "filters_type": "Tipo", + "filters_type": "Typ", "@filters_type": { "type": "text", "placeholders": { @@ -41,91 +41,91 @@ } }, - "filters_other": "Outros", + "filters_other": "Övrigt", "@filters_other": { "type": "text", "placeholders": { } }, - "actions_review": "Revisar", + "actions_review": "Granska", "@actions_review": { "type": "text", "placeholders": { } }, - "actions_chat_with_team": "Converse com a equipe", + "actions_chat_with_team": "Chatta med teamet", "@actions_chat_with_team": { "type": "text", "placeholders": { } }, - "update_category_title": "Atualizar categoria", + "update_category_title": "Uppdatera kategori", "@update_category_title": { "type": "text", "placeholders": { } }, - "update_category_save": "Salvar", + "update_category_save": "Spara", "@update_category_save": { "type": "text", "placeholders": { } }, - "update_description_save": "Salvar", + "update_description_save": "Spara", "@update_description_save": { "type": "text", "placeholders": { } }, - "update_description_title": "Editar descrição", + "update_description_title": "Redigera beskrivning", "@update_description_title": { "type": "text", "placeholders": { } }, - "update_description_report_desc": "Descrição da denĂșncia", + "update_description_report_desc": "AnmĂ€l beskrivning", "@update_description_report_desc": { "type": "text", "placeholders": { } }, - "update_description_report_hint_text": "ex: O motivo da denĂșncia Ă©...", + "update_description_report_hint_text": "t. ex. anmĂ€lan var...", "@update_description_report_hint_text": { "type": "text", "placeholders": { } }, - "update_status_save": "Salvar", + "update_status_save": "Spara", "@update_status_save": { "type": "text", "placeholders": { } }, - "update_status_title": "Atualizar status", + "update_status_title": "Uppdatera status", "@update_status_title": { "type": "text", "placeholders": { } }, - "community_review_title": "Revisar objeto moderado", + "community_review_title": "Granska modererat objekt", "@community_review_title": { "type": "text", "placeholders": { } }, - "moderated_object_title": "Objeto", + "moderated_object_title": "Objekt", "@moderated_object_title": { "type": "text", "placeholders": { @@ -139,28 +139,28 @@ } }, - "moderated_object_reports_count": "NĂșmero de denĂșncias", + "moderated_object_reports_count": "Antal anmĂ€lningar", "@moderated_object_reports_count": { "type": "text", "placeholders": { } }, - "moderated_object_verified_by_staff": "Verificado pela equipe da Okuna", + "moderated_object_verified_by_staff": "Verifierad av Okunas personal", "@moderated_object_verified_by_staff": { "type": "text", "placeholders": { } }, - "moderated_object_verified": "Verificado", + "moderated_object_verified": "Verifierad", "@moderated_object_verified": { "type": "text", "placeholders": { } }, - "moderated_object_true_text": "Verdadeiro", + "moderated_object_true_text": "Sant", "@moderated_object_true_text": { "description": "Eg. Moderated object verified by staff? true \/ false", "type": "text", @@ -168,7 +168,7 @@ } }, - "moderated_object_false_text": "Falso", + "moderated_object_false_text": "Falskt", "@moderated_object_false_text": { "description": "Eg. Moderated object verified by staff? true \/ false", "type": "text", @@ -176,259 +176,259 @@ } }, - "community_review_object": "Objeto", + "community_review_object": "Objekt", "@community_review_object": { "type": "text", "placeholders": { } }, - "community_review_approve": "Aprovar", + "community_review_approve": "GodkĂ€nn", "@community_review_approve": { "type": "text", "placeholders": { } }, - "community_review_reject": "rejeitar", + "community_review_reject": "avvisa", "@community_review_reject": { "type": "text", "placeholders": { } }, - "community_review_item_verified": "Este item foi verificado", + "community_review_item_verified": "Den hĂ€r anmĂ€lan har verifierats", "@community_review_item_verified": { "type": "text", "placeholders": { } }, - "global_review_title": "Revisar objeto moderado", + "global_review_title": "Granska modererat objekt", "@global_review_title": { "type": "text", "placeholders": { } }, - "global_review_object_text": "Objeto", + "global_review_object_text": "Objekt", "@global_review_object_text": { "type": "text", "placeholders": { } }, - "global_review_verify_text": "Verificar", + "global_review_verify_text": "Verifiera", "@global_review_verify_text": { "type": "text", "placeholders": { } }, - "global_review_unverify_text": "Desverificar", + "global_review_unverify_text": "Av-verifiera", "@global_review_unverify_text": { "type": "text", "placeholders": { } }, - "confirm_report_title": "Enviar denĂșncia", + "confirm_report_title": "Skicka anmĂ€lan", "@confirm_report_title": { "type": "text", "placeholders": { } }, - "confirm_report_provide_details": "VocĂȘ pode fornecer mais detalhes relevantes para a denĂșncia?", + "confirm_report_provide_details": "Kan du delge extra information som kan vara relevant för anmĂ€lan?", "@confirm_report_provide_details": { "type": "text", "placeholders": { } }, - "confirm_report_provide_optional_info": "(Opcional)", + "confirm_report_provide_optional_info": "(Valfritt)", "@confirm_report_provide_optional_info": { "type": "text", "placeholders": { } }, - "confirm_report_provide_optional_hint_text": "Digite aqui...", + "confirm_report_provide_optional_hint_text": "Skriv hĂ€r...", "@confirm_report_provide_optional_hint_text": { "type": "text", "placeholders": { } }, - "confirm_report_provide_happen_next": "Aqui estĂĄ o que acontecerĂĄ a seguir:", + "confirm_report_provide_happen_next": "Detta kommer hĂ€nda hĂ€rnĂ€st:", "@confirm_report_provide_happen_next": { "type": "text", "placeholders": { } }, - "confirm_report_provide_happen_next_desc": "- Sua denĂșncia serĂĄ enviada anonimamente. \n- Se vocĂȘ estiver denunciando uma publicação ou comentĂĄrio, a denĂșncia serĂĄ enviada Ă  equipe da Okuna e aos moderadores da comunidade (se aplicĂĄvel), e o conteĂșdo denunciado ficarĂĄ oculto do seu feed. \n- Se vocĂȘ estiver denunciando uma conta ou comunidade, a denĂșncia serĂĄ enviada para a equipe da Okuna. \n- Vamos analisar a denĂșncia e, se aprovada, o conteĂșdo serĂĄ excluĂ­do e as penalidades serĂŁo aplicadas Ă s pessoas envolvidas, desde uma suspensĂŁo temporĂĄria atĂ© a exclusĂŁo da conta, dependendo da gravidade da transgressĂŁo. \n- Se a denĂșncia for apenas uma tentativa de prejudicar um membro ou comunidade que nĂŁo cometeu a infração apontada por vocĂȘ, as penalidades serĂŁo aplicadas a vocĂȘ. \n", + "confirm_report_provide_happen_next_desc": "- 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", "@confirm_report_provide_happen_next_desc": { "type": "text", "placeholders": { } }, - "confirm_report_submit": "Eu entendo, envie.", + "confirm_report_submit": "Jag förstĂ„r, skicka.", "@confirm_report_submit": { "type": "text", "placeholders": { } }, - "confirm_report_user_reported": "UsuĂĄrio denunciado", + "confirm_report_user_reported": "AnvĂ€ndare anmĂ€ld", "@confirm_report_user_reported": { "type": "text", "placeholders": { } }, - "confirm_report_community_reported": "Comunidade denunciada", + "confirm_report_community_reported": "Gemenskap anmĂ€ld", "@confirm_report_community_reported": { "type": "text", "placeholders": { } }, - "confirm_report_post_reported": "Publicação denunciada", + "confirm_report_post_reported": "InlĂ€gg anmĂ€lt", "@confirm_report_post_reported": { "type": "text", "placeholders": { } }, - "confirm_report_post_comment_reported": "ComentĂĄrio denunciado", + "confirm_report_post_comment_reported": "InlĂ€ggskommentar anmĂ€ld", "@confirm_report_post_comment_reported": { "type": "text", "placeholders": { } }, - "confirm_report_item_reported": "Item denunciado", + "confirm_report_item_reported": "Objekt anmĂ€lt", "@confirm_report_item_reported": { "type": "text", "placeholders": { } }, - "community_moderated_objects": "Itens moderados por comunidades", + "community_moderated_objects": "Gemenskapens modererade objekt", "@community_moderated_objects": { "type": "text", "placeholders": { } }, - "globally_moderated_objects": "Itens moderados globalmente", + "globally_moderated_objects": "Globalt modererade objekt", "@globally_moderated_objects": { "type": "text", "placeholders": { } }, - "tap_to_retry": "Toque para tentar carregar os itens novamente", + "tap_to_retry": "Tryck för att försöka lĂ€sa in poster igen", "@tap_to_retry": { "type": "text", "placeholders": { } }, - "report_post_text": "Denunciar publicação", + "report_post_text": "AnmĂ€l inlĂ€gg", "@report_post_text": { "type": "text", "placeholders": { } }, - "you_have_reported_post_text": "VocĂȘ denunciou esta publicação", + "you_have_reported_post_text": "Du har anmĂ€lt det hĂ€r inlĂ€gget", "@you_have_reported_post_text": { "type": "text", "placeholders": { } }, - "report_account_text": "Denunciar conta", + "report_account_text": "AnmĂ€l konto", "@report_account_text": { "type": "text", "placeholders": { } }, - "you_have_reported_account_text": "VocĂȘ denunciou esta conta", + "you_have_reported_account_text": "Du har anmĂ€lt det hĂ€r kontot", "@you_have_reported_account_text": { "type": "text", "placeholders": { } }, - "report_community_text": "Denunciar comunidade", + "report_community_text": "AnmĂ€l gemenskap", "@report_community_text": { "type": "text", "placeholders": { } }, - "you_have_reported_community_text": "VocĂȘ denunciou esta comunidade", + "you_have_reported_community_text": "Du har anmĂ€lt den hĂ€r gemenskapen", "@you_have_reported_community_text": { "type": "text", "placeholders": { } }, - "report_comment_text": "Denunciar comentĂĄrio", + "report_comment_text": "AnmĂ€l kommentar", "@report_comment_text": { "type": "text", "placeholders": { } }, - "you_have_reported_comment_text": "VocĂȘ denunciou este comentĂĄrio", + "you_have_reported_comment_text": "Du har anmĂ€lt den hĂ€r kommentaren", "@you_have_reported_comment_text": { "type": "text", "placeholders": { } }, - "description_text": "Descrição", + "description_text": "Beskrivning", "@description_text": { "type": "text", "placeholders": { } }, - "no_description_text": "Sem descrição", + "no_description_text": "Ingen beskrivning", "@no_description_text": { "type": "text", "placeholders": { } }, - "category_text": "Categoria", + "category_text": "Kategori", "@category_text": { "type": "text", "placeholders": { } }, - "reporter_text": "Denunciante", + "reporter_text": "AnmĂ€lare", "@reporter_text": { "type": "text", "placeholders": { } }, - "reports_preview_title": "DenĂșncias", + "reports_preview_title": "AnmĂ€lningar", "@reports_preview_title": { "type": "text", "placeholders": { } }, - "reports_preview_resource_reports": "denĂșncias", + "reports_preview_resource_reports": "anmĂ€lningar", "@reports_preview_resource_reports": { "description": "Usage: See all reports..", "type": "text", @@ -436,7 +436,7 @@ } }, - "reports_see_all": "Ver todas as {resourceCount} {resourceName}", + "reports_see_all": "Visa alla {resourceCount} {resourceName}", "@reports_see_all": { "description": "Usage: See all 4 reports.", "type": "text", @@ -456,21 +456,21 @@ } }, - "my_moderation_tasks_title": "Tarefas de moderação pendentes", + "my_moderation_tasks_title": "VĂ€ntande modereringsuppgifter", "@my_moderation_tasks_title": { "type": "text", "placeholders": { } }, - "pending_moderation_tasks_singular": "tarefa de moderação pendente", + "pending_moderation_tasks_singular": "vĂ€ntande modereringsuppgift", "@pending_moderation_tasks_singular": { "type": "text", "placeholders": { } }, - "pending_moderation_tasks_plural": "tarefas de moderação pendentes", + "pending_moderation_tasks_plural": "vĂ€ntande modereringsuppgifter", "@pending_moderation_tasks_plural": { "description": "Eg. No pending moderation tasks found", "type": "text", @@ -478,21 +478,21 @@ } }, - "my_moderation_penalties_title": "Penalidades de moderação", + "my_moderation_penalties_title": "Modereringsstraff", "@my_moderation_penalties_title": { "type": "text", "placeholders": { } }, - "my_moderation_penalties_resouce_singular": "penalidade de moderação", + "my_moderation_penalties_resouce_singular": "modereringsstraff", "@my_moderation_penalties_resouce_singular": { "type": "text", "placeholders": { } }, - "my_moderation_penalties_resource_plural": "penalidades de moderação", + "my_moderation_penalties_resource_plural": "modereringsstraff", "@my_moderation_penalties_resource_plural": { "description": "See all moderation penalties, No moderation penalties found etc..", "type": "text", diff --git a/assets/i18n/pt-BR/notifications.arb b/assets/i18n/pt-BR/notifications.arb index 9e914d137..685a20187 100644 --- a/assets/i18n/pt-BR/notifications.arb +++ b/assets/i18n/pt-BR/notifications.arb @@ -1,152 +1,180 @@ { - "settings_title": "ConfiguraçÔes de notificação", + "settings_title": "AviseringsinstĂ€llningar", "@settings_title": { "type": "text", "placeholders": { } }, - "general_title": "NotificaçÔes", + "general_title": "Aviseringar", "@general_title": { "type": "text", "placeholders": { } }, - "general_desc": "Seja notificado(a) quando algo acontecer", + "general_desc": "Bli meddelad nĂ€r nĂ„got hĂ€nder", "@general_desc": { "type": "text", "placeholders": { } }, - "follow_title": "Seguidores", + "follow_title": "Följare", "@follow_title": { "type": "text", "placeholders": { } }, - "follow_desc": "Seja notificado(a) quando alguĂ©m começar a segui-lo(a)", + "follow_desc": "Bli meddelad nĂ€r nĂ„gon börjar följa dig", "@follow_desc": { "type": "text", "placeholders": { } }, - "connection_title": "Pedidos de conexĂŁo", + "connection_title": "KontaktförfrĂ„gan", "@connection_title": { "type": "text", "placeholders": { } }, - "connection_desc": "Seja notificado(a) quando alguĂ©m quiser se conectar com vocĂȘ", + "connection_desc": "Bli meddelad nĂ€r nĂ„gon vill ha dig som kontakt", "@connection_desc": { "type": "text", "placeholders": { } }, - "comment_title": "ComentĂĄrios", + "comment_title": "Kommentar pĂ„ inlĂ€gg", "@comment_title": { "type": "text", "placeholders": { } }, - "comment_desc": "Seja notificado(a) quando alguĂ©m comentar uma das suas publicaçÔes ou uma que vocĂȘ tambĂ©m comentou.", + "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": { } }, - "comment_reply_title": "Respostas aos comentĂĄrios", + "comment_reply_title": "Svar pĂ„ kommentar", "@comment_reply_title": { "type": "text", "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": "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": { } }, - "comment_reaction_title": "ReaçÔes a comentĂĄrios", + "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": { } }, - "comment_reaction_desc": "Seja notificado(a) quando alguĂ©m reage a um dos seus comentĂĄrios.", + "comment_reaction_desc": "Bli meddelad nĂ€r nĂ„gon reagerar pĂ„ en av dina inlĂ€ggskommentarer.", "@comment_reaction_desc": { "type": "text", "placeholders": { } }, - "post_reaction_title": "ReaçÔes aos posts", + "post_reaction_title": "Reaktion pĂ„ inlĂ€gg", "@post_reaction_title": { "type": "text", "placeholders": { } }, - "post_reaction_desc": "Seja notificado(a) quando alguĂ©m reage a uma das suas publicaçÔes.", + "post_reaction_desc": "Bli meddelad nĂ€r nĂ„gon reagerar pĂ„ ett av dina inlĂ€gg.", "@post_reaction_desc": { "type": "text", "placeholders": { } }, - "community_invite_title": "Convites para comunidades", + "community_invite_title": "Gemenskapsinbjudan", "@community_invite_title": { "type": "text", "placeholders": { } }, - "community_invite_desc": "Seja notificado(a) quando alguĂ©m convida vocĂȘ para entrar em uma comunidade.", + "community_invite_desc": "Bli meddelad nĂ€r nĂ„gon bjuder in dig till en gemenskap.", "@community_invite_desc": { "type": "text", "placeholders": { } }, - "mute_post_turn_on_post_notifications": "Ativar notificaçÔes do post", + "mute_post_turn_on_post_notifications": "Aktivera aviseringar för inlĂ€gg", "@mute_post_turn_on_post_notifications": { "type": "text", "placeholders": { } }, - "mute_post_turn_off_post_notifications": "Desativar notificaçÔes do post", + "mute_post_turn_off_post_notifications": "Inaktivera aviseringar för inlĂ€gg", "@mute_post_turn_off_post_notifications": { "type": "text", "placeholders": { } }, - "mute_post_turn_on_post_comment_notifications": "Ativar notificaçÔes do comentĂĄrio", + "mute_post_turn_on_post_comment_notifications": "Aktivera aviseringar för inlĂ€ggskommentarer", "@mute_post_turn_on_post_comment_notifications": { "type": "text", "placeholders": { } }, - "mute_post_turn_off_post_comment_notifications": "Desativar notificaçÔes do comentĂĄrio", + "mute_post_turn_off_post_comment_notifications": "Inaktivera aviseringar för inlĂ€ggskommentarer", "@mute_post_turn_off_post_comment_notifications": { "type": "text", "placeholders": { } }, - "connection_request_tile": "[name] [username] quer se conectar com vocĂȘ.", + "connection_request_tile": "[name] [username] vill knyta kontakt med dig.", "@connection_request_tile": { "description": "Eg.: James @jamest wants to connect with you.", "type": "text", @@ -154,7 +182,7 @@ } }, - "accepted_connection_request_tile": "[name] [username] aceitou seu pedido de conexĂŁo.", + "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", @@ -162,7 +190,7 @@ } }, - "reacted_to_post_tile": "[name] [username] reagiu Ă  sua publicação.", + "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", @@ -170,7 +198,7 @@ } }, - "reacted_to_post_comment_tile": "[name] [username] reagiu ao seu comentĂĄrio.", + "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", @@ -178,7 +206,7 @@ } }, - "following_you_tile": "[name] [username] estĂĄ te seguindo agora.", + "following_you_tile": "[name] [username] har börjat följa dig.", "@following_you_tile": { "description": "Eg.: James @jamest is now following you.", "type": "text", @@ -186,7 +214,7 @@ } }, - "user_community_invite_tile": "[name] [username] convidou vocĂȘ para se juntar Ă  comunidade \/c\/{communityName}.", + "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", @@ -196,7 +224,7 @@ } } }, - "comment_reply_notification_tile_user_replied": "[name] [username] respondeu: {postCommentText}", + "comment_reply_notification_tile_user_replied": "[name] [username] svarade: {postCommentText}", "@comment_reply_notification_tile_user_replied": { "description": "For.eg. James @jamest replied.", "type": "text", @@ -206,7 +234,7 @@ } } }, - "comment_reply_notification_tile_user_also_replied": "[name] [username] tambĂ©m respondeu: {postCommentText}", + "comment_reply_notification_tile_user_also_replied": "[name] [username] svarade ocksĂ„: {postCommentText}", "@comment_reply_notification_tile_user_also_replied": { "type": "text", "placeholders": { @@ -215,7 +243,7 @@ } } }, - "comment_comment_notification_tile_user_commented": "[name] [username] comentou no seu post: {postCommentText}", + "comment_comment_notification_tile_user_commented": "[name] [username] kommenterade pĂ„ ditt inlĂ€gg: {postCommentText}", "@comment_comment_notification_tile_user_commented": { "type": "text", "placeholders": { @@ -224,7 +252,7 @@ } } }, - "comment_comment_notification_tile_user_also_commented": "[name] [username] tambĂ©m comentou: {postCommentText}", + "comment_comment_notification_tile_user_also_commented": "[name] [username] kommenterade ocksĂ„: {postCommentText}", "@comment_comment_notification_tile_user_also_commented": { "type": "text", "placeholders": { @@ -232,5 +260,21 @@ } } + }, + "mentioned_in_post_comment_tile": "[name] [username] nĂ€mnde dig i en kommentar.", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment.", + "type": "text", + "placeholders": { + + } + }, + "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/pt-BR/post.arb b/assets/i18n/pt-BR/post.arb index c7c150aef..802ec094c 100644 --- a/assets/i18n/pt-BR/post.arb +++ b/assets/i18n/pt-BR/post.arb @@ -1,40 +1,40 @@ { - "open_post": "Abrir post", + "open_post": "Öppna inlĂ€gg", "@open_post": { "type": "text", "placeholders": { } }, - "close_post": "Fechar post", + "close_post": "StĂ€ng inlĂ€gg", "@close_post": { "type": "text", "placeholders": { } }, - "post_opened": "Post aberto", + "post_opened": "InlĂ€gg öppnat", "@post_opened": { "type": "text", "placeholders": { } }, - "post_closed": "Post fechado ", + "post_closed": "InlĂ€gg stĂ€ngt ", "@post_closed": { "type": "text", "placeholders": { } }, - "comment_required_error": "O comentĂĄrio nĂŁo pode ficar vazio.", + "comment_required_error": "Kommentaren kan inte vara tom.", "@comment_required_error": { "type": "text", "placeholders": { } }, - "comment_maxlength_error": "Um comentĂĄrio nĂŁo pode ter mais de {maxLength} caracteres.", + "comment_maxlength_error": "En kommentar kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@comment_maxlength_error": { "type": "text", "placeholders": { @@ -43,77 +43,77 @@ } } }, - "timeline_posts_all_loaded": "🎉 Todas as publicaçÔes carregadas", + "timeline_posts_all_loaded": "🎉 Alla inlĂ€gg inlĂ€sta", "@timeline_posts_all_loaded": { "type": "text", "placeholders": { } }, - "timeline_posts_refreshing_drhoo_title": "Aguenta aĂ­!", + "timeline_posts_refreshing_drhoo_title": "HĂ„ll ut!", "@timeline_posts_refreshing_drhoo_title": { "type": "text", "placeholders": { } }, - "timeline_posts_refreshing_drhoo_subtitle": "Carregando sua linha do tempo.", + "timeline_posts_refreshing_drhoo_subtitle": "LĂ€ser in din tidslinje.", "@timeline_posts_refreshing_drhoo_subtitle": { "type": "text", "placeholders": { } }, - "timeline_posts_no_more_drhoo_title": "Sua linha do tempo estĂĄ vazia.", + "timeline_posts_no_more_drhoo_title": "Din tidslinje Ă€r tom.", "@timeline_posts_no_more_drhoo_title": { "type": "text", "placeholders": { } }, - "timeline_posts_no_more_drhoo_subtitle": "Siga usuĂĄrios ou junte-se a uma comunidade para começar!", + "timeline_posts_no_more_drhoo_subtitle": "Följ anvĂ€ndare eller gĂ„ med i en gemenskap för att komma igĂ„ng!", "@timeline_posts_no_more_drhoo_subtitle": { "type": "text", "placeholders": { } }, - "timeline_posts_failed_drhoo_title": "NĂŁo foi possĂ­vel carregar sua linha do tempo.", + "timeline_posts_failed_drhoo_title": "Din tidslinje kunde inte lĂ€sas in.", "@timeline_posts_failed_drhoo_title": { "type": "text", "placeholders": { } }, - "timeline_posts_failed_drhoo_subtitle": "Tente novamente em alguns segundos", + "timeline_posts_failed_drhoo_subtitle": "Försök igen om nĂ„gra sekunder", "@timeline_posts_failed_drhoo_subtitle": { "type": "text", "placeholders": { } }, - "timeline_posts_default_drhoo_title": "Algo nĂŁo estĂĄ certo.", + "timeline_posts_default_drhoo_title": "Det Ă€r nĂ„got som inte stĂ€mmer.", "@timeline_posts_default_drhoo_title": { "type": "text", "placeholders": { } }, - "timeline_posts_default_drhoo_subtitle": "Tente atualizar a linha do tempo.", + "timeline_posts_default_drhoo_subtitle": "Försök lĂ€sa in tidslinjen igen.", "@timeline_posts_default_drhoo_subtitle": { "type": "text", "placeholders": { } }, - "timeline_posts_refresh_posts": "Atualizar publicaçÔes", + "timeline_posts_refresh_posts": "LĂ€s in inlĂ€gg", "@timeline_posts_refresh_posts": { "type": "text", "placeholders": { } }, - "no_circles_for": "'Nenhum cĂ­rculo encontrado para '{circlesSearchQuery}'.", + "no_circles_for": "Inga kretsar hittades som matchar '{circlesSearchQuery}'.", "@no_circles_for": { "type": "text", "placeholders": { @@ -122,98 +122,98 @@ } } }, - "share_to_circles": "Compartilhar nos cĂ­rculos", + "share_to_circles": "Dela med kretsar", "@share_to_circles": { "type": "text", "placeholders": { } }, - "profile_counts_post": " Post", + "profile_counts_post": " InlĂ€gg", "@profile_counts_post": { "type": "text", "placeholders": { } }, - "profile_counts_posts": " Posts", + "profile_counts_posts": " InlĂ€gg", "@profile_counts_posts": { "type": "text", "placeholders": { } }, - "profile_counts_followers": " Seguidores", + "profile_counts_followers": " Följare", "@profile_counts_followers": { "type": "text", "placeholders": { } }, - "profile_counts_following": " Seguindo", + "profile_counts_following": " Följer", "@profile_counts_following": { "type": "text", "placeholders": { } }, - "profile_counts_follower": " Seguidor", + "profile_counts_follower": " Följare", "@profile_counts_follower": { "type": "text", "placeholders": { } }, - "action_comment": "Comentar", + "action_comment": "Kommentera", "@action_comment": { "type": "text", "placeholders": { } }, - "action_react": "Reagir", + "action_react": "Reagera", "@action_react": { "type": "text", "placeholders": { } }, - "action_reply": "Responder", + "action_reply": "Svara", "@action_reply": { "type": "text", "placeholders": { } }, - "share": "Compartilhar", + "share": "Dela", "@share": { "type": "text", "placeholders": { } }, - "share_to": "Compartilhar em", + "share_to": "Dela med", "@share_to": { "type": "text", "placeholders": { } }, - "sharing_post_to": "Compartilhando post em", + "sharing_post_to": "Delar inlĂ€gg med", "@sharing_post_to": { "type": "text", "placeholders": { } }, - "you_shared_with": "VocĂȘ compartilhou com", + "you_shared_with": "Du delade med", "@you_shared_with": { "type": "text", "placeholders": { } }, - "shared_privately_on": "Compartilhado nos", + "shared_privately_on": "Delat privat i", "@shared_privately_on": { "description": "Eg. Shared privately on @shantanu's circles. See following string, usernames_circles . Will combine this in future, needs refactoring.", "type": "text", @@ -221,7 +221,7 @@ } }, - "usernames_circles": "cĂ­rculos de @{postCreatorUsername}", + "usernames_circles": "@{postCreatorUsername}s kretsar", "@usernames_circles": { "type": "text", "placeholders": { @@ -230,196 +230,196 @@ } } }, - "share_community": "Compartilhar", + "share_community": "Dela", "@share_community": { "type": "text", "placeholders": { } }, - "share_to_community": "Compartilhar na comunidade", + "share_to_community": "Dela med en gemenskap", "@share_to_community": { "type": "text", "placeholders": { } }, - "share_community_title": "Uma comunidade", + "share_community_title": "En gemenskap", "@share_community_title": { "type": "text", "placeholders": { } }, - "share_community_desc": "Compartilhe a publicação com uma comunidade da qual vocĂȘ faz parte.", + "share_community_desc": "Dela inlĂ€gget med en gemenskap du Ă€r del av.", "@share_community_desc": { "type": "text", "placeholders": { } }, - "my_circles": "Meus cĂ­rculos", + "my_circles": "Mina kretsar", "@my_circles": { "type": "text", "placeholders": { } }, - "my_circles_desc": "Compartilhe a publicação para um ou vĂĄrios dos seus cĂ­rculos.", + "my_circles_desc": "Dela inlĂ€gget med en eller flera av dina kretsar.", "@my_circles_desc": { "type": "text", "placeholders": { } }, - "world_circle_name": "Mundo", + "world_circle_name": "VĂ€rlden", "@world_circle_name": { "type": "text", "placeholders": { } }, - "search_circles": "Procurar cĂ­rculos...", + "search_circles": "Sök kretsar...", "@search_circles": { "type": "text", "placeholders": { } }, - "reaction_list_tap_retry": "Toque para tentar carregar as reaçÔes novamente.", + "reaction_list_tap_retry": "Tryck för att försöka lĂ€sa in reaktionerna igen.", "@reaction_list_tap_retry": { "type": "text", "placeholders": { } }, - "create_new": "Novo post", + "create_new": "Nytt inlĂ€gg", "@create_new": { "type": "text", "placeholders": { } }, - "create_next": "Avançar", + "create_next": "NĂ€sta", "@create_next": { "type": "text", "placeholders": { } }, - "create_photo": "Imagem", + "create_photo": "Foto", "@create_photo": { "type": "text", "placeholders": { } }, - "commenter_post_text": "Enviar", + "commenter_post_text": "Skicka", "@commenter_post_text": { "type": "text", "placeholders": { } }, - "commenter_write_something": "Escreva algo...", + "commenter_write_something": "Skriv nĂ„got...", "@commenter_write_something": { "type": "text", "placeholders": { } }, - "edit_title": "Editar publicação", + "edit_title": "Redigera inlĂ€gg", "@edit_title": { "type": "text", "placeholders": { } }, - "edit_save": "Salvar", + "edit_save": "Spara", "@edit_save": { "type": "text", "placeholders": { } }, - "commenter_expanded_save": "Salvar", + "commenter_expanded_save": "Spara", "@commenter_expanded_save": { "type": "text", "placeholders": { } }, - "commenter_expanded_join_conversation": "Entrar na conversa...", + "commenter_expanded_join_conversation": "GĂ„ med i konversationen...", "@commenter_expanded_join_conversation": { "type": "text", "placeholders": { } }, - "commenter_expanded_start_conversation": "Começar uma conversa...", + "commenter_expanded_start_conversation": "Starta en konversation...", "@commenter_expanded_start_conversation": { "type": "text", "placeholders": { } }, - "commenter_expanded_edit_comment": "Editar comentĂĄrio", + "commenter_expanded_edit_comment": "Redigera kommentar", "@commenter_expanded_edit_comment": { "type": "text", "placeholders": { } }, - "is_closed": "Post fechado", + "is_closed": "StĂ€ngt inlĂ€gg", "@is_closed": { "type": "text", "placeholders": { } }, - "comment_reply_expanded_reply_comment": "Responder comentĂĄrio", + "comment_reply_expanded_reply_comment": "Svar pĂ„ kommentar", "@comment_reply_expanded_reply_comment": { "type": "text", "placeholders": { } }, - "comment_reply_expanded_post": "Enviar", + "comment_reply_expanded_post": "Skicka", "@comment_reply_expanded_post": { "type": "text", "placeholders": { } }, - "comment_reply_expanded_reply_hint_text": "Sua resposta...", + "comment_reply_expanded_reply_hint_text": "Ditt svar...", "@comment_reply_expanded_reply_hint_text": { "type": "text", "placeholders": { } }, - "trending_posts_title": "Posts em alta", + "trending_posts_title": "Trendiga inlĂ€gg", "@trending_posts_title": { "type": "text", "placeholders": { } }, - "trending_posts_no_trending_posts": "NĂŁo hĂĄ publicaçÔes em alta. Tente atualizar em alguns segundos.", + "trending_posts_no_trending_posts": "Det finns inga trendiga inlĂ€gg. Försök uppdatera om nĂ„gra sekunder.", "@trending_posts_no_trending_posts": { "type": "text", "placeholders": { } }, - "trending_posts_refresh": "Atualizar", + "trending_posts_refresh": "Uppdatera", "@trending_posts_refresh": { "type": "text", "placeholders": { } }, - "comments_view_all_comments": "Ver todos os {commentsCount} comentĂĄrios", + "comments_view_all_comments": "Visa alla {commentsCount} kommentarer", "@comments_view_all_comments": { "type": "text", "placeholders": { @@ -428,42 +428,42 @@ } } }, - "comments_closed_post": "Post fechado", + "comments_closed_post": "StĂ€ngt inlĂ€gg", "@comments_closed_post": { "type": "text", "placeholders": { } }, - "comments_disabled": "ComentĂĄrios desativados", + "comments_disabled": "KommentarsfĂ€ltet avstĂ€ngt", "@comments_disabled": { "type": "text", "placeholders": { } }, - "text_copied": "Texto copiado!", + "text_copied": "Text kopierad!", "@text_copied": { "type": "text", "placeholders": { } }, - "post_reactions_title": "ReaçÔes ao post", + "post_reactions_title": "Reaktioner pĂ„ inlĂ€gget", "@post_reactions_title": { "type": "text", "placeholders": { } }, - "have_not_shared_anything": "VocĂȘ ainda nĂŁo compartilhou nada.", + "have_not_shared_anything": "Du har inte delat nĂ„got Ă€nnu.", "@have_not_shared_anything": { "type": "text", "placeholders": { } }, - "user_has_not_shared_anything": "{name} ainda nĂŁo compartilhou nada.", + "user_has_not_shared_anything": "{name} har inte delat nĂ„got Ă€nnu.", "@user_has_not_shared_anything": { "type": "text", "placeholders": { @@ -472,238 +472,238 @@ } } }, - "comments_header_newest_replies": "Novas respostas", + "comments_header_newest_replies": "Senaste svaren", "@comments_header_newest_replies": { "type": "text", "placeholders": { } }, - "comments_header_newer": "Mais recentes", + "comments_header_newer": "Senare", "@comments_header_newer": { "type": "text", "placeholders": { } }, - "comments_header_view_newest_replies": "Ver respostas mais recentes", + "comments_header_view_newest_replies": "Visa de senaste svaren", "@comments_header_view_newest_replies": { "type": "text", "placeholders": { } }, - "comments_header_see_newest_replies": "Ver respostas mais recentes", + "comments_header_see_newest_replies": "Visa de senaste svaren", "@comments_header_see_newest_replies": { "type": "text", "placeholders": { } }, - "comments_header_oldest_replies": "Respostas mais antigas", + "comments_header_oldest_replies": "Äldsta svaren", "@comments_header_oldest_replies": { "type": "text", "placeholders": { } }, - "comments_header_older": "Mais antigos", + "comments_header_older": "Äldre", "@comments_header_older": { "type": "text", "placeholders": { } }, - "comments_header_view_oldest_replies": "Ver respostas mais antigas", + "comments_header_view_oldest_replies": "Visa de Ă€ldsta svaren", "@comments_header_view_oldest_replies": { "type": "text", "placeholders": { } }, - "comments_header_see_oldest_replies": "Ver respostas mais antigas", + "comments_header_see_oldest_replies": "Visa de Ă€ldsta svaren", "@comments_header_see_oldest_replies": { "type": "text", "placeholders": { } }, - "comments_header_be_the_first_replies": "Mande a primeira resposta", + "comments_header_be_the_first_replies": "Bli den första som skriver ett svar", "@comments_header_be_the_first_replies": { "type": "text", "placeholders": { } }, - "comments_header_newest_comments": "ComentĂĄrios mais recentes", + "comments_header_newest_comments": "Senaste kommentarerna", "@comments_header_newest_comments": { "type": "text", "placeholders": { } }, - "comments_header_view_newest_comments": "Ver comentĂĄrios mais recentes", + "comments_header_view_newest_comments": "Visa de senaste kommentarerna", "@comments_header_view_newest_comments": { "type": "text", "placeholders": { } }, - "comments_header_see_newest_comments": "Ver comentĂĄrios mais recentes", + "comments_header_see_newest_comments": "Visa de senaste kommentarerna", "@comments_header_see_newest_comments": { "type": "text", "placeholders": { } }, - "comments_header_oldest_comments": "ComentĂĄrios mais antigos", + "comments_header_oldest_comments": "Äldsta kommentarerna", "@comments_header_oldest_comments": { "type": "text", "placeholders": { } }, - "comments_header_view_oldest_comments": "Ver comentĂĄrios mais antigos", + "comments_header_view_oldest_comments": "Visa de Ă€ldsta kommentarerna", "@comments_header_view_oldest_comments": { "type": "text", "placeholders": { } }, - "comments_header_see_oldest_comments": "Ver comentĂĄrios mais antigos", + "comments_header_see_oldest_comments": "Visa de Ă€ldsta kommentarerna", "@comments_header_see_oldest_comments": { "type": "text", "placeholders": { } }, - "comments_header_be_the_first_comments": "Mande o primeiro comentĂĄrio", + "comments_header_be_the_first_comments": "Bli den första som skriver en kommentar", "@comments_header_be_the_first_comments": { "type": "text", "placeholders": { } }, - "comments_page_title": "ComentĂĄrios", + "comments_page_title": "InlĂ€ggskommentarer", "@comments_page_title": { "type": "text", "placeholders": { } }, - "comments_page_no_more_to_load": "Sem mais comentĂĄrios para carregar", + "comments_page_no_more_to_load": "Inga fler kommentarer att lĂ€sa in", "@comments_page_no_more_to_load": { "type": "text", "placeholders": { } }, - "comments_page_tap_to_retry": "Toque para tentar atualizar os comentĂĄrios novamente.", + "comments_page_tap_to_retry": "Tryck för att försöka lĂ€sa in kommentarerna igen.", "@comments_page_tap_to_retry": { "type": "text", "placeholders": { } }, - "comments_page_tap_to_retry_replies": "Toque para tentar atualizar as respostas novamente.", + "comments_page_tap_to_retry_replies": "Tryck för att försöka lĂ€sa in svaren igen.", "@comments_page_tap_to_retry_replies": { "type": "text", "placeholders": { } }, - "comments_page_no_more_replies_to_load": "Sem mais respostas para carregar", + "comments_page_no_more_replies_to_load": "Inga fler svar att lĂ€sa in", "@comments_page_no_more_replies_to_load": { "type": "text", "placeholders": { } }, - "comments_page_replies_title": "Respostas", + "comments_page_replies_title": "InlĂ€ggssvar", "@comments_page_replies_title": { "type": "text", "placeholders": { } }, - "disable_post_comments": "Desativar comentĂĄrios do post", + "disable_post_comments": "StĂ€ng kommentarsfĂ€ltet", "@disable_post_comments": { "type": "text", "placeholders": { } }, - "enable_post_comments": "Ativar comentĂĄrios do post", + "enable_post_comments": "Öppna kommentarsfĂ€ltet", "@enable_post_comments": { "type": "text", "placeholders": { } }, - "comments_enabled_message": "ComentĂĄrios ativados no post", + "comments_enabled_message": "Kommentarer aktiverade för inlĂ€gget", "@comments_enabled_message": { "type": "text", "placeholders": { } }, - "comments_disabled_message": "ComentĂĄrios desativados no post", + "comments_disabled_message": "Kommentarer inaktiverade för inlĂ€gget", "@comments_disabled_message": { "type": "text", "placeholders": { } }, - "actions_delete": "Excluir post", + "actions_delete": "Ta bort inlĂ€gg", "@actions_delete": { "type": "text", "placeholders": { } }, - "actions_deleted": "Post excluĂ­do", + "actions_deleted": "InlĂ€gg borttaget", "@actions_deleted": { "type": "text", "placeholders": { } }, - "actions_delete_comment": "Excluir comentĂĄrio", + "actions_delete_comment": "Ta bort kommentar", "@actions_delete_comment": { "type": "text", "placeholders": { } }, - "actions_edit_comment": "Editar comentĂĄrio", + "actions_edit_comment": "Redigera kommentar", "@actions_edit_comment": { "type": "text", "placeholders": { } }, - "actions_comment_deleted": "ComentĂĄrio excluĂ­do", + "actions_comment_deleted": "Kommentar borttagen", "@actions_comment_deleted": { "type": "text", "placeholders": { } }, - "actions_report_text": "Denunciar", + "actions_report_text": "AnmĂ€l", "@actions_report_text": { "type": "text", "placeholders": { } }, - "actions_reported_text": "Denunciado", + "actions_reported_text": "AnmĂ€ld", "@actions_reported_text": { "type": "text", "placeholders": { } }, - "actions_show_more_text": "Ver mais", + "actions_show_more_text": "Visa mer", "@actions_show_more_text": { "description": "Shown for posts with long text to expand the entire text.", "type": "text", @@ -711,7 +711,7 @@ } }, - "time_short_years": "a", + "time_short_years": "Ă„", "@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": "1a", + "time_short_one_year": "1Ă„", "@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": "sem", + "time_short_weeks": "v", "@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": "1sem", + "time_short_one_week": "1v", "@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", @@ -775,7 +775,7 @@ } }, - "time_short_minutes": "min", + "time_short_minutes": "m", "@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", @@ -791,7 +791,7 @@ } }, - "time_short_one_minute": "1min", + "time_short_one_minute": "1m", "@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", @@ -799,7 +799,7 @@ } }, - "time_short_now_text": "agora", + "time_short_now_text": "nu", "@time_short_now_text": { "description": "Shown when a post was immediately posted, as in time posted is 'now'.Should be as few characters as possible.", "type": "text", diff --git a/assets/i18n/pt-BR/user.arb b/assets/i18n/pt-BR/user.arb index 632411b8e..4a5c91733 100644 --- a/assets/i18n/pt-BR/user.arb +++ b/assets/i18n/pt-BR/user.arb @@ -1,5 +1,5 @@ { - "thousand_postfix": "k", + "thousand_postfix": "t", "@thousand_postfix": { "description": "For eg. communty has 3k members", "type": "text", @@ -7,7 +7,7 @@ } }, - "million_postfix": "M", + "million_postfix": "mn", "@million_postfix": { "description": "For eg. user has 3m followers", "type": "text", @@ -15,7 +15,7 @@ } }, - "billion_postfix": "b", + "billion_postfix": "md", "@billion_postfix": { "description": "For eg. World circle has 7.5b people", "type": "text", @@ -23,28 +23,28 @@ } }, - "translate_see_translation": "Mostrar tradução", + "translate_see_translation": "Visa översĂ€ttning", "@translate_see_translation": { "type": "text", "placeholders": { } }, - "translate_show_original": "Mostrar original", + "translate_show_original": "Visa original", "@translate_show_original": { "type": "text", "placeholders": { } }, - "follows_lists_account": "1 Conta", + "follows_lists_account": "1 Konto", "@follows_lists_account": { "type": "text", "placeholders": { } }, - "follows_lists_accounts": "{prettyUsersCount} Contas", + "follows_lists_accounts": "{prettyUsersCount} Konton", "@follows_lists_accounts": { "description": "prettyUsersCount will be 3m, 50k etc.. so we endup with final string 3k Accounts", "type": "text", @@ -54,7 +54,7 @@ } } }, - "edit_profile_user_name_taken": "O nome de usuĂĄrio @{username} jĂĄ estĂĄ em uso", + "edit_profile_user_name_taken": "AnvĂ€ndarnamnet @{username} Ă€r upptaget", "@edit_profile_user_name_taken": { "type": "text", "placeholders": { @@ -63,42 +63,42 @@ } } }, - "profile_action_deny_connection": "Recusar pedido de conexĂŁo", + "profile_action_deny_connection": "Neka kontaktförfrĂ„gan", "@profile_action_deny_connection": { "type": "text", "placeholders": { } }, - "profile_action_user_blocked": "UsuĂĄrio bloqueado", + "profile_action_user_blocked": "AnvĂ€ndare blockerad", "@profile_action_user_blocked": { "type": "text", "placeholders": { } }, - "profile_action_user_unblocked": "UsuĂĄrio desbloqueado", + "profile_action_user_unblocked": "AnvĂ€ndare avblockerad", "@profile_action_user_unblocked": { "type": "text", "placeholders": { } }, - "profile_action_cancel_connection": "Cancelar pedido de conexĂŁo", + "profile_action_cancel_connection": "Avbryt kontaktförfrĂ„gan", "@profile_action_cancel_connection": { "type": "text", "placeholders": { } }, - "profile_url_invalid_error": "Por favor, forneça uma url vĂĄlida.", + "profile_url_invalid_error": "VĂ€nligen ange en giltig URL.", "@profile_url_invalid_error": { "type": "text", "placeholders": { } }, - "profile_location_length_error": "O local nĂŁo pode ser maior que {maxLength} caracteres.", + "profile_location_length_error": "En plats kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@profile_location_length_error": { "type": "text", "placeholders": { @@ -107,7 +107,7 @@ } } }, - "profile_bio_length_error": "A bio nĂŁo pode ser maior que {maxLength} caracteres.", + "profile_bio_length_error": "Bion kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@profile_bio_length_error": { "type": "text", "placeholders": { @@ -116,77 +116,77 @@ } } }, - "follow_button_follow_text": "Seguir", + "follow_button_follow_text": "Följ", "@follow_button_follow_text": { "type": "text", "placeholders": { } }, - "follow_button_unfollow_text": "Parar de seguir", + "follow_button_unfollow_text": "Sluta följa", "@follow_button_unfollow_text": { "type": "text", "placeholders": { } }, - "edit_profile_username": "Nome de usuĂĄrio", + "edit_profile_username": "AnvĂ€ndarnamn", "@edit_profile_username": { "type": "text", "placeholders": { } }, - "add_account_update_account_lists": "Atualizar listas de contas", + "add_account_update_account_lists": "Uppdatera kontolistor", "@add_account_update_account_lists": { "type": "text", "placeholders": { } }, - "add_account_to_lists": "Adicionar conta Ă  lista", + "add_account_to_lists": "LĂ€gg till konto i lista", "@add_account_to_lists": { "type": "text", "placeholders": { } }, - "add_account_update_lists": "Atualizar listas", + "add_account_update_lists": "Uppdatera listor", "@add_account_update_lists": { "type": "text", "placeholders": { } }, - "add_account_save": "Salvar", + "add_account_save": "Spara", "@add_account_save": { "type": "text", "placeholders": { } }, - "add_account_done": "ConcluĂ­do", + "add_account_done": "Klar", "@add_account_done": { "type": "text", "placeholders": { } }, - "add_account_success": "Sucesso", + "add_account_success": "Kontot lades till", "@add_account_success": { "type": "text", "placeholders": { } }, - "emoji_field_none_selected": "Nenhum emoji selecionado", + "emoji_field_none_selected": "Ingen emoji vald", "@emoji_field_none_selected": { "type": "text", "placeholders": { } }, - "emoji_search_none_found": "Nenhum emoji encontrado para '{searchQuery}'.", + "emoji_search_none_found": "Ingen emoji hittades som matchar '{searchQuery}'.", "@emoji_search_none_found": { "type": "text", "placeholders": { @@ -195,28 +195,28 @@ } } }, - "follow_lists_title": "Minhas listas", + "follow_lists_title": "Mina listor", "@follow_lists_title": { "type": "text", "placeholders": { } }, - "follow_lists_search_for": "Procurar por uma lista...", + "follow_lists_search_for": "Sök efter en lista...", "@follow_lists_search_for": { "type": "text", "placeholders": { } }, - "follow_lists_no_list_found": "Nenhuma lista encontrada.", + "follow_lists_no_list_found": "Inga listor hittades.", "@follow_lists_no_list_found": { "type": "text", "placeholders": { } }, - "follow_lists_no_list_found_for": "Nenhuma lista encontrada para '{searchQuery}'", + "follow_lists_no_list_found_for": "Inga listor hittades för '{searchQuery}'", "@follow_lists_no_list_found_for": { "type": "text", "placeholders": { @@ -225,14 +225,14 @@ } } }, - "list_name_empty_error": "O nome da lista nĂŁo pode ficar vazio.", + "list_name_empty_error": "Du mĂ„ste ge listan ett namn.", "@list_name_empty_error": { "type": "text", "placeholders": { } }, - "list_name_range_error": "O nome da lista nĂŁo deve ter mais de {maxLength} caracteres.", + "list_name_range_error": "Listans namn fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@list_name_range_error": { "type": "text", "placeholders": { @@ -241,14 +241,14 @@ } } }, - "circle_name_empty_error": "O nome do cĂ­rculo nĂŁo pode ficar vazio.", + "circle_name_empty_error": "Du mĂ„ste ge kretsen ett namn.", "@circle_name_empty_error": { "type": "text", "placeholders": { } }, - "circle_name_range_error": "O nome do cĂ­rculo nĂŁo deve ter mais de {maxLength} caracteres.", + "circle_name_range_error": "Kretsens namn fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", "@circle_name_range_error": { "type": "text", "placeholders": { @@ -257,21 +257,21 @@ } } }, - "save_follows_list_name": "Nome", + "save_follows_list_name": "Namn", "@save_follows_list_name": { "type": "text", "placeholders": { } }, - "save_follows_list_hint_text": "ex: Viagem, Fotografia", + "save_follows_list_hint_text": "t. ex. Resor, Fotografering", "@save_follows_list_hint_text": { "type": "text", "placeholders": { } }, - "save_follows_list_name_taken": "O nome de lista '{listName}' jĂĄ estĂĄ sendo usado", + "save_follows_list_name_taken": "Listnamnet '{listName}' Ă€r upptaget", "@save_follows_list_name_taken": { "type": "text", "placeholders": { @@ -287,56 +287,56 @@ } }, - "save_follows_list_users": "UsuĂĄrios", + "save_follows_list_users": "AnvĂ€ndare", "@save_follows_list_users": { "type": "text", "placeholders": { } }, - "save_follows_list_edit": "Editar lista", + "save_follows_list_edit": "Redigera lista", "@save_follows_list_edit": { "type": "text", "placeholders": { } }, - "save_follows_list_create": "Criar lista", + "save_follows_list_create": "Skapa lista", "@save_follows_list_create": { "type": "text", "placeholders": { } }, - "save_follows_list_save": "Salvar", + "save_follows_list_save": "Spara", "@save_follows_list_save": { "type": "text", "placeholders": { } }, - "save_follows_list_emoji_required_error": "Emoji necessĂĄrio", + "save_follows_list_emoji_required_error": "En emoji krĂ€vs", "@save_follows_list_emoji_required_error": { "type": "text", "placeholders": { } }, - "follows_list_edit": "Editar", + "follows_list_edit": "Redigera", "@follows_list_edit": { "type": "text", "placeholders": { } }, - "follows_list_header_title": "UsuĂĄrios", + "follows_list_header_title": "AnvĂ€ndare", "@follows_list_header_title": { "type": "text", "placeholders": { } }, - "edit_profile_name": "Nome", + "edit_profile_name": "Namn", "@edit_profile_name": { "type": "text", "placeholders": { @@ -350,7 +350,7 @@ } }, - "edit_profile_location": "Localização", + "edit_profile_location": "Plats", "@edit_profile_location": { "type": "text", "placeholders": { @@ -364,42 +364,42 @@ } }, - "edit_profile_followers_count": "NĂșmero de seguidores", + "edit_profile_followers_count": "Följarantal", "@edit_profile_followers_count": { "type": "text", "placeholders": { } }, - "edit_profile_title": "Editar perfil", + "edit_profile_title": "Redigera profil", "@edit_profile_title": { "type": "text", "placeholders": { } }, - "edit_profile_save_text": "Salvar", + "edit_profile_save_text": "Spara", "@edit_profile_save_text": { "type": "text", "placeholders": { } }, - "edit_profile_pick_image": "Escolher imagem", + "edit_profile_pick_image": "VĂ€lj bild", "@edit_profile_pick_image": { "type": "text", "placeholders": { } }, - "edit_profile_delete": "Excluir", + "edit_profile_delete": "Ta bort", "@edit_profile_delete": { "type": "text", "placeholders": { } }, - "edit_profile_pick_image_error_too_large": "Imagem muito grande (limite: {limit} MB)", + "edit_profile_pick_image_error_too_large": "Bilden Ă€r för stor (grĂ€ns: {limit} MB)", "@edit_profile_pick_image_error_too_large": { "type": "text", "placeholders": { @@ -408,21 +408,21 @@ } } }, - "tile_following": " · Seguindo", + "tile_following": " · Följer", "@tile_following": { "type": "text", "placeholders": { } }, - "following_text": "Seguindo", + "following_text": "Följer", "@following_text": { "type": "text", "placeholders": { } }, - "following_resource_name": "usuĂĄrios seguidos", + "following_resource_name": "följda anvĂ€ndare", "@following_resource_name": { "description": "Eg: Search followed users.., No followed users found. etc ", "type": "text", @@ -430,35 +430,35 @@ } }, - "tile_delete": "Excluir", + "tile_delete": "Ta bort", "@tile_delete": { "type": "text", "placeholders": { } }, - "invite": "Convidar", + "invite": "Bjud in", "@invite": { "type": "text", "placeholders": { } }, - "uninvite": "Cancelar convite", + "uninvite": "Avbryt inbjudan", "@uninvite": { "type": "text", "placeholders": { } }, - "invite_member": "Membro", + "invite_member": "Medlem", "@invite_member": { "type": "text", "placeholders": { } }, - "invite_someone_message": "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}", + "invite_someone_message": "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}", "@invite_someone_message": { "type": "text", "placeholders": { @@ -473,119 +473,119 @@ } } }, - "connections_header_circle_desc": "O cĂ­rculo com todas as suas conexĂ”es Ă© adicionado.", + "connections_header_circle_desc": "Kretsen alla dina kontakter lĂ€ggs till i.", "@connections_header_circle_desc": { "type": "text", "placeholders": { } }, - "connections_header_users": "UsuĂĄrios", + "connections_header_users": "AnvĂ€ndare", "@connections_header_users": { "type": "text", "placeholders": { } }, - "connection_pending": "Pendente", + "connection_pending": "VĂ€ntande", "@connection_pending": { "type": "text", "placeholders": { } }, - "connection_circle_edit": "Editar", + "connection_circle_edit": "Redigera", "@connection_circle_edit": { "type": "text", "placeholders": { } }, - "connections_circle_delete": "Excluir", + "connections_circle_delete": "Ta bort", "@connections_circle_delete": { "type": "text", "placeholders": { } }, - "save_connection_circle_name": "Nome", + "save_connection_circle_name": "Namn", "@save_connection_circle_name": { "type": "text", "placeholders": { } }, - "save_connection_circle_hint": "ex: Amigos, FamĂ­lia, Trabalho.", + "save_connection_circle_hint": "t. ex. VĂ€nner, Familj, Jobb.", "@save_connection_circle_hint": { "type": "text", "placeholders": { } }, - "save_connection_circle_color_name": "Cor", + "save_connection_circle_color_name": "FĂ€rg", "@save_connection_circle_color_name": { "type": "text", "placeholders": { } }, - "save_connection_circle_color_hint": "(Toque para alterar)", + "save_connection_circle_color_hint": "(Tryck för att Ă€ndra)", "@save_connection_circle_color_hint": { "type": "text", "placeholders": { } }, - "save_connection_circle_users": "UsuĂĄrios", + "save_connection_circle_users": "AnvĂ€ndare", "@save_connection_circle_users": { "type": "text", "placeholders": { } }, - "save_connection_circle_edit": "Editar cĂ­rculo", + "save_connection_circle_edit": "Redigera krets", "@save_connection_circle_edit": { "type": "text", "placeholders": { } }, - "save_connection_circle_create": "Criar cĂ­rculo", + "save_connection_circle_create": "Skapa krets", "@save_connection_circle_create": { "type": "text", "placeholders": { } }, - "save_connection_circle_save": "Salvar", + "save_connection_circle_save": "Spara", "@save_connection_circle_save": { "type": "text", "placeholders": { } }, - "update_connection_circle_save": "Salvar", + "update_connection_circle_save": "Spara", "@update_connection_circle_save": { "type": "text", "placeholders": { } }, - "update_connection_circle_updated": "ConexĂŁo atualizada", + "update_connection_circle_updated": "Kontakt uppdaterad", "@update_connection_circle_updated": { "type": "text", "placeholders": { } }, - "update_connection_circles_title": "Atualizar cĂ­rculos de conexĂŁo", + "update_connection_circles_title": "Uppdatera kontaktkretsar", "@update_connection_circles_title": { "type": "text", "placeholders": { } }, - "confirm_connection_with": "Confirmar a conexĂŁo com {userName}", + "confirm_connection_with": "BekrĂ€fta {userName}s kontaktförfrĂ„gan", "@confirm_connection_with": { "type": "text", "placeholders": { @@ -594,28 +594,28 @@ } } }, - "confirm_connection_add_connection": "Adicionar conexĂŁo ao cĂ­rculo", + "confirm_connection_add_connection": "LĂ€gg till kontakt i krets", "@confirm_connection_add_connection": { "type": "text", "placeholders": { } }, - "confirm_connection_connection_confirmed": "ConexĂŁo confirmada", + "confirm_connection_connection_confirmed": "KontaktförfrĂ„gan bekrĂ€ftad", "@confirm_connection_connection_confirmed": { "type": "text", "placeholders": { } }, - "confirm_connection_confirm_text": "Confirmar", + "confirm_connection_confirm_text": "BekrĂ€fta", "@confirm_connection_confirm_text": { "type": "text", "placeholders": { } }, - "connect_to_user_connect_with_username": "Conectar-se com {userName}", + "connect_to_user_connect_with_username": "LĂ€gg till {userName} som kontakt", "@connect_to_user_connect_with_username": { "type": "text", "placeholders": { @@ -624,77 +624,77 @@ } } }, - "connect_to_user_add_connection": "Adicionar conexĂŁo ao cĂ­rculo", + "connect_to_user_add_connection": "LĂ€gg till kontakt i krets", "@connect_to_user_add_connection": { "type": "text", "placeholders": { } }, - "connect_to_user_done": "Pronto", + "connect_to_user_done": "Klar", "@connect_to_user_done": { "type": "text", "placeholders": { } }, - "connect_to_user_request_sent": "Pedido de conexĂŁo enviado", + "connect_to_user_request_sent": "KontaktförfrĂ„gan skickad", "@connect_to_user_request_sent": { "type": "text", "placeholders": { } }, - "remove_account_from_list": "Remover conta das listas", + "remove_account_from_list": "Ta bort konto frĂ„n listor", "@remove_account_from_list": { "type": "text", "placeholders": { } }, - "remove_account_from_list_success": "Sucesso", + "remove_account_from_list_success": "Konto borttaget frĂ„n listor", "@remove_account_from_list_success": { "type": "text", "placeholders": { } }, - "confirm_block_user_title": "Confirmação", + "confirm_block_user_title": "BekrĂ€ftelse", "@confirm_block_user_title": { "type": "text", "placeholders": { } }, - "confirm_block_user_info": "VocĂȘs nĂŁo verĂŁo os posts um do outro nem serĂŁo capazes de interagir de qualquer forma.", + "confirm_block_user_info": "Ni kommer inte kunna se varandras inlĂ€gg eller kunna interagera med varandra.", "@confirm_block_user_info": { "type": "text", "placeholders": { } }, - "confirm_block_user_yes": "Sim", + "confirm_block_user_yes": "Ja", "@confirm_block_user_yes": { "type": "text", "placeholders": { } }, - "confirm_block_user_no": "NĂŁo", + "confirm_block_user_no": "Nej", "@confirm_block_user_no": { "type": "text", "placeholders": { } }, - "confirm_block_user_blocked": "UsuĂĄrio bloqueado.", + "confirm_block_user_blocked": "AnvĂ€ndare blockerad.", "@confirm_block_user_blocked": { "type": "text", "placeholders": { } }, - "confirm_block_user_question": "Tem certeza de que deseja bloquear @{username}?", + "confirm_block_user_question": "Är du sĂ€ker pĂ„ att du vill blockera @{username}?", "@confirm_block_user_question": { "type": "text", "placeholders": { @@ -703,7 +703,7 @@ } } }, - "save_connection_circle_name_taken": "O nome de cĂ­rculo '{takenConnectionsCircleName}' jĂĄ estĂĄ em uso", + "save_connection_circle_name_taken": "Kretsnamnet '{takenConnectionsCircleName}' Ă€r upptaget", "@save_connection_circle_name_taken": { "type": "text", "placeholders": { @@ -712,287 +712,287 @@ } } }, - "timeline_filters_title": "Filtros da linha do tempo", + "timeline_filters_title": "Tidslinjefilter", "@timeline_filters_title": { "type": "text", "placeholders": { } }, - "timeline_filters_search_desc": "Procurar por cĂ­rculos e listas...", + "timeline_filters_search_desc": "Sök efter kretsar och listor...", "@timeline_filters_search_desc": { "type": "text", "placeholders": { } }, - "timeline_filters_clear_all": "Limpar tudo", + "timeline_filters_clear_all": "ÅterstĂ€ll", "@timeline_filters_clear_all": { "type": "text", "placeholders": { } }, - "timeline_filters_apply_all": "Aplicar filtros", + "timeline_filters_apply_all": "Applicera filter", "@timeline_filters_apply_all": { "type": "text", "placeholders": { } }, - "timeline_filters_circles": "CĂ­rculos", + "timeline_filters_circles": "Kretsar", "@timeline_filters_circles": { "type": "text", "placeholders": { } }, - "timeline_filters_lists": "Listas", + "timeline_filters_lists": "Listor", "@timeline_filters_lists": { "type": "text", "placeholders": { } }, - "followers_title": "Seguidores", + "followers_title": "Följare", "@followers_title": { "type": "text", "placeholders": { } }, - "follower_singular": "seguidor", + "follower_singular": "följare", "@follower_singular": { "type": "text", "placeholders": { } }, - "follower_plural": "seguidores", + "follower_plural": "följare", "@follower_plural": { "type": "text", "placeholders": { } }, - "delete_account_title": "Excluir a minha conta", + "delete_account_title": "Ta bort konto", "@delete_account_title": { "type": "text", "placeholders": { } }, - "delete_account_current_pwd": "Senha atual", + "delete_account_current_pwd": "Nuvarande lösenord", "@delete_account_current_pwd": { "type": "text", "placeholders": { } }, - "delete_account_current_pwd_hint": "Digite a sua senha atual", + "delete_account_current_pwd_hint": "Ange ditt nuvarande lösenord", "@delete_account_current_pwd_hint": { "type": "text", "placeholders": { } }, - "delete_account_next": "Avançar", + "delete_account_next": "NĂ€sta", "@delete_account_next": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_title": "Confirmação", + "delete_account_confirmation_title": "BekrĂ€ftelse", "@delete_account_confirmation_title": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_desc": "Tem certeza de que deseja excluir sua conta?", + "delete_account_confirmation_desc": "Är du sĂ€ker pĂ„ att du vill ta bort ditt konto?", "@delete_account_confirmation_desc": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_desc_info": "Esta Ă© uma ação permanente e nĂŁo pode ser desfeita.", + "delete_account_confirmation_desc_info": "Detta Ă€r permanent och kan inte Ă„ngras senare.", "@delete_account_confirmation_desc_info": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_no": "NĂŁo", + "delete_account_confirmation_no": "Nej", "@delete_account_confirmation_no": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_yes": "Sim", + "delete_account_confirmation_yes": "Ja", "@delete_account_confirmation_yes": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_goodbye": "Adeus 😱", + "delete_account_confirmation_goodbye": "Hej dĂ„ 😱", "@delete_account_confirmation_goodbye": { "type": "text", "placeholders": { } }, - "invites_create_create_title": "Criar convite", + "invites_create_create_title": "Skapa inbjudan", "@invites_create_create_title": { "type": "text", "placeholders": { } }, - "invites_create_edit_title": "Editar convite", + "invites_create_edit_title": "Redigera inbjudan", "@invites_create_edit_title": { "type": "text", "placeholders": { } }, - "invites_create_save": "Salvar", + "invites_create_save": "Spara", "@invites_create_save": { "type": "text", "placeholders": { } }, - "invites_create_create": "Criar", + "invites_create_create": "Skapa", "@invites_create_create": { "type": "text", "placeholders": { } }, - "invites_create_name_title": "Apelido", + "invites_create_name_title": "Smeknamn", "@invites_create_name_title": { "type": "text", "placeholders": { } }, - "invites_create_name_hint": "ex: JoĂŁozinho", + "invites_create_name_hint": "t. ex. Sven Svensson", "@invites_create_name_hint": { "type": "text", "placeholders": { } }, - "invites_pending": "Pendente", + "invites_pending": "VĂ€ntande", "@invites_pending": { "type": "text", "placeholders": { } }, - "invites_delete": "Excluir", + "invites_delete": "Ta bort", "@invites_delete": { "type": "text", "placeholders": { } }, - "invites_invite_text": "Convidar", + "invites_invite_text": "Bjud in", "@invites_invite_text": { "type": "text", "placeholders": { } }, - "invites_share_yourself": "Compartilhe o convite vocĂȘ mesmo", + "invites_share_yourself": "Dela inbjudan sjĂ€lv", "@invites_share_yourself": { "type": "text", "placeholders": { } }, - "invites_share_yourself_desc": "Escolha um app de mensagens, etc.", + "invites_share_yourself_desc": "VĂ€lj mellan meddelandeappar, etc.", "@invites_share_yourself_desc": { "type": "text", "placeholders": { } }, - "invites_share_email": "Compartilhe o convite por email", + "invites_share_email": "Dela inbjudan via e-post", "@invites_share_email": { "type": "text", "placeholders": { } }, - "invites_email_text": "Email", + "invites_email_text": "E-post", "@invites_email_text": { "type": "text", "placeholders": { } }, - "invites_email_hint": "ex: joaozinho@email.com", + "invites_email_hint": "t. ex. svensvensson@email.com", "@invites_email_hint": { "type": "text", "placeholders": { } }, - "invites_email_invite_text": "Convite por email", + "invites_email_invite_text": "E-postinbjudan", "@invites_email_invite_text": { "type": "text", "placeholders": { } }, - "invites_email_send_text": "Enviar", + "invites_email_send_text": "Skicka", "@invites_email_send_text": { "type": "text", "placeholders": { } }, - "invites_email_sent_text": "Email de convite enviado", + "invites_email_sent_text": "E-postinbjudan skickad", "@invites_email_sent_text": { "type": "text", "placeholders": { } }, - "invites_share_email_desc": "Enviaremos um email de convite com instruçÔes em seu nome", + "invites_share_email_desc": "Vi kommer skicka en inbjudan med instruktioner Ă„ dina vĂ€gnar", "@invites_share_email_desc": { "type": "text", "placeholders": { } }, - "invites_edit_text": "Editar", + "invites_edit_text": "Redigera", "@invites_edit_text": { "type": "text", "placeholders": { } }, - "invites_title": "Meus convites", + "invites_title": "Mina inbjudningar", "@invites_title": { "type": "text", "placeholders": { } }, - "invites_accepted_title": "Aceitos", + "invites_accepted_title": "Accepterade", "@invites_accepted_title": { "type": "text", "placeholders": { } }, - "invites_accepted_group_name": "convites aceitos", + "invites_accepted_group_name": "accepterade inbjudningar", "@invites_accepted_group_name": { "description": "Egs where this will end up: Accepted invites (capitalised title), Search accepted invites, See all accepted invites ", "type": "text", @@ -1000,77 +1000,77 @@ } }, - "invites_accepted_group_item_name": "convite aceito", + "invites_accepted_group_item_name": "accepterad inbjudan", "@invites_accepted_group_item_name": { "type": "text", "placeholders": { } }, - "invites_pending_group_name": "convites pendentes", + "invites_pending_group_name": "vĂ€ntande inbjudningar", "@invites_pending_group_name": { "type": "text", "placeholders": { } }, - "invites_pending_group_item_name": "convite pendente", + "invites_pending_group_item_name": "vĂ€ntande inbjudan", "@invites_pending_group_item_name": { "type": "text", "placeholders": { } }, - "invites_none_used": "Parece que vocĂȘ nĂŁo usou nenhum convite.", + "invites_none_used": "Det ser ut som att du inte anvĂ€nt nĂ„gra inbjudningar.", "@invites_none_used": { "type": "text", "placeholders": { } }, - "invites_none_left": "VocĂȘ nĂŁo tem convites disponĂ­veis.", + "invites_none_left": "Du har inga inbjudningar tillgĂ€ngliga.", "@invites_none_left": { "type": "text", "placeholders": { } }, - "invites_invite_a_friend": "Convidar um amigo", + "invites_invite_a_friend": "Bjud in en vĂ€n", "@invites_invite_a_friend": { "type": "text", "placeholders": { } }, - "invites_refresh": "Atualizar", + "invites_refresh": "Uppdatera", "@invites_refresh": { "type": "text", "placeholders": { } }, - "language_settings_title": "ConfiguraçÔes de idioma", + "language_settings_title": "SprĂ„kinstĂ€llningar", "@language_settings_title": { "type": "text", "placeholders": { } }, - "language_settings_save": "Salvar", + "language_settings_save": "Spara", "@language_settings_save": { "type": "text", "placeholders": { } }, - "language_settings_saved_success": "Idioma alterado com sucesso", + "language_settings_saved_success": "SprĂ„ket har uppdaterats", "@language_settings_saved_success": { "type": "text", "placeholders": { } }, - "groups_see_all": "Ver {groupName}", + "groups_see_all": "Visa alla {groupName}", "@groups_see_all": { "description": "Can be, See all joined communities, See all pending invites, See all moderated communities etc. ", "type": "text", @@ -1080,7 +1080,7 @@ } } }, - "invites_joined_with": "Entrou com o nome de usuĂĄrio @{username}", + "invites_joined_with": "Gick med under anvĂ€ndarnamnet @{username}", "@invites_joined_with": { "type": "text", "placeholders": { @@ -1089,7 +1089,7 @@ } } }, - "invites_pending_email": "Pendente, convite enviado para o email {email}", + "invites_pending_email": "VĂ€ntande, inbjudan skickad till {email}", "@invites_pending_email": { "type": "text", "placeholders": { @@ -1098,7 +1098,7 @@ } } }, - "timeline_filters_no_match": "Nada encontrado para '{searchQuery}'.", + "timeline_filters_no_match": "Inga resultat hittades för '{searchQuery}'.", "@timeline_filters_no_match": { "type": "text", "placeholders": { @@ -1107,217 +1107,217 @@ } } }, - "clear_application_cache_text": "Limpar cache", + "clear_application_cache_text": "Rensa cacheminnet", "@clear_application_cache_text": { "type": "text", "placeholders": { } }, - "clear_application_cache_desc": "Limpar cache de posts, contas, imagens e mais.", + "clear_application_cache_desc": "Rensa cachelagrade inlĂ€gg, konton, bilder & mer.", "@clear_application_cache_desc": { "type": "text", "placeholders": { } }, - "clear_application_cache_success": "Cache limpo com sucesso", + "clear_application_cache_success": "Cacheminnet har rensats", "@clear_application_cache_success": { "type": "text", "placeholders": { } }, - "clear_application_cache_failure": "NĂŁo foi possĂ­vel limpar o cache", + "clear_application_cache_failure": "Kunde inte rensa cacheminnet", "@clear_application_cache_failure": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_title": "Rejeição das diretrizes", + "confirm_guidelines_reject_title": "Avvisande av riktlinjer", "@confirm_guidelines_reject_title": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_info": "VocĂȘ nĂŁo pode usar a Okuna atĂ© aceitar as diretrizes.", + "confirm_guidelines_reject_info": "Du kan inte anvĂ€nda Okuna förrĂ€n du har godkĂ€nt riktlinjerna.", "@confirm_guidelines_reject_info": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_chat_with_team": "Converse com a equipe.", + "confirm_guidelines_reject_chat_with_team": "Chatta med teamet.", "@confirm_guidelines_reject_chat_with_team": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_chat_immediately": "Inicie o chat agora.", + "confirm_guidelines_reject_chat_immediately": "Starta en chat direkt.", "@confirm_guidelines_reject_chat_immediately": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_chat_community": "Converse com a comunidade.", + "confirm_guidelines_reject_chat_community": "Chatta med gemenskapen.", "@confirm_guidelines_reject_chat_community": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_join_slack": "Junte-se ao canal no Slack.", + "confirm_guidelines_reject_join_slack": "GĂ„ med i Slack-kanalen.", "@confirm_guidelines_reject_join_slack": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_go_back": "Voltar", + "confirm_guidelines_reject_go_back": "Tillbaka", "@confirm_guidelines_reject_go_back": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_delete_account": "Excluir a minha conta", + "confirm_guidelines_reject_delete_account": "Ta bort konto", "@confirm_guidelines_reject_delete_account": { "type": "text", "placeholders": { } }, - "guidelines_desc": "Por favor, dedique este momento para ler e aceitar as nossas diretrizes.", + "guidelines_desc": "VĂ€nligen lĂ€gg en stund pĂ„ att lĂ€sa igenom och godkĂ€nna vĂ„ra riktlinjer.", "@guidelines_desc": { "type": "text", "placeholders": { } }, - "guidelines_accept": "Aceitar", + "guidelines_accept": "GodkĂ€nn", "@guidelines_accept": { "type": "text", "placeholders": { } }, - "guidelines_reject": "Rejeitar", + "guidelines_reject": "Avvisa", "@guidelines_reject": { "type": "text", "placeholders": { } }, - "change_email_title": "Alterar Email", + "change_email_title": "Ändra e-postadress", "@change_email_title": { "type": "text", "placeholders": { } }, - "change_email_email_text": "Email", + "change_email_email_text": "E-post", "@change_email_email_text": { "type": "text", "placeholders": { } }, - "change_email_hint_text": "Digite seu novo email", + "change_email_hint_text": "Ange din nya e-postadress", "@change_email_hint_text": { "type": "text", "placeholders": { } }, - "change_email_error": "Este email jĂĄ estĂĄ registrado", + "change_email_error": "E-postadressen Ă€r redan registrerad", "@change_email_error": { "type": "text", "placeholders": { } }, - "change_email_save": "Salvar", + "change_email_save": "Spara", "@change_email_save": { "type": "text", "placeholders": { } }, - "change_email_success_info": "Enviamos um link de confirmação para seu novo endereço de email, clique nele para verificar seu novo email", + "change_email_success_info": "Vi har skickat en bekrĂ€ftelselĂ€nk till din nya e-postadress, klicka pĂ„ den för att verifiera din nya e-post", "@change_email_success_info": { "type": "text", "placeholders": { } }, - "clear_app_preferences_title": "Limpar preferĂȘncias", + "clear_app_preferences_title": "Rensa instĂ€llningar", "@clear_app_preferences_title": { "type": "text", "placeholders": { } }, - "clear_app_preferences_desc": "Limpe as preferĂȘncias do aplicativo. Atualmente, isso influencia apenas a ordem preferida dos comentĂĄrios.", + "clear_app_preferences_desc": "Rensa applikationsinstĂ€llningarna. Just nu Ă€r detta enbart den föredragna kommentarsordningen.", "@clear_app_preferences_desc": { "type": "text", "placeholders": { } }, - "clear_app_preferences_cleared_successfully": "PreferĂȘncias limpas com sucesso", + "clear_app_preferences_cleared_successfully": "InstĂ€llningarna har rensats", "@clear_app_preferences_cleared_successfully": { "type": "text", "placeholders": { } }, - "email_verification_successful": "IncrĂ­vel! Seu email foi verificado", + "email_verification_successful": "HĂ€ftigt! Din e-post har verifierats", "@email_verification_successful": { "type": "text", "placeholders": { } }, - "email_verification_error": "Opa! Seu token nĂŁo era vĂĄlido ou expirou, por favor tente novamente", + "email_verification_error": "Hoppsan! Din kod Ă€r ogiltigt eller har gĂ„tt ut, vĂ€nligen försök igen", "@email_verification_error": { "type": "text", "placeholders": { } }, - "clear_app_preferences_error": "NĂŁo foi possĂ­vel limpar as preferĂȘncias", + "clear_app_preferences_error": "InstĂ€llningarna kunde inte rensas", "@clear_app_preferences_error": { "type": "text", "placeholders": { } }, - "disconnect_from_user_success": "Desconectado com sucesso", + "disconnect_from_user_success": "Er kontakt har brutits", "@disconnect_from_user_success": { "type": "text", "placeholders": { } }, - "block_user": "Bloquear usuĂĄrio", + "block_user": "Blockera anvĂ€ndare", "@block_user": { "type": "text", "placeholders": { } }, - "unblock_user": "Desbloquear usuĂĄrio", + "unblock_user": "Avblockera anvĂ€ndare", "@unblock_user": { "type": "text", "placeholders": { } }, - "disconnect_from_user": "Desconectar-se de {userName}", + "disconnect_from_user": "Ta bort {userName} som kontakt", "@disconnect_from_user": { "type": "text", "placeholders": { @@ -1326,7 +1326,7 @@ } } }, - "circle_peoples_count": "{prettyUsersCount} pessoas", + "circle_peoples_count": "{prettyUsersCount} personer", "@circle_peoples_count": { "type": "text", "placeholders": { @@ -1335,7 +1335,7 @@ } } }, - "follows_list_accounts_count": "{prettyUsersCount} contas", + "follows_list_accounts_count": "{prettyUsersCount} konton", "@follows_list_accounts_count": { "type": "text", "placeholders": { diff --git a/assets/i18n/pt-BR/user_search.arb b/assets/i18n/pt-BR/user_search.arb index 900468509..0b334df6b 100644 --- a/assets/i18n/pt-BR/user_search.arb +++ b/assets/i18n/pt-BR/user_search.arb @@ -1,26 +1,26 @@ { - "search_text": "Pesquisar...", + "search_text": "Sök...", "@search_text": { "type": "text", "placeholders": { } }, - "communities": "Comunidades", + "communities": "Gemenskaper", "@communities": { "type": "text", "placeholders": { } }, - "users": "UsuĂĄrios", + "users": "AnvĂ€ndare", "@users": { "type": "text", "placeholders": { } }, - "list_search_text": "Pesquisar {resourcePluralName} ...", + "list_search_text": "Sök {resourcePluralName} ...", "@list_search_text": { "description": "resourcePluralName can take many forms foreg. Search members... , Search accepted invites, Search communities.. etc.", "type": "text", @@ -30,7 +30,7 @@ } } }, - "list_no_results_found": "Sem {resourcePluralName}.", + "list_no_results_found": "Inga {resourcePluralName} hittades.", "@list_no_results_found": { "description": "Used in a generic list widget. Can be No users found. No communities found. No pending invites found. Its always a plural. ", "type": "text", @@ -40,28 +40,28 @@ } } }, - "list_refresh_text": "Atualizar", + "list_refresh_text": "Uppdatera", "@list_refresh_text": { "type": "text", "placeholders": { } }, - "list_retry": "Toque para tentar novamente.", + "list_retry": "Tryck för att försöka igen.", "@list_retry": { "type": "text", "placeholders": { } }, - "cancel": "Cancelar", + "cancel": "Avbryt", "@cancel": { "type": "text", "placeholders": { } }, - "searching_for": "Procurando por '{searchQuery}'", + "searching_for": "Söker efter '{searchQuery}'", "@searching_for": { "type": "text", "placeholders": { @@ -70,7 +70,7 @@ } } }, - "no_results_for": "Nenhum resultado para '{searchQuery}'.", + "no_results_for": "Inga resultat hittades för '{searchQuery}'.", "@no_results_for": { "type": "text", "placeholders": { @@ -79,7 +79,7 @@ } } }, - "no_communities_for": "Nenhuma comunidade encontrada para '{searchQuery}'.", + "no_communities_for": "Inga gemenskaper hittades för '{searchQuery}'.", "@no_communities_for": { "type": "text", "placeholders": { @@ -88,7 +88,7 @@ } } }, - "no_users_for": "Nenhum usuĂĄrio encontrado para '{searchQuery}'.", + "no_users_for": "Inga anvĂ€ndare hittades för '{searchQuery}'.", "@no_users_for": { "type": "text", "placeholders": { 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..f3c66da13 100644 --- a/assets/i18n/tr/notifications.arb +++ b/assets/i18n/tr/notifications.arb @@ -76,6 +76,34 @@ } }, + "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", @@ -232,5 +260,21 @@ } } + }, + "mentioned_in_post_comment_tile": "[name] [username] bir yorumda sizden bahsetti.", + "@mentioned_in_post_comment_tile": { + "description": "Eg.: James @jamest mentioned you on a comment.", + "type": "text", + "placeholders": { + + } + }, + "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 From 5c7ad9beb134b3008c79db4a0617de860183b47a Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Tue, 13 Aug 2019 17:49:53 +0200 Subject: [PATCH 06/13] :globe_with_meridians: add mentions locales --- lib/locale/messages_all.dart | 16 +- lib/locale/messages_de.dart | 85 +- lib/locale/messages_en.dart | 7 + lib/locale/messages_es-ES.dart | 846 ++++++++++++++++++++ lib/locale/messages_fr.dart | 7 + lib/locale/messages_it.dart | 7 + lib/locale/messages_pt-BR.dart | 1379 ++++++++++++++++---------------- lib/locale/messages_sv-SE.dart | 839 +++++++++++++++++++ lib/locale/messages_tr.dart | 9 +- lib/main.dart | 32 +- 10 files changed, 2481 insertions(+), 746 deletions(-) create mode 100644 lib/locale/messages_es-ES.dart create mode 100644 lib/locale/messages_sv-SE.dart 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..4484a23b5 100644 --- a/lib/locale/messages_de.dart +++ b/lib/locale/messages_de.dart @@ -70,7 +70,7 @@ class MessageLookup extends MessageLookupByLibrary { static m24(communityName) => "[name] [username] hat dich in die Community /c/${communityName} eingeladen."; - static m25(maxLength) => "Ein Kommentar darf nicht mehr als ${maxLength} Zeichen haben."; + static m25(maxLength) => "Ein Kommentar darf nicht lĂ€nger als ${maxLength} Zeichen lang sein."; static m26(commentsCount) => "Alle ${commentsCount} Kommentare anzeigen"; @@ -153,7 +153,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 +167,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 +184,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 +195,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 +231,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 +258,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 +273,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 +381,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 +405,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 +418,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 +430,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 +442,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 +468,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 +508,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,14 +518,18 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] hat dich in einem Kommentar erwĂ€hnt."), + "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"), @@ -610,20 +617,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."), @@ -645,14 +652,14 @@ 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, @@ -809,7 +816,7 @@ class MessageLookup extends MessageLookupByLibrary { "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"), diff --git a/lib/locale/messages_en.dart b/lib/locale/messages_en.dart index ddd886ae0..6704b67d7 100644 --- a/lib/locale/messages_en.dart +++ b/lib/locale/messages_en.dart @@ -381,6 +381,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 +508,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,12 +520,16 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] mentioned you on a comment."), + "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"), diff --git a/lib/locale/messages_es-ES.dart b/lib/locale/messages_es-ES.dart new file mode 100644 index 000000000..3f6a4c761 --- /dev/null +++ b/lib/locale/messages_es-ES.dart @@ -0,0 +1,846 @@ +// 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(communityName) => "[name] [username] te ha invitado a unirte a la comunidad /c/${communityName}."; + + static m25(maxLength) => "Un comentario no puede ser mĂĄs largo que ${maxLength} caracteres."; + + static m26(commentsCount) => "Ver los ${commentsCount} comentarios"; + + static m27(circlesSearchQuery) => "\'No se han encontrado cĂ­rculos que coincidan con \'${circlesSearchQuery}\'."; + + static m28(name) => "${name} aĂșn no ha compartido nada."; + + static m29(postCreatorUsername) => "los cĂ­rculos de @${postCreatorUsername}\'s"; + + static m30(maxLength) => "El nombre del cĂ­rculo no debe tener mĂĄs de ${maxLength} caracteres."; + + static m31(prettyUsersCount) => "${prettyUsersCount} gente"; + + static m32(username) => "ÂżSeguro que quieres banear a @${username}?"; + + static m33(userName) => "Confirmar conexiĂłn con ${userName}"; + + static m34(userName) => "Conectar con ${userName}"; + + static m35(userName) => "Desconectarse de ${userName}"; + + static m36(limit) => "Imagen demasiado grande (lĂ­mite: ${limit} MB)"; + + static m37(username) => "El nombre de usuario @${username} ya existe"; + + static m38(searchQuery) => "No se encontrĂł un Emoji similar a \'${searchQuery}\'."; + + static m39(searchQuery) => "No se encontrĂł lista con \'${searchQuery}\'"; + + static m40(prettyUsersCount) => "${prettyUsersCount} cuentas"; + + static m41(prettyUsersCount) => "${prettyUsersCount} Cuentas"; + + static m42(groupName) => "Ver ${groupName}"; + + static m43(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 m44(username) => "Se uniĂł con el nombre de usuario @${username}"; + + static m45(email) => "Pendiente, email de invitaciĂłn enviado a ${email}"; + + static m46(maxLength) => "El nombre de la lista no debe tener mĂĄs de ${maxLength} caracteres."; + + static m47(maxLength) => "La biografĂ­a no puede contener mĂĄs de ${maxLength} caracteres."; + + static m48(maxLength) => "La ubicaciĂłn no puede contener mĂĄs de ${maxLength} caracteres."; + + static m49(takenConnectionsCircleName) => "El nombre de lista \'${takenConnectionsCircleName}\' esta tomado"; + + static m50(listName) => "El nombre de lista \'${listName}\' esta tomado"; + + static m51(searchQuery) => "Sin resultados para \'${searchQuery}\'."; + + static m52(resourcePluralName) => "No se encontrĂł ningun ${resourcePluralName}."; + + static m53(resourcePluralName) => "Buscar ${resourcePluralName}..."; + + static m54(searchQuery) => "No se encontraron comunidades para \'${searchQuery}\'."; + + static m55(searchQuery) => "Sin resultados para \"${searchQuery}\"."; + + static m56(searchQuery) => "No se encontraron usuarios para \'${searchQuery}\'."; + + static m57(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" : MessageLookupByLibrary.simpleMessage("[name] [username] te mencionĂł en un comentario."), + "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" : m24, + "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" : m25, + "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" : m26, + "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" : m27, + "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" : m28, + "post__usernames_circles" : m29, + "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" : m30, + "user__circle_peoples_count" : m31, + "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" : m32, + "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" : m33, + "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" : m34, + "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" : m35, + "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" : m36, + "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" : m37, + "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" : m38, + "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" : m39, + "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" : m40, + "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" : m41, + "user__groups_see_all" : m42, + "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" : m43, + "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" : m44, + "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" : m45, + "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" : m46, + "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" : m47, + "user__profile_location_length_error" : m48, + "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" : m49, + "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" : m50, + "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" : m51, + "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" : m52, + "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Refrescar"), + "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Toca para reintentar."), + "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__search_text" : MessageLookupByLibrary.simpleMessage("Buscar..."), + "user_search__searching_for" : m57, + "user_search__users" : MessageLookupByLibrary.simpleMessage("Usuarios") + }; +} diff --git a/lib/locale/messages_fr.dart b/lib/locale/messages_fr.dart index da4933ac0..1b269bc0a 100644 --- a/lib/locale/messages_fr.dart +++ b/lib/locale/messages_fr.dart @@ -381,6 +381,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 +508,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,12 +520,16 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] vous a mentionnĂ©.e sur un commentaire."), + "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"), diff --git a/lib/locale/messages_it.dart b/lib/locale/messages_it.dart index 379ac23e7..d7a782a2b 100644 --- a/lib/locale/messages_it.dart +++ b/lib/locale/messages_it.dart @@ -381,6 +381,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 +508,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,12 +520,16 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] ti ha menzionato in un commento."), + "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"), diff --git a/lib/locale/messages_pt-BR.dart b/lib/locale/messages_pt-BR.dart index 8526f815a..756d4fb06 100644 --- a/lib/locale/messages_pt-BR.dart +++ b/lib/locale/messages_pt-BR.dart @@ -20,820 +20,827 @@ typedef MessageIfAbsent(String message_str, List args); class MessageLookup extends MessageLookupByLibrary { get localeName => 'pt_BR'; - static m0(minLength, maxLength) => "(${minLength}-${maxLength} caracteres)"; + static m0(minLength, maxLength) => "(${minLength}-${maxLength} tecken)"; - static m1(minLength, maxLength) => "A descrição deve ter entre ${minLength} e ${maxLength} caracteres."; + static m1(minLength, maxLength) => "Beskrivningen mĂ„ste vara mellan ${minLength} och ${maxLength} tecken."; - static m2(minLength, maxLength) => "O nome deve ter entre ${minLength} e ${maxLength} caracteres."; + static m2(minLength, maxLength) => "Namnet mĂ„ste vara mellan ${minLength} och ${maxLength} tecken."; - static m3(minLength, maxLength) => "A senha deve ter entre ${minLength} e ${maxLength} caracteres."; + static m3(minLength, maxLength) => "Lösenordet mĂ„ste vara mellan ${minLength} och ${maxLength} tecken."; - static m4(maxLength) => "Um nome de usuĂĄrio nĂŁo pode ser maior que ${maxLength} caracteres."; + static m4(maxLength) => "Ett anvĂ€ndarnamn kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m5(maxLength) => "Os adjetivos nĂŁo podem ser mais longos que ${maxLength} caracteres."; + static m5(maxLength) => "Adjektiv fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m6(username) => "VocĂȘ tem certeza de que deseja adicionar @${username} como administrador da comunidade?"; + static m6(username) => "Är du sĂ€ker pĂ„ att du vill lĂ€gga till @${username} som administratör för gemenskapen?"; - static m7(username) => "VocĂȘ tem certeza de que deseja banir @${username}?"; + static m7(username) => "Är du sĂ€ker pĂ„ att du vill banna @${username}?"; - static m8(maxLength) => "A descrição nĂŁo pode ser maior que ${maxLength} caracteres."; + static m8(maxLength) => "Beskrivningen kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m9(username) => "VocĂȘ tem certeza de que deseja adicionar @${username} como moderador da comunidade?"; + static m9(username) => "Är du sĂ€ker pĂ„ att du vill lĂ€gga till @${username} som gemenskapsmoderator?"; - static m10(maxLength) => "O nome nĂŁo pode ser maior que ${maxLength} caracteres."; + static m10(maxLength) => "Namnet fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m11(min) => "VocĂȘ deve escolher pelo menos ${min} categorias."; + static m11(min) => "Du mĂ„ste vĂ€lja Ă„tminstone ${min} kategorier."; - static m12(min) => "VocĂȘ deve escolher pelo menos ${min} categoria."; + static m12(min) => "Du mĂ„ste vĂ€lja Ă„tminstone ${min} kategori."; - static m13(max) => "Escolha atĂ© ${max} categorias"; + static m13(max) => "VĂ€lj upp till ${max} kategorier"; - static m14(maxLength) => "As regras nĂŁo podem ser maiores que ${maxLength} caracteres."; + static m14(maxLength) => "Reglerna fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m15(takenName) => "O nome de comunidade \'${takenName}\' jĂĄ estĂĄ em uso"; + static m15(takenName) => "Gemenskapsnamnet \'${takenName}\' Ă€r upptaget"; - static m16(maxLength) => "O tĂ­tulo nĂŁo pode ser maior que ${maxLength} caracteres."; + static m16(maxLength) => "Titeln fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m17(categoryName) => "Em alta em ${categoryName}"; + static m17(categoryName) => "Trendiga i ${categoryName}"; - static m18(currentUserLanguage) => "Idioma (${currentUserLanguage})"; + static m18(currentUserLanguage) => "SprĂ„k (${currentUserLanguage})"; - static m19(resourceCount, resourceName) => "Ver todas as ${resourceCount} ${resourceName}"; + static m19(resourceCount, resourceName) => "Visa alla ${resourceCount} ${resourceName}"; - static m20(postCommentText) => "[name] [username] tambĂ©m comentou: ${postCommentText}"; + static m20(postCommentText) => "[name] [username] kommenterade ocksĂ„: ${postCommentText}"; - static m21(postCommentText) => "[name] [username] comentou no seu post: ${postCommentText}"; + static m21(postCommentText) => "[name] [username] kommenterade pĂ„ ditt inlĂ€gg: ${postCommentText}"; - static m22(postCommentText) => "[name] [username] tambĂ©m respondeu: ${postCommentText}"; + static m22(postCommentText) => "[name] [username] svarade ocksĂ„: ${postCommentText}"; - static m23(postCommentText) => "[name] [username] respondeu: ${postCommentText}"; + static m23(postCommentText) => "[name] [username] svarade: ${postCommentText}"; - static m24(communityName) => "[name] [username] convidou vocĂȘ para se juntar Ă  comunidade /c/${communityName}."; + static m24(communityName) => "[name] [username] har bjudit in dig till gemenskapen /c/${communityName}."; - static m25(maxLength) => "Um comentĂĄrio nĂŁo pode ter mais de ${maxLength} caracteres."; + static m25(maxLength) => "En kommentar kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m26(commentsCount) => "Ver todos os ${commentsCount} comentĂĄrios"; + static m26(commentsCount) => "Visa alla ${commentsCount} kommentarer"; - static m27(circlesSearchQuery) => "\'Nenhum cĂ­rculo encontrado para \'${circlesSearchQuery}\'."; + static m27(circlesSearchQuery) => "Inga kretsar hittades som matchar \'${circlesSearchQuery}\'."; - static m28(name) => "${name} ainda nĂŁo compartilhou nada."; + static m28(name) => "${name} har inte delat nĂ„got Ă€nnu."; - static m29(postCreatorUsername) => "cĂ­rculos de @${postCreatorUsername}"; + static m29(postCreatorUsername) => "@${postCreatorUsername}s kretsar"; - static m30(maxLength) => "O nome do cĂ­rculo nĂŁo deve ter mais de ${maxLength} caracteres."; + static m30(maxLength) => "Kretsens namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m31(prettyUsersCount) => "${prettyUsersCount} pessoas"; + static m31(prettyUsersCount) => "${prettyUsersCount} personer"; - static m32(username) => "Tem certeza de que deseja bloquear @${username}?"; + static m32(username) => "Är du sĂ€ker pĂ„ att du vill blockera @${username}?"; - static m33(userName) => "Confirmar a conexĂŁo com ${userName}"; + static m33(userName) => "BekrĂ€fta ${userName}s kontaktförfrĂ„gan"; - static m34(userName) => "Conectar-se com ${userName}"; + static m34(userName) => "LĂ€gg till ${userName} som kontakt"; - static m35(userName) => "Desconectar-se de ${userName}"; + static m35(userName) => "Ta bort ${userName} som kontakt"; - static m36(limit) => "Imagem muito grande (limite: ${limit} MB)"; + static m36(limit) => "Bilden Ă€r för stor (grĂ€ns: ${limit} MB)"; - static m37(username) => "O nome de usuĂĄrio @${username} jĂĄ estĂĄ em uso"; + static m37(username) => "AnvĂ€ndarnamnet @${username} Ă€r upptaget"; - static m38(searchQuery) => "Nenhum emoji encontrado para \'${searchQuery}\'."; + static m38(searchQuery) => "Ingen emoji hittades som matchar \'${searchQuery}\'."; - static m39(searchQuery) => "Nenhuma lista encontrada para \'${searchQuery}\'"; + static m39(searchQuery) => "Inga listor hittades för \'${searchQuery}\'"; - static m40(prettyUsersCount) => "${prettyUsersCount} contas"; + static m40(prettyUsersCount) => "${prettyUsersCount} konton"; - static m41(prettyUsersCount) => "${prettyUsersCount} Contas"; + static m41(prettyUsersCount) => "${prettyUsersCount} Konton"; - static m42(groupName) => "Ver ${groupName}"; + static m42(groupName) => "Visa alla ${groupName}"; - 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(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 m44(username) => "Entrou com o nome de usuĂĄrio @${username}"; + static m44(username) => "Gick med under anvĂ€ndarnamnet @${username}"; - static m45(email) => "Pendente, convite enviado para o email ${email}"; + static m45(email) => "VĂ€ntande, inbjudan skickad till ${email}"; - static m46(maxLength) => "O nome da lista nĂŁo deve ter mais de ${maxLength} caracteres."; + static m46(maxLength) => "Listans namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m47(maxLength) => "A bio nĂŁo pode ser maior que ${maxLength} caracteres."; + static m47(maxLength) => "Bion kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m48(maxLength) => "O local nĂŁo pode ser maior que ${maxLength} caracteres."; + static m48(maxLength) => "En plats kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m49(takenConnectionsCircleName) => "O nome de cĂ­rculo \'${takenConnectionsCircleName}\' jĂĄ estĂĄ em uso"; + static m49(takenConnectionsCircleName) => "Kretsnamnet \'${takenConnectionsCircleName}\' Ă€r upptaget"; - static m50(listName) => "O nome de lista \'${listName}\' jĂĄ estĂĄ sendo usado"; + static m50(listName) => "Listnamnet \'${listName}\' Ă€r upptaget"; - static m51(searchQuery) => "Nada encontrado para \'${searchQuery}\'."; + static m51(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; - static m52(resourcePluralName) => "Sem ${resourcePluralName}."; + static m52(resourcePluralName) => "Inga ${resourcePluralName} hittades."; - static m53(resourcePluralName) => "Pesquisar ${resourcePluralName} ..."; + static m53(resourcePluralName) => "Sök ${resourcePluralName} ..."; - static m54(searchQuery) => "Nenhuma comunidade encontrada para \'${searchQuery}\'."; + static m54(searchQuery) => "Inga gemenskaper hittades för \'${searchQuery}\'."; - static m55(searchQuery) => "Nenhum resultado para \'${searchQuery}\'."; + static m55(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; - static m56(searchQuery) => "Nenhum usuĂĄrio encontrado para \'${searchQuery}\'."; + static m56(searchQuery) => "Inga anvĂ€ndare hittades för \'${searchQuery}\'."; - static m57(searchQuery) => "Procurando por \'${searchQuery}\'"; + static m57(searchQuery) => "Söker efter \'${searchQuery}\'"; final messages = _notInlinedMessages(_notInlinedMessages); static _notInlinedMessages(_) => { - "auth__change_password_current_pwd" : MessageLookupByLibrary.simpleMessage("Senha atual"), - "auth__change_password_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Digite a sua senha atual"), - "auth__change_password_current_pwd_incorrect" : MessageLookupByLibrary.simpleMessage("A senha inserida estĂĄ incorreta"), - "auth__change_password_new_pwd" : MessageLookupByLibrary.simpleMessage("Nova senha"), - "auth__change_password_new_pwd_error" : MessageLookupByLibrary.simpleMessage("Por favor, certifique-se de que a senha tenha entre 10 e 100 caracteres"), - "auth__change_password_new_pwd_hint" : MessageLookupByLibrary.simpleMessage("Digite a sua nova senha"), - "auth__change_password_save_success" : MessageLookupByLibrary.simpleMessage("Tudo certo! Sua senha foi atualizada"), - "auth__change_password_save_text" : MessageLookupByLibrary.simpleMessage("Salvar"), - "auth__change_password_title" : MessageLookupByLibrary.simpleMessage("Alterar senha"), - "auth__create_acc__almost_there" : MessageLookupByLibrary.simpleMessage("Quase lĂĄ..."), - "auth__create_acc__are_you_legal_age" : MessageLookupByLibrary.simpleMessage("VocĂȘ tem mais de 16 anos?"), - "auth__create_acc__avatar_choose_camera" : MessageLookupByLibrary.simpleMessage("Tirar uma foto"), - "auth__create_acc__avatar_choose_gallery" : MessageLookupByLibrary.simpleMessage("Usar uma foto existente"), - "auth__create_acc__avatar_remove_photo" : MessageLookupByLibrary.simpleMessage("Remover foto"), - "auth__create_acc__avatar_tap_to_change" : MessageLookupByLibrary.simpleMessage("Toque para alterar"), - "auth__create_acc__can_change_username" : MessageLookupByLibrary.simpleMessage("Se desejar, vocĂȘ pode alterĂĄ-lo a qualquer momento atravĂ©s da sua pĂĄgina de perfil."), - "auth__create_acc__congratulations" : MessageLookupByLibrary.simpleMessage("ParabĂ©ns!"), - "auth__create_acc__create_account" : MessageLookupByLibrary.simpleMessage("Criar uma conta"), - "auth__create_acc__done" : MessageLookupByLibrary.simpleMessage("Criar conta"), - "auth__create_acc__done_continue" : MessageLookupByLibrary.simpleMessage("Entrar"), - "auth__create_acc__done_created" : MessageLookupByLibrary.simpleMessage("Sua conta foi criada com o nome de usuĂĄrio "), - "auth__create_acc__done_description" : MessageLookupByLibrary.simpleMessage("Sua conta foi criada com sucesso."), - "auth__create_acc__done_subtext" : MessageLookupByLibrary.simpleMessage("VocĂȘ pode mudar isso nas configuraçÔes de perfil."), - "auth__create_acc__done_title" : MessageLookupByLibrary.simpleMessage("Aeee!"), - "auth__create_acc__email_empty_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± Seu email nĂŁo pode ficar vazio"), - "auth__create_acc__email_invalid_error" : MessageLookupByLibrary.simpleMessage("😅 Por favor, forneça um endereço de email vĂĄlido."), - "auth__create_acc__email_placeholder" : MessageLookupByLibrary.simpleMessage("gisele_bundchen@mail.com"), - "auth__create_acc__email_server_error" : MessageLookupByLibrary.simpleMessage("😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos."), - "auth__create_acc__email_taken_error" : MessageLookupByLibrary.simpleMessage("đŸ€” JĂĄ existe uma conta associada a esse email."), - "auth__create_acc__lets_get_started" : MessageLookupByLibrary.simpleMessage("Vamos começar"), - "auth__create_acc__link_empty_error" : MessageLookupByLibrary.simpleMessage("O campo de link nĂŁo pode ficar vazio."), - "auth__create_acc__link_invalid_error" : MessageLookupByLibrary.simpleMessage("Este link parece ser invĂĄlido."), - "auth__create_acc__name_characters_error" : MessageLookupByLibrary.simpleMessage("😅 Um nome sĂł pode conter caracteres alfanumĂ©ricos (por enquanto)."), - "auth__create_acc__name_empty_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± Seu nome nĂŁo pode ficar vazio."), - "auth__create_acc__name_length_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± Seu nome nĂŁo pode ter mais de 50 caracteres. (Se ele tem, lamentamos muito.)"), - "auth__create_acc__name_placeholder" : MessageLookupByLibrary.simpleMessage("Ayrton Senna"), - "auth__create_acc__next" : MessageLookupByLibrary.simpleMessage("Avançar"), - "auth__create_acc__one_last_thing" : MessageLookupByLibrary.simpleMessage("Uma Ășltima coisa..."), - "auth__create_acc__password_empty_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± Sua senha nĂŁo pode ficar vazia"), - "auth__create_acc__password_length_error" : MessageLookupByLibrary.simpleMessage("😅 Uma senha precisa ter entre 8 e 64 caracteres."), - "auth__create_acc__paste_link" : MessageLookupByLibrary.simpleMessage("Cole seu link de registro abaixo"), - "auth__create_acc__paste_link_help_text" : MessageLookupByLibrary.simpleMessage("Use o link do seu convite recebido por email."), - "auth__create_acc__paste_password_reset_link" : MessageLookupByLibrary.simpleMessage("Cole o link de redefinição de senha abaixo"), - "auth__create_acc__previous" : MessageLookupByLibrary.simpleMessage("Voltar"), - "auth__create_acc__register" : MessageLookupByLibrary.simpleMessage("Criar uma conta"), - "auth__create_acc__request_invite" : MessageLookupByLibrary.simpleMessage("Sem convite? Solicite um aqui."), - "auth__create_acc__submit_error_desc_server" : MessageLookupByLibrary.simpleMessage("😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos."), - "auth__create_acc__submit_error_desc_validation" : MessageLookupByLibrary.simpleMessage("😅 Parece que algumas das informaçÔes nĂŁo estavam corretas, por favor, verifique e tente novamente."), - "auth__create_acc__submit_error_title" : MessageLookupByLibrary.simpleMessage("Ah nĂŁo..."), - "auth__create_acc__submit_loading_desc" : MessageLookupByLibrary.simpleMessage("Estamos criando sua conta."), - "auth__create_acc__submit_loading_title" : MessageLookupByLibrary.simpleMessage("Segura aĂ­!"), - "auth__create_acc__subscribe" : MessageLookupByLibrary.simpleMessage("Solicitar"), - "auth__create_acc__subscribe_to_waitlist_text" : MessageLookupByLibrary.simpleMessage("Solicitar um convite!"), - "auth__create_acc__username_characters_error" : MessageLookupByLibrary.simpleMessage("😅 Um nome de usuĂĄrio deve conter apenas caracteres alfanumĂ©ricos e underlines (_)."), - "auth__create_acc__username_empty_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± O nome de usuĂĄrio nĂŁo pode ficar vazio."), - "auth__create_acc__username_length_error" : MessageLookupByLibrary.simpleMessage("😅 Um nome de usuĂĄrio nĂŁo pode ter mais de 30 caracteres."), - "auth__create_acc__username_placeholder" : MessageLookupByLibrary.simpleMessage("santosdumont"), - "auth__create_acc__username_server_error" : MessageLookupByLibrary.simpleMessage("😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos."), - "auth__create_acc__username_taken_error" : MessageLookupByLibrary.simpleMessage("đŸ˜© O nome de usuĂĄrio @%s jĂĄ estĂĄ em uso."), - "auth__create_acc__welcome_to_beta" : MessageLookupByLibrary.simpleMessage("Bem-vindo(a) Ă  Beta!"), - "auth__create_acc__what_avatar" : MessageLookupByLibrary.simpleMessage("Escolha uma imagem de perfil"), - "auth__create_acc__what_email" : MessageLookupByLibrary.simpleMessage("Qual Ă© o seu email?"), - "auth__create_acc__what_name" : MessageLookupByLibrary.simpleMessage("Qual Ă© o seu nome?"), - "auth__create_acc__what_password" : MessageLookupByLibrary.simpleMessage("Escolha uma senha"), - "auth__create_acc__what_password_subtext" : MessageLookupByLibrary.simpleMessage("(mĂ­n. 10 caracteres)"), - "auth__create_acc__what_username" : MessageLookupByLibrary.simpleMessage("Escolha um nome de usuĂĄrio"), - "auth__create_acc__your_subscribed" : MessageLookupByLibrary.simpleMessage("VocĂȘ Ă© o nĂșmero {0} da lista de espera."), - "auth__create_acc__your_username_is" : MessageLookupByLibrary.simpleMessage("Seu nome de usuĂĄrio Ă© "), + "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("Cadastrar-se"), - "auth__description_empty_error" : MessageLookupByLibrary.simpleMessage("A descrição nĂŁo pode ficar vazia."), + "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("O email nĂŁo pode ficar vazio."), - "auth__email_invalid_error" : MessageLookupByLibrary.simpleMessage("Por favor, forneça um email vĂĄlido."), - "auth__headline" : MessageLookupByLibrary.simpleMessage("Uma rede social melhor."), - "auth__login" : MessageLookupByLibrary.simpleMessage("Entrar"), - "auth__login__connection_error" : MessageLookupByLibrary.simpleMessage("NĂŁo conseguimos alcançar nossos servidores. VocĂȘ estĂĄ conectado Ă  internet?"), - "auth__login__credentials_mismatch_error" : MessageLookupByLibrary.simpleMessage("As credenciais fornecidas nĂŁo coincidem."), - "auth__login__email_label" : MessageLookupByLibrary.simpleMessage("Email"), - "auth__login__forgot_password" : MessageLookupByLibrary.simpleMessage("Esqueci a senha"), - "auth__login__forgot_password_subtitle" : MessageLookupByLibrary.simpleMessage("Digite seu nome de usuĂĄrio ou email"), - "auth__login__login" : MessageLookupByLibrary.simpleMessage("Continuar"), - "auth__login__or_text" : MessageLookupByLibrary.simpleMessage("Ou"), - "auth__login__password_empty_error" : MessageLookupByLibrary.simpleMessage("A senha Ă© necessĂĄria."), - "auth__login__password_label" : MessageLookupByLibrary.simpleMessage("Senha"), - "auth__login__password_length_error" : MessageLookupByLibrary.simpleMessage("Sua senha deve ter entre 8 e 64 caracteres."), - "auth__login__previous" : MessageLookupByLibrary.simpleMessage("Voltar"), - "auth__login__server_error" : MessageLookupByLibrary.simpleMessage("Ops... Estamos passando por problemas em nossos servidores. Por favor, tente novamente em alguns minutos."), - "auth__login__subtitle" : MessageLookupByLibrary.simpleMessage("Insira suas credenciais para continuar."), - "auth__login__title" : MessageLookupByLibrary.simpleMessage("Bem-vindo(a) de volta!"), - "auth__login__username_characters_error" : MessageLookupByLibrary.simpleMessage("O nome de usuĂĄrio sĂł pode conter caracteres alfanumĂ©ricos e underlines (_)."), - "auth__login__username_empty_error" : MessageLookupByLibrary.simpleMessage("O nome de usuĂĄrio Ă© necessĂĄrio."), - "auth__login__username_label" : MessageLookupByLibrary.simpleMessage("Nome de usuĂĄrio"), - "auth__login__username_length_error" : MessageLookupByLibrary.simpleMessage("O nome de usuĂĄrio nĂŁo pode ter mais de 30 caracteres."), - "auth__name_empty_error" : MessageLookupByLibrary.simpleMessage("O nome nĂŁo pode ficar vazio."), + "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("Better social."), + "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("A senha nĂŁo pode ficar vazia."), + "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("Sua senha foi alterada com sucesso"), - "auth__reset_password_success_title" : MessageLookupByLibrary.simpleMessage("Tudo pronto!"), - "auth__username_characters_error" : MessageLookupByLibrary.simpleMessage("Um nome de usuĂĄrio sĂł pode conter caracteres alfanumĂ©ricos e underlines (_)."), - "auth__username_empty_error" : MessageLookupByLibrary.simpleMessage("O nome de usuĂĄrio nĂŁo pode ficar vazio."), + "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("Sobre"), - "community__actions_invite_people_title" : MessageLookupByLibrary.simpleMessage("Convide pessoas para a comunidade"), - "community__actions_manage_text" : MessageLookupByLibrary.simpleMessage("Gerenciar"), - "community__add_administrators_title" : MessageLookupByLibrary.simpleMessage("Adicionar administrador."), - "community__add_moderator_title" : MessageLookupByLibrary.simpleMessage("Adicionar moderador"), + "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("Isso permitirĂĄ que o membro edite os detalhes da comunidade, administradores, moderadores e usuĂĄrios banidos."), - "community__administrated_communities" : MessageLookupByLibrary.simpleMessage("comunidades administradas"), - "community__administrated_community" : MessageLookupByLibrary.simpleMessage("comunidade administrada"), - "community__administrated_title" : MessageLookupByLibrary.simpleMessage("Administradas"), - "community__administrator_plural" : MessageLookupByLibrary.simpleMessage("administradores"), - "community__administrator_text" : MessageLookupByLibrary.simpleMessage("administrador"), - "community__administrator_you" : MessageLookupByLibrary.simpleMessage("VocĂȘ"), - "community__administrators_title" : MessageLookupByLibrary.simpleMessage("Administradores"), + "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("Isso removerĂĄ o usuĂĄrio da comunidade e impedirĂĄ que ele entre novamente."), - "community__ban_user_title" : MessageLookupByLibrary.simpleMessage("Banir usuĂĄrio"), - "community__banned_user_text" : MessageLookupByLibrary.simpleMessage("usuĂĄrio banido"), - "community__banned_users_text" : MessageLookupByLibrary.simpleMessage("usuĂĄrios banidos"), - "community__banned_users_title" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios banidos"), - "community__button_rules" : MessageLookupByLibrary.simpleMessage("Regras"), - "community__button_staff" : MessageLookupByLibrary.simpleMessage("Equipe"), - "community__categories" : MessageLookupByLibrary.simpleMessage("categorias."), - "community__category" : MessageLookupByLibrary.simpleMessage("categoria."), - "community__communities" : MessageLookupByLibrary.simpleMessage("comunidades"), - "community__communities_all_text" : MessageLookupByLibrary.simpleMessage("Todas"), - "community__communities_no_category_found" : MessageLookupByLibrary.simpleMessage("Nenhuma categoria encontrada. Por favor, tente novamente em alguns minutos."), - "community__communities_refresh_text" : MessageLookupByLibrary.simpleMessage("Atualizar"), - "community__communities_title" : MessageLookupByLibrary.simpleMessage("Comunidades"), - "community__community" : MessageLookupByLibrary.simpleMessage("comunidade"), - "community__community_members" : MessageLookupByLibrary.simpleMessage("Membros da comunidade"), - "community__community_staff" : MessageLookupByLibrary.simpleMessage("Equipe da comunidade"), - "community__confirmation_title" : MessageLookupByLibrary.simpleMessage("Confirmação"), - "community__delete_confirmation" : MessageLookupByLibrary.simpleMessage("VocĂȘ tem certeza de que deseja excluir a comunidade?"), - "community__delete_desc" : MessageLookupByLibrary.simpleMessage("VocĂȘ nĂŁo poderĂĄ mais ver as publicaçÔes desta comunidade, nem publicar nela."), + "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("Favoritar comunidade"), - "community__favorite_communities" : MessageLookupByLibrary.simpleMessage("comunidades favoritas"), - "community__favorite_community" : MessageLookupByLibrary.simpleMessage("comunidade favorita"), - "community__favorites_title" : MessageLookupByLibrary.simpleMessage("Favoritas"), - "community__invite_to_community_resource_plural" : MessageLookupByLibrary.simpleMessage("conexĂ”es e seguidores"), - "community__invite_to_community_resource_singular" : MessageLookupByLibrary.simpleMessage("conexĂŁo ou seguidor"), - "community__invite_to_community_title" : MessageLookupByLibrary.simpleMessage("Convidar para a comunidade"), - "community__invited_by_member" : MessageLookupByLibrary.simpleMessage("VocĂȘ deve ser convidado(a) por um membro."), - "community__invited_by_moderator" : MessageLookupByLibrary.simpleMessage("VocĂȘ deve ser convidado(a) por um moderador."), - "community__is_private" : MessageLookupByLibrary.simpleMessage("Essa comunidade Ă© privada."), - "community__join_communities_desc" : MessageLookupByLibrary.simpleMessage("Entre nas comunidades para ver esta aba ganhar vida!"), - "community__join_community" : MessageLookupByLibrary.simpleMessage("Entrar"), - "community__joined_communities" : MessageLookupByLibrary.simpleMessage("comunidades ingressadas"), - "community__joined_community" : MessageLookupByLibrary.simpleMessage("comunidade ingressada"), - "community__joined_title" : MessageLookupByLibrary.simpleMessage("Ingressadas"), - "community__leave_community" : MessageLookupByLibrary.simpleMessage("Sair"), - "community__leave_confirmation" : MessageLookupByLibrary.simpleMessage("VocĂȘ tem certeza de que deseja sair da comunidade?"), - "community__leave_desc" : MessageLookupByLibrary.simpleMessage("VocĂȘ nĂŁo poderĂĄ mais ver as publicaçÔes desta comunidade, nem publicar nela."), - "community__manage_add_favourite" : MessageLookupByLibrary.simpleMessage("Adicionar a comunidade Ă s suas favoritas"), - "community__manage_admins_desc" : MessageLookupByLibrary.simpleMessage("Ver, adicionar e remover administradores."), - "community__manage_admins_title" : MessageLookupByLibrary.simpleMessage("Administradores"), - "community__manage_banned_desc" : MessageLookupByLibrary.simpleMessage("Ver, adicionar e remover usuĂĄrios banidos."), - "community__manage_banned_title" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios banidos"), - "community__manage_closed_posts_desc" : MessageLookupByLibrary.simpleMessage("Ver e gerenciar os posts fechados"), - "community__manage_closed_posts_title" : MessageLookupByLibrary.simpleMessage("Posts fechados"), - "community__manage_delete_desc" : MessageLookupByLibrary.simpleMessage("Excluir a comunidade, para sempre."), - "community__manage_delete_title" : MessageLookupByLibrary.simpleMessage("Excluir comunidade"), - "community__manage_details_desc" : MessageLookupByLibrary.simpleMessage("Alterar tĂ­tulo, nome, avatar, foto de capa e mais."), - "community__manage_details_title" : MessageLookupByLibrary.simpleMessage("Detalhes"), - "community__manage_invite_desc" : MessageLookupByLibrary.simpleMessage("Convide suas conexĂ”es e seguidores para se juntar Ă  comunidade."), - "community__manage_invite_title" : MessageLookupByLibrary.simpleMessage("Convidar pessoas"), - "community__manage_leave_desc" : MessageLookupByLibrary.simpleMessage("Sair da comunidade."), - "community__manage_leave_title" : MessageLookupByLibrary.simpleMessage("Sair da comunidade"), - "community__manage_mod_reports_desc" : MessageLookupByLibrary.simpleMessage("Revise as denĂșncias Ă  moderação da comunidade."), - "community__manage_mod_reports_title" : MessageLookupByLibrary.simpleMessage("Reportado Ă  moderação"), - "community__manage_mods_desc" : MessageLookupByLibrary.simpleMessage("Ver, adicionar e remover moderadores."), - "community__manage_mods_title" : MessageLookupByLibrary.simpleMessage("Moderadores"), - "community__manage_remove_favourite" : MessageLookupByLibrary.simpleMessage("Remover a comunidade de suas favoritas"), - "community__manage_title" : MessageLookupByLibrary.simpleMessage("Gerenciar comunidade"), - "community__member" : MessageLookupByLibrary.simpleMessage("membro"), - "community__member_capitalized" : MessageLookupByLibrary.simpleMessage("Membro"), - "community__member_plural" : MessageLookupByLibrary.simpleMessage("membros"), - "community__members_capitalized" : MessageLookupByLibrary.simpleMessage("Membros"), - "community__moderated_communities" : MessageLookupByLibrary.simpleMessage("comunidades moderadas"), - "community__moderated_community" : MessageLookupByLibrary.simpleMessage("comunidade moderada"), - "community__moderated_title" : MessageLookupByLibrary.simpleMessage("Moderadas"), + "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("Isso permitirĂĄ que o membro edite os detalhes da comunidade, moderadores e usuĂĄrios banidos."), - "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("VocĂȘ"), - "community__name_characters_error" : MessageLookupByLibrary.simpleMessage("O nome sĂł pode conter caracteres alfanumĂ©ricos e underlines (_)."), - "community__name_empty_error" : MessageLookupByLibrary.simpleMessage("O nome nĂŁo pode ficar vazio."), + "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("NĂŁo"), + "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("posts"), - "community__post_singular" : MessageLookupByLibrary.simpleMessage("post"), - "community__posts" : MessageLookupByLibrary.simpleMessage("Posts"), - "community__refresh_text" : MessageLookupByLibrary.simpleMessage("Atualizar"), - "community__refreshing" : MessageLookupByLibrary.simpleMessage("Atualizando a comunidade"), - "community__rules_empty_error" : MessageLookupByLibrary.simpleMessage("As regras nĂŁo podem ficar vazias."), + "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("Regras"), - "community__rules_title" : MessageLookupByLibrary.simpleMessage("Regras da comunidade"), - "community__save_community_create_community" : MessageLookupByLibrary.simpleMessage("Criar comunidade"), - "community__save_community_create_text" : MessageLookupByLibrary.simpleMessage("Criar"), - "community__save_community_edit_community" : MessageLookupByLibrary.simpleMessage("Editar comunidade"), - "community__save_community_label_title" : MessageLookupByLibrary.simpleMessage("TĂ­tulo"), - "community__save_community_label_title_hint_text" : MessageLookupByLibrary.simpleMessage("ex: Viagem, Fotografia, Jogos."), - "community__save_community_name_category" : MessageLookupByLibrary.simpleMessage("Categoria"), - "community__save_community_name_label_color" : MessageLookupByLibrary.simpleMessage("Cor"), - "community__save_community_name_label_color_hint_text" : MessageLookupByLibrary.simpleMessage("(Toque para alterar)"), - "community__save_community_name_label_desc_optional" : MessageLookupByLibrary.simpleMessage("Descrição · Opcional"), - "community__save_community_name_label_desc_optional_hint_text" : MessageLookupByLibrary.simpleMessage("Sobre o que Ă© a sua comunidade?"), - "community__save_community_name_label_member_adjective" : MessageLookupByLibrary.simpleMessage("Adjetivo para membro · Opcional"), - "community__save_community_name_label_member_adjective_hint_text" : MessageLookupByLibrary.simpleMessage("ex: viajante, fotĂłgrafo, gamer."), - "community__save_community_name_label_members_adjective" : MessageLookupByLibrary.simpleMessage("Adjetivo para membros · Opcional"), - "community__save_community_name_label_members_adjective_hint_text" : MessageLookupByLibrary.simpleMessage("ex: viajantes, fotĂłgrafos, gamers."), - "community__save_community_name_label_rules_optional" : MessageLookupByLibrary.simpleMessage("Regras · Opcional"), - "community__save_community_name_label_rules_optional_hint_text" : MessageLookupByLibrary.simpleMessage("HĂĄ algo que vocĂȘ gostaria que seus usuĂĄrios soubessem?"), - "community__save_community_name_label_type" : MessageLookupByLibrary.simpleMessage("Tipo"), - "community__save_community_name_label_type_hint_text" : MessageLookupByLibrary.simpleMessage("(Toque para alterar)"), - "community__save_community_name_member_invites" : MessageLookupByLibrary.simpleMessage("Convites de membros"), - "community__save_community_name_member_invites_subtitle" : MessageLookupByLibrary.simpleMessage("Membros podem convidar pessoas para a comunidade"), + "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("Nome"), - "community__save_community_name_title_hint_text" : MessageLookupByLibrary.simpleMessage(" ex: viagem, fotografia, jogos."), - "community__save_community_save_text" : MessageLookupByLibrary.simpleMessage("Salvar"), - "community__title_empty_error" : MessageLookupByLibrary.simpleMessage("O tĂ­tulo nĂŁo pode ficar vazio."), + "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("Em alta em todas as categorias"), + "community__trending_in_all" : MessageLookupByLibrary.simpleMessage("Trendiga frĂ„n alla kategorier"), "community__trending_in_category" : m17, - "community__trending_none_found" : MessageLookupByLibrary.simpleMessage("Nenhuma comunidade em alta encontrada. Tente novamente em alguns minutos."), - "community__trending_refresh" : MessageLookupByLibrary.simpleMessage("Atualizar"), - "community__type_private" : MessageLookupByLibrary.simpleMessage("Privada"), - "community__type_public" : MessageLookupByLibrary.simpleMessage("PĂșblica"), - "community__unfavorite_action" : MessageLookupByLibrary.simpleMessage("Desfavoritar comunidade"), - "community__user_you_text" : MessageLookupByLibrary.simpleMessage("VocĂȘ"), - "community__yes" : MessageLookupByLibrary.simpleMessage("Sim"), - "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"), - "drawer__account_settings_change_password" : MessageLookupByLibrary.simpleMessage("Alterar Senha"), - "drawer__account_settings_delete_account" : MessageLookupByLibrary.simpleMessage("Excluir a minha conta"), + "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"), + "contextual_account_search_box__suggestions" : MessageLookupByLibrary.simpleMessage("Förslag"), + "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("Idioma"), - "drawer__account_settings_notifications" : MessageLookupByLibrary.simpleMessage("NotificaçÔes"), - "drawer__app_account_text" : MessageLookupByLibrary.simpleMessage("Aplicativo & Conta"), - "drawer__application_settings" : MessageLookupByLibrary.simpleMessage("ConfiguraçÔes do aplicativo"), - "drawer__connections" : MessageLookupByLibrary.simpleMessage("Minhas conexĂ”es"), - "drawer__customize" : MessageLookupByLibrary.simpleMessage("Personalizar"), - "drawer__global_moderation" : MessageLookupByLibrary.simpleMessage("Moderação global"), - "drawer__help" : MessageLookupByLibrary.simpleMessage("Suporte e Feedback"), - "drawer__lists" : MessageLookupByLibrary.simpleMessage("Minhas listas"), - "drawer__logout" : MessageLookupByLibrary.simpleMessage("Sair"), - "drawer__main_title" : MessageLookupByLibrary.simpleMessage("Minha Okuna"), - "drawer__menu_title" : MessageLookupByLibrary.simpleMessage("Menu"), - "drawer__my_circles" : MessageLookupByLibrary.simpleMessage("Meus cĂ­rculos"), - "drawer__my_followers" : MessageLookupByLibrary.simpleMessage("Meus seguidores"), - "drawer__my_following" : MessageLookupByLibrary.simpleMessage("Meus seguidos"), - "drawer__my_invites" : MessageLookupByLibrary.simpleMessage("Meus convites"), - "drawer__my_lists" : MessageLookupByLibrary.simpleMessage("Minhas listas"), - "drawer__my_mod_penalties" : MessageLookupByLibrary.simpleMessage("Minhas penalidades"), - "drawer__my_pending_mod_tasks" : MessageLookupByLibrary.simpleMessage("Minhas tarefas de moderação pendentes"), - "drawer__profile" : MessageLookupByLibrary.simpleMessage("Perfil"), - "drawer__settings" : MessageLookupByLibrary.simpleMessage("ConfiguraçÔes"), - "drawer__themes" : MessageLookupByLibrary.simpleMessage("Temas"), - "drawer__useful_links_guidelines" : MessageLookupByLibrary.simpleMessage("Diretrizes da Okuna"), - "drawer__useful_links_guidelines_bug_tracker" : MessageLookupByLibrary.simpleMessage("Rastreador de bugs"), - "drawer__useful_links_guidelines_bug_tracker_desc" : MessageLookupByLibrary.simpleMessage("Reportar um bug ou votar em bugs existentes"), - "drawer__useful_links_guidelines_desc" : MessageLookupByLibrary.simpleMessage("As diretrizes que todos esperamos seguir para uma coexistĂȘncia saudĂĄvel e amigĂĄvel."), - "drawer__useful_links_guidelines_feature_requests" : MessageLookupByLibrary.simpleMessage("SugestĂ”es de recursos"), - "drawer__useful_links_guidelines_feature_requests_desc" : MessageLookupByLibrary.simpleMessage("Sugerir um recurso ou votar em sugestĂ”es existentes"), - "drawer__useful_links_guidelines_github" : MessageLookupByLibrary.simpleMessage("Projeto no Github"), - "drawer__useful_links_guidelines_github_desc" : MessageLookupByLibrary.simpleMessage("DĂȘ uma olhada no que estamos trabalhando atualmente"), - "drawer__useful_links_guidelines_handbook" : MessageLookupByLibrary.simpleMessage("Manual da Okuna"), - "drawer__useful_links_guidelines_handbook_desc" : MessageLookupByLibrary.simpleMessage("Um livro com tudo o que hĂĄ para saber sobre usar a plataforma"), - "drawer__useful_links_slack_channel" : MessageLookupByLibrary.simpleMessage("Canal da comunidade no Slack"), - "drawer__useful_links_slack_channel_desc" : MessageLookupByLibrary.simpleMessage("Um lugar para discutir tudo sobre a Okuna"), - "drawer__useful_links_support" : MessageLookupByLibrary.simpleMessage("Apoie a Okuna"), - "drawer__useful_links_support_desc" : MessageLookupByLibrary.simpleMessage("Encontre uma maneira de nos apoiar em nossa jornada!"), - "drawer__useful_links_title" : MessageLookupByLibrary.simpleMessage("Links Ășteis"), - "error__no_internet_connection" : MessageLookupByLibrary.simpleMessage("Sem conexĂŁo com a internet"), - "error__unknown_error" : MessageLookupByLibrary.simpleMessage("Erro desconhecido"), - "moderation__actions_chat_with_team" : MessageLookupByLibrary.simpleMessage("Converse com a equipe"), - "moderation__actions_review" : MessageLookupByLibrary.simpleMessage("Revisar"), - "moderation__category_text" : MessageLookupByLibrary.simpleMessage("Categoria"), - "moderation__community_moderated_objects" : MessageLookupByLibrary.simpleMessage("Itens moderados por comunidades"), - "moderation__community_review_approve" : MessageLookupByLibrary.simpleMessage("Aprovar"), - "moderation__community_review_item_verified" : MessageLookupByLibrary.simpleMessage("Este item foi verificado"), - "moderation__community_review_object" : MessageLookupByLibrary.simpleMessage("Objeto"), - "moderation__community_review_reject" : MessageLookupByLibrary.simpleMessage("rejeitar"), - "moderation__community_review_title" : MessageLookupByLibrary.simpleMessage("Revisar objeto moderado"), - "moderation__confirm_report_community_reported" : MessageLookupByLibrary.simpleMessage("Comunidade denunciada"), - "moderation__confirm_report_item_reported" : MessageLookupByLibrary.simpleMessage("Item denunciado"), - "moderation__confirm_report_post_comment_reported" : MessageLookupByLibrary.simpleMessage("ComentĂĄrio denunciado"), - "moderation__confirm_report_post_reported" : MessageLookupByLibrary.simpleMessage("Publicação denunciada"), - "moderation__confirm_report_provide_details" : MessageLookupByLibrary.simpleMessage("VocĂȘ pode fornecer mais detalhes relevantes para a denĂșncia?"), - "moderation__confirm_report_provide_happen_next" : MessageLookupByLibrary.simpleMessage("Aqui estĂĄ o que acontecerĂĄ a seguir:"), - "moderation__confirm_report_provide_happen_next_desc" : MessageLookupByLibrary.simpleMessage("- Sua denĂșncia serĂĄ enviada anonimamente. \n- Se vocĂȘ estiver denunciando uma publicação ou comentĂĄrio, a denĂșncia serĂĄ enviada Ă  equipe da Okuna e aos moderadores da comunidade (se aplicĂĄvel), e o conteĂșdo denunciado ficarĂĄ oculto do seu feed. \n- Se vocĂȘ estiver denunciando uma conta ou comunidade, a denĂșncia serĂĄ enviada para a equipe da Okuna. \n- Vamos analisar a denĂșncia e, se aprovada, o conteĂșdo serĂĄ excluĂ­do e as penalidades serĂŁo aplicadas Ă s pessoas envolvidas, desde uma suspensĂŁo temporĂĄria atĂ© a exclusĂŁo da conta, dependendo da gravidade da transgressĂŁo. \n- Se a denĂșncia for apenas uma tentativa de prejudicar um membro ou comunidade que nĂŁo cometeu a infração apontada por vocĂȘ, as penalidades serĂŁo aplicadas a vocĂȘ. \n"), - "moderation__confirm_report_provide_optional_hint_text" : MessageLookupByLibrary.simpleMessage("Digite aqui..."), - "moderation__confirm_report_provide_optional_info" : MessageLookupByLibrary.simpleMessage("(Opcional)"), - "moderation__confirm_report_submit" : MessageLookupByLibrary.simpleMessage("Eu entendo, envie."), - "moderation__confirm_report_title" : MessageLookupByLibrary.simpleMessage("Enviar denĂșncia"), - "moderation__confirm_report_user_reported" : MessageLookupByLibrary.simpleMessage("UsuĂĄrio denunciado"), - "moderation__description_text" : MessageLookupByLibrary.simpleMessage("Descrição"), - "moderation__filters_apply" : MessageLookupByLibrary.simpleMessage("Aplicar filtros"), - "moderation__filters_other" : MessageLookupByLibrary.simpleMessage("Outros"), - "moderation__filters_reset" : MessageLookupByLibrary.simpleMessage("Redefinir"), + "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("Filtros de moderação"), - "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("Itens moderados globalmente"), - "moderation__moderated_object_false_text" : MessageLookupByLibrary.simpleMessage("Falso"), - "moderation__moderated_object_reports_count" : MessageLookupByLibrary.simpleMessage("NĂșmero de denĂșncias"), + "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("Objeto"), - "moderation__moderated_object_true_text" : MessageLookupByLibrary.simpleMessage("Verdadeiro"), - "moderation__moderated_object_verified" : MessageLookupByLibrary.simpleMessage("Verificado"), - "moderation__moderated_object_verified_by_staff" : MessageLookupByLibrary.simpleMessage("Verificado pela equipe da Okuna"), - "moderation__my_moderation_penalties_resouce_singular" : MessageLookupByLibrary.simpleMessage("penalidade de moderação"), - "moderation__my_moderation_penalties_resource_plural" : MessageLookupByLibrary.simpleMessage("penalidades de moderação"), - "moderation__my_moderation_penalties_title" : MessageLookupByLibrary.simpleMessage("Penalidades de moderação"), - "moderation__my_moderation_tasks_title" : MessageLookupByLibrary.simpleMessage("Tarefas de moderação pendentes"), - "moderation__no_description_text" : MessageLookupByLibrary.simpleMessage("Sem descrição"), + "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("tarefas de moderação pendentes"), - "moderation__pending_moderation_tasks_singular" : MessageLookupByLibrary.simpleMessage("tarefa de moderação pendente"), - "moderation__report_account_text" : MessageLookupByLibrary.simpleMessage("Denunciar conta"), - "moderation__report_comment_text" : MessageLookupByLibrary.simpleMessage("Denunciar comentĂĄrio"), - "moderation__report_community_text" : MessageLookupByLibrary.simpleMessage("Denunciar comunidade"), - "moderation__report_post_text" : MessageLookupByLibrary.simpleMessage("Denunciar publicação"), - "moderation__reporter_text" : MessageLookupByLibrary.simpleMessage("Denunciante"), - "moderation__reports_preview_resource_reports" : MessageLookupByLibrary.simpleMessage("denĂșncias"), - "moderation__reports_preview_title" : MessageLookupByLibrary.simpleMessage("DenĂșncias"), + "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("Toque para tentar carregar os itens novamente"), - "moderation__update_category_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "moderation__update_category_title" : MessageLookupByLibrary.simpleMessage("Atualizar categoria"), - "moderation__update_description_report_desc" : MessageLookupByLibrary.simpleMessage("Descrição da denĂșncia"), - "moderation__update_description_report_hint_text" : MessageLookupByLibrary.simpleMessage("ex: O motivo da denĂșncia Ă©..."), - "moderation__update_description_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "moderation__update_description_title" : MessageLookupByLibrary.simpleMessage("Editar descrição"), - "moderation__update_status_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "moderation__update_status_title" : MessageLookupByLibrary.simpleMessage("Atualizar status"), - "moderation__you_have_reported_account_text" : MessageLookupByLibrary.simpleMessage("VocĂȘ denunciou esta conta"), - "moderation__you_have_reported_comment_text" : MessageLookupByLibrary.simpleMessage("VocĂȘ denunciou este comentĂĄrio"), - "moderation__you_have_reported_community_text" : MessageLookupByLibrary.simpleMessage("VocĂȘ denunciou esta comunidade"), - "moderation__you_have_reported_post_text" : MessageLookupByLibrary.simpleMessage("VocĂȘ denunciou esta publicação"), - "notifications__accepted_connection_request_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] aceitou seu pedido de conexĂŁo."), + "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("Seja notificado(a) quando alguĂ©m comentar uma das suas publicaçÔes ou uma que vocĂȘ tambĂ©m comentou."), - "notifications__comment_reaction_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguĂ©m reage a um dos seus comentĂĄrios."), - "notifications__comment_reaction_title" : MessageLookupByLibrary.simpleMessage("ReaçÔes a comentĂĄrios"), - "notifications__comment_reply_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguĂ©m responder a um dos seus comentĂĄrios ou a um que vocĂȘ tambĂ©m respondeu."), + "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("Respostas aos comentĂĄrios"), - "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("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ĂȘ"), - "notifications__connection_request_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] quer se conectar com vocĂȘ."), - "notifications__connection_title" : MessageLookupByLibrary.simpleMessage("Pedidos de conexĂŁo"), - "notifications__follow_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguĂ©m começar a segui-lo(a)"), - "notifications__follow_title" : MessageLookupByLibrary.simpleMessage("Seguidores"), - "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__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__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__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" : MessageLookupByLibrary.simpleMessage("[name] [username] nĂ€mnde dig i en kommentar."), + "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" : m24, - "post__action_comment" : MessageLookupByLibrary.simpleMessage("Comentar"), - "post__action_react" : MessageLookupByLibrary.simpleMessage("Reagir"), - "post__action_reply" : MessageLookupByLibrary.simpleMessage("Responder"), - "post__actions_comment_deleted" : MessageLookupByLibrary.simpleMessage("ComentĂĄrio excluĂ­do"), - "post__actions_delete" : MessageLookupByLibrary.simpleMessage("Excluir post"), - "post__actions_delete_comment" : MessageLookupByLibrary.simpleMessage("Excluir comentĂĄrio"), - "post__actions_deleted" : MessageLookupByLibrary.simpleMessage("Post excluĂ­do"), - "post__actions_edit_comment" : MessageLookupByLibrary.simpleMessage("Editar comentĂĄrio"), - "post__actions_report_text" : MessageLookupByLibrary.simpleMessage("Denunciar"), - "post__actions_reported_text" : MessageLookupByLibrary.simpleMessage("Denunciado"), - "post__actions_show_more_text" : MessageLookupByLibrary.simpleMessage("Ver mais"), - "post__close_post" : MessageLookupByLibrary.simpleMessage("Fechar post"), + "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" : m25, - "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..."), - "post__comment_required_error" : MessageLookupByLibrary.simpleMessage("O comentĂĄrio nĂŁo pode ficar vazio."), - "post__commenter_expanded_edit_comment" : MessageLookupByLibrary.simpleMessage("Editar comentĂĄrio"), - "post__commenter_expanded_join_conversation" : MessageLookupByLibrary.simpleMessage("Entrar na conversa..."), - "post__commenter_expanded_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "post__commenter_expanded_start_conversation" : MessageLookupByLibrary.simpleMessage("Começar uma conversa..."), - "post__commenter_post_text" : MessageLookupByLibrary.simpleMessage("Enviar"), - "post__commenter_write_something" : MessageLookupByLibrary.simpleMessage("Escreva algo..."), - "post__comments_closed_post" : MessageLookupByLibrary.simpleMessage("Post fechado"), - "post__comments_disabled" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios desativados"), - "post__comments_disabled_message" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios desativados no post"), - "post__comments_enabled_message" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios ativados no post"), - "post__comments_header_be_the_first_comments" : MessageLookupByLibrary.simpleMessage("Mande o primeiro comentĂĄrio"), - "post__comments_header_be_the_first_replies" : MessageLookupByLibrary.simpleMessage("Mande a primeira resposta"), - "post__comments_header_newer" : MessageLookupByLibrary.simpleMessage("Mais recentes"), - "post__comments_header_newest_comments" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios mais recentes"), - "post__comments_header_newest_replies" : MessageLookupByLibrary.simpleMessage("Novas respostas"), - "post__comments_header_older" : MessageLookupByLibrary.simpleMessage("Mais antigos"), - "post__comments_header_oldest_comments" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios mais antigos"), - "post__comments_header_oldest_replies" : MessageLookupByLibrary.simpleMessage("Respostas mais antigas"), - "post__comments_header_see_newest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentĂĄrios mais recentes"), - "post__comments_header_see_newest_replies" : MessageLookupByLibrary.simpleMessage("Ver respostas mais recentes"), - "post__comments_header_see_oldest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentĂĄrios mais antigos"), - "post__comments_header_see_oldest_replies" : MessageLookupByLibrary.simpleMessage("Ver respostas mais antigas"), - "post__comments_header_view_newest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentĂĄrios mais recentes"), - "post__comments_header_view_newest_replies" : MessageLookupByLibrary.simpleMessage("Ver respostas mais recentes"), - "post__comments_header_view_oldest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentĂĄrios mais antigos"), - "post__comments_header_view_oldest_replies" : MessageLookupByLibrary.simpleMessage("Ver respostas mais antigas"), - "post__comments_page_no_more_replies_to_load" : MessageLookupByLibrary.simpleMessage("Sem mais respostas para carregar"), - "post__comments_page_no_more_to_load" : MessageLookupByLibrary.simpleMessage("Sem mais comentĂĄrios para carregar"), - "post__comments_page_replies_title" : MessageLookupByLibrary.simpleMessage("Respostas"), - "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__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" : m26, - "post__create_new" : MessageLookupByLibrary.simpleMessage("Novo post"), - "post__create_next" : MessageLookupByLibrary.simpleMessage("Avançar"), - "post__create_photo" : MessageLookupByLibrary.simpleMessage("Imagem"), - "post__disable_post_comments" : MessageLookupByLibrary.simpleMessage("Desativar comentĂĄrios do post"), - "post__edit_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "post__edit_title" : MessageLookupByLibrary.simpleMessage("Editar publicação"), - "post__enable_post_comments" : MessageLookupByLibrary.simpleMessage("Ativar comentĂĄrios do post"), - "post__have_not_shared_anything" : MessageLookupByLibrary.simpleMessage("VocĂȘ ainda nĂŁo compartilhou nada."), - "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__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" : m27, - "post__open_post" : MessageLookupByLibrary.simpleMessage("Abrir post"), - "post__post_closed" : MessageLookupByLibrary.simpleMessage("Post fechado "), - "post__post_opened" : MessageLookupByLibrary.simpleMessage("Post aberto"), - "post__post_reactions_title" : MessageLookupByLibrary.simpleMessage("ReaçÔes ao post"), - "post__profile_counts_follower" : MessageLookupByLibrary.simpleMessage(" Seguidor"), - "post__profile_counts_followers" : MessageLookupByLibrary.simpleMessage(" Seguidores"), - "post__profile_counts_following" : MessageLookupByLibrary.simpleMessage(" Seguindo"), - "post__profile_counts_post" : MessageLookupByLibrary.simpleMessage(" Post"), - "post__profile_counts_posts" : MessageLookupByLibrary.simpleMessage(" Posts"), - "post__reaction_list_tap_retry" : MessageLookupByLibrary.simpleMessage("Toque para tentar carregar as reaçÔes novamente."), - "post__search_circles" : MessageLookupByLibrary.simpleMessage("Procurar cĂ­rculos..."), - "post__share" : MessageLookupByLibrary.simpleMessage("Compartilhar"), - "post__share_community" : MessageLookupByLibrary.simpleMessage("Compartilhar"), - "post__share_community_desc" : MessageLookupByLibrary.simpleMessage("Compartilhe a publicação com uma comunidade da qual vocĂȘ faz parte."), - "post__share_community_title" : MessageLookupByLibrary.simpleMessage("Uma comunidade"), - "post__share_to" : MessageLookupByLibrary.simpleMessage("Compartilhar em"), - "post__share_to_circles" : MessageLookupByLibrary.simpleMessage("Compartilhar nos cĂ­rculos"), - "post__share_to_community" : MessageLookupByLibrary.simpleMessage("Compartilhar na comunidade"), - "post__shared_privately_on" : MessageLookupByLibrary.simpleMessage("Compartilhado nos"), - "post__sharing_post_to" : MessageLookupByLibrary.simpleMessage("Compartilhando post em"), - "post__text_copied" : MessageLookupByLibrary.simpleMessage("Texto copiado!"), + "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("min"), - "post__time_short_now_text" : MessageLookupByLibrary.simpleMessage("agora"), + "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("1min"), - "post__time_short_one_week" : MessageLookupByLibrary.simpleMessage("1sem"), - "post__time_short_one_year" : MessageLookupByLibrary.simpleMessage("1a"), + "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("sem"), - "post__time_short_years" : MessageLookupByLibrary.simpleMessage("a"), - "post__timeline_posts_all_loaded" : MessageLookupByLibrary.simpleMessage("🎉 Todas as publicaçÔes carregadas"), - "post__timeline_posts_default_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Tente atualizar a linha do tempo."), - "post__timeline_posts_default_drhoo_title" : MessageLookupByLibrary.simpleMessage("Algo nĂŁo estĂĄ certo."), - "post__timeline_posts_failed_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Tente novamente em alguns segundos"), - "post__timeline_posts_failed_drhoo_title" : MessageLookupByLibrary.simpleMessage("NĂŁo foi possĂ­vel carregar sua linha do tempo."), - "post__timeline_posts_no_more_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Siga usuĂĄrios ou junte-se a uma comunidade para começar!"), - "post__timeline_posts_no_more_drhoo_title" : MessageLookupByLibrary.simpleMessage("Sua linha do tempo estĂĄ vazia."), - "post__timeline_posts_refresh_posts" : MessageLookupByLibrary.simpleMessage("Atualizar publicaçÔes"), - "post__timeline_posts_refreshing_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Carregando sua linha do tempo."), - "post__timeline_posts_refreshing_drhoo_title" : MessageLookupByLibrary.simpleMessage("Aguenta aĂ­!"), - "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__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" : m28, "post__usernames_circles" : m29, - "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("Mundo"), - "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("VocĂȘ compartilhou com"), - "user__add_account_done" : MessageLookupByLibrary.simpleMessage("ConcluĂ­do"), - "user__add_account_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "user__add_account_success" : MessageLookupByLibrary.simpleMessage("Sucesso"), - "user__add_account_to_lists" : MessageLookupByLibrary.simpleMessage("Adicionar conta Ă  lista"), - "user__add_account_update_account_lists" : MessageLookupByLibrary.simpleMessage("Atualizar listas de contas"), - "user__add_account_update_lists" : MessageLookupByLibrary.simpleMessage("Atualizar listas"), - "user__billion_postfix" : MessageLookupByLibrary.simpleMessage("b"), - "user__block_user" : MessageLookupByLibrary.simpleMessage("Bloquear usuĂĄrio"), - "user__change_email_email_text" : MessageLookupByLibrary.simpleMessage("Email"), - "user__change_email_error" : MessageLookupByLibrary.simpleMessage("Este email jĂĄ estĂĄ registrado"), - "user__change_email_hint_text" : MessageLookupByLibrary.simpleMessage("Digite seu novo email"), - "user__change_email_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "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."), + "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" : m30, "user__circle_peoples_count" : m31, - "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"), - "user__clear_app_preferences_title" : MessageLookupByLibrary.simpleMessage("Limpar preferĂȘncias"), - "user__clear_application_cache_desc" : MessageLookupByLibrary.simpleMessage("Limpar cache de posts, contas, imagens e mais."), - "user__clear_application_cache_failure" : MessageLookupByLibrary.simpleMessage("NĂŁo foi possĂ­vel limpar o cache"), - "user__clear_application_cache_success" : MessageLookupByLibrary.simpleMessage("Cache limpo com sucesso"), - "user__clear_application_cache_text" : MessageLookupByLibrary.simpleMessage("Limpar cache"), - "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__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" : m32, - "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_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" : m33, - "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."), - "user__confirm_guidelines_reject_delete_account" : MessageLookupByLibrary.simpleMessage("Excluir a minha conta"), - "user__confirm_guidelines_reject_go_back" : MessageLookupByLibrary.simpleMessage("Voltar"), - "user__confirm_guidelines_reject_info" : MessageLookupByLibrary.simpleMessage("VocĂȘ nĂŁo pode usar a Okuna atĂ© aceitar as diretrizes."), - "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__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" : m34, - "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"), - "user__connection_pending" : MessageLookupByLibrary.simpleMessage("Pendente"), - "user__connections_circle_delete" : MessageLookupByLibrary.simpleMessage("Excluir"), - "user__connections_header_circle_desc" : MessageLookupByLibrary.simpleMessage("O cĂ­rculo com todas as suas conexĂ”es Ă© adicionado."), - "user__connections_header_users" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios"), - "user__delete_account_confirmation_desc" : MessageLookupByLibrary.simpleMessage("Tem certeza de que deseja excluir sua conta?"), - "user__delete_account_confirmation_desc_info" : MessageLookupByLibrary.simpleMessage("Esta Ă© uma ação permanente e nĂŁo pode ser desfeita."), - "user__delete_account_confirmation_goodbye" : MessageLookupByLibrary.simpleMessage("Adeus 😱"), - "user__delete_account_confirmation_no" : MessageLookupByLibrary.simpleMessage("NĂŁo"), - "user__delete_account_confirmation_title" : MessageLookupByLibrary.simpleMessage("Confirmação"), - "user__delete_account_confirmation_yes" : MessageLookupByLibrary.simpleMessage("Sim"), - "user__delete_account_current_pwd" : MessageLookupByLibrary.simpleMessage("Senha atual"), - "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__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" : m35, - "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Desconectado com sucesso"), + "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Er kontakt har brutits"), "user__edit_profile_bio" : MessageLookupByLibrary.simpleMessage("Bio"), - "user__edit_profile_delete" : MessageLookupByLibrary.simpleMessage("Excluir"), - "user__edit_profile_followers_count" : MessageLookupByLibrary.simpleMessage("NĂșmero de seguidores"), - "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_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" : m36, - "user__edit_profile_save_text" : MessageLookupByLibrary.simpleMessage("Salvar"), - "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Editar perfil"), + "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" : m37, - "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__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" : m38, - "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_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" : m39, - "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"), - "user__follower_singular" : MessageLookupByLibrary.simpleMessage("seguidor"), - "user__followers_title" : MessageLookupByLibrary.simpleMessage("Seguidores"), - "user__following_resource_name" : MessageLookupByLibrary.simpleMessage("usuĂĄrios seguidos"), - "user__following_text" : MessageLookupByLibrary.simpleMessage("Seguindo"), + "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" : m40, - "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_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" : m41, "user__groups_see_all" : m42, - "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__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" : m43, - "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"), - "user__invites_create_create" : MessageLookupByLibrary.simpleMessage("Criar"), - "user__invites_create_create_title" : MessageLookupByLibrary.simpleMessage("Criar convite"), - "user__invites_create_edit_title" : MessageLookupByLibrary.simpleMessage("Editar convite"), - "user__invites_create_name_hint" : MessageLookupByLibrary.simpleMessage("ex: JoĂŁozinho"), - "user__invites_create_name_title" : MessageLookupByLibrary.simpleMessage("Apelido"), - "user__invites_create_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "user__invites_delete" : MessageLookupByLibrary.simpleMessage("Excluir"), - "user__invites_edit_text" : MessageLookupByLibrary.simpleMessage("Editar"), - "user__invites_email_hint" : MessageLookupByLibrary.simpleMessage("ex: joaozinho@email.com"), - "user__invites_email_invite_text" : MessageLookupByLibrary.simpleMessage("Convite por email"), - "user__invites_email_send_text" : MessageLookupByLibrary.simpleMessage("Enviar"), - "user__invites_email_sent_text" : MessageLookupByLibrary.simpleMessage("Email de convite enviado"), - "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_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("accepterad inbjudan"), + "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("accepterade inbjudningar"), + "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Accepterade"), + "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" : m44, - "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_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" : m45, - "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"), - "user__invites_share_email" : MessageLookupByLibrary.simpleMessage("Compartilhe o convite por email"), - "user__invites_share_email_desc" : MessageLookupByLibrary.simpleMessage("Enviaremos um email de convite com instruçÔes em seu nome"), - "user__invites_share_yourself" : MessageLookupByLibrary.simpleMessage("Compartilhe o convite vocĂȘ mesmo"), - "user__invites_share_yourself_desc" : MessageLookupByLibrary.simpleMessage("Escolha um app de mensagens, etc."), - "user__invites_title" : MessageLookupByLibrary.simpleMessage("Meus convites"), - "user__language_settings_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "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__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" : m46, - "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__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" : m47, "user__profile_location_length_error" : m48, - "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"), - "user__save_connection_circle_color_hint" : MessageLookupByLibrary.simpleMessage("(Toque para alterar)"), - "user__save_connection_circle_color_name" : MessageLookupByLibrary.simpleMessage("Cor"), - "user__save_connection_circle_create" : MessageLookupByLibrary.simpleMessage("Criar cĂ­rculo"), - "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__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" : m49, - "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"), - "user__save_follows_list_edit" : MessageLookupByLibrary.simpleMessage("Editar lista"), + "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("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_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" : m50, - "user__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios"), - "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("k"), - "user__tile_delete" : MessageLookupByLibrary.simpleMessage("Excluir"), - "user__tile_following" : MessageLookupByLibrary.simpleMessage(" · Seguindo"), - "user__timeline_filters_apply_all" : MessageLookupByLibrary.simpleMessage("Aplicar filtros"), - "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__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" : m51, - "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"), - "user__translate_show_original" : MessageLookupByLibrary.simpleMessage("Mostrar original"), - "user__unblock_user" : MessageLookupByLibrary.simpleMessage("Desbloquear usuĂĄrio"), - "user__uninvite" : MessageLookupByLibrary.simpleMessage("Cancelar convite"), - "user__update_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Salvar"), - "user__update_connection_circle_updated" : MessageLookupByLibrary.simpleMessage("ConexĂŁo atualizada"), - "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__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" : m52, - "user_search__list_refresh_text" : MessageLookupByLibrary.simpleMessage("Atualizar"), - "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Toque para tentar novamente."), + "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" : m53, "user_search__no_communities_for" : m54, "user_search__no_results_for" : m55, "user_search__no_users_for" : m56, - "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Pesquisar..."), + "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Sök..."), "user_search__searching_for" : m57, - "user_search__users" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios") + "user_search__users" : MessageLookupByLibrary.simpleMessage("AnvĂ€ndare") }; } diff --git a/lib/locale/messages_sv-SE.dart b/lib/locale/messages_sv-SE.dart new file mode 100644 index 000000000..9f34125c0 --- /dev/null +++ b/lib/locale/messages_sv-SE.dart @@ -0,0 +1,839 @@ +// 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(communityName) => "[name] [username] har bjudit in dig till gemenskapen /c/${communityName}."; + + static m25(maxLength) => "En kommentar kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + + static m26(commentsCount) => "Visa alla ${commentsCount} kommentarer"; + + static m27(circlesSearchQuery) => "Inga kretsar hittades som matchar \'${circlesSearchQuery}\'."; + + static m28(name) => "${name} har inte delat nĂ„got Ă€nnu."; + + static m29(postCreatorUsername) => "@${postCreatorUsername}s kretsar"; + + static m30(maxLength) => "Kretsens namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + + static m31(prettyUsersCount) => "${prettyUsersCount} personer"; + + static m32(username) => "Är du sĂ€ker pĂ„ att du vill blockera @${username}?"; + + static m33(userName) => "BekrĂ€fta ${userName}s kontaktförfrĂ„gan"; + + static m34(userName) => "LĂ€gg till ${userName} som kontakt"; + + static m35(userName) => "Ta bort ${userName} som kontakt"; + + static m36(limit) => "Bilden Ă€r för stor (grĂ€ns: ${limit} MB)"; + + static m37(username) => "AnvĂ€ndarnamnet @${username} Ă€r upptaget"; + + static m38(searchQuery) => "Ingen emoji hittades som matchar \'${searchQuery}\'."; + + static m39(searchQuery) => "Inga listor hittades för \'${searchQuery}\'"; + + static m40(prettyUsersCount) => "${prettyUsersCount} konton"; + + static m41(prettyUsersCount) => "${prettyUsersCount} Konton"; + + static m42(groupName) => "Visa alla ${groupName}"; + + static m43(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 m44(username) => "Gick med under anvĂ€ndarnamnet @${username}"; + + static m45(email) => "VĂ€ntande, inbjudan skickad till ${email}"; + + static m46(maxLength) => "Listans namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + + static m47(maxLength) => "Bion kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + + static m48(maxLength) => "En plats kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + + static m49(takenConnectionsCircleName) => "Kretsnamnet \'${takenConnectionsCircleName}\' Ă€r upptaget"; + + static m50(listName) => "Listnamnet \'${listName}\' Ă€r upptaget"; + + static m51(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; + + static m52(resourcePluralName) => "Inga ${resourcePluralName} hittades."; + + static m53(resourcePluralName) => "Sök ${resourcePluralName} ..."; + + static m54(searchQuery) => "Inga gemenskaper hittades för \'${searchQuery}\'."; + + static m55(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; + + static m56(searchQuery) => "Inga anvĂ€ndare hittades för \'${searchQuery}\'."; + + static m57(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 pĂ„ inlĂ€gg"), + "notifications__comment_title" : MessageLookupByLibrary.simpleMessage("Kommentar pĂ„ inlĂ€gg"), + "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__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__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" : m24, + "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" : m25, + "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" : m26, + "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" : m27, + "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" : m28, + "post__usernames_circles" : m29, + "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" : m30, + "user__circle_peoples_count" : m31, + "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" : m32, + "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" : m33, + "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" : m34, + "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" : m35, + "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" : m36, + "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" : m37, + "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" : m38, + "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" : m39, + "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" : m40, + "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" : m41, + "user__groups_see_all" : m42, + "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" : m43, + "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" : m44, + "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" : m45, + "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" : m46, + "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" : m47, + "user__profile_location_length_error" : m48, + "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" : m49, + "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" : m50, + "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" : m51, + "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" : m52, + "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" : m53, + "user_search__no_communities_for" : m54, + "user_search__no_results_for" : m55, + "user_search__no_users_for" : m56, + "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Sök..."), + "user_search__searching_for" : m57, + "user_search__users" : MessageLookupByLibrary.simpleMessage("AnvĂ€ndare") + }; +} diff --git a/lib/locale/messages_tr.dart b/lib/locale/messages_tr.dart index a6ccc73ce..1f329cbd3 100644 --- a/lib/locale/messages_tr.dart +++ b/lib/locale/messages_tr.dart @@ -212,7 +212,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 +381,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 +508,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,12 +520,16 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] bir yorumda sizden bahsetti."), + "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ı"), 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() { From 97ad3c95c6ce7b24338c8a4e8efb6a20cd5e5702 Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Tue, 13 Aug 2019 18:16:57 +0200 Subject: [PATCH 07/13] :bug: wrong portuguese translations --- assets/i18n/pt-BR/auth.arb | 206 +-- assets/i18n/pt-BR/community.arb | 280 ++-- .../pt-BR/contextual_account_search_box.arb | 2 +- assets/i18n/pt-BR/drawer.arb | 86 +- assets/i18n/pt-BR/error.arb | 4 +- assets/i18n/pt-BR/moderation.arb | 134 +- assets/i18n/pt-BR/notifications.arb | 74 +- assets/i18n/pt-BR/post.arb | 214 +-- assets/i18n/pt-BR/user.arb | 362 ++--- assets/i18n/pt-BR/user_search.arb | 24 +- lib/locale/messages_pt-BR.dart | 1386 ++++++++--------- 11 files changed, 1386 insertions(+), 1386 deletions(-) diff --git a/assets/i18n/pt-BR/auth.arb b/assets/i18n/pt-BR/auth.arb index 683981096..e90e7a1f9 100644 --- a/assets/i18n/pt-BR/auth.arb +++ b/assets/i18n/pt-BR/auth.arb @@ -1,47 +1,47 @@ { - "headline": "Better social.", + "headline": "Uma rede social melhor.", "@headline": { "type": "text", "placeholders": { } }, - "login": "Logga in", + "login": "Entrar", "@login": { "type": "text", "placeholders": { } }, - "email_empty_error": "Du mĂ„ste ange en e-postadress.", + "email_empty_error": "O email nĂŁo pode ficar vazio.", "@email_empty_error": { "type": "text", "placeholders": { } }, - "email_invalid_error": "VĂ€nligen ange en giltig e-postadress.", + "email_invalid_error": "Por favor, forneça um email vĂĄlido.", "@email_invalid_error": { "type": "text", "placeholders": { } }, - "username_empty_error": "Du mĂ„ste ange ett anvĂ€ndarnamn.", + "username_empty_error": "O nome de usuĂĄrio nĂŁo pode ficar vazio.", "@username_empty_error": { "type": "text", "placeholders": { } }, - "username_characters_error": "Ett anvĂ€ndarnamn kan bara innehĂ„lla alfanumeriska tecken och understreck.", + "username_characters_error": "Um nome de usuĂĄrio sĂł pode conter caracteres alfanumĂ©ricos e underlines (_).", "@username_characters_error": { "type": "text", "placeholders": { } }, - "username_maxlength_error": "Ett anvĂ€ndarnamn kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "username_maxlength_error": "Um nome de usuĂĄrio nĂŁo pode ser maior que {maxLength} caracteres.", "@username_maxlength_error": { "type": "text", "placeholders": { @@ -50,91 +50,91 @@ } } }, - "create_account": "Registrera dig", + "create_account": "Cadastrar-se", "@create_account": { "type": "text", "placeholders": { } }, - "create_acc__lets_get_started": "LĂ„t oss komma igĂ„ng", + "create_acc__lets_get_started": "Vamos começar", "@create_acc__lets_get_started": { "type": "text", "placeholders": { } }, - "create_acc__welcome_to_beta": "VĂ€lkommen till betan!", + "create_acc__welcome_to_beta": "Bem-vindo(a) Ă  Beta!", "@create_acc__welcome_to_beta": { "type": "text", "placeholders": { } }, - "create_acc__previous": "Tillbaka", + "create_acc__previous": "Voltar", "@create_acc__previous": { "type": "text", "placeholders": { } }, - "create_acc__next": "NĂ€sta", + "create_acc__next": "Avançar", "@create_acc__next": { "type": "text", "placeholders": { } }, - "create_acc__create_account": "Skapa konto", + "create_acc__create_account": "Criar uma conta", "@create_acc__create_account": { "type": "text", "placeholders": { } }, - "create_acc__paste_link": "Klistra in din registreringslĂ€nk nedan", + "create_acc__paste_link": "Cole seu link de registro abaixo", "@create_acc__paste_link": { "type": "text", "placeholders": { } }, - "create_acc__paste_password_reset_link": "Klistra in din lösenordsĂ„terstĂ€llningslĂ€nk nedan", + "create_acc__paste_password_reset_link": "Cole o link de redefinição de senha abaixo", "@create_acc__paste_password_reset_link": { "type": "text", "placeholders": { } }, - "create_acc__paste_link_help_text": "AnvĂ€nd lĂ€nken frĂ„n Join Okuna-knappen i din inbjudan.", + "create_acc__paste_link_help_text": "Use o link do seu convite recebido por email.", "@create_acc__paste_link_help_text": { "type": "text", "placeholders": { } }, - "create_acc__link_empty_error": "Du mĂ„ste ange en lĂ€nk.", + "create_acc__link_empty_error": "O campo de link nĂŁo pode ficar vazio.", "@create_acc__link_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__link_invalid_error": "LĂ€nken verkar vara ogiltig.", + "create_acc__link_invalid_error": "Este link parece ser invĂĄlido.", "@create_acc__link_invalid_error": { "type": "text", "placeholders": { } }, - "password_empty_error": "Du mĂ„ste ange ett lösenord.", + "password_empty_error": "A senha nĂŁo pode ficar vazia.", "@password_empty_error": { "type": "text", "placeholders": { } }, - "password_range_error": "Lösenordet mĂ„ste vara mellan {minLength} och {maxLength} tecken.", + "password_range_error": "A senha deve ter entre {minLength} e {maxLength} caracteres.", "@password_range_error": { "type": "text", "placeholders": { @@ -146,14 +146,14 @@ } } }, - "name_empty_error": "Du mĂ„ste ange ett namn.", + "name_empty_error": "O nome nĂŁo pode ficar vazio.", "@name_empty_error": { "type": "text", "placeholders": { } }, - "name_range_error": "Namnet mĂ„ste vara mellan {minLength} och {maxLength} tecken.", + "name_range_error": "O nome deve ter entre {minLength} e {maxLength} caracteres.", "@name_range_error": { "type": "text", "placeholders": { @@ -165,14 +165,14 @@ } } }, - "description_empty_error": "Du mĂ„ste skriva en beskrivning.", + "description_empty_error": "A descrição nĂŁo pode ficar vazia.", "@description_empty_error": { "type": "text", "placeholders": { } }, - "description_range_error": "Beskrivningen mĂ„ste vara mellan {minLength} och {maxLength} tecken.", + "description_range_error": "A descrição deve ter entre {minLength} e {maxLength} caracteres.", "@description_range_error": { "type": "text", "placeholders": { @@ -184,196 +184,196 @@ } } }, - "reset_password_success_title": "Allt klart!", + "reset_password_success_title": "Tudo pronto!", "@reset_password_success_title": { "type": "text", "placeholders": { } }, - "reset_password_success_info": "Ditt lösenord har uppdaterats", + "reset_password_success_info": "Sua senha foi alterada com sucesso", "@reset_password_success_info": { "type": "text", "placeholders": { } }, - "create_acc__request_invite": "Ingen inbjudan? Be om en hĂ€r.", + "create_acc__request_invite": "Sem convite? Solicite um aqui.", "@create_acc__request_invite": { "type": "text", "placeholders": { } }, - "create_acc__subscribe": "BegĂ€r", + "create_acc__subscribe": "Solicitar", "@create_acc__subscribe": { "type": "text", "placeholders": { } }, - "create_acc__subscribe_to_waitlist_text": "Be om en inbjudan!", + "create_acc__subscribe_to_waitlist_text": "Solicitar um convite!", "@create_acc__subscribe_to_waitlist_text": { "type": "text", "placeholders": { } }, - "create_acc__congratulations": "Gratulerar!", + "create_acc__congratulations": "ParabĂ©ns!", "@create_acc__congratulations": { "type": "text", "placeholders": { } }, - "create_acc__your_subscribed": "Du Ă€r {0} pĂ„ vĂ€ntelistan.", + "create_acc__your_subscribed": "VocĂȘ Ă© o nĂșmero {0} da lista de espera.", "@create_acc__your_subscribed": { "type": "text", "placeholders": { } }, - "create_acc__almost_there": "NĂ€stan klart...", + "create_acc__almost_there": "Quase lĂĄ...", "@create_acc__almost_there": { "type": "text", "placeholders": { } }, - "create_acc__what_name": "Vad heter du?", + "create_acc__what_name": "Qual Ă© o seu nome?", "@create_acc__what_name": { "type": "text", "placeholders": { } }, - "create_acc__name_placeholder": "James Bond", + "create_acc__name_placeholder": "Ayrton Senna", "@create_acc__name_placeholder": { "type": "text", "placeholders": { } }, - "create_acc__name_empty_error": "đŸ˜± Du mĂ„ste ange ett namn.", + "create_acc__name_empty_error": "đŸ˜± Seu nome nĂŁo pode ficar vazio.", "@create_acc__name_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__name_length_error": "đŸ˜± Ditt namn fĂ„r inte vara lĂ€ngre Ă€n 50 tecken. (Vi Ă€r ledsna om det Ă€r det.)", + "create_acc__name_length_error": "đŸ˜± Seu nome nĂŁo pode ter mais de 50 caracteres. (Se ele tem, lamentamos muito.)", "@create_acc__name_length_error": { "type": "text", "placeholders": { } }, - "create_acc__name_characters_error": "😅 Ett namn kan bara innehĂ„lla alfanumeriska tecken (för tillfĂ€llet).", + "create_acc__name_characters_error": "😅 Um nome sĂł pode conter caracteres alfanumĂ©ricos (por enquanto).", "@create_acc__name_characters_error": { "type": "text", "placeholders": { } }, - "create_acc__what_username": "VĂ€lj ett anvĂ€ndarnamn", + "create_acc__what_username": "Escolha um nome de usuĂĄrio", "@create_acc__what_username": { "type": "text", "placeholders": { } }, - "create_acc__username_placeholder": "pablopicasso", + "create_acc__username_placeholder": "santosdumont", "@create_acc__username_placeholder": { "type": "text", "placeholders": { } }, - "create_acc__username_empty_error": "đŸ˜± Du mĂ„ste ange ett anvĂ€ndarnamn.", + "create_acc__username_empty_error": "đŸ˜± O nome de usuĂĄrio nĂŁo pode ficar vazio.", "@create_acc__username_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__username_length_error": "😅 Ett anvĂ€ndarnamn kan inte vara lĂ€ngre Ă€n 30 tecken.", + "create_acc__username_length_error": "😅 Um nome de usuĂĄrio nĂŁo pode ter mais de 30 caracteres.", "@create_acc__username_length_error": { "type": "text", "placeholders": { } }, - "create_acc__username_characters_error": "😅 Ett anvĂ€ndarnamn kan bara innehĂ„lla alfanumeriska tecken och understreck.", + "create_acc__username_characters_error": "😅 Um nome de usuĂĄrio deve conter apenas caracteres alfanumĂ©ricos e underlines (_).", "@create_acc__username_characters_error": { "type": "text", "placeholders": { } }, - "create_acc__username_taken_error": "đŸ˜© AnvĂ€ndarnamnet @%s Ă€r upptaget.", + "create_acc__username_taken_error": "đŸ˜© O nome de usuĂĄrio @%s jĂĄ estĂĄ em uso.", "@create_acc__username_taken_error": { "type": "text", "placeholders": { } }, - "create_acc__username_server_error": "😭 Vi har serverproblem, vĂ€nligen försök igen om nĂ„gra minuter.", + "create_acc__username_server_error": "😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos.", "@create_acc__username_server_error": { "type": "text", "placeholders": { } }, - "create_acc__what_email": "Vad Ă€r din e-post?", + "create_acc__what_email": "Qual Ă© o seu email?", "@create_acc__what_email": { "type": "text", "placeholders": { } }, - "create_acc__email_placeholder": "john_travolta@mail.com", + "create_acc__email_placeholder": "gisele_bundchen@mail.com", "@create_acc__email_placeholder": { "type": "text", "placeholders": { } }, - "create_acc__email_empty_error": "đŸ˜± Du mĂ„ste ange en e-postadress", + "create_acc__email_empty_error": "đŸ˜± Seu email nĂŁo pode ficar vazio", "@create_acc__email_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__email_invalid_error": "😅 VĂ€nligen ange en giltig e-postadress.", + "create_acc__email_invalid_error": "😅 Por favor, forneça um endereço de email vĂĄlido.", "@create_acc__email_invalid_error": { "type": "text", "placeholders": { } }, - "create_acc__email_taken_error": "đŸ€” Det finns redan ett konto med den e-postadressen.", + "create_acc__email_taken_error": "đŸ€” JĂĄ existe uma conta associada a esse email.", "@create_acc__email_taken_error": { "type": "text", "placeholders": { } }, - "create_acc__email_server_error": "😭 Vi har serverproblem, vĂ€nligen försök igen om nĂ„gra minuter.", + "create_acc__email_server_error": "😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos.", "@create_acc__email_server_error": { "type": "text", "placeholders": { } }, - "create_acc__what_password": "VĂ€lj ett lösenord", + "create_acc__what_password": "Escolha uma senha", "@create_acc__what_password": { "type": "text", "placeholders": { } }, - "create_acc_password_hint_text": "({minLength}-{maxLength} tecken)", + "create_acc_password_hint_text": "({minLength}-{maxLength} caracteres)", "@create_acc_password_hint_text": { "type": "text", "placeholders": { @@ -385,357 +385,357 @@ } } }, - "create_acc__what_password_subtext": "(minst 10 tecken)", + "create_acc__what_password_subtext": "(mĂ­n. 10 caracteres)", "@create_acc__what_password_subtext": { "type": "text", "placeholders": { } }, - "create_acc__password_empty_error": "đŸ˜± Du mĂ„ste ange ett lösenord", + "create_acc__password_empty_error": "đŸ˜± Sua senha nĂŁo pode ficar vazia", "@create_acc__password_empty_error": { "type": "text", "placeholders": { } }, - "create_acc__password_length_error": "😅 Ett lösenord mĂ„ste vara mellan 8 och 64 tecken.", + "create_acc__password_length_error": "😅 Uma senha precisa ter entre 8 e 64 caracteres.", "@create_acc__password_length_error": { "type": "text", "placeholders": { } }, - "create_acc__what_avatar": "VĂ€lj en profilbild", + "create_acc__what_avatar": "Escolha uma imagem de perfil", "@create_acc__what_avatar": { "type": "text", "placeholders": { } }, - "create_acc__avatar_tap_to_change": "Tryck för att Ă€ndra", + "create_acc__avatar_tap_to_change": "Toque para alterar", "@create_acc__avatar_tap_to_change": { "type": "text", "placeholders": { } }, - "create_acc__avatar_choose_camera": "Ta ett foto", + "create_acc__avatar_choose_camera": "Tirar uma foto", "@create_acc__avatar_choose_camera": { "type": "text", "placeholders": { } }, - "create_acc__avatar_choose_gallery": "AnvĂ€nd ett existerande foto", + "create_acc__avatar_choose_gallery": "Usar uma foto existente", "@create_acc__avatar_choose_gallery": { "type": "text", "placeholders": { } }, - "create_acc__avatar_remove_photo": "Ta bort foto", + "create_acc__avatar_remove_photo": "Remover foto", "@create_acc__avatar_remove_photo": { "type": "text", "placeholders": { } }, - "create_acc__done": "Skapa konto", + "create_acc__done": "Criar conta", "@create_acc__done": { "type": "text", "placeholders": { } }, - "create_acc__done_subtext": "Du kan Ă€ndra detta i dina profilinstĂ€llningar.", + "create_acc__done_subtext": "VocĂȘ pode mudar isso nas configuraçÔes de perfil.", "@create_acc__done_subtext": { "type": "text", "placeholders": { } }, - "create_acc__done_created": "Ditt konto har skapats med anvĂ€ndarnamnet ", + "create_acc__done_created": "Sua conta foi criada com o nome de usuĂĄrio ", "@create_acc__done_created": { "type": "text", "placeholders": { } }, - "create_acc__submit_loading_title": "HĂ„ll ut!", + "create_acc__submit_loading_title": "Segura aĂ­!", "@create_acc__submit_loading_title": { "type": "text", "placeholders": { } }, - "create_acc__submit_loading_desc": "Vi skapar ditt konto.", + "create_acc__submit_loading_desc": "Estamos criando sua conta.", "@create_acc__submit_loading_desc": { "type": "text", "placeholders": { } }, - "create_acc__submit_error_title": "Åh, nej...", + "create_acc__submit_error_title": "Ah nĂŁo...", "@create_acc__submit_error_title": { "type": "text", "placeholders": { } }, - "create_acc__submit_error_desc_server": "😭 Vi har serverproblem, vĂ€nligen försök igen om nĂ„gra minuter.", + "create_acc__submit_error_desc_server": "😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos.", "@create_acc__submit_error_desc_server": { "type": "text", "placeholders": { } }, - "create_acc__submit_error_desc_validation": "😅 Det ser ut som att en del av informationen var felaktig, vĂ€nligen kontrollera den och försök igen.", + "create_acc__submit_error_desc_validation": "😅 Parece que algumas das informaçÔes nĂŁo estavam corretas, por favor, verifique e tente novamente.", "@create_acc__submit_error_desc_validation": { "type": "text", "placeholders": { } }, - "create_acc__done_title": "Hurra!", + "create_acc__done_title": "Aeee!", "@create_acc__done_title": { "type": "text", "placeholders": { } }, - "create_acc__done_description": "Ditt konto har skapats.", + "create_acc__done_description": "Sua conta foi criada com sucesso.", "@create_acc__done_description": { "type": "text", "placeholders": { } }, - "create_acc__your_username_is": "Ditt anvĂ€ndarnamn Ă€r ", + "create_acc__your_username_is": "Seu nome de usuĂĄrio Ă© ", "@create_acc__your_username_is": { "type": "text", "placeholders": { } }, - "create_acc__can_change_username": "Om du vill sĂ„ kan du Ă€ndra det nĂ€r som helst frĂ„n din profilsida.", + "create_acc__can_change_username": "Se desejar, vocĂȘ pode alterĂĄ-lo a qualquer momento atravĂ©s da sua pĂĄgina de perfil.", "@create_acc__can_change_username": { "type": "text", "placeholders": { } }, - "create_acc__done_continue": "Logga in", + "create_acc__done_continue": "Entrar", "@create_acc__done_continue": { "type": "text", "placeholders": { } }, - "create_acc__one_last_thing": "En sista sak...", + "create_acc__one_last_thing": "Uma Ășltima coisa...", "@create_acc__one_last_thing": { "type": "text", "placeholders": { } }, - "create_acc__register": "Registrera", + "create_acc__register": "Criar uma conta", "@create_acc__register": { "type": "text", "placeholders": { } }, - "create_acc__are_you_legal_age": "Är du Ă€ldre Ă€n 16 Ă„r?", + "create_acc__are_you_legal_age": "VocĂȘ tem mais de 16 anos?", "@create_acc__are_you_legal_age": { "type": "text", "placeholders": { } }, - "login__login": "FortsĂ€tt", + "login__login": "Continuar", "@login__login": { "type": "text", "placeholders": { } }, - "login__previous": "Tillbaka", + "login__previous": "Voltar", "@login__previous": { "type": "text", "placeholders": { } }, - "login__title": "VĂ€lkommen tillbaka!", + "login__title": "Bem-vindo(a) de volta!", "@login__title": { "type": "text", "placeholders": { } }, - "login__subtitle": "Ange dina inloggningsuppgifter för att fortsĂ€tta.", + "login__subtitle": "Insira suas credenciais para continuar.", "@login__subtitle": { "type": "text", "placeholders": { } }, - "login__forgot_password": "Glömt lösenordet", + "login__forgot_password": "Esqueci a senha", "@login__forgot_password": { "type": "text", "placeholders": { } }, - "login__forgot_password_subtitle": "Ange ditt anvĂ€ndarnamn eller e-postadress", + "login__forgot_password_subtitle": "Digite seu nome de usuĂĄrio ou email", "@login__forgot_password_subtitle": { "type": "text", "placeholders": { } }, - "login__username_label": "AnvĂ€ndarnamn", + "login__username_label": "Nome de usuĂĄrio", "@login__username_label": { "type": "text", "placeholders": { } }, - "login__password_label": "Lösenord", + "login__password_label": "Senha", "@login__password_label": { "type": "text", "placeholders": { } }, - "login__email_label": "E-postadress", + "login__email_label": "Email", "@login__email_label": { "type": "text", "placeholders": { } }, - "login__or_text": "Eller", + "login__or_text": "Ou", "@login__or_text": { "type": "text", "placeholders": { } }, - "login__password_empty_error": "Ett lösenord krĂ€vs.", + "login__password_empty_error": "A senha Ă© necessĂĄria.", "@login__password_empty_error": { "type": "text", "placeholders": { } }, - "login__password_length_error": "Lösenordet mĂ„ste vara mellan 8 och 64 tecken.", + "login__password_length_error": "Sua senha deve ter entre 8 e 64 caracteres.", "@login__password_length_error": { "type": "text", "placeholders": { } }, - "login__username_empty_error": "Ett anvĂ€ndarnamn krĂ€vs.", + "login__username_empty_error": "O nome de usuĂĄrio Ă© necessĂĄrio.", "@login__username_empty_error": { "type": "text", "placeholders": { } }, - "login__username_length_error": "AnvĂ€ndarnamnet kan inte vara lĂ€ngre Ă€n 30 tecken.", + "login__username_length_error": "O nome de usuĂĄrio nĂŁo pode ter mais de 30 caracteres.", "@login__username_length_error": { "type": "text", "placeholders": { } }, - "login__username_characters_error": "AnvĂ€ndarnamnet kan bara innehĂ„lla alfanumeriska tecken och understreck.", + "login__username_characters_error": "O nome de usuĂĄrio sĂł pode conter caracteres alfanumĂ©ricos e underlines (_).", "@login__username_characters_error": { "type": "text", "placeholders": { } }, - "login__credentials_mismatch_error": "De angivna uppgifterna matchar inte.", + "login__credentials_mismatch_error": "As credenciais fornecidas nĂŁo coincidem.", "@login__credentials_mismatch_error": { "type": "text", "placeholders": { } }, - "login__server_error": "Åh nej.. Vi har serverproblem. VĂ€nligen försök igen om nĂ„gra minuter.", + "login__server_error": "Ops... Estamos passando por problemas em nossos servidores. Por favor, tente novamente em alguns minutos.", "@login__server_error": { "type": "text", "placeholders": { } }, - "login__connection_error": "Vi kan inte nĂ„ vĂ„ra servrar. Är du uppkopplad mot internet?", + "login__connection_error": "NĂŁo conseguimos alcançar nossos servidores. VocĂȘ estĂĄ conectado Ă  internet?", "@login__connection_error": { "type": "text", "placeholders": { } }, - "change_password_title": "Ändra lösenord", + "change_password_title": "Alterar senha", "@change_password_title": { "type": "text", "placeholders": { } }, - "change_password_current_pwd": "Nuvarande lösenord", + "change_password_current_pwd": "Senha atual", "@change_password_current_pwd": { "type": "text", "placeholders": { } }, - "change_password_current_pwd_hint": "Ange ditt nuvarande lösenord", + "change_password_current_pwd_hint": "Digite a sua senha atual", "@change_password_current_pwd_hint": { "type": "text", "placeholders": { } }, - "change_password_current_pwd_incorrect": "Det angivna lösenordet var felaktigt", + "change_password_current_pwd_incorrect": "A senha inserida estĂĄ incorreta", "@change_password_current_pwd_incorrect": { "type": "text", "placeholders": { } }, - "change_password_new_pwd": "Nytt lösenord", + "change_password_new_pwd": "Nova senha", "@change_password_new_pwd": { "type": "text", "placeholders": { } }, - "change_password_new_pwd_hint": "Ange ditt nya lösenord", + "change_password_new_pwd_hint": "Digite a sua nova senha", "@change_password_new_pwd_hint": { "type": "text", "placeholders": { } }, - "change_password_new_pwd_error": "VĂ€nligen se till att lösenordet Ă€r mellan 10 och 100 tecken lĂ„ngt", + "change_password_new_pwd_error": "Por favor, certifique-se de que a senha tenha entre 10 e 100 caracteres", "@change_password_new_pwd_error": { "type": "text", "placeholders": { } }, - "change_password_save_text": "Spara", + "change_password_save_text": "Salvar", "@change_password_save_text": { "type": "text", "placeholders": { } }, - "change_password_save_success": "Allt klart! Ditt lösenord har uppdaterats", + "change_password_save_success": "Tudo certo! Sua senha foi atualizada", "@change_password_save_success": { "type": "text", "placeholders": { diff --git a/assets/i18n/pt-BR/community.arb b/assets/i18n/pt-BR/community.arb index ca388fb2e..a39f25e9c 100644 --- a/assets/i18n/pt-BR/community.arb +++ b/assets/i18n/pt-BR/community.arb @@ -1,89 +1,89 @@ { - "no": "Nej", + "no": "NĂŁo", "@no": { "type": "text", "placeholders": { } }, - "yes": "Ja", + "yes": "Sim", "@yes": { "type": "text", "placeholders": { } }, - "button_staff": "Personal", + "button_staff": "Equipe", "@button_staff": { "type": "text", "placeholders": { } }, - "button_rules": "Regler", + "button_rules": "Regras", "@button_rules": { "type": "text", "placeholders": { } }, - "community": "gemenskap", + "community": "comunidade", "@community": { "type": "text", "placeholders": { } }, - "communities": "gemenskaper", + "communities": "comunidades", "@communities": { "type": "text", "placeholders": { } }, - "type_public": "Offentlig", + "type_public": "PĂșblica", "@type_public": { "type": "text", "placeholders": { } }, - "type_private": "Privat", + "type_private": "Privada", "@type_private": { "type": "text", "placeholders": { } }, - "member_capitalized": "Medlem", + "member_capitalized": "Membro", "@member_capitalized": { "type": "text", "placeholders": { } }, - "members_capitalized": "Medlemmar", + "members_capitalized": "Membros", "@members_capitalized": { "type": "text", "placeholders": { } }, - "admin_desc": "Detta kommer tillĂ„ta medlemmen att redigera gemenskapens information, administratörer, moderatorer och bannade anvĂ€ndare.", + "admin_desc": "Isso permitirĂĄ que o membro edite os detalhes da comunidade, administradores, moderadores e usuĂĄrios banidos.", "@admin_desc": { "type": "text", "placeholders": { } }, - "confirmation_title": "BekrĂ€ftelse", + "confirmation_title": "Confirmação", "@confirmation_title": { "type": "text", "placeholders": { } }, - "admin_add_confirmation": "Är du sĂ€ker pĂ„ att du vill lĂ€gga till @{username} som administratör för gemenskapen?", + "admin_add_confirmation": "VocĂȘ tem certeza de que deseja adicionar @{username} como administrador da comunidade?", "@admin_add_confirmation": { "type": "text", "placeholders": { @@ -92,7 +92,7 @@ } } }, - "ban_confirmation": "Är du sĂ€ker pĂ„ att du vill banna @{username}?", + "ban_confirmation": "VocĂȘ tem certeza de que deseja banir @{username}?", "@ban_confirmation": { "type": "text", "placeholders": { @@ -101,14 +101,14 @@ } } }, - "ban_desc": "Detta kommer ta bort anvĂ€ndaren frĂ„n gemenskapen och hindra dem frĂ„n att gĂ„ med igen.", + "ban_desc": "Isso removerĂĄ o usuĂĄrio da comunidade e impedirĂĄ que ele entre novamente.", "@ban_desc": { "type": "text", "placeholders": { } }, - "moderator_add_confirmation": "Är du sĂ€ker pĂ„ att du vill lĂ€gga till @{username} som gemenskapsmoderator?", + "moderator_add_confirmation": "VocĂȘ tem certeza de que deseja adicionar @{username} como moderador da comunidade?", "@moderator_add_confirmation": { "type": "text", "placeholders": { @@ -117,301 +117,301 @@ } } }, - "moderator_desc": "Detta kommer tillĂ„ta medlemmen att redigera gemenskapens information, moderatorer och bannade anvĂ€ndare.", + "moderator_desc": "Isso permitirĂĄ que o membro edite os detalhes da comunidade, moderadores e usuĂĄrios banidos.", "@moderator_desc": { "type": "text", "placeholders": { } }, - "moderators_you": "Du", + "moderators_you": "VocĂȘ", "@moderators_you": { "type": "text", "placeholders": { } }, - "moderators_title": "Moderatorer", + "moderators_title": "Moderadores", "@moderators_title": { "type": "text", "placeholders": { } }, - "leave_desc": "Du kommer inte se dess inlĂ€gg i din tidslinje eller kunna skapa nya inlĂ€gg i den lĂ€ngre.", + "leave_desc": "VocĂȘ nĂŁo poderĂĄ mais ver as publicaçÔes desta comunidade, nem publicar nela.", "@leave_desc": { "type": "text", "placeholders": { } }, - "leave_confirmation": "Är du sĂ€ker pĂ„ att du vill lĂ€mna gemenskapen?", + "leave_confirmation": "VocĂȘ tem certeza de que deseja sair da comunidade?", "@leave_confirmation": { "type": "text", "placeholders": { } }, - "moderator_resource_name": "moderator", + "moderator_resource_name": "moderador", "@moderator_resource_name": { "type": "text", "placeholders": { } }, - "moderators_resource_name": "moderatorer", + "moderators_resource_name": "moderadores", "@moderators_resource_name": { "type": "text", "placeholders": { } }, - "add_moderator_title": "LĂ€gg till moderator", + "add_moderator_title": "Adicionar moderador", "@add_moderator_title": { "type": "text", "placeholders": { } }, - "delete_confirmation": "Är du sĂ€ker pĂ„ att du vill ta bort gemenskapen?", + "delete_confirmation": "VocĂȘ tem certeza de que deseja excluir a comunidade?", "@delete_confirmation": { "type": "text", "placeholders": { } }, - "delete_desc": "Du kommer inte se dess inlĂ€gg i din tidslinje eller kunna skapa nya inlĂ€gg i den lĂ€ngre.", + "delete_desc": "VocĂȘ nĂŁo poderĂĄ mais ver as publicaçÔes desta comunidade, nem publicar nela.", "@delete_desc": { "type": "text", "placeholders": { } }, - "actions_manage_text": "Hantera", + "actions_manage_text": "Gerenciar", "@actions_manage_text": { "type": "text", "placeholders": { } }, - "manage_title": "Hantera gemenskap", + "manage_title": "Gerenciar comunidade", "@manage_title": { "type": "text", "placeholders": { } }, - "manage_details_title": "Detaljer", + "manage_details_title": "Detalhes", "@manage_details_title": { "type": "text", "placeholders": { } }, - "manage_details_desc": "Ändra titel, namn, avatar, omslagsfoto och mer.", + "manage_details_desc": "Alterar tĂ­tulo, nome, avatar, foto de capa e mais.", "@manage_details_desc": { "type": "text", "placeholders": { } }, - "manage_admins_title": "Administratörer", + "manage_admins_title": "Administradores", "@manage_admins_title": { "type": "text", "placeholders": { } }, - "manage_admins_desc": "Se, lĂ€gg till och ta bort administratörer.", + "manage_admins_desc": "Ver, adicionar e remover administradores.", "@manage_admins_desc": { "type": "text", "placeholders": { } }, - "manage_mods_title": "Moderatorer", + "manage_mods_title": "Moderadores", "@manage_mods_title": { "type": "text", "placeholders": { } }, - "manage_mods_desc": "Se, lĂ€gg till och ta bort moderatorer.", + "manage_mods_desc": "Ver, adicionar e remover moderadores.", "@manage_mods_desc": { "type": "text", "placeholders": { } }, - "manage_banned_title": "Bannade anvĂ€ndare", + "manage_banned_title": "UsuĂĄrios banidos", "@manage_banned_title": { "type": "text", "placeholders": { } }, - "manage_banned_desc": "Se, lĂ€gg till och ta bort bannade anvĂ€ndare.", + "manage_banned_desc": "Ver, adicionar e remover usuĂĄrios banidos.", "@manage_banned_desc": { "type": "text", "placeholders": { } }, - "manage_mod_reports_title": "AnmĂ€lningar", + "manage_mod_reports_title": "Reportado Ă  moderação", "@manage_mod_reports_title": { "type": "text", "placeholders": { } }, - "manage_mod_reports_desc": "Granska gemenskapens anmĂ€lningar.", + "manage_mod_reports_desc": "Revise as denĂșncias Ă  moderação da comunidade.", "@manage_mod_reports_desc": { "type": "text", "placeholders": { } }, - "manage_closed_posts_title": "StĂ€ngda inlĂ€gg", + "manage_closed_posts_title": "Posts fechados", "@manage_closed_posts_title": { "type": "text", "placeholders": { } }, - "manage_closed_posts_desc": "Se och hantera stĂ€ngda inlĂ€gg", + "manage_closed_posts_desc": "Ver e gerenciar os posts fechados", "@manage_closed_posts_desc": { "type": "text", "placeholders": { } }, - "manage_invite_title": "Bjud in folk", + "manage_invite_title": "Convidar pessoas", "@manage_invite_title": { "type": "text", "placeholders": { } }, - "manage_invite_desc": "Bjud in dina kontakter och följare till gemenskapen.", + "manage_invite_desc": "Convide suas conexĂ”es e seguidores para se juntar Ă  comunidade.", "@manage_invite_desc": { "type": "text", "placeholders": { } }, - "manage_delete_title": "Ta bort gemenskapen", + "manage_delete_title": "Excluir comunidade", "@manage_delete_title": { "type": "text", "placeholders": { } }, - "manage_delete_desc": "Ta bort gemenskapen, för alltid.", + "manage_delete_desc": "Excluir a comunidade, para sempre.", "@manage_delete_desc": { "type": "text", "placeholders": { } }, - "manage_leave_title": "LĂ€mna gemenskapen", + "manage_leave_title": "Sair da comunidade", "@manage_leave_title": { "type": "text", "placeholders": { } }, - "manage_leave_desc": "LĂ€mna gemenskapen.", + "manage_leave_desc": "Sair da comunidade.", "@manage_leave_desc": { "type": "text", "placeholders": { } }, - "manage_add_favourite": "LĂ€gg till gemenskapen bland dina favoriter", + "manage_add_favourite": "Adicionar a comunidade Ă s suas favoritas", "@manage_add_favourite": { "type": "text", "placeholders": { } }, - "manage_remove_favourite": "Ta bort gemenskapen frĂ„n dina favoriter", + "manage_remove_favourite": "Remover a comunidade de suas favoritas", "@manage_remove_favourite": { "type": "text", "placeholders": { } }, - "is_private": "Den hĂ€r gemenskapen Ă€r privat.", + "is_private": "Essa comunidade Ă© privada.", "@is_private": { "type": "text", "placeholders": { } }, - "invited_by_member": "Du mĂ„ste bli inbjuden av en medlem.", + "invited_by_member": "VocĂȘ deve ser convidado(a) por um membro.", "@invited_by_member": { "type": "text", "placeholders": { } }, - "invited_by_moderator": "Du mĂ„ste bli inbjuden av en moderator.", + "invited_by_moderator": "VocĂȘ deve ser convidado(a) por um moderador.", "@invited_by_moderator": { "type": "text", "placeholders": { } }, - "refreshing": "Uppdaterar gemenskap", + "refreshing": "Atualizando a comunidade", "@refreshing": { "type": "text", "placeholders": { } }, - "posts": "InlĂ€gg", + "posts": "Posts", "@posts": { "type": "text", "placeholders": { } }, - "about": "Om", + "about": "Sobre", "@about": { "type": "text", "placeholders": { } }, - "category": "kategori.", + "category": "categoria.", "@category": { "type": "text", "placeholders": { } }, - "categories": "kategorier.", + "categories": "categorias.", "@categories": { "type": "text", "placeholders": { } }, - "add_administrators_title": "LĂ€gg till administratör.", + "add_administrators_title": "Adicionar administrador.", "@add_administrators_title": { "type": "text", "placeholders": { } }, - "community_members": "Gemenskapens medlemmar", + "community_members": "Membros da comunidade", "@community_members": { "type": "text", "placeholders": { } }, - "member": "medlem", + "member": "membro", "@member": { "description": "Currently not used in app, reserved for potential use. Could be used as: Showing 1 member", "type": "text", @@ -419,7 +419,7 @@ } }, - "member_plural": "medlemmar", + "member_plural": "membros", "@member_plural": { "description": "See all members ,Search all members", "type": "text", @@ -427,14 +427,14 @@ } }, - "administrators_title": "Administratörer", + "administrators_title": "Administradores", "@administrators_title": { "type": "text", "placeholders": { } }, - "administrator_text": "administratör", + "administrator_text": "administrador", "@administrator_text": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 administrator", "type": "text", @@ -442,7 +442,7 @@ } }, - "administrator_plural": "administratörer", + "administrator_plural": "administradores", "@administrator_plural": { "description": "Egs. Search administrators, See list_search_text in user_search.arb ", "type": "text", @@ -450,21 +450,21 @@ } }, - "administrator_you": "Du", + "administrator_you": "VocĂȘ", "@administrator_you": { "type": "text", "placeholders": { } }, - "user_you_text": "Du", + "user_you_text": "VocĂȘ", "@user_you_text": { "type": "text", "placeholders": { } }, - "pick_upto_max": "VĂ€lj upp till {max} kategorier", + "pick_upto_max": "Escolha atĂ© {max} categorias", "@pick_upto_max": { "type": "text", "placeholders": { @@ -473,7 +473,7 @@ } } }, - "pick_atleast_min_category": "Du mĂ„ste vĂ€lja Ă„tminstone {min} kategori.", + "pick_atleast_min_category": "VocĂȘ deve escolher pelo menos {min} categoria.", "@pick_atleast_min_category": { "description": "You must pick at least 1 category", "type": "text", @@ -483,7 +483,7 @@ } } }, - "pick_atleast_min_categories": "Du mĂ„ste vĂ€lja Ă„tminstone {min} kategorier.", + "pick_atleast_min_categories": "VocĂȘ deve escolher pelo menos {min} categorias.", "@pick_atleast_min_categories": { "description": "Eg. Variable min will be 3-5. You must pick at least (3-5) categories", "type": "text", @@ -493,21 +493,21 @@ } } }, - "ban_user_title": "Banna anvĂ€ndare", + "ban_user_title": "Banir usuĂĄrio", "@ban_user_title": { "type": "text", "placeholders": { } }, - "banned_users_title": "Bannade anvĂ€ndare", + "banned_users_title": "UsuĂĄrios banidos", "@banned_users_title": { "type": "text", "placeholders": { } }, - "banned_user_text": "bannad anvĂ€ndare", + "banned_user_text": "usuĂĄrio banido", "@banned_user_text": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 banned user", "type": "text", @@ -515,7 +515,7 @@ } }, - "banned_users_text": "bannade anvĂ€ndare", + "banned_users_text": "usuĂĄrios banidos", "@banned_users_text": { "description": "Egs. Search banned users, See list_search_text in user_search.arb ", "type": "text", @@ -523,14 +523,14 @@ } }, - "favorites_title": "Favoriter", + "favorites_title": "Favoritas", "@favorites_title": { "type": "text", "placeholders": { } }, - "favorite_community": "favoritgemenskap", + "favorite_community": "comunidade favorita", "@favorite_community": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 favorite community", "type": "text", @@ -538,7 +538,7 @@ } }, - "favorite_communities": "favoritgemenskaper", + "favorite_communities": "comunidades favoritas", "@favorite_communities": { "description": "Egs. Search favorite communities, See list_search_text in user_search.arb ", "type": "text", @@ -546,14 +546,14 @@ } }, - "administrated_title": "Administrerade", + "administrated_title": "Administradas", "@administrated_title": { "type": "text", "placeholders": { } }, - "administrated_community": "administrerad gemenskap", + "administrated_community": "comunidade administrada", "@administrated_community": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 administrated community", "type": "text", @@ -561,7 +561,7 @@ } }, - "administrated_communities": "administrerade gemenskaper", + "administrated_communities": "comunidades administradas", "@administrated_communities": { "description": "Egs. Search administrated communities, See list_search_text in user_search.arb ", "type": "text", @@ -569,14 +569,14 @@ } }, - "moderated_title": "Modererade", + "moderated_title": "Moderadas", "@moderated_title": { "type": "text", "placeholders": { } }, - "moderated_community": "modererad gemenskap", + "moderated_community": "comunidade moderada", "@moderated_community": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 moderated community", "type": "text", @@ -584,7 +584,7 @@ } }, - "moderated_communities": "modererade gemenskaper", + "moderated_communities": "comunidades moderadas", "@moderated_communities": { "description": "Egs. Search moderated communities, See list_search_text in user_search.arb ", "type": "text", @@ -592,14 +592,14 @@ } }, - "joined_title": "Medlem i", + "joined_title": "Ingressadas", "@joined_title": { "type": "text", "placeholders": { } }, - "joined_community": "gemenskap du Ă€r medlem i", + "joined_community": "comunidade ingressada", "@joined_community": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 joined community", "type": "text", @@ -607,7 +607,7 @@ } }, - "joined_communities": "gemenskaper du Ă€r medlem i", + "joined_communities": "comunidades ingressadas", "@joined_communities": { "description": "Egs. Search joined communities, See list_search_text in user_search.arb ", "type": "text", @@ -615,42 +615,42 @@ } }, - "join_communities_desc": "GĂ„ med i gemenskaper för att se den hĂ€r fliken komma till liv!", + "join_communities_desc": "Entre nas comunidades para ver esta aba ganhar vida!", "@join_communities_desc": { "type": "text", "placeholders": { } }, - "refresh_text": "Uppdatera", + "refresh_text": "Atualizar", "@refresh_text": { "type": "text", "placeholders": { } }, - "trending_none_found": "Inga trendiga gemenskaper hittades. Försök igen om nĂ„gra minuter.", + "trending_none_found": "Nenhuma comunidade em alta encontrada. Tente novamente em alguns minutos.", "@trending_none_found": { "type": "text", "placeholders": { } }, - "trending_refresh": "Uppdatera", + "trending_refresh": "Atualizar", "@trending_refresh": { "type": "text", "placeholders": { } }, - "trending_in_all": "Trendiga frĂ„n alla kategorier", + "trending_in_all": "Em alta em todas as categorias", "@trending_in_all": { "type": "text", "placeholders": { } }, - "trending_in_category": "Trendiga i {categoryName}", + "trending_in_category": "Em alta em {categoryName}", "@trending_in_category": { "type": "text", "placeholders": { @@ -659,42 +659,42 @@ } } }, - "communities_title": "Gemenskaper", + "communities_title": "Comunidades", "@communities_title": { "type": "text", "placeholders": { } }, - "communities_no_category_found": "Inga kategorier hittades. VĂ€nligen försök igen om nĂ„gra minuter.", + "communities_no_category_found": "Nenhuma categoria encontrada. Por favor, tente novamente em alguns minutos.", "@communities_no_category_found": { "type": "text", "placeholders": { } }, - "communities_refresh_text": "Uppdatera", + "communities_refresh_text": "Atualizar", "@communities_refresh_text": { "type": "text", "placeholders": { } }, - "communities_all_text": "Alla", + "communities_all_text": "Todas", "@communities_all_text": { "type": "text", "placeholders": { } }, - "invite_to_community_title": "Bjud in till gemenskapen", + "invite_to_community_title": "Convidar para a comunidade", "@invite_to_community_title": { "type": "text", "placeholders": { } }, - "invite_to_community_resource_singular": "kontakt eller följare", + "invite_to_community_resource_singular": "conexĂŁo ou seguidor", "@invite_to_community_resource_singular": { "description": "Currently unsused, reserved for potential use. Could be used as Showing 1 connection or follower", "type": "text", @@ -702,7 +702,7 @@ } }, - "invite_to_community_resource_plural": "kontakter och följare", + "invite_to_community_resource_plural": "conexĂ”es e seguidores", "@invite_to_community_resource_plural": { "description": "Egs. Search connections and followers, See list_search_text in user_search.arb ", "type": "text", @@ -710,49 +710,49 @@ } }, - "favorite_action": "Markera gemenskap som favorit", + "favorite_action": "Favoritar comunidade", "@favorite_action": { "type": "text", "placeholders": { } }, - "unfavorite_action": "Ta bort gemenskap frĂ„n favoriter", + "unfavorite_action": "Desfavoritar comunidade", "@unfavorite_action": { "type": "text", "placeholders": { } }, - "save_community_label_title": "Titel", + "save_community_label_title": "TĂ­tulo", "@save_community_label_title": { "type": "text", "placeholders": { } }, - "save_community_label_title_hint_text": "t. ex. Resor, Fotografering, Datorspel.", + "save_community_label_title_hint_text": "ex: Viagem, Fotografia, Jogos.", "@save_community_label_title_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_title": "Namn", + "save_community_name_title": "Nome", "@save_community_name_title": { "type": "text", "placeholders": { } }, - "save_community_name_title_hint_text": " t. ex. resor, fotografering, datorspel.", + "save_community_name_title_hint_text": " ex: viagem, fotografia, jogos.", "@save_community_name_title_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_taken": "Gemenskapsnamnet '{takenName}' Ă€r upptaget", + "save_community_name_taken": "O nome de comunidade '{takenName}' jĂĄ estĂĄ em uso", "@save_community_name_taken": { "type": "text", "placeholders": { @@ -761,203 +761,203 @@ } } }, - "save_community_name_label_color": "FĂ€rg", + "save_community_name_label_color": "Cor", "@save_community_name_label_color": { "type": "text", "placeholders": { } }, - "save_community_name_label_color_hint_text": "(Tryck för att Ă€ndra)", + "save_community_name_label_color_hint_text": "(Toque para alterar)", "@save_community_name_label_color_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_label_type": "Typ", + "save_community_name_label_type": "Tipo", "@save_community_name_label_type": { "type": "text", "placeholders": { } }, - "save_community_name_label_type_hint_text": "(Tryck för att Ă€ndra)", + "save_community_name_label_type_hint_text": "(Toque para alterar)", "@save_community_name_label_type_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_member_invites": "Medlemsinbjudningar", + "save_community_name_member_invites": "Convites de membros", "@save_community_name_member_invites": { "type": "text", "placeholders": { } }, - "save_community_name_member_invites_subtitle": "Medlemmar kan bjuda in folk till gemenskapen", + "save_community_name_member_invites_subtitle": "Membros podem convidar pessoas para a comunidade", "@save_community_name_member_invites_subtitle": { "type": "text", "placeholders": { } }, - "save_community_name_category": "Kategori", + "save_community_name_category": "Categoria", "@save_community_name_category": { "type": "text", "placeholders": { } }, - "save_community_name_label_desc_optional": "Beskrivning · Valfri", + "save_community_name_label_desc_optional": "Descrição · Opcional", "@save_community_name_label_desc_optional": { "type": "text", "placeholders": { } }, - "save_community_name_label_desc_optional_hint_text": "Vad handlar din gemenskap om?", + "save_community_name_label_desc_optional_hint_text": "Sobre o que Ă© a sua comunidade?", "@save_community_name_label_desc_optional_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_label_rules_optional": "Regler · Valfritt", + "save_community_name_label_rules_optional": "Regras · Opcional", "@save_community_name_label_rules_optional": { "type": "text", "placeholders": { } }, - "save_community_name_label_rules_optional_hint_text": "Finns det nĂ„got som du vill att dina anvĂ€ndare kĂ€nner till?", + "save_community_name_label_rules_optional_hint_text": "HĂĄ algo que vocĂȘ gostaria que seus usuĂĄrios soubessem?", "@save_community_name_label_rules_optional_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_label_member_adjective": "Medlem-adjektiv · Valfritt", + "save_community_name_label_member_adjective": "Adjetivo para membro · Opcional", "@save_community_name_label_member_adjective": { "type": "text", "placeholders": { } }, - "save_community_name_label_member_adjective_hint_text": "t. ex. resenĂ€r, fotograf, gamer.", + "save_community_name_label_member_adjective_hint_text": "ex: viajante, fotĂłgrafo, gamer.", "@save_community_name_label_member_adjective_hint_text": { "type": "text", "placeholders": { } }, - "save_community_name_label_members_adjective": "Medlemmar-adjektiv · Valfritt", + "save_community_name_label_members_adjective": "Adjetivo para membros · Opcional", "@save_community_name_label_members_adjective": { "type": "text", "placeholders": { } }, - "save_community_name_label_members_adjective_hint_text": "t. ex. resenĂ€rer, fotografer, gamers.", + "save_community_name_label_members_adjective_hint_text": "ex: viajantes, fotĂłgrafos, gamers.", "@save_community_name_label_members_adjective_hint_text": { "type": "text", "placeholders": { } }, - "save_community_edit_community": "Redigera gemenskap", + "save_community_edit_community": "Editar comunidade", "@save_community_edit_community": { "type": "text", "placeholders": { } }, - "save_community_create_community": "Skapa gemenskap", + "save_community_create_community": "Criar comunidade", "@save_community_create_community": { "type": "text", "placeholders": { } }, - "save_community_save_text": "Spara", + "save_community_save_text": "Salvar", "@save_community_save_text": { "type": "text", "placeholders": { } }, - "save_community_create_text": "Skapa", + "save_community_create_text": "Criar", "@save_community_create_text": { "type": "text", "placeholders": { } }, - "actions_invite_people_title": "Bjud in folk till gemenskapen", + "actions_invite_people_title": "Convide pessoas para a comunidade", "@actions_invite_people_title": { "type": "text", "placeholders": { } }, - "join_community": "GĂ„ med", + "join_community": "Entrar", "@join_community": { "type": "text", "placeholders": { } }, - "leave_community": "LĂ€mna", + "leave_community": "Sair", "@leave_community": { "type": "text", "placeholders": { } }, - "community_staff": "Gemenskapens personal", + "community_staff": "Equipe da comunidade", "@community_staff": { "type": "text", "placeholders": { } }, - "post_singular": "inlĂ€gg", + "post_singular": "post", "@post_singular": { "type": "text", "placeholders": { } }, - "post_plural": "inlĂ€gg", + "post_plural": "posts", "@post_plural": { "type": "text", "placeholders": { } }, - "rules_title": "Gemenskapens regler", + "rules_title": "Regras da comunidade", "@rules_title": { "type": "text", "placeholders": { } }, - "rules_text": "Regler", + "rules_text": "Regras", "@rules_text": { "type": "text", "placeholders": { } }, - "name_characters_error": "Ett namn kan bara innehĂ„lla alfanumeriska tecken och understreck.", + "name_characters_error": "O nome sĂł pode conter caracteres alfanumĂ©ricos e underlines (_).", "@name_characters_error": { "type": "text", "placeholders": { } }, - "name_range_error": "Namnet fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "name_range_error": "O nome nĂŁo pode ser maior que {maxLength} caracteres.", "@name_range_error": { "type": "text", "placeholders": { @@ -966,14 +966,14 @@ } } }, - "name_empty_error": "Du mĂ„ste ange ett namn.", + "name_empty_error": "O nome nĂŁo pode ficar vazio.", "@name_empty_error": { "type": "text", "placeholders": { } }, - "title_range_error": "Titeln fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "title_range_error": "O tĂ­tulo nĂŁo pode ser maior que {maxLength} caracteres.", "@title_range_error": { "type": "text", "placeholders": { @@ -982,14 +982,14 @@ } } }, - "title_empty_error": "Du mĂ„ste ange en titel.", + "title_empty_error": "O tĂ­tulo nĂŁo pode ficar vazio.", "@title_empty_error": { "type": "text", "placeholders": { } }, - "rules_range_error": "Reglerna fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "rules_range_error": "As regras nĂŁo podem ser maiores que {maxLength} caracteres.", "@rules_range_error": { "type": "text", "placeholders": { @@ -998,14 +998,14 @@ } } }, - "rules_empty_error": "RegelfĂ€ltet kan inte vara tomt.", + "rules_empty_error": "As regras nĂŁo podem ficar vazias.", "@rules_empty_error": { "type": "text", "placeholders": { } }, - "description_range_error": "Beskrivningen kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "description_range_error": "A descrição nĂŁo pode ser maior que {maxLength} caracteres.", "@description_range_error": { "type": "text", "placeholders": { @@ -1014,7 +1014,7 @@ } } }, - "adjectives_range_error": "Adjektiv fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "adjectives_range_error": "Os adjetivos nĂŁo podem ser mais longos que {maxLength} caracteres.", "@adjectives_range_error": { "description": "This refers to the customisable adjectives assigned to community members,eg. 1k travellers,5k photographers", "type": "text", diff --git a/assets/i18n/pt-BR/contextual_account_search_box.arb b/assets/i18n/pt-BR/contextual_account_search_box.arb index 5291c367d..9df038403 100644 --- a/assets/i18n/pt-BR/contextual_account_search_box.arb +++ b/assets/i18n/pt-BR/contextual_account_search_box.arb @@ -1,5 +1,5 @@ { - "suggestions": "Förslag", + "suggestions": "SugestĂ”es", "@suggestions": { "description": "The title to display on the suggestions when searching for accounts when trying to mention someone.", "type": "text", diff --git a/assets/i18n/pt-BR/drawer.arb b/assets/i18n/pt-BR/drawer.arb index dae115338..b3ddcd3e8 100644 --- a/assets/i18n/pt-BR/drawer.arb +++ b/assets/i18n/pt-BR/drawer.arb @@ -1,159 +1,159 @@ { - "menu_title": "Meny", + "menu_title": "Menu", "@menu_title": { "type": "text", "placeholders": { } }, - "main_title": "Mitt Okuna", + "main_title": "Minha Okuna", "@main_title": { "type": "text", "placeholders": { } }, - "my_circles": "Mina cirklar", + "my_circles": "Meus cĂ­rculos", "@my_circles": { "type": "text", "placeholders": { } }, - "my_lists": "Mina listor", + "my_lists": "Minhas listas", "@my_lists": { "type": "text", "placeholders": { } }, - "my_followers": "Mina följare", + "my_followers": "Meus seguidores", "@my_followers": { "type": "text", "placeholders": { } }, - "my_following": "Mitt följande", + "my_following": "Meus seguidos", "@my_following": { "type": "text", "placeholders": { } }, - "my_invites": "Mina inbjudningar", + "my_invites": "Meus convites", "@my_invites": { "type": "text", "placeholders": { } }, - "my_pending_mod_tasks": "Mina vĂ€ntande modereringsuppgifter", + "my_pending_mod_tasks": "Minhas tarefas de moderação pendentes", "@my_pending_mod_tasks": { "type": "text", "placeholders": { } }, - "my_mod_penalties": "Mina modereringsstraff", + "my_mod_penalties": "Minhas penalidades", "@my_mod_penalties": { "type": "text", "placeholders": { } }, - "app_account_text": "App & Konto", + "app_account_text": "Aplicativo & Conta", "@app_account_text": { "type": "text", "placeholders": { } }, - "themes": "Teman", + "themes": "Temas", "@themes": { "type": "text", "placeholders": { } }, - "global_moderation": "Global moderering", + "global_moderation": "Moderação global", "@global_moderation": { "type": "text", "placeholders": { } }, - "profile": "Profil", + "profile": "Perfil", "@profile": { "type": "text", "placeholders": { } }, - "connections": "Mina kontakter", + "connections": "Minhas conexĂ”es", "@connections": { "type": "text", "placeholders": { } }, - "lists": "Mina listor", + "lists": "Minhas listas", "@lists": { "type": "text", "placeholders": { } }, - "settings": "InstĂ€llningar", + "settings": "ConfiguraçÔes", "@settings": { "type": "text", "placeholders": { } }, - "application_settings": "PrograminstĂ€llningar", + "application_settings": "ConfiguraçÔes do aplicativo", "@application_settings": { "type": "text", "placeholders": { } }, - "account_settings": "KontoinstĂ€llningar", + "account_settings": "ConfiguraçÔes da conta", "@account_settings": { "type": "text", "placeholders": { } }, - "account_settings_change_email": "Ändra e-post", + "account_settings_change_email": "Alterar Email", "@account_settings_change_email": { "type": "text", "placeholders": { } }, - "account_settings_change_password": "Ändra lösenord", + "account_settings_change_password": "Alterar Senha", "@account_settings_change_password": { "type": "text", "placeholders": { } }, - "account_settings_notifications": "Aviseringar", + "account_settings_notifications": "NotificaçÔes", "@account_settings_notifications": { "type": "text", "placeholders": { } }, - "account_settings_language_text": "SprĂ„k", + "account_settings_language_text": "Idioma", "@account_settings_language_text": { "type": "text", "placeholders": { } }, - "account_settings_language": "SprĂ„k ({currentUserLanguage})", + "account_settings_language": "Idioma ({currentUserLanguage})", "@account_settings_language": { "type": "text", "placeholders": { @@ -162,140 +162,140 @@ } } }, - "account_settings_blocked_users": "Blockerade anvĂ€ndare", + "account_settings_blocked_users": "UsuĂĄrios bloqueados", "@account_settings_blocked_users": { "type": "text", "placeholders": { } }, - "account_settings_delete_account": "Ta bort konto", + "account_settings_delete_account": "Excluir a minha conta", "@account_settings_delete_account": { "type": "text", "placeholders": { } }, - "help": "HjĂ€lp och feedback", + "help": "Suporte e Feedback", "@help": { "type": "text", "placeholders": { } }, - "customize": "Anpassa", + "customize": "Personalizar", "@customize": { "type": "text", "placeholders": { } }, - "logout": "Logga ut", + "logout": "Sair", "@logout": { "type": "text", "placeholders": { } }, - "useful_links_title": "AnvĂ€ndbara lĂ€nkar", + "useful_links_title": "Links Ășteis", "@useful_links_title": { "type": "text", "placeholders": { } }, - "useful_links_guidelines": "Okunas riktlinjer", + "useful_links_guidelines": "Diretrizes da Okuna", "@useful_links_guidelines": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_desc": "Riktlinjerna vi alla förvĂ€ntas att följa för en hĂ€lsosam och vĂ€nlig samvaro.", + "useful_links_guidelines_desc": "As diretrizes que todos esperamos seguir para uma coexistĂȘncia saudĂĄvel e amigĂĄvel.", "@useful_links_guidelines_desc": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_github": "Projekttavla pĂ„ Github", + "useful_links_guidelines_github": "Projeto no Github", "@useful_links_guidelines_github": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_github_desc": "Ta en titt pĂ„ vad vi arbetar pĂ„ just nu", + "useful_links_guidelines_github_desc": "DĂȘ uma olhada no que estamos trabalhando atualmente", "@useful_links_guidelines_github_desc": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_feature_requests": "Funktionsförslag", + "useful_links_guidelines_feature_requests": "SugestĂ”es de recursos", "@useful_links_guidelines_feature_requests": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_feature_requests_desc": "FöreslĂ„ en ny funktion eller rösta för existerande förslag", + "useful_links_guidelines_feature_requests_desc": "Sugerir um recurso ou votar em sugestĂ”es existentes", "@useful_links_guidelines_feature_requests_desc": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_bug_tracker": "Felrapportering", + "useful_links_guidelines_bug_tracker": "Rastreador de bugs", "@useful_links_guidelines_bug_tracker": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_bug_tracker_desc": "Rapportera ett fel eller rösta för existerande rapporter", + "useful_links_guidelines_bug_tracker_desc": "Reportar um bug ou votar em bugs existentes", "@useful_links_guidelines_bug_tracker_desc": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_handbook": "Okunas handbok", + "useful_links_guidelines_handbook": "Manual da Okuna", "@useful_links_guidelines_handbook": { "type": "text", "placeholders": { } }, - "useful_links_guidelines_handbook_desc": "En bok med allt du behöver veta om att anvĂ€nda plattformen", + "useful_links_guidelines_handbook_desc": "Um livro com tudo o que hĂĄ para saber sobre usar a plataforma", "@useful_links_guidelines_handbook_desc": { "type": "text", "placeholders": { } }, - "useful_links_support": "Stöd Okuna", + "useful_links_support": "Apoie a Okuna", "@useful_links_support": { "type": "text", "placeholders": { } }, - "useful_links_support_desc": "Hitta ett sĂ€tt pĂ„ vilket du kan hjĂ€lpa oss under vĂ„r resa!", + "useful_links_support_desc": "Encontre uma maneira de nos apoiar em nossa jornada!", "@useful_links_support_desc": { "type": "text", "placeholders": { } }, - "useful_links_slack_channel": "Gemenskapens Slack-kanal", + "useful_links_slack_channel": "Canal da comunidade no Slack", "@useful_links_slack_channel": { "type": "text", "placeholders": { } }, - "useful_links_slack_channel_desc": "En plats för diskussioner om allt om Okuna", + "useful_links_slack_channel_desc": "Um lugar para discutir tudo sobre a Okuna", "@useful_links_slack_channel_desc": { "type": "text", "placeholders": { diff --git a/assets/i18n/pt-BR/error.arb b/assets/i18n/pt-BR/error.arb index d368cb835..63f691a4e 100644 --- a/assets/i18n/pt-BR/error.arb +++ b/assets/i18n/pt-BR/error.arb @@ -1,12 +1,12 @@ { - "unknown_error": "OkĂ€nt fel", + "unknown_error": "Erro desconhecido", "@unknown_error": { "type": "text", "placeholders": { } }, - "no_internet_connection": "Ingen internetuppkoppling", + "no_internet_connection": "Sem conexĂŁo com a internet", "@no_internet_connection": { "type": "text", "placeholders": { diff --git a/assets/i18n/pt-BR/moderation.arb b/assets/i18n/pt-BR/moderation.arb index 6d9c87088..8e4f23cd3 100644 --- a/assets/i18n/pt-BR/moderation.arb +++ b/assets/i18n/pt-BR/moderation.arb @@ -1,33 +1,33 @@ { - "filters_title": "Modereringsfilter", + "filters_title": "Filtros de moderação", "@filters_title": { "type": "text", "placeholders": { } }, - "filters_reset": "ÅterstĂ€ll", + "filters_reset": "Redefinir", "@filters_reset": { "type": "text", "placeholders": { } }, - "filters_verified": "Verifierad", + "filters_verified": "Verificado", "@filters_verified": { "type": "text", "placeholders": { } }, - "filters_apply": "Applicera filter", + "filters_apply": "Aplicar filtros", "@filters_apply": { "type": "text", "placeholders": { } }, - "filters_type": "Typ", + "filters_type": "Tipo", "@filters_type": { "type": "text", "placeholders": { @@ -41,91 +41,91 @@ } }, - "filters_other": "Övrigt", + "filters_other": "Outros", "@filters_other": { "type": "text", "placeholders": { } }, - "actions_review": "Granska", + "actions_review": "Revisar", "@actions_review": { "type": "text", "placeholders": { } }, - "actions_chat_with_team": "Chatta med teamet", + "actions_chat_with_team": "Converse com a equipe", "@actions_chat_with_team": { "type": "text", "placeholders": { } }, - "update_category_title": "Uppdatera kategori", + "update_category_title": "Atualizar categoria", "@update_category_title": { "type": "text", "placeholders": { } }, - "update_category_save": "Spara", + "update_category_save": "Salvar", "@update_category_save": { "type": "text", "placeholders": { } }, - "update_description_save": "Spara", + "update_description_save": "Salvar", "@update_description_save": { "type": "text", "placeholders": { } }, - "update_description_title": "Redigera beskrivning", + "update_description_title": "Editar descrição", "@update_description_title": { "type": "text", "placeholders": { } }, - "update_description_report_desc": "AnmĂ€l beskrivning", + "update_description_report_desc": "Descrição da denĂșncia", "@update_description_report_desc": { "type": "text", "placeholders": { } }, - "update_description_report_hint_text": "t. ex. anmĂ€lan var...", + "update_description_report_hint_text": "ex: O motivo da denĂșncia Ă©...", "@update_description_report_hint_text": { "type": "text", "placeholders": { } }, - "update_status_save": "Spara", + "update_status_save": "Salvar", "@update_status_save": { "type": "text", "placeholders": { } }, - "update_status_title": "Uppdatera status", + "update_status_title": "Atualizar status", "@update_status_title": { "type": "text", "placeholders": { } }, - "community_review_title": "Granska modererat objekt", + "community_review_title": "Revisar objeto moderado", "@community_review_title": { "type": "text", "placeholders": { } }, - "moderated_object_title": "Objekt", + "moderated_object_title": "Objeto", "@moderated_object_title": { "type": "text", "placeholders": { @@ -139,28 +139,28 @@ } }, - "moderated_object_reports_count": "Antal anmĂ€lningar", + "moderated_object_reports_count": "NĂșmero de denĂșncias", "@moderated_object_reports_count": { "type": "text", "placeholders": { } }, - "moderated_object_verified_by_staff": "Verifierad av Okunas personal", + "moderated_object_verified_by_staff": "Verificado pela equipe da Okuna", "@moderated_object_verified_by_staff": { "type": "text", "placeholders": { } }, - "moderated_object_verified": "Verifierad", + "moderated_object_verified": "Verificado", "@moderated_object_verified": { "type": "text", "placeholders": { } }, - "moderated_object_true_text": "Sant", + "moderated_object_true_text": "Verdadeiro", "@moderated_object_true_text": { "description": "Eg. Moderated object verified by staff? true \/ false", "type": "text", @@ -168,7 +168,7 @@ } }, - "moderated_object_false_text": "Falskt", + "moderated_object_false_text": "Falso", "@moderated_object_false_text": { "description": "Eg. Moderated object verified by staff? true \/ false", "type": "text", @@ -176,259 +176,259 @@ } }, - "community_review_object": "Objekt", + "community_review_object": "Objeto", "@community_review_object": { "type": "text", "placeholders": { } }, - "community_review_approve": "GodkĂ€nn", + "community_review_approve": "Aprovar", "@community_review_approve": { "type": "text", "placeholders": { } }, - "community_review_reject": "avvisa", + "community_review_reject": "rejeitar", "@community_review_reject": { "type": "text", "placeholders": { } }, - "community_review_item_verified": "Den hĂ€r anmĂ€lan har verifierats", + "community_review_item_verified": "Este item foi verificado", "@community_review_item_verified": { "type": "text", "placeholders": { } }, - "global_review_title": "Granska modererat objekt", + "global_review_title": "Revisar objeto moderado", "@global_review_title": { "type": "text", "placeholders": { } }, - "global_review_object_text": "Objekt", + "global_review_object_text": "Objeto", "@global_review_object_text": { "type": "text", "placeholders": { } }, - "global_review_verify_text": "Verifiera", + "global_review_verify_text": "Verificar", "@global_review_verify_text": { "type": "text", "placeholders": { } }, - "global_review_unverify_text": "Av-verifiera", + "global_review_unverify_text": "Desverificar", "@global_review_unverify_text": { "type": "text", "placeholders": { } }, - "confirm_report_title": "Skicka anmĂ€lan", + "confirm_report_title": "Enviar denĂșncia", "@confirm_report_title": { "type": "text", "placeholders": { } }, - "confirm_report_provide_details": "Kan du delge extra information som kan vara relevant för anmĂ€lan?", + "confirm_report_provide_details": "VocĂȘ pode fornecer mais detalhes relevantes para a denĂșncia?", "@confirm_report_provide_details": { "type": "text", "placeholders": { } }, - "confirm_report_provide_optional_info": "(Valfritt)", + "confirm_report_provide_optional_info": "(Opcional)", "@confirm_report_provide_optional_info": { "type": "text", "placeholders": { } }, - "confirm_report_provide_optional_hint_text": "Skriv hĂ€r...", + "confirm_report_provide_optional_hint_text": "Digite aqui...", "@confirm_report_provide_optional_hint_text": { "type": "text", "placeholders": { } }, - "confirm_report_provide_happen_next": "Detta kommer hĂ€nda hĂ€rnĂ€st:", + "confirm_report_provide_happen_next": "Aqui estĂĄ o que acontecerĂĄ a seguir:", "@confirm_report_provide_happen_next": { "type": "text", "placeholders": { } }, - "confirm_report_provide_happen_next_desc": "- 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", + "confirm_report_provide_happen_next_desc": "- Sua denĂșncia serĂĄ enviada anonimamente. \n- Se vocĂȘ estiver denunciando uma publicação ou comentĂĄrio, a denĂșncia serĂĄ enviada Ă  equipe da Okuna e aos moderadores da comunidade (se aplicĂĄvel), e o conteĂșdo denunciado ficarĂĄ oculto do seu feed. \n- Se vocĂȘ estiver denunciando uma conta ou comunidade, a denĂșncia serĂĄ enviada para a equipe da Okuna. \n- Vamos analisar a denĂșncia e, se aprovada, o conteĂșdo serĂĄ excluĂ­do e as penalidades serĂŁo aplicadas Ă s pessoas envolvidas, desde uma suspensĂŁo temporĂĄria atĂ© a exclusĂŁo da conta, dependendo da gravidade da transgressĂŁo. \n- Se a denĂșncia for apenas uma tentativa de prejudicar um membro ou comunidade que nĂŁo cometeu a infração apontada por vocĂȘ, as penalidades serĂŁo aplicadas a vocĂȘ. \n", "@confirm_report_provide_happen_next_desc": { "type": "text", "placeholders": { } }, - "confirm_report_submit": "Jag förstĂ„r, skicka.", + "confirm_report_submit": "Eu entendo, envie.", "@confirm_report_submit": { "type": "text", "placeholders": { } }, - "confirm_report_user_reported": "AnvĂ€ndare anmĂ€ld", + "confirm_report_user_reported": "UsuĂĄrio denunciado", "@confirm_report_user_reported": { "type": "text", "placeholders": { } }, - "confirm_report_community_reported": "Gemenskap anmĂ€ld", + "confirm_report_community_reported": "Comunidade denunciada", "@confirm_report_community_reported": { "type": "text", "placeholders": { } }, - "confirm_report_post_reported": "InlĂ€gg anmĂ€lt", + "confirm_report_post_reported": "Publicação denunciada", "@confirm_report_post_reported": { "type": "text", "placeholders": { } }, - "confirm_report_post_comment_reported": "InlĂ€ggskommentar anmĂ€ld", + "confirm_report_post_comment_reported": "ComentĂĄrio denunciado", "@confirm_report_post_comment_reported": { "type": "text", "placeholders": { } }, - "confirm_report_item_reported": "Objekt anmĂ€lt", + "confirm_report_item_reported": "Item denunciado", "@confirm_report_item_reported": { "type": "text", "placeholders": { } }, - "community_moderated_objects": "Gemenskapens modererade objekt", + "community_moderated_objects": "Itens moderados por comunidades", "@community_moderated_objects": { "type": "text", "placeholders": { } }, - "globally_moderated_objects": "Globalt modererade objekt", + "globally_moderated_objects": "Itens moderados globalmente", "@globally_moderated_objects": { "type": "text", "placeholders": { } }, - "tap_to_retry": "Tryck för att försöka lĂ€sa in poster igen", + "tap_to_retry": "Toque para tentar carregar os itens novamente", "@tap_to_retry": { "type": "text", "placeholders": { } }, - "report_post_text": "AnmĂ€l inlĂ€gg", + "report_post_text": "Denunciar publicação", "@report_post_text": { "type": "text", "placeholders": { } }, - "you_have_reported_post_text": "Du har anmĂ€lt det hĂ€r inlĂ€gget", + "you_have_reported_post_text": "VocĂȘ denunciou esta publicação", "@you_have_reported_post_text": { "type": "text", "placeholders": { } }, - "report_account_text": "AnmĂ€l konto", + "report_account_text": "Denunciar conta", "@report_account_text": { "type": "text", "placeholders": { } }, - "you_have_reported_account_text": "Du har anmĂ€lt det hĂ€r kontot", + "you_have_reported_account_text": "VocĂȘ denunciou esta conta", "@you_have_reported_account_text": { "type": "text", "placeholders": { } }, - "report_community_text": "AnmĂ€l gemenskap", + "report_community_text": "Denunciar comunidade", "@report_community_text": { "type": "text", "placeholders": { } }, - "you_have_reported_community_text": "Du har anmĂ€lt den hĂ€r gemenskapen", + "you_have_reported_community_text": "VocĂȘ denunciou esta comunidade", "@you_have_reported_community_text": { "type": "text", "placeholders": { } }, - "report_comment_text": "AnmĂ€l kommentar", + "report_comment_text": "Denunciar comentĂĄrio", "@report_comment_text": { "type": "text", "placeholders": { } }, - "you_have_reported_comment_text": "Du har anmĂ€lt den hĂ€r kommentaren", + "you_have_reported_comment_text": "VocĂȘ denunciou este comentĂĄrio", "@you_have_reported_comment_text": { "type": "text", "placeholders": { } }, - "description_text": "Beskrivning", + "description_text": "Descrição", "@description_text": { "type": "text", "placeholders": { } }, - "no_description_text": "Ingen beskrivning", + "no_description_text": "Sem descrição", "@no_description_text": { "type": "text", "placeholders": { } }, - "category_text": "Kategori", + "category_text": "Categoria", "@category_text": { "type": "text", "placeholders": { } }, - "reporter_text": "AnmĂ€lare", + "reporter_text": "Denunciante", "@reporter_text": { "type": "text", "placeholders": { } }, - "reports_preview_title": "AnmĂ€lningar", + "reports_preview_title": "DenĂșncias", "@reports_preview_title": { "type": "text", "placeholders": { } }, - "reports_preview_resource_reports": "anmĂ€lningar", + "reports_preview_resource_reports": "denĂșncias", "@reports_preview_resource_reports": { "description": "Usage: See all reports..", "type": "text", @@ -436,7 +436,7 @@ } }, - "reports_see_all": "Visa alla {resourceCount} {resourceName}", + "reports_see_all": "Ver todas as {resourceCount} {resourceName}", "@reports_see_all": { "description": "Usage: See all 4 reports.", "type": "text", @@ -456,21 +456,21 @@ } }, - "my_moderation_tasks_title": "VĂ€ntande modereringsuppgifter", + "my_moderation_tasks_title": "Tarefas de moderação pendentes", "@my_moderation_tasks_title": { "type": "text", "placeholders": { } }, - "pending_moderation_tasks_singular": "vĂ€ntande modereringsuppgift", + "pending_moderation_tasks_singular": "tarefa de moderação pendente", "@pending_moderation_tasks_singular": { "type": "text", "placeholders": { } }, - "pending_moderation_tasks_plural": "vĂ€ntande modereringsuppgifter", + "pending_moderation_tasks_plural": "tarefas de moderação pendentes", "@pending_moderation_tasks_plural": { "description": "Eg. No pending moderation tasks found", "type": "text", @@ -478,21 +478,21 @@ } }, - "my_moderation_penalties_title": "Modereringsstraff", + "my_moderation_penalties_title": "Penalidades de moderação", "@my_moderation_penalties_title": { "type": "text", "placeholders": { } }, - "my_moderation_penalties_resouce_singular": "modereringsstraff", + "my_moderation_penalties_resouce_singular": "penalidade de moderação", "@my_moderation_penalties_resouce_singular": { "type": "text", "placeholders": { } }, - "my_moderation_penalties_resource_plural": "modereringsstraff", + "my_moderation_penalties_resource_plural": "penalidades de moderação", "@my_moderation_penalties_resource_plural": { "description": "See all moderation penalties, No moderation penalties found etc..", "type": "text", diff --git a/assets/i18n/pt-BR/notifications.arb b/assets/i18n/pt-BR/notifications.arb index 685a20187..c3b087044 100644 --- a/assets/i18n/pt-BR/notifications.arb +++ b/assets/i18n/pt-BR/notifications.arb @@ -1,180 +1,180 @@ { - "settings_title": "AviseringsinstĂ€llningar", + "settings_title": "ConfiguraçÔes de notificação", "@settings_title": { "type": "text", "placeholders": { } }, - "general_title": "Aviseringar", + "general_title": "NotificaçÔes", "@general_title": { "type": "text", "placeholders": { } }, - "general_desc": "Bli meddelad nĂ€r nĂ„got hĂ€nder", + "general_desc": "Seja notificado(a) quando algo acontecer", "@general_desc": { "type": "text", "placeholders": { } }, - "follow_title": "Följare", + "follow_title": "Seguidores", "@follow_title": { "type": "text", "placeholders": { } }, - "follow_desc": "Bli meddelad nĂ€r nĂ„gon börjar följa dig", + "follow_desc": "Seja notificado(a) quando alguĂ©m começar a segui-lo(a)", "@follow_desc": { "type": "text", "placeholders": { } }, - "connection_title": "KontaktförfrĂ„gan", + "connection_title": "Pedidos de conexĂŁo", "@connection_title": { "type": "text", "placeholders": { } }, - "connection_desc": "Bli meddelad nĂ€r nĂ„gon vill ha dig som kontakt", + "connection_desc": "Seja notificado(a) quando alguĂ©m quiser se conectar com vocĂȘ", "@connection_desc": { "type": "text", "placeholders": { } }, - "comment_title": "Kommentar pĂ„ inlĂ€gg", + "comment_title": "ComentĂĄrios", "@comment_title": { "type": "text", "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": "Seja notificado(a) quando alguĂ©m comentar uma das suas publicaçÔes ou uma que vocĂȘ tambĂ©m comentou.", "@comment_desc": { "type": "text", "placeholders": { } }, - "comment_reply_title": "Svar pĂ„ kommentar", + "comment_reply_title": "Respostas aos comentĂĄrios", "@comment_reply_title": { "type": "text", "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": "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": { } }, - "comment_user_mention_title": "OmnĂ€mnande i kommentar", + "comment_user_mention_title": "MençÔes em comentĂĄrios", "@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": "Seja notificado(a) quando alguĂ©m mencionar vocĂȘ em um comentĂĄrio", "@comment_user_mention_desc": { "type": "text", "placeholders": { } }, - "post_user_mention_title": "OmnĂ€mnande i inlĂ€gg", + "post_user_mention_title": "MençÔes em publicaçÔes", "@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": "Seja notificado(a) quando alguĂ©m mencionar vocĂȘ em uma publicação", "@post_user_mention_desc": { "type": "text", "placeholders": { } }, - "comment_reaction_title": "Reaktion pĂ„ kommentar", + "comment_reaction_title": "ReaçÔes a comentĂĄrios", "@comment_reaction_title": { "type": "text", "placeholders": { } }, - "comment_reaction_desc": "Bli meddelad nĂ€r nĂ„gon reagerar pĂ„ en av dina inlĂ€ggskommentarer.", + "comment_reaction_desc": "Seja notificado(a) quando alguĂ©m reage a um dos seus comentĂĄrios.", "@comment_reaction_desc": { "type": "text", "placeholders": { } }, - "post_reaction_title": "Reaktion pĂ„ inlĂ€gg", + "post_reaction_title": "ReaçÔes aos posts", "@post_reaction_title": { "type": "text", "placeholders": { } }, - "post_reaction_desc": "Bli meddelad nĂ€r nĂ„gon reagerar pĂ„ ett av dina inlĂ€gg.", + "post_reaction_desc": "Seja notificado(a) quando alguĂ©m reage a uma das suas publicaçÔes.", "@post_reaction_desc": { "type": "text", "placeholders": { } }, - "community_invite_title": "Gemenskapsinbjudan", + "community_invite_title": "Convites para comunidades", "@community_invite_title": { "type": "text", "placeholders": { } }, - "community_invite_desc": "Bli meddelad nĂ€r nĂ„gon bjuder in dig till en gemenskap.", + "community_invite_desc": "Seja notificado(a) quando alguĂ©m convida vocĂȘ para entrar em uma comunidade.", "@community_invite_desc": { "type": "text", "placeholders": { } }, - "mute_post_turn_on_post_notifications": "Aktivera aviseringar för inlĂ€gg", + "mute_post_turn_on_post_notifications": "Ativar notificaçÔes do post", "@mute_post_turn_on_post_notifications": { "type": "text", "placeholders": { } }, - "mute_post_turn_off_post_notifications": "Inaktivera aviseringar för inlĂ€gg", + "mute_post_turn_off_post_notifications": "Desativar notificaçÔes do post", "@mute_post_turn_off_post_notifications": { "type": "text", "placeholders": { } }, - "mute_post_turn_on_post_comment_notifications": "Aktivera aviseringar för inlĂ€ggskommentarer", + "mute_post_turn_on_post_comment_notifications": "Ativar notificaçÔes do comentĂĄrio", "@mute_post_turn_on_post_comment_notifications": { "type": "text", "placeholders": { } }, - "mute_post_turn_off_post_comment_notifications": "Inaktivera aviseringar för inlĂ€ggskommentarer", + "mute_post_turn_off_post_comment_notifications": "Desativar notificaçÔes do comentĂĄrio", "@mute_post_turn_off_post_comment_notifications": { "type": "text", "placeholders": { } }, - "connection_request_tile": "[name] [username] vill knyta kontakt med dig.", + "connection_request_tile": "[name] [username] quer se conectar com vocĂȘ.", "@connection_request_tile": { "description": "Eg.: James @jamest wants to connect with you.", "type": "text", @@ -182,7 +182,7 @@ } }, - "accepted_connection_request_tile": "[name] [username] accepterade din kontaktförfrĂ„gan.", + "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", @@ -190,7 +190,7 @@ } }, - "reacted_to_post_tile": "[name] [username] reagerade pĂ„ ditt inlĂ€gg.", + "reacted_to_post_tile": "[name] [username] reagiu Ă  sua publicação.", "@reacted_to_post_tile": { "description": "Eg.: James @jamest reacted to your post.", "type": "text", @@ -198,7 +198,7 @@ } }, - "reacted_to_post_comment_tile": "[name] [username] reagerade pĂ„ din inlĂ€ggskommentar.", + "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", @@ -206,7 +206,7 @@ } }, - "following_you_tile": "[name] [username] har börjat följa dig.", + "following_you_tile": "[name] [username] estĂĄ te seguindo agora.", "@following_you_tile": { "description": "Eg.: James @jamest is now following you.", "type": "text", @@ -214,7 +214,7 @@ } }, - "user_community_invite_tile": "[name] [username] har bjudit in dig till gemenskapen \/c\/{communityName}.", + "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", @@ -224,7 +224,7 @@ } } }, - "comment_reply_notification_tile_user_replied": "[name] [username] svarade: {postCommentText}", + "comment_reply_notification_tile_user_replied": "[name] [username] respondeu: {postCommentText}", "@comment_reply_notification_tile_user_replied": { "description": "For.eg. James @jamest replied.", "type": "text", @@ -234,7 +234,7 @@ } } }, - "comment_reply_notification_tile_user_also_replied": "[name] [username] svarade ocksĂ„: {postCommentText}", + "comment_reply_notification_tile_user_also_replied": "[name] [username] tambĂ©m respondeu: {postCommentText}", "@comment_reply_notification_tile_user_also_replied": { "type": "text", "placeholders": { @@ -243,7 +243,7 @@ } } }, - "comment_comment_notification_tile_user_commented": "[name] [username] kommenterade pĂ„ ditt inlĂ€gg: {postCommentText}", + "comment_comment_notification_tile_user_commented": "[name] [username] comentou no seu post: {postCommentText}", "@comment_comment_notification_tile_user_commented": { "type": "text", "placeholders": { @@ -252,7 +252,7 @@ } } }, - "comment_comment_notification_tile_user_also_commented": "[name] [username] kommenterade ocksĂ„: {postCommentText}", + "comment_comment_notification_tile_user_also_commented": "[name] [username] tambĂ©m comentou: {postCommentText}", "@comment_comment_notification_tile_user_also_commented": { "type": "text", "placeholders": { @@ -261,7 +261,7 @@ } } }, - "mentioned_in_post_comment_tile": "[name] [username] nĂ€mnde dig i en kommentar.", + "mentioned_in_post_comment_tile": "[name] [username] mencionou vocĂȘ em um comentĂĄrio.", "@mentioned_in_post_comment_tile": { "description": "Eg.: James @jamest mentioned you on a comment.", "type": "text", @@ -269,7 +269,7 @@ } }, - "mentioned_in_post_tile": "[name] [username] nĂ€mnde dig i ett inlĂ€gg.", + "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", diff --git a/assets/i18n/pt-BR/post.arb b/assets/i18n/pt-BR/post.arb index 802ec094c..c7c150aef 100644 --- a/assets/i18n/pt-BR/post.arb +++ b/assets/i18n/pt-BR/post.arb @@ -1,40 +1,40 @@ { - "open_post": "Öppna inlĂ€gg", + "open_post": "Abrir post", "@open_post": { "type": "text", "placeholders": { } }, - "close_post": "StĂ€ng inlĂ€gg", + "close_post": "Fechar post", "@close_post": { "type": "text", "placeholders": { } }, - "post_opened": "InlĂ€gg öppnat", + "post_opened": "Post aberto", "@post_opened": { "type": "text", "placeholders": { } }, - "post_closed": "InlĂ€gg stĂ€ngt ", + "post_closed": "Post fechado ", "@post_closed": { "type": "text", "placeholders": { } }, - "comment_required_error": "Kommentaren kan inte vara tom.", + "comment_required_error": "O comentĂĄrio nĂŁo pode ficar vazio.", "@comment_required_error": { "type": "text", "placeholders": { } }, - "comment_maxlength_error": "En kommentar kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "comment_maxlength_error": "Um comentĂĄrio nĂŁo pode ter mais de {maxLength} caracteres.", "@comment_maxlength_error": { "type": "text", "placeholders": { @@ -43,77 +43,77 @@ } } }, - "timeline_posts_all_loaded": "🎉 Alla inlĂ€gg inlĂ€sta", + "timeline_posts_all_loaded": "🎉 Todas as publicaçÔes carregadas", "@timeline_posts_all_loaded": { "type": "text", "placeholders": { } }, - "timeline_posts_refreshing_drhoo_title": "HĂ„ll ut!", + "timeline_posts_refreshing_drhoo_title": "Aguenta aĂ­!", "@timeline_posts_refreshing_drhoo_title": { "type": "text", "placeholders": { } }, - "timeline_posts_refreshing_drhoo_subtitle": "LĂ€ser in din tidslinje.", + "timeline_posts_refreshing_drhoo_subtitle": "Carregando sua linha do tempo.", "@timeline_posts_refreshing_drhoo_subtitle": { "type": "text", "placeholders": { } }, - "timeline_posts_no_more_drhoo_title": "Din tidslinje Ă€r tom.", + "timeline_posts_no_more_drhoo_title": "Sua linha do tempo estĂĄ vazia.", "@timeline_posts_no_more_drhoo_title": { "type": "text", "placeholders": { } }, - "timeline_posts_no_more_drhoo_subtitle": "Följ anvĂ€ndare eller gĂ„ med i en gemenskap för att komma igĂ„ng!", + "timeline_posts_no_more_drhoo_subtitle": "Siga usuĂĄrios ou junte-se a uma comunidade para começar!", "@timeline_posts_no_more_drhoo_subtitle": { "type": "text", "placeholders": { } }, - "timeline_posts_failed_drhoo_title": "Din tidslinje kunde inte lĂ€sas in.", + "timeline_posts_failed_drhoo_title": "NĂŁo foi possĂ­vel carregar sua linha do tempo.", "@timeline_posts_failed_drhoo_title": { "type": "text", "placeholders": { } }, - "timeline_posts_failed_drhoo_subtitle": "Försök igen om nĂ„gra sekunder", + "timeline_posts_failed_drhoo_subtitle": "Tente novamente em alguns segundos", "@timeline_posts_failed_drhoo_subtitle": { "type": "text", "placeholders": { } }, - "timeline_posts_default_drhoo_title": "Det Ă€r nĂ„got som inte stĂ€mmer.", + "timeline_posts_default_drhoo_title": "Algo nĂŁo estĂĄ certo.", "@timeline_posts_default_drhoo_title": { "type": "text", "placeholders": { } }, - "timeline_posts_default_drhoo_subtitle": "Försök lĂ€sa in tidslinjen igen.", + "timeline_posts_default_drhoo_subtitle": "Tente atualizar a linha do tempo.", "@timeline_posts_default_drhoo_subtitle": { "type": "text", "placeholders": { } }, - "timeline_posts_refresh_posts": "LĂ€s in inlĂ€gg", + "timeline_posts_refresh_posts": "Atualizar publicaçÔes", "@timeline_posts_refresh_posts": { "type": "text", "placeholders": { } }, - "no_circles_for": "Inga kretsar hittades som matchar '{circlesSearchQuery}'.", + "no_circles_for": "'Nenhum cĂ­rculo encontrado para '{circlesSearchQuery}'.", "@no_circles_for": { "type": "text", "placeholders": { @@ -122,98 +122,98 @@ } } }, - "share_to_circles": "Dela med kretsar", + "share_to_circles": "Compartilhar nos cĂ­rculos", "@share_to_circles": { "type": "text", "placeholders": { } }, - "profile_counts_post": " InlĂ€gg", + "profile_counts_post": " Post", "@profile_counts_post": { "type": "text", "placeholders": { } }, - "profile_counts_posts": " InlĂ€gg", + "profile_counts_posts": " Posts", "@profile_counts_posts": { "type": "text", "placeholders": { } }, - "profile_counts_followers": " Följare", + "profile_counts_followers": " Seguidores", "@profile_counts_followers": { "type": "text", "placeholders": { } }, - "profile_counts_following": " Följer", + "profile_counts_following": " Seguindo", "@profile_counts_following": { "type": "text", "placeholders": { } }, - "profile_counts_follower": " Följare", + "profile_counts_follower": " Seguidor", "@profile_counts_follower": { "type": "text", "placeholders": { } }, - "action_comment": "Kommentera", + "action_comment": "Comentar", "@action_comment": { "type": "text", "placeholders": { } }, - "action_react": "Reagera", + "action_react": "Reagir", "@action_react": { "type": "text", "placeholders": { } }, - "action_reply": "Svara", + "action_reply": "Responder", "@action_reply": { "type": "text", "placeholders": { } }, - "share": "Dela", + "share": "Compartilhar", "@share": { "type": "text", "placeholders": { } }, - "share_to": "Dela med", + "share_to": "Compartilhar em", "@share_to": { "type": "text", "placeholders": { } }, - "sharing_post_to": "Delar inlĂ€gg med", + "sharing_post_to": "Compartilhando post em", "@sharing_post_to": { "type": "text", "placeholders": { } }, - "you_shared_with": "Du delade med", + "you_shared_with": "VocĂȘ compartilhou com", "@you_shared_with": { "type": "text", "placeholders": { } }, - "shared_privately_on": "Delat privat i", + "shared_privately_on": "Compartilhado nos", "@shared_privately_on": { "description": "Eg. Shared privately on @shantanu's circles. See following string, usernames_circles . Will combine this in future, needs refactoring.", "type": "text", @@ -221,7 +221,7 @@ } }, - "usernames_circles": "@{postCreatorUsername}s kretsar", + "usernames_circles": "cĂ­rculos de @{postCreatorUsername}", "@usernames_circles": { "type": "text", "placeholders": { @@ -230,196 +230,196 @@ } } }, - "share_community": "Dela", + "share_community": "Compartilhar", "@share_community": { "type": "text", "placeholders": { } }, - "share_to_community": "Dela med en gemenskap", + "share_to_community": "Compartilhar na comunidade", "@share_to_community": { "type": "text", "placeholders": { } }, - "share_community_title": "En gemenskap", + "share_community_title": "Uma comunidade", "@share_community_title": { "type": "text", "placeholders": { } }, - "share_community_desc": "Dela inlĂ€gget med en gemenskap du Ă€r del av.", + "share_community_desc": "Compartilhe a publicação com uma comunidade da qual vocĂȘ faz parte.", "@share_community_desc": { "type": "text", "placeholders": { } }, - "my_circles": "Mina kretsar", + "my_circles": "Meus cĂ­rculos", "@my_circles": { "type": "text", "placeholders": { } }, - "my_circles_desc": "Dela inlĂ€gget med en eller flera av dina kretsar.", + "my_circles_desc": "Compartilhe a publicação para um ou vĂĄrios dos seus cĂ­rculos.", "@my_circles_desc": { "type": "text", "placeholders": { } }, - "world_circle_name": "VĂ€rlden", + "world_circle_name": "Mundo", "@world_circle_name": { "type": "text", "placeholders": { } }, - "search_circles": "Sök kretsar...", + "search_circles": "Procurar cĂ­rculos...", "@search_circles": { "type": "text", "placeholders": { } }, - "reaction_list_tap_retry": "Tryck för att försöka lĂ€sa in reaktionerna igen.", + "reaction_list_tap_retry": "Toque para tentar carregar as reaçÔes novamente.", "@reaction_list_tap_retry": { "type": "text", "placeholders": { } }, - "create_new": "Nytt inlĂ€gg", + "create_new": "Novo post", "@create_new": { "type": "text", "placeholders": { } }, - "create_next": "NĂ€sta", + "create_next": "Avançar", "@create_next": { "type": "text", "placeholders": { } }, - "create_photo": "Foto", + "create_photo": "Imagem", "@create_photo": { "type": "text", "placeholders": { } }, - "commenter_post_text": "Skicka", + "commenter_post_text": "Enviar", "@commenter_post_text": { "type": "text", "placeholders": { } }, - "commenter_write_something": "Skriv nĂ„got...", + "commenter_write_something": "Escreva algo...", "@commenter_write_something": { "type": "text", "placeholders": { } }, - "edit_title": "Redigera inlĂ€gg", + "edit_title": "Editar publicação", "@edit_title": { "type": "text", "placeholders": { } }, - "edit_save": "Spara", + "edit_save": "Salvar", "@edit_save": { "type": "text", "placeholders": { } }, - "commenter_expanded_save": "Spara", + "commenter_expanded_save": "Salvar", "@commenter_expanded_save": { "type": "text", "placeholders": { } }, - "commenter_expanded_join_conversation": "GĂ„ med i konversationen...", + "commenter_expanded_join_conversation": "Entrar na conversa...", "@commenter_expanded_join_conversation": { "type": "text", "placeholders": { } }, - "commenter_expanded_start_conversation": "Starta en konversation...", + "commenter_expanded_start_conversation": "Começar uma conversa...", "@commenter_expanded_start_conversation": { "type": "text", "placeholders": { } }, - "commenter_expanded_edit_comment": "Redigera kommentar", + "commenter_expanded_edit_comment": "Editar comentĂĄrio", "@commenter_expanded_edit_comment": { "type": "text", "placeholders": { } }, - "is_closed": "StĂ€ngt inlĂ€gg", + "is_closed": "Post fechado", "@is_closed": { "type": "text", "placeholders": { } }, - "comment_reply_expanded_reply_comment": "Svar pĂ„ kommentar", + "comment_reply_expanded_reply_comment": "Responder comentĂĄrio", "@comment_reply_expanded_reply_comment": { "type": "text", "placeholders": { } }, - "comment_reply_expanded_post": "Skicka", + "comment_reply_expanded_post": "Enviar", "@comment_reply_expanded_post": { "type": "text", "placeholders": { } }, - "comment_reply_expanded_reply_hint_text": "Ditt svar...", + "comment_reply_expanded_reply_hint_text": "Sua resposta...", "@comment_reply_expanded_reply_hint_text": { "type": "text", "placeholders": { } }, - "trending_posts_title": "Trendiga inlĂ€gg", + "trending_posts_title": "Posts em alta", "@trending_posts_title": { "type": "text", "placeholders": { } }, - "trending_posts_no_trending_posts": "Det finns inga trendiga inlĂ€gg. Försök uppdatera om nĂ„gra sekunder.", + "trending_posts_no_trending_posts": "NĂŁo hĂĄ publicaçÔes em alta. Tente atualizar em alguns segundos.", "@trending_posts_no_trending_posts": { "type": "text", "placeholders": { } }, - "trending_posts_refresh": "Uppdatera", + "trending_posts_refresh": "Atualizar", "@trending_posts_refresh": { "type": "text", "placeholders": { } }, - "comments_view_all_comments": "Visa alla {commentsCount} kommentarer", + "comments_view_all_comments": "Ver todos os {commentsCount} comentĂĄrios", "@comments_view_all_comments": { "type": "text", "placeholders": { @@ -428,42 +428,42 @@ } } }, - "comments_closed_post": "StĂ€ngt inlĂ€gg", + "comments_closed_post": "Post fechado", "@comments_closed_post": { "type": "text", "placeholders": { } }, - "comments_disabled": "KommentarsfĂ€ltet avstĂ€ngt", + "comments_disabled": "ComentĂĄrios desativados", "@comments_disabled": { "type": "text", "placeholders": { } }, - "text_copied": "Text kopierad!", + "text_copied": "Texto copiado!", "@text_copied": { "type": "text", "placeholders": { } }, - "post_reactions_title": "Reaktioner pĂ„ inlĂ€gget", + "post_reactions_title": "ReaçÔes ao post", "@post_reactions_title": { "type": "text", "placeholders": { } }, - "have_not_shared_anything": "Du har inte delat nĂ„got Ă€nnu.", + "have_not_shared_anything": "VocĂȘ ainda nĂŁo compartilhou nada.", "@have_not_shared_anything": { "type": "text", "placeholders": { } }, - "user_has_not_shared_anything": "{name} har inte delat nĂ„got Ă€nnu.", + "user_has_not_shared_anything": "{name} ainda nĂŁo compartilhou nada.", "@user_has_not_shared_anything": { "type": "text", "placeholders": { @@ -472,238 +472,238 @@ } } }, - "comments_header_newest_replies": "Senaste svaren", + "comments_header_newest_replies": "Novas respostas", "@comments_header_newest_replies": { "type": "text", "placeholders": { } }, - "comments_header_newer": "Senare", + "comments_header_newer": "Mais recentes", "@comments_header_newer": { "type": "text", "placeholders": { } }, - "comments_header_view_newest_replies": "Visa de senaste svaren", + "comments_header_view_newest_replies": "Ver respostas mais recentes", "@comments_header_view_newest_replies": { "type": "text", "placeholders": { } }, - "comments_header_see_newest_replies": "Visa de senaste svaren", + "comments_header_see_newest_replies": "Ver respostas mais recentes", "@comments_header_see_newest_replies": { "type": "text", "placeholders": { } }, - "comments_header_oldest_replies": "Äldsta svaren", + "comments_header_oldest_replies": "Respostas mais antigas", "@comments_header_oldest_replies": { "type": "text", "placeholders": { } }, - "comments_header_older": "Äldre", + "comments_header_older": "Mais antigos", "@comments_header_older": { "type": "text", "placeholders": { } }, - "comments_header_view_oldest_replies": "Visa de Ă€ldsta svaren", + "comments_header_view_oldest_replies": "Ver respostas mais antigas", "@comments_header_view_oldest_replies": { "type": "text", "placeholders": { } }, - "comments_header_see_oldest_replies": "Visa de Ă€ldsta svaren", + "comments_header_see_oldest_replies": "Ver respostas mais antigas", "@comments_header_see_oldest_replies": { "type": "text", "placeholders": { } }, - "comments_header_be_the_first_replies": "Bli den första som skriver ett svar", + "comments_header_be_the_first_replies": "Mande a primeira resposta", "@comments_header_be_the_first_replies": { "type": "text", "placeholders": { } }, - "comments_header_newest_comments": "Senaste kommentarerna", + "comments_header_newest_comments": "ComentĂĄrios mais recentes", "@comments_header_newest_comments": { "type": "text", "placeholders": { } }, - "comments_header_view_newest_comments": "Visa de senaste kommentarerna", + "comments_header_view_newest_comments": "Ver comentĂĄrios mais recentes", "@comments_header_view_newest_comments": { "type": "text", "placeholders": { } }, - "comments_header_see_newest_comments": "Visa de senaste kommentarerna", + "comments_header_see_newest_comments": "Ver comentĂĄrios mais recentes", "@comments_header_see_newest_comments": { "type": "text", "placeholders": { } }, - "comments_header_oldest_comments": "Äldsta kommentarerna", + "comments_header_oldest_comments": "ComentĂĄrios mais antigos", "@comments_header_oldest_comments": { "type": "text", "placeholders": { } }, - "comments_header_view_oldest_comments": "Visa de Ă€ldsta kommentarerna", + "comments_header_view_oldest_comments": "Ver comentĂĄrios mais antigos", "@comments_header_view_oldest_comments": { "type": "text", "placeholders": { } }, - "comments_header_see_oldest_comments": "Visa de Ă€ldsta kommentarerna", + "comments_header_see_oldest_comments": "Ver comentĂĄrios mais antigos", "@comments_header_see_oldest_comments": { "type": "text", "placeholders": { } }, - "comments_header_be_the_first_comments": "Bli den första som skriver en kommentar", + "comments_header_be_the_first_comments": "Mande o primeiro comentĂĄrio", "@comments_header_be_the_first_comments": { "type": "text", "placeholders": { } }, - "comments_page_title": "InlĂ€ggskommentarer", + "comments_page_title": "ComentĂĄrios", "@comments_page_title": { "type": "text", "placeholders": { } }, - "comments_page_no_more_to_load": "Inga fler kommentarer att lĂ€sa in", + "comments_page_no_more_to_load": "Sem mais comentĂĄrios para carregar", "@comments_page_no_more_to_load": { "type": "text", "placeholders": { } }, - "comments_page_tap_to_retry": "Tryck för att försöka lĂ€sa in kommentarerna igen.", + "comments_page_tap_to_retry": "Toque para tentar atualizar os comentĂĄrios novamente.", "@comments_page_tap_to_retry": { "type": "text", "placeholders": { } }, - "comments_page_tap_to_retry_replies": "Tryck för att försöka lĂ€sa in svaren igen.", + "comments_page_tap_to_retry_replies": "Toque para tentar atualizar as respostas novamente.", "@comments_page_tap_to_retry_replies": { "type": "text", "placeholders": { } }, - "comments_page_no_more_replies_to_load": "Inga fler svar att lĂ€sa in", + "comments_page_no_more_replies_to_load": "Sem mais respostas para carregar", "@comments_page_no_more_replies_to_load": { "type": "text", "placeholders": { } }, - "comments_page_replies_title": "InlĂ€ggssvar", + "comments_page_replies_title": "Respostas", "@comments_page_replies_title": { "type": "text", "placeholders": { } }, - "disable_post_comments": "StĂ€ng kommentarsfĂ€ltet", + "disable_post_comments": "Desativar comentĂĄrios do post", "@disable_post_comments": { "type": "text", "placeholders": { } }, - "enable_post_comments": "Öppna kommentarsfĂ€ltet", + "enable_post_comments": "Ativar comentĂĄrios do post", "@enable_post_comments": { "type": "text", "placeholders": { } }, - "comments_enabled_message": "Kommentarer aktiverade för inlĂ€gget", + "comments_enabled_message": "ComentĂĄrios ativados no post", "@comments_enabled_message": { "type": "text", "placeholders": { } }, - "comments_disabled_message": "Kommentarer inaktiverade för inlĂ€gget", + "comments_disabled_message": "ComentĂĄrios desativados no post", "@comments_disabled_message": { "type": "text", "placeholders": { } }, - "actions_delete": "Ta bort inlĂ€gg", + "actions_delete": "Excluir post", "@actions_delete": { "type": "text", "placeholders": { } }, - "actions_deleted": "InlĂ€gg borttaget", + "actions_deleted": "Post excluĂ­do", "@actions_deleted": { "type": "text", "placeholders": { } }, - "actions_delete_comment": "Ta bort kommentar", + "actions_delete_comment": "Excluir comentĂĄrio", "@actions_delete_comment": { "type": "text", "placeholders": { } }, - "actions_edit_comment": "Redigera kommentar", + "actions_edit_comment": "Editar comentĂĄrio", "@actions_edit_comment": { "type": "text", "placeholders": { } }, - "actions_comment_deleted": "Kommentar borttagen", + "actions_comment_deleted": "ComentĂĄrio excluĂ­do", "@actions_comment_deleted": { "type": "text", "placeholders": { } }, - "actions_report_text": "AnmĂ€l", + "actions_report_text": "Denunciar", "@actions_report_text": { "type": "text", "placeholders": { } }, - "actions_reported_text": "AnmĂ€ld", + "actions_reported_text": "Denunciado", "@actions_reported_text": { "type": "text", "placeholders": { } }, - "actions_show_more_text": "Visa mer", + "actions_show_more_text": "Ver mais", "@actions_show_more_text": { "description": "Shown for posts with long text to expand the entire text.", "type": "text", @@ -711,7 +711,7 @@ } }, - "time_short_years": "Ă„", + "time_short_years": "a", "@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": "1Ă„", + "time_short_one_year": "1a", "@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": "v", + "time_short_weeks": "sem", "@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": "1v", + "time_short_one_week": "1sem", "@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", @@ -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", @@ -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", @@ -799,7 +799,7 @@ } }, - "time_short_now_text": "nu", + "time_short_now_text": "agora", "@time_short_now_text": { "description": "Shown when a post was immediately posted, as in time posted is 'now'.Should be as few characters as possible.", "type": "text", diff --git a/assets/i18n/pt-BR/user.arb b/assets/i18n/pt-BR/user.arb index 4a5c91733..632411b8e 100644 --- a/assets/i18n/pt-BR/user.arb +++ b/assets/i18n/pt-BR/user.arb @@ -1,5 +1,5 @@ { - "thousand_postfix": "t", + "thousand_postfix": "k", "@thousand_postfix": { "description": "For eg. communty has 3k members", "type": "text", @@ -7,7 +7,7 @@ } }, - "million_postfix": "mn", + "million_postfix": "M", "@million_postfix": { "description": "For eg. user has 3m followers", "type": "text", @@ -15,7 +15,7 @@ } }, - "billion_postfix": "md", + "billion_postfix": "b", "@billion_postfix": { "description": "For eg. World circle has 7.5b people", "type": "text", @@ -23,28 +23,28 @@ } }, - "translate_see_translation": "Visa översĂ€ttning", + "translate_see_translation": "Mostrar tradução", "@translate_see_translation": { "type": "text", "placeholders": { } }, - "translate_show_original": "Visa original", + "translate_show_original": "Mostrar original", "@translate_show_original": { "type": "text", "placeholders": { } }, - "follows_lists_account": "1 Konto", + "follows_lists_account": "1 Conta", "@follows_lists_account": { "type": "text", "placeholders": { } }, - "follows_lists_accounts": "{prettyUsersCount} Konton", + "follows_lists_accounts": "{prettyUsersCount} Contas", "@follows_lists_accounts": { "description": "prettyUsersCount will be 3m, 50k etc.. so we endup with final string 3k Accounts", "type": "text", @@ -54,7 +54,7 @@ } } }, - "edit_profile_user_name_taken": "AnvĂ€ndarnamnet @{username} Ă€r upptaget", + "edit_profile_user_name_taken": "O nome de usuĂĄrio @{username} jĂĄ estĂĄ em uso", "@edit_profile_user_name_taken": { "type": "text", "placeholders": { @@ -63,42 +63,42 @@ } } }, - "profile_action_deny_connection": "Neka kontaktförfrĂ„gan", + "profile_action_deny_connection": "Recusar pedido de conexĂŁo", "@profile_action_deny_connection": { "type": "text", "placeholders": { } }, - "profile_action_user_blocked": "AnvĂ€ndare blockerad", + "profile_action_user_blocked": "UsuĂĄrio bloqueado", "@profile_action_user_blocked": { "type": "text", "placeholders": { } }, - "profile_action_user_unblocked": "AnvĂ€ndare avblockerad", + "profile_action_user_unblocked": "UsuĂĄrio desbloqueado", "@profile_action_user_unblocked": { "type": "text", "placeholders": { } }, - "profile_action_cancel_connection": "Avbryt kontaktförfrĂ„gan", + "profile_action_cancel_connection": "Cancelar pedido de conexĂŁo", "@profile_action_cancel_connection": { "type": "text", "placeholders": { } }, - "profile_url_invalid_error": "VĂ€nligen ange en giltig URL.", + "profile_url_invalid_error": "Por favor, forneça uma url vĂĄlida.", "@profile_url_invalid_error": { "type": "text", "placeholders": { } }, - "profile_location_length_error": "En plats kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "profile_location_length_error": "O local nĂŁo pode ser maior que {maxLength} caracteres.", "@profile_location_length_error": { "type": "text", "placeholders": { @@ -107,7 +107,7 @@ } } }, - "profile_bio_length_error": "Bion kan inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "profile_bio_length_error": "A bio nĂŁo pode ser maior que {maxLength} caracteres.", "@profile_bio_length_error": { "type": "text", "placeholders": { @@ -116,77 +116,77 @@ } } }, - "follow_button_follow_text": "Följ", + "follow_button_follow_text": "Seguir", "@follow_button_follow_text": { "type": "text", "placeholders": { } }, - "follow_button_unfollow_text": "Sluta följa", + "follow_button_unfollow_text": "Parar de seguir", "@follow_button_unfollow_text": { "type": "text", "placeholders": { } }, - "edit_profile_username": "AnvĂ€ndarnamn", + "edit_profile_username": "Nome de usuĂĄrio", "@edit_profile_username": { "type": "text", "placeholders": { } }, - "add_account_update_account_lists": "Uppdatera kontolistor", + "add_account_update_account_lists": "Atualizar listas de contas", "@add_account_update_account_lists": { "type": "text", "placeholders": { } }, - "add_account_to_lists": "LĂ€gg till konto i lista", + "add_account_to_lists": "Adicionar conta Ă  lista", "@add_account_to_lists": { "type": "text", "placeholders": { } }, - "add_account_update_lists": "Uppdatera listor", + "add_account_update_lists": "Atualizar listas", "@add_account_update_lists": { "type": "text", "placeholders": { } }, - "add_account_save": "Spara", + "add_account_save": "Salvar", "@add_account_save": { "type": "text", "placeholders": { } }, - "add_account_done": "Klar", + "add_account_done": "ConcluĂ­do", "@add_account_done": { "type": "text", "placeholders": { } }, - "add_account_success": "Kontot lades till", + "add_account_success": "Sucesso", "@add_account_success": { "type": "text", "placeholders": { } }, - "emoji_field_none_selected": "Ingen emoji vald", + "emoji_field_none_selected": "Nenhum emoji selecionado", "@emoji_field_none_selected": { "type": "text", "placeholders": { } }, - "emoji_search_none_found": "Ingen emoji hittades som matchar '{searchQuery}'.", + "emoji_search_none_found": "Nenhum emoji encontrado para '{searchQuery}'.", "@emoji_search_none_found": { "type": "text", "placeholders": { @@ -195,28 +195,28 @@ } } }, - "follow_lists_title": "Mina listor", + "follow_lists_title": "Minhas listas", "@follow_lists_title": { "type": "text", "placeholders": { } }, - "follow_lists_search_for": "Sök efter en lista...", + "follow_lists_search_for": "Procurar por uma lista...", "@follow_lists_search_for": { "type": "text", "placeholders": { } }, - "follow_lists_no_list_found": "Inga listor hittades.", + "follow_lists_no_list_found": "Nenhuma lista encontrada.", "@follow_lists_no_list_found": { "type": "text", "placeholders": { } }, - "follow_lists_no_list_found_for": "Inga listor hittades för '{searchQuery}'", + "follow_lists_no_list_found_for": "Nenhuma lista encontrada para '{searchQuery}'", "@follow_lists_no_list_found_for": { "type": "text", "placeholders": { @@ -225,14 +225,14 @@ } } }, - "list_name_empty_error": "Du mĂ„ste ge listan ett namn.", + "list_name_empty_error": "O nome da lista nĂŁo pode ficar vazio.", "@list_name_empty_error": { "type": "text", "placeholders": { } }, - "list_name_range_error": "Listans namn fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "list_name_range_error": "O nome da lista nĂŁo deve ter mais de {maxLength} caracteres.", "@list_name_range_error": { "type": "text", "placeholders": { @@ -241,14 +241,14 @@ } } }, - "circle_name_empty_error": "Du mĂ„ste ge kretsen ett namn.", + "circle_name_empty_error": "O nome do cĂ­rculo nĂŁo pode ficar vazio.", "@circle_name_empty_error": { "type": "text", "placeholders": { } }, - "circle_name_range_error": "Kretsens namn fĂ„r inte vara lĂ€ngre Ă€n {maxLength} tecken.", + "circle_name_range_error": "O nome do cĂ­rculo nĂŁo deve ter mais de {maxLength} caracteres.", "@circle_name_range_error": { "type": "text", "placeholders": { @@ -257,21 +257,21 @@ } } }, - "save_follows_list_name": "Namn", + "save_follows_list_name": "Nome", "@save_follows_list_name": { "type": "text", "placeholders": { } }, - "save_follows_list_hint_text": "t. ex. Resor, Fotografering", + "save_follows_list_hint_text": "ex: Viagem, Fotografia", "@save_follows_list_hint_text": { "type": "text", "placeholders": { } }, - "save_follows_list_name_taken": "Listnamnet '{listName}' Ă€r upptaget", + "save_follows_list_name_taken": "O nome de lista '{listName}' jĂĄ estĂĄ sendo usado", "@save_follows_list_name_taken": { "type": "text", "placeholders": { @@ -287,56 +287,56 @@ } }, - "save_follows_list_users": "AnvĂ€ndare", + "save_follows_list_users": "UsuĂĄrios", "@save_follows_list_users": { "type": "text", "placeholders": { } }, - "save_follows_list_edit": "Redigera lista", + "save_follows_list_edit": "Editar lista", "@save_follows_list_edit": { "type": "text", "placeholders": { } }, - "save_follows_list_create": "Skapa lista", + "save_follows_list_create": "Criar lista", "@save_follows_list_create": { "type": "text", "placeholders": { } }, - "save_follows_list_save": "Spara", + "save_follows_list_save": "Salvar", "@save_follows_list_save": { "type": "text", "placeholders": { } }, - "save_follows_list_emoji_required_error": "En emoji krĂ€vs", + "save_follows_list_emoji_required_error": "Emoji necessĂĄrio", "@save_follows_list_emoji_required_error": { "type": "text", "placeholders": { } }, - "follows_list_edit": "Redigera", + "follows_list_edit": "Editar", "@follows_list_edit": { "type": "text", "placeholders": { } }, - "follows_list_header_title": "AnvĂ€ndare", + "follows_list_header_title": "UsuĂĄrios", "@follows_list_header_title": { "type": "text", "placeholders": { } }, - "edit_profile_name": "Namn", + "edit_profile_name": "Nome", "@edit_profile_name": { "type": "text", "placeholders": { @@ -350,7 +350,7 @@ } }, - "edit_profile_location": "Plats", + "edit_profile_location": "Localização", "@edit_profile_location": { "type": "text", "placeholders": { @@ -364,42 +364,42 @@ } }, - "edit_profile_followers_count": "Följarantal", + "edit_profile_followers_count": "NĂșmero de seguidores", "@edit_profile_followers_count": { "type": "text", "placeholders": { } }, - "edit_profile_title": "Redigera profil", + "edit_profile_title": "Editar perfil", "@edit_profile_title": { "type": "text", "placeholders": { } }, - "edit_profile_save_text": "Spara", + "edit_profile_save_text": "Salvar", "@edit_profile_save_text": { "type": "text", "placeholders": { } }, - "edit_profile_pick_image": "VĂ€lj bild", + "edit_profile_pick_image": "Escolher imagem", "@edit_profile_pick_image": { "type": "text", "placeholders": { } }, - "edit_profile_delete": "Ta bort", + "edit_profile_delete": "Excluir", "@edit_profile_delete": { "type": "text", "placeholders": { } }, - "edit_profile_pick_image_error_too_large": "Bilden Ă€r för stor (grĂ€ns: {limit} MB)", + "edit_profile_pick_image_error_too_large": "Imagem muito grande (limite: {limit} MB)", "@edit_profile_pick_image_error_too_large": { "type": "text", "placeholders": { @@ -408,21 +408,21 @@ } } }, - "tile_following": " · Följer", + "tile_following": " · Seguindo", "@tile_following": { "type": "text", "placeholders": { } }, - "following_text": "Följer", + "following_text": "Seguindo", "@following_text": { "type": "text", "placeholders": { } }, - "following_resource_name": "följda anvĂ€ndare", + "following_resource_name": "usuĂĄrios seguidos", "@following_resource_name": { "description": "Eg: Search followed users.., No followed users found. etc ", "type": "text", @@ -430,35 +430,35 @@ } }, - "tile_delete": "Ta bort", + "tile_delete": "Excluir", "@tile_delete": { "type": "text", "placeholders": { } }, - "invite": "Bjud in", + "invite": "Convidar", "@invite": { "type": "text", "placeholders": { } }, - "uninvite": "Avbryt inbjudan", + "uninvite": "Cancelar convite", "@uninvite": { "type": "text", "placeholders": { } }, - "invite_member": "Medlem", + "invite_member": "Membro", "@invite_member": { "type": "text", "placeholders": { } }, - "invite_someone_message": "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}", + "invite_someone_message": "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}", "@invite_someone_message": { "type": "text", "placeholders": { @@ -473,119 +473,119 @@ } } }, - "connections_header_circle_desc": "Kretsen alla dina kontakter lĂ€ggs till i.", + "connections_header_circle_desc": "O cĂ­rculo com todas as suas conexĂ”es Ă© adicionado.", "@connections_header_circle_desc": { "type": "text", "placeholders": { } }, - "connections_header_users": "AnvĂ€ndare", + "connections_header_users": "UsuĂĄrios", "@connections_header_users": { "type": "text", "placeholders": { } }, - "connection_pending": "VĂ€ntande", + "connection_pending": "Pendente", "@connection_pending": { "type": "text", "placeholders": { } }, - "connection_circle_edit": "Redigera", + "connection_circle_edit": "Editar", "@connection_circle_edit": { "type": "text", "placeholders": { } }, - "connections_circle_delete": "Ta bort", + "connections_circle_delete": "Excluir", "@connections_circle_delete": { "type": "text", "placeholders": { } }, - "save_connection_circle_name": "Namn", + "save_connection_circle_name": "Nome", "@save_connection_circle_name": { "type": "text", "placeholders": { } }, - "save_connection_circle_hint": "t. ex. VĂ€nner, Familj, Jobb.", + "save_connection_circle_hint": "ex: Amigos, FamĂ­lia, Trabalho.", "@save_connection_circle_hint": { "type": "text", "placeholders": { } }, - "save_connection_circle_color_name": "FĂ€rg", + "save_connection_circle_color_name": "Cor", "@save_connection_circle_color_name": { "type": "text", "placeholders": { } }, - "save_connection_circle_color_hint": "(Tryck för att Ă€ndra)", + "save_connection_circle_color_hint": "(Toque para alterar)", "@save_connection_circle_color_hint": { "type": "text", "placeholders": { } }, - "save_connection_circle_users": "AnvĂ€ndare", + "save_connection_circle_users": "UsuĂĄrios", "@save_connection_circle_users": { "type": "text", "placeholders": { } }, - "save_connection_circle_edit": "Redigera krets", + "save_connection_circle_edit": "Editar cĂ­rculo", "@save_connection_circle_edit": { "type": "text", "placeholders": { } }, - "save_connection_circle_create": "Skapa krets", + "save_connection_circle_create": "Criar cĂ­rculo", "@save_connection_circle_create": { "type": "text", "placeholders": { } }, - "save_connection_circle_save": "Spara", + "save_connection_circle_save": "Salvar", "@save_connection_circle_save": { "type": "text", "placeholders": { } }, - "update_connection_circle_save": "Spara", + "update_connection_circle_save": "Salvar", "@update_connection_circle_save": { "type": "text", "placeholders": { } }, - "update_connection_circle_updated": "Kontakt uppdaterad", + "update_connection_circle_updated": "ConexĂŁo atualizada", "@update_connection_circle_updated": { "type": "text", "placeholders": { } }, - "update_connection_circles_title": "Uppdatera kontaktkretsar", + "update_connection_circles_title": "Atualizar cĂ­rculos de conexĂŁo", "@update_connection_circles_title": { "type": "text", "placeholders": { } }, - "confirm_connection_with": "BekrĂ€fta {userName}s kontaktförfrĂ„gan", + "confirm_connection_with": "Confirmar a conexĂŁo com {userName}", "@confirm_connection_with": { "type": "text", "placeholders": { @@ -594,28 +594,28 @@ } } }, - "confirm_connection_add_connection": "LĂ€gg till kontakt i krets", + "confirm_connection_add_connection": "Adicionar conexĂŁo ao cĂ­rculo", "@confirm_connection_add_connection": { "type": "text", "placeholders": { } }, - "confirm_connection_connection_confirmed": "KontaktförfrĂ„gan bekrĂ€ftad", + "confirm_connection_connection_confirmed": "ConexĂŁo confirmada", "@confirm_connection_connection_confirmed": { "type": "text", "placeholders": { } }, - "confirm_connection_confirm_text": "BekrĂ€fta", + "confirm_connection_confirm_text": "Confirmar", "@confirm_connection_confirm_text": { "type": "text", "placeholders": { } }, - "connect_to_user_connect_with_username": "LĂ€gg till {userName} som kontakt", + "connect_to_user_connect_with_username": "Conectar-se com {userName}", "@connect_to_user_connect_with_username": { "type": "text", "placeholders": { @@ -624,77 +624,77 @@ } } }, - "connect_to_user_add_connection": "LĂ€gg till kontakt i krets", + "connect_to_user_add_connection": "Adicionar conexĂŁo ao cĂ­rculo", "@connect_to_user_add_connection": { "type": "text", "placeholders": { } }, - "connect_to_user_done": "Klar", + "connect_to_user_done": "Pronto", "@connect_to_user_done": { "type": "text", "placeholders": { } }, - "connect_to_user_request_sent": "KontaktförfrĂ„gan skickad", + "connect_to_user_request_sent": "Pedido de conexĂŁo enviado", "@connect_to_user_request_sent": { "type": "text", "placeholders": { } }, - "remove_account_from_list": "Ta bort konto frĂ„n listor", + "remove_account_from_list": "Remover conta das listas", "@remove_account_from_list": { "type": "text", "placeholders": { } }, - "remove_account_from_list_success": "Konto borttaget frĂ„n listor", + "remove_account_from_list_success": "Sucesso", "@remove_account_from_list_success": { "type": "text", "placeholders": { } }, - "confirm_block_user_title": "BekrĂ€ftelse", + "confirm_block_user_title": "Confirmação", "@confirm_block_user_title": { "type": "text", "placeholders": { } }, - "confirm_block_user_info": "Ni kommer inte kunna se varandras inlĂ€gg eller kunna interagera med varandra.", + "confirm_block_user_info": "VocĂȘs nĂŁo verĂŁo os posts um do outro nem serĂŁo capazes de interagir de qualquer forma.", "@confirm_block_user_info": { "type": "text", "placeholders": { } }, - "confirm_block_user_yes": "Ja", + "confirm_block_user_yes": "Sim", "@confirm_block_user_yes": { "type": "text", "placeholders": { } }, - "confirm_block_user_no": "Nej", + "confirm_block_user_no": "NĂŁo", "@confirm_block_user_no": { "type": "text", "placeholders": { } }, - "confirm_block_user_blocked": "AnvĂ€ndare blockerad.", + "confirm_block_user_blocked": "UsuĂĄrio bloqueado.", "@confirm_block_user_blocked": { "type": "text", "placeholders": { } }, - "confirm_block_user_question": "Är du sĂ€ker pĂ„ att du vill blockera @{username}?", + "confirm_block_user_question": "Tem certeza de que deseja bloquear @{username}?", "@confirm_block_user_question": { "type": "text", "placeholders": { @@ -703,7 +703,7 @@ } } }, - "save_connection_circle_name_taken": "Kretsnamnet '{takenConnectionsCircleName}' Ă€r upptaget", + "save_connection_circle_name_taken": "O nome de cĂ­rculo '{takenConnectionsCircleName}' jĂĄ estĂĄ em uso", "@save_connection_circle_name_taken": { "type": "text", "placeholders": { @@ -712,287 +712,287 @@ } } }, - "timeline_filters_title": "Tidslinjefilter", + "timeline_filters_title": "Filtros da linha do tempo", "@timeline_filters_title": { "type": "text", "placeholders": { } }, - "timeline_filters_search_desc": "Sök efter kretsar och listor...", + "timeline_filters_search_desc": "Procurar por cĂ­rculos e listas...", "@timeline_filters_search_desc": { "type": "text", "placeholders": { } }, - "timeline_filters_clear_all": "ÅterstĂ€ll", + "timeline_filters_clear_all": "Limpar tudo", "@timeline_filters_clear_all": { "type": "text", "placeholders": { } }, - "timeline_filters_apply_all": "Applicera filter", + "timeline_filters_apply_all": "Aplicar filtros", "@timeline_filters_apply_all": { "type": "text", "placeholders": { } }, - "timeline_filters_circles": "Kretsar", + "timeline_filters_circles": "CĂ­rculos", "@timeline_filters_circles": { "type": "text", "placeholders": { } }, - "timeline_filters_lists": "Listor", + "timeline_filters_lists": "Listas", "@timeline_filters_lists": { "type": "text", "placeholders": { } }, - "followers_title": "Följare", + "followers_title": "Seguidores", "@followers_title": { "type": "text", "placeholders": { } }, - "follower_singular": "följare", + "follower_singular": "seguidor", "@follower_singular": { "type": "text", "placeholders": { } }, - "follower_plural": "följare", + "follower_plural": "seguidores", "@follower_plural": { "type": "text", "placeholders": { } }, - "delete_account_title": "Ta bort konto", + "delete_account_title": "Excluir a minha conta", "@delete_account_title": { "type": "text", "placeholders": { } }, - "delete_account_current_pwd": "Nuvarande lösenord", + "delete_account_current_pwd": "Senha atual", "@delete_account_current_pwd": { "type": "text", "placeholders": { } }, - "delete_account_current_pwd_hint": "Ange ditt nuvarande lösenord", + "delete_account_current_pwd_hint": "Digite a sua senha atual", "@delete_account_current_pwd_hint": { "type": "text", "placeholders": { } }, - "delete_account_next": "NĂ€sta", + "delete_account_next": "Avançar", "@delete_account_next": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_title": "BekrĂ€ftelse", + "delete_account_confirmation_title": "Confirmação", "@delete_account_confirmation_title": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_desc": "Är du sĂ€ker pĂ„ att du vill ta bort ditt konto?", + "delete_account_confirmation_desc": "Tem certeza de que deseja excluir sua conta?", "@delete_account_confirmation_desc": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_desc_info": "Detta Ă€r permanent och kan inte Ă„ngras senare.", + "delete_account_confirmation_desc_info": "Esta Ă© uma ação permanente e nĂŁo pode ser desfeita.", "@delete_account_confirmation_desc_info": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_no": "Nej", + "delete_account_confirmation_no": "NĂŁo", "@delete_account_confirmation_no": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_yes": "Ja", + "delete_account_confirmation_yes": "Sim", "@delete_account_confirmation_yes": { "type": "text", "placeholders": { } }, - "delete_account_confirmation_goodbye": "Hej dĂ„ 😱", + "delete_account_confirmation_goodbye": "Adeus 😱", "@delete_account_confirmation_goodbye": { "type": "text", "placeholders": { } }, - "invites_create_create_title": "Skapa inbjudan", + "invites_create_create_title": "Criar convite", "@invites_create_create_title": { "type": "text", "placeholders": { } }, - "invites_create_edit_title": "Redigera inbjudan", + "invites_create_edit_title": "Editar convite", "@invites_create_edit_title": { "type": "text", "placeholders": { } }, - "invites_create_save": "Spara", + "invites_create_save": "Salvar", "@invites_create_save": { "type": "text", "placeholders": { } }, - "invites_create_create": "Skapa", + "invites_create_create": "Criar", "@invites_create_create": { "type": "text", "placeholders": { } }, - "invites_create_name_title": "Smeknamn", + "invites_create_name_title": "Apelido", "@invites_create_name_title": { "type": "text", "placeholders": { } }, - "invites_create_name_hint": "t. ex. Sven Svensson", + "invites_create_name_hint": "ex: JoĂŁozinho", "@invites_create_name_hint": { "type": "text", "placeholders": { } }, - "invites_pending": "VĂ€ntande", + "invites_pending": "Pendente", "@invites_pending": { "type": "text", "placeholders": { } }, - "invites_delete": "Ta bort", + "invites_delete": "Excluir", "@invites_delete": { "type": "text", "placeholders": { } }, - "invites_invite_text": "Bjud in", + "invites_invite_text": "Convidar", "@invites_invite_text": { "type": "text", "placeholders": { } }, - "invites_share_yourself": "Dela inbjudan sjĂ€lv", + "invites_share_yourself": "Compartilhe o convite vocĂȘ mesmo", "@invites_share_yourself": { "type": "text", "placeholders": { } }, - "invites_share_yourself_desc": "VĂ€lj mellan meddelandeappar, etc.", + "invites_share_yourself_desc": "Escolha um app de mensagens, etc.", "@invites_share_yourself_desc": { "type": "text", "placeholders": { } }, - "invites_share_email": "Dela inbjudan via e-post", + "invites_share_email": "Compartilhe o convite por email", "@invites_share_email": { "type": "text", "placeholders": { } }, - "invites_email_text": "E-post", + "invites_email_text": "Email", "@invites_email_text": { "type": "text", "placeholders": { } }, - "invites_email_hint": "t. ex. svensvensson@email.com", + "invites_email_hint": "ex: joaozinho@email.com", "@invites_email_hint": { "type": "text", "placeholders": { } }, - "invites_email_invite_text": "E-postinbjudan", + "invites_email_invite_text": "Convite por email", "@invites_email_invite_text": { "type": "text", "placeholders": { } }, - "invites_email_send_text": "Skicka", + "invites_email_send_text": "Enviar", "@invites_email_send_text": { "type": "text", "placeholders": { } }, - "invites_email_sent_text": "E-postinbjudan skickad", + "invites_email_sent_text": "Email de convite enviado", "@invites_email_sent_text": { "type": "text", "placeholders": { } }, - "invites_share_email_desc": "Vi kommer skicka en inbjudan med instruktioner Ă„ dina vĂ€gnar", + "invites_share_email_desc": "Enviaremos um email de convite com instruçÔes em seu nome", "@invites_share_email_desc": { "type": "text", "placeholders": { } }, - "invites_edit_text": "Redigera", + "invites_edit_text": "Editar", "@invites_edit_text": { "type": "text", "placeholders": { } }, - "invites_title": "Mina inbjudningar", + "invites_title": "Meus convites", "@invites_title": { "type": "text", "placeholders": { } }, - "invites_accepted_title": "Accepterade", + "invites_accepted_title": "Aceitos", "@invites_accepted_title": { "type": "text", "placeholders": { } }, - "invites_accepted_group_name": "accepterade inbjudningar", + "invites_accepted_group_name": "convites aceitos", "@invites_accepted_group_name": { "description": "Egs where this will end up: Accepted invites (capitalised title), Search accepted invites, See all accepted invites ", "type": "text", @@ -1000,77 +1000,77 @@ } }, - "invites_accepted_group_item_name": "accepterad inbjudan", + "invites_accepted_group_item_name": "convite aceito", "@invites_accepted_group_item_name": { "type": "text", "placeholders": { } }, - "invites_pending_group_name": "vĂ€ntande inbjudningar", + "invites_pending_group_name": "convites pendentes", "@invites_pending_group_name": { "type": "text", "placeholders": { } }, - "invites_pending_group_item_name": "vĂ€ntande inbjudan", + "invites_pending_group_item_name": "convite pendente", "@invites_pending_group_item_name": { "type": "text", "placeholders": { } }, - "invites_none_used": "Det ser ut som att du inte anvĂ€nt nĂ„gra inbjudningar.", + "invites_none_used": "Parece que vocĂȘ nĂŁo usou nenhum convite.", "@invites_none_used": { "type": "text", "placeholders": { } }, - "invites_none_left": "Du har inga inbjudningar tillgĂ€ngliga.", + "invites_none_left": "VocĂȘ nĂŁo tem convites disponĂ­veis.", "@invites_none_left": { "type": "text", "placeholders": { } }, - "invites_invite_a_friend": "Bjud in en vĂ€n", + "invites_invite_a_friend": "Convidar um amigo", "@invites_invite_a_friend": { "type": "text", "placeholders": { } }, - "invites_refresh": "Uppdatera", + "invites_refresh": "Atualizar", "@invites_refresh": { "type": "text", "placeholders": { } }, - "language_settings_title": "SprĂ„kinstĂ€llningar", + "language_settings_title": "ConfiguraçÔes de idioma", "@language_settings_title": { "type": "text", "placeholders": { } }, - "language_settings_save": "Spara", + "language_settings_save": "Salvar", "@language_settings_save": { "type": "text", "placeholders": { } }, - "language_settings_saved_success": "SprĂ„ket har uppdaterats", + "language_settings_saved_success": "Idioma alterado com sucesso", "@language_settings_saved_success": { "type": "text", "placeholders": { } }, - "groups_see_all": "Visa alla {groupName}", + "groups_see_all": "Ver {groupName}", "@groups_see_all": { "description": "Can be, See all joined communities, See all pending invites, See all moderated communities etc. ", "type": "text", @@ -1080,7 +1080,7 @@ } } }, - "invites_joined_with": "Gick med under anvĂ€ndarnamnet @{username}", + "invites_joined_with": "Entrou com o nome de usuĂĄrio @{username}", "@invites_joined_with": { "type": "text", "placeholders": { @@ -1089,7 +1089,7 @@ } } }, - "invites_pending_email": "VĂ€ntande, inbjudan skickad till {email}", + "invites_pending_email": "Pendente, convite enviado para o email {email}", "@invites_pending_email": { "type": "text", "placeholders": { @@ -1098,7 +1098,7 @@ } } }, - "timeline_filters_no_match": "Inga resultat hittades för '{searchQuery}'.", + "timeline_filters_no_match": "Nada encontrado para '{searchQuery}'.", "@timeline_filters_no_match": { "type": "text", "placeholders": { @@ -1107,217 +1107,217 @@ } } }, - "clear_application_cache_text": "Rensa cacheminnet", + "clear_application_cache_text": "Limpar cache", "@clear_application_cache_text": { "type": "text", "placeholders": { } }, - "clear_application_cache_desc": "Rensa cachelagrade inlĂ€gg, konton, bilder & mer.", + "clear_application_cache_desc": "Limpar cache de posts, contas, imagens e mais.", "@clear_application_cache_desc": { "type": "text", "placeholders": { } }, - "clear_application_cache_success": "Cacheminnet har rensats", + "clear_application_cache_success": "Cache limpo com sucesso", "@clear_application_cache_success": { "type": "text", "placeholders": { } }, - "clear_application_cache_failure": "Kunde inte rensa cacheminnet", + "clear_application_cache_failure": "NĂŁo foi possĂ­vel limpar o cache", "@clear_application_cache_failure": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_title": "Avvisande av riktlinjer", + "confirm_guidelines_reject_title": "Rejeição das diretrizes", "@confirm_guidelines_reject_title": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_info": "Du kan inte anvĂ€nda Okuna förrĂ€n du har godkĂ€nt riktlinjerna.", + "confirm_guidelines_reject_info": "VocĂȘ nĂŁo pode usar a Okuna atĂ© aceitar as diretrizes.", "@confirm_guidelines_reject_info": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_chat_with_team": "Chatta med teamet.", + "confirm_guidelines_reject_chat_with_team": "Converse com a equipe.", "@confirm_guidelines_reject_chat_with_team": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_chat_immediately": "Starta en chat direkt.", + "confirm_guidelines_reject_chat_immediately": "Inicie o chat agora.", "@confirm_guidelines_reject_chat_immediately": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_chat_community": "Chatta med gemenskapen.", + "confirm_guidelines_reject_chat_community": "Converse com a comunidade.", "@confirm_guidelines_reject_chat_community": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_join_slack": "GĂ„ med i Slack-kanalen.", + "confirm_guidelines_reject_join_slack": "Junte-se ao canal no Slack.", "@confirm_guidelines_reject_join_slack": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_go_back": "Tillbaka", + "confirm_guidelines_reject_go_back": "Voltar", "@confirm_guidelines_reject_go_back": { "type": "text", "placeholders": { } }, - "confirm_guidelines_reject_delete_account": "Ta bort konto", + "confirm_guidelines_reject_delete_account": "Excluir a minha conta", "@confirm_guidelines_reject_delete_account": { "type": "text", "placeholders": { } }, - "guidelines_desc": "VĂ€nligen lĂ€gg en stund pĂ„ att lĂ€sa igenom och godkĂ€nna vĂ„ra riktlinjer.", + "guidelines_desc": "Por favor, dedique este momento para ler e aceitar as nossas diretrizes.", "@guidelines_desc": { "type": "text", "placeholders": { } }, - "guidelines_accept": "GodkĂ€nn", + "guidelines_accept": "Aceitar", "@guidelines_accept": { "type": "text", "placeholders": { } }, - "guidelines_reject": "Avvisa", + "guidelines_reject": "Rejeitar", "@guidelines_reject": { "type": "text", "placeholders": { } }, - "change_email_title": "Ändra e-postadress", + "change_email_title": "Alterar Email", "@change_email_title": { "type": "text", "placeholders": { } }, - "change_email_email_text": "E-post", + "change_email_email_text": "Email", "@change_email_email_text": { "type": "text", "placeholders": { } }, - "change_email_hint_text": "Ange din nya e-postadress", + "change_email_hint_text": "Digite seu novo email", "@change_email_hint_text": { "type": "text", "placeholders": { } }, - "change_email_error": "E-postadressen Ă€r redan registrerad", + "change_email_error": "Este email jĂĄ estĂĄ registrado", "@change_email_error": { "type": "text", "placeholders": { } }, - "change_email_save": "Spara", + "change_email_save": "Salvar", "@change_email_save": { "type": "text", "placeholders": { } }, - "change_email_success_info": "Vi har skickat en bekrĂ€ftelselĂ€nk till din nya e-postadress, klicka pĂ„ den för att verifiera din nya e-post", + "change_email_success_info": "Enviamos um link de confirmação para seu novo endereço de email, clique nele para verificar seu novo email", "@change_email_success_info": { "type": "text", "placeholders": { } }, - "clear_app_preferences_title": "Rensa instĂ€llningar", + "clear_app_preferences_title": "Limpar preferĂȘncias", "@clear_app_preferences_title": { "type": "text", "placeholders": { } }, - "clear_app_preferences_desc": "Rensa applikationsinstĂ€llningarna. Just nu Ă€r detta enbart den föredragna kommentarsordningen.", + "clear_app_preferences_desc": "Limpe as preferĂȘncias do aplicativo. Atualmente, isso influencia apenas a ordem preferida dos comentĂĄrios.", "@clear_app_preferences_desc": { "type": "text", "placeholders": { } }, - "clear_app_preferences_cleared_successfully": "InstĂ€llningarna har rensats", + "clear_app_preferences_cleared_successfully": "PreferĂȘncias limpas com sucesso", "@clear_app_preferences_cleared_successfully": { "type": "text", "placeholders": { } }, - "email_verification_successful": "HĂ€ftigt! Din e-post har verifierats", + "email_verification_successful": "IncrĂ­vel! Seu email foi verificado", "@email_verification_successful": { "type": "text", "placeholders": { } }, - "email_verification_error": "Hoppsan! Din kod Ă€r ogiltigt eller har gĂ„tt ut, vĂ€nligen försök igen", + "email_verification_error": "Opa! Seu token nĂŁo era vĂĄlido ou expirou, por favor tente novamente", "@email_verification_error": { "type": "text", "placeholders": { } }, - "clear_app_preferences_error": "InstĂ€llningarna kunde inte rensas", + "clear_app_preferences_error": "NĂŁo foi possĂ­vel limpar as preferĂȘncias", "@clear_app_preferences_error": { "type": "text", "placeholders": { } }, - "disconnect_from_user_success": "Er kontakt har brutits", + "disconnect_from_user_success": "Desconectado com sucesso", "@disconnect_from_user_success": { "type": "text", "placeholders": { } }, - "block_user": "Blockera anvĂ€ndare", + "block_user": "Bloquear usuĂĄrio", "@block_user": { "type": "text", "placeholders": { } }, - "unblock_user": "Avblockera anvĂ€ndare", + "unblock_user": "Desbloquear usuĂĄrio", "@unblock_user": { "type": "text", "placeholders": { } }, - "disconnect_from_user": "Ta bort {userName} som kontakt", + "disconnect_from_user": "Desconectar-se de {userName}", "@disconnect_from_user": { "type": "text", "placeholders": { @@ -1326,7 +1326,7 @@ } } }, - "circle_peoples_count": "{prettyUsersCount} personer", + "circle_peoples_count": "{prettyUsersCount} pessoas", "@circle_peoples_count": { "type": "text", "placeholders": { @@ -1335,7 +1335,7 @@ } } }, - "follows_list_accounts_count": "{prettyUsersCount} konton", + "follows_list_accounts_count": "{prettyUsersCount} contas", "@follows_list_accounts_count": { "type": "text", "placeholders": { diff --git a/assets/i18n/pt-BR/user_search.arb b/assets/i18n/pt-BR/user_search.arb index 0b334df6b..900468509 100644 --- a/assets/i18n/pt-BR/user_search.arb +++ b/assets/i18n/pt-BR/user_search.arb @@ -1,26 +1,26 @@ { - "search_text": "Sök...", + "search_text": "Pesquisar...", "@search_text": { "type": "text", "placeholders": { } }, - "communities": "Gemenskaper", + "communities": "Comunidades", "@communities": { "type": "text", "placeholders": { } }, - "users": "AnvĂ€ndare", + "users": "UsuĂĄrios", "@users": { "type": "text", "placeholders": { } }, - "list_search_text": "Sök {resourcePluralName} ...", + "list_search_text": "Pesquisar {resourcePluralName} ...", "@list_search_text": { "description": "resourcePluralName can take many forms foreg. Search members... , Search accepted invites, Search communities.. etc.", "type": "text", @@ -30,7 +30,7 @@ } } }, - "list_no_results_found": "Inga {resourcePluralName} hittades.", + "list_no_results_found": "Sem {resourcePluralName}.", "@list_no_results_found": { "description": "Used in a generic list widget. Can be No users found. No communities found. No pending invites found. Its always a plural. ", "type": "text", @@ -40,28 +40,28 @@ } } }, - "list_refresh_text": "Uppdatera", + "list_refresh_text": "Atualizar", "@list_refresh_text": { "type": "text", "placeholders": { } }, - "list_retry": "Tryck för att försöka igen.", + "list_retry": "Toque para tentar novamente.", "@list_retry": { "type": "text", "placeholders": { } }, - "cancel": "Avbryt", + "cancel": "Cancelar", "@cancel": { "type": "text", "placeholders": { } }, - "searching_for": "Söker efter '{searchQuery}'", + "searching_for": "Procurando por '{searchQuery}'", "@searching_for": { "type": "text", "placeholders": { @@ -70,7 +70,7 @@ } } }, - "no_results_for": "Inga resultat hittades för '{searchQuery}'.", + "no_results_for": "Nenhum resultado para '{searchQuery}'.", "@no_results_for": { "type": "text", "placeholders": { @@ -79,7 +79,7 @@ } } }, - "no_communities_for": "Inga gemenskaper hittades för '{searchQuery}'.", + "no_communities_for": "Nenhuma comunidade encontrada para '{searchQuery}'.", "@no_communities_for": { "type": "text", "placeholders": { @@ -88,7 +88,7 @@ } } }, - "no_users_for": "Inga anvĂ€ndare hittades för '{searchQuery}'.", + "no_users_for": "Nenhum usuĂĄrio encontrado para '{searchQuery}'.", "@no_users_for": { "type": "text", "placeholders": { diff --git a/lib/locale/messages_pt-BR.dart b/lib/locale/messages_pt-BR.dart index 756d4fb06..f3cc6013a 100644 --- a/lib/locale/messages_pt-BR.dart +++ b/lib/locale/messages_pt-BR.dart @@ -20,827 +20,827 @@ typedef MessageIfAbsent(String message_str, List args); class MessageLookup extends MessageLookupByLibrary { get localeName => 'pt_BR'; - static m0(minLength, maxLength) => "(${minLength}-${maxLength} tecken)"; + static m0(minLength, maxLength) => "(${minLength}-${maxLength} caracteres)"; - static m1(minLength, maxLength) => "Beskrivningen mĂ„ste vara mellan ${minLength} och ${maxLength} tecken."; + static m1(minLength, maxLength) => "A descrição deve ter entre ${minLength} e ${maxLength} caracteres."; - static m2(minLength, maxLength) => "Namnet mĂ„ste vara mellan ${minLength} och ${maxLength} tecken."; + static m2(minLength, maxLength) => "O nome deve ter entre ${minLength} e ${maxLength} caracteres."; - static m3(minLength, maxLength) => "Lösenordet mĂ„ste vara mellan ${minLength} och ${maxLength} tecken."; + static m3(minLength, maxLength) => "A senha deve ter entre ${minLength} e ${maxLength} caracteres."; - static m4(maxLength) => "Ett anvĂ€ndarnamn kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m4(maxLength) => "Um nome de usuĂĄrio nĂŁo pode ser maior que ${maxLength} caracteres."; - static m5(maxLength) => "Adjektiv fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m5(maxLength) => "Os adjetivos nĂŁo podem ser mais longos que ${maxLength} caracteres."; - static m6(username) => "Är du sĂ€ker pĂ„ att du vill lĂ€gga till @${username} som administratör för gemenskapen?"; + static m6(username) => "VocĂȘ tem certeza de que deseja adicionar @${username} como administrador da comunidade?"; - static m7(username) => "Är du sĂ€ker pĂ„ att du vill banna @${username}?"; + static m7(username) => "VocĂȘ tem certeza de que deseja banir @${username}?"; - static m8(maxLength) => "Beskrivningen kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m8(maxLength) => "A descrição nĂŁo pode ser maior que ${maxLength} caracteres."; - static m9(username) => "Är du sĂ€ker pĂ„ att du vill lĂ€gga till @${username} som gemenskapsmoderator?"; + static m9(username) => "VocĂȘ tem certeza de que deseja adicionar @${username} como moderador da comunidade?"; - static m10(maxLength) => "Namnet fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m10(maxLength) => "O nome nĂŁo pode ser maior que ${maxLength} caracteres."; - static m11(min) => "Du mĂ„ste vĂ€lja Ă„tminstone ${min} kategorier."; + static m11(min) => "VocĂȘ deve escolher pelo menos ${min} categorias."; - static m12(min) => "Du mĂ„ste vĂ€lja Ă„tminstone ${min} kategori."; + static m12(min) => "VocĂȘ deve escolher pelo menos ${min} categoria."; - static m13(max) => "VĂ€lj upp till ${max} kategorier"; + static m13(max) => "Escolha atĂ© ${max} categorias"; - static m14(maxLength) => "Reglerna fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m14(maxLength) => "As regras nĂŁo podem ser maiores que ${maxLength} caracteres."; - static m15(takenName) => "Gemenskapsnamnet \'${takenName}\' Ă€r upptaget"; + static m15(takenName) => "O nome de comunidade \'${takenName}\' jĂĄ estĂĄ em uso"; - static m16(maxLength) => "Titeln fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m16(maxLength) => "O tĂ­tulo nĂŁo pode ser maior que ${maxLength} caracteres."; - static m17(categoryName) => "Trendiga i ${categoryName}"; + static m17(categoryName) => "Em alta em ${categoryName}"; - static m18(currentUserLanguage) => "SprĂ„k (${currentUserLanguage})"; + static m18(currentUserLanguage) => "Idioma (${currentUserLanguage})"; - static m19(resourceCount, resourceName) => "Visa alla ${resourceCount} ${resourceName}"; + static m19(resourceCount, resourceName) => "Ver todas as ${resourceCount} ${resourceName}"; - static m20(postCommentText) => "[name] [username] kommenterade ocksĂ„: ${postCommentText}"; + static m20(postCommentText) => "[name] [username] tambĂ©m comentou: ${postCommentText}"; - static m21(postCommentText) => "[name] [username] kommenterade pĂ„ ditt inlĂ€gg: ${postCommentText}"; + static m21(postCommentText) => "[name] [username] comentou no seu post: ${postCommentText}"; - static m22(postCommentText) => "[name] [username] svarade ocksĂ„: ${postCommentText}"; + static m22(postCommentText) => "[name] [username] tambĂ©m respondeu: ${postCommentText}"; - static m23(postCommentText) => "[name] [username] svarade: ${postCommentText}"; + static m23(postCommentText) => "[name] [username] respondeu: ${postCommentText}"; - static m24(communityName) => "[name] [username] har bjudit in dig till gemenskapen /c/${communityName}."; + static m24(communityName) => "[name] [username] convidou vocĂȘ para se juntar Ă  comunidade /c/${communityName}."; - static m25(maxLength) => "En kommentar kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m25(maxLength) => "Um comentĂĄrio nĂŁo pode ter mais de ${maxLength} caracteres."; - static m26(commentsCount) => "Visa alla ${commentsCount} kommentarer"; + static m26(commentsCount) => "Ver todos os ${commentsCount} comentĂĄrios"; - static m27(circlesSearchQuery) => "Inga kretsar hittades som matchar \'${circlesSearchQuery}\'."; + static m27(circlesSearchQuery) => "\'Nenhum cĂ­rculo encontrado para \'${circlesSearchQuery}\'."; - static m28(name) => "${name} har inte delat nĂ„got Ă€nnu."; + static m28(name) => "${name} ainda nĂŁo compartilhou nada."; - static m29(postCreatorUsername) => "@${postCreatorUsername}s kretsar"; + static m29(postCreatorUsername) => "cĂ­rculos de @${postCreatorUsername}"; - static m30(maxLength) => "Kretsens namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m30(maxLength) => "O nome do cĂ­rculo nĂŁo deve ter mais de ${maxLength} caracteres."; - static m31(prettyUsersCount) => "${prettyUsersCount} personer"; + static m31(prettyUsersCount) => "${prettyUsersCount} pessoas"; - static m32(username) => "Är du sĂ€ker pĂ„ att du vill blockera @${username}?"; + static m32(username) => "Tem certeza de que deseja bloquear @${username}?"; - static m33(userName) => "BekrĂ€fta ${userName}s kontaktförfrĂ„gan"; + static m33(userName) => "Confirmar a conexĂŁo com ${userName}"; - static m34(userName) => "LĂ€gg till ${userName} som kontakt"; + static m34(userName) => "Conectar-se com ${userName}"; - static m35(userName) => "Ta bort ${userName} som kontakt"; + static m35(userName) => "Desconectar-se de ${userName}"; - static m36(limit) => "Bilden Ă€r för stor (grĂ€ns: ${limit} MB)"; + static m36(limit) => "Imagem muito grande (limite: ${limit} MB)"; - static m37(username) => "AnvĂ€ndarnamnet @${username} Ă€r upptaget"; + static m37(username) => "O nome de usuĂĄrio @${username} jĂĄ estĂĄ em uso"; - static m38(searchQuery) => "Ingen emoji hittades som matchar \'${searchQuery}\'."; + static m38(searchQuery) => "Nenhum emoji encontrado para \'${searchQuery}\'."; - static m39(searchQuery) => "Inga listor hittades för \'${searchQuery}\'"; + static m39(searchQuery) => "Nenhuma lista encontrada para \'${searchQuery}\'"; - static m40(prettyUsersCount) => "${prettyUsersCount} konton"; + static m40(prettyUsersCount) => "${prettyUsersCount} contas"; - static m41(prettyUsersCount) => "${prettyUsersCount} Konton"; + static m41(prettyUsersCount) => "${prettyUsersCount} Contas"; - static m42(groupName) => "Visa alla ${groupName}"; + static m42(groupName) => "Ver ${groupName}"; - static m43(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 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 m44(username) => "Gick med under anvĂ€ndarnamnet @${username}"; + static m44(username) => "Entrou com o nome de usuĂĄrio @${username}"; - static m45(email) => "VĂ€ntande, inbjudan skickad till ${email}"; + static m45(email) => "Pendente, convite enviado para o email ${email}"; - static m46(maxLength) => "Listans namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m46(maxLength) => "O nome da lista nĂŁo deve ter mais de ${maxLength} caracteres."; - static m47(maxLength) => "Bion kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m47(maxLength) => "A bio nĂŁo pode ser maior que ${maxLength} caracteres."; - static m48(maxLength) => "En plats kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m48(maxLength) => "O local nĂŁo pode ser maior que ${maxLength} caracteres."; - static m49(takenConnectionsCircleName) => "Kretsnamnet \'${takenConnectionsCircleName}\' Ă€r upptaget"; + static m49(takenConnectionsCircleName) => "O nome de cĂ­rculo \'${takenConnectionsCircleName}\' jĂĄ estĂĄ em uso"; - static m50(listName) => "Listnamnet \'${listName}\' Ă€r upptaget"; + static m50(listName) => "O nome de lista \'${listName}\' jĂĄ estĂĄ sendo usado"; - static m51(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; + static m51(searchQuery) => "Nada encontrado para \'${searchQuery}\'."; - static m52(resourcePluralName) => "Inga ${resourcePluralName} hittades."; + static m52(resourcePluralName) => "Sem ${resourcePluralName}."; - static m53(resourcePluralName) => "Sök ${resourcePluralName} ..."; + static m53(resourcePluralName) => "Pesquisar ${resourcePluralName} ..."; - static m54(searchQuery) => "Inga gemenskaper hittades för \'${searchQuery}\'."; + static m54(searchQuery) => "Nenhuma comunidade encontrada para \'${searchQuery}\'."; - static m55(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; + static m55(searchQuery) => "Nenhum resultado para \'${searchQuery}\'."; - static m56(searchQuery) => "Inga anvĂ€ndare hittades för \'${searchQuery}\'."; + static m56(searchQuery) => "Nenhum usuĂĄrio encontrado para \'${searchQuery}\'."; - static m57(searchQuery) => "Söker efter \'${searchQuery}\'"; + static m57(searchQuery) => "Procurando por \'${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__change_password_current_pwd" : MessageLookupByLibrary.simpleMessage("Senha atual"), + "auth__change_password_current_pwd_hint" : MessageLookupByLibrary.simpleMessage("Digite a sua senha atual"), + "auth__change_password_current_pwd_incorrect" : MessageLookupByLibrary.simpleMessage("A senha inserida estĂĄ incorreta"), + "auth__change_password_new_pwd" : MessageLookupByLibrary.simpleMessage("Nova senha"), + "auth__change_password_new_pwd_error" : MessageLookupByLibrary.simpleMessage("Por favor, certifique-se de que a senha tenha entre 10 e 100 caracteres"), + "auth__change_password_new_pwd_hint" : MessageLookupByLibrary.simpleMessage("Digite a sua nova senha"), + "auth__change_password_save_success" : MessageLookupByLibrary.simpleMessage("Tudo certo! Sua senha foi atualizada"), + "auth__change_password_save_text" : MessageLookupByLibrary.simpleMessage("Salvar"), + "auth__change_password_title" : MessageLookupByLibrary.simpleMessage("Alterar senha"), + "auth__create_acc__almost_there" : MessageLookupByLibrary.simpleMessage("Quase lĂĄ..."), + "auth__create_acc__are_you_legal_age" : MessageLookupByLibrary.simpleMessage("VocĂȘ tem mais de 16 anos?"), + "auth__create_acc__avatar_choose_camera" : MessageLookupByLibrary.simpleMessage("Tirar uma foto"), + "auth__create_acc__avatar_choose_gallery" : MessageLookupByLibrary.simpleMessage("Usar uma foto existente"), + "auth__create_acc__avatar_remove_photo" : MessageLookupByLibrary.simpleMessage("Remover foto"), + "auth__create_acc__avatar_tap_to_change" : MessageLookupByLibrary.simpleMessage("Toque para alterar"), + "auth__create_acc__can_change_username" : MessageLookupByLibrary.simpleMessage("Se desejar, vocĂȘ pode alterĂĄ-lo a qualquer momento atravĂ©s da sua pĂĄgina de perfil."), + "auth__create_acc__congratulations" : MessageLookupByLibrary.simpleMessage("ParabĂ©ns!"), + "auth__create_acc__create_account" : MessageLookupByLibrary.simpleMessage("Criar uma conta"), + "auth__create_acc__done" : MessageLookupByLibrary.simpleMessage("Criar conta"), + "auth__create_acc__done_continue" : MessageLookupByLibrary.simpleMessage("Entrar"), + "auth__create_acc__done_created" : MessageLookupByLibrary.simpleMessage("Sua conta foi criada com o nome de usuĂĄrio "), + "auth__create_acc__done_description" : MessageLookupByLibrary.simpleMessage("Sua conta foi criada com sucesso."), + "auth__create_acc__done_subtext" : MessageLookupByLibrary.simpleMessage("VocĂȘ pode mudar isso nas configuraçÔes de perfil."), + "auth__create_acc__done_title" : MessageLookupByLibrary.simpleMessage("Aeee!"), + "auth__create_acc__email_empty_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± Seu email nĂŁo pode ficar vazio"), + "auth__create_acc__email_invalid_error" : MessageLookupByLibrary.simpleMessage("😅 Por favor, forneça um endereço de email vĂĄlido."), + "auth__create_acc__email_placeholder" : MessageLookupByLibrary.simpleMessage("gisele_bundchen@mail.com"), + "auth__create_acc__email_server_error" : MessageLookupByLibrary.simpleMessage("😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos."), + "auth__create_acc__email_taken_error" : MessageLookupByLibrary.simpleMessage("đŸ€” JĂĄ existe uma conta associada a esse email."), + "auth__create_acc__lets_get_started" : MessageLookupByLibrary.simpleMessage("Vamos começar"), + "auth__create_acc__link_empty_error" : MessageLookupByLibrary.simpleMessage("O campo de link nĂŁo pode ficar vazio."), + "auth__create_acc__link_invalid_error" : MessageLookupByLibrary.simpleMessage("Este link parece ser invĂĄlido."), + "auth__create_acc__name_characters_error" : MessageLookupByLibrary.simpleMessage("😅 Um nome sĂł pode conter caracteres alfanumĂ©ricos (por enquanto)."), + "auth__create_acc__name_empty_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± Seu nome nĂŁo pode ficar vazio."), + "auth__create_acc__name_length_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± Seu nome nĂŁo pode ter mais de 50 caracteres. (Se ele tem, lamentamos muito.)"), + "auth__create_acc__name_placeholder" : MessageLookupByLibrary.simpleMessage("Ayrton Senna"), + "auth__create_acc__next" : MessageLookupByLibrary.simpleMessage("Avançar"), + "auth__create_acc__one_last_thing" : MessageLookupByLibrary.simpleMessage("Uma Ășltima coisa..."), + "auth__create_acc__password_empty_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± Sua senha nĂŁo pode ficar vazia"), + "auth__create_acc__password_length_error" : MessageLookupByLibrary.simpleMessage("😅 Uma senha precisa ter entre 8 e 64 caracteres."), + "auth__create_acc__paste_link" : MessageLookupByLibrary.simpleMessage("Cole seu link de registro abaixo"), + "auth__create_acc__paste_link_help_text" : MessageLookupByLibrary.simpleMessage("Use o link do seu convite recebido por email."), + "auth__create_acc__paste_password_reset_link" : MessageLookupByLibrary.simpleMessage("Cole o link de redefinição de senha abaixo"), + "auth__create_acc__previous" : MessageLookupByLibrary.simpleMessage("Voltar"), + "auth__create_acc__register" : MessageLookupByLibrary.simpleMessage("Criar uma conta"), + "auth__create_acc__request_invite" : MessageLookupByLibrary.simpleMessage("Sem convite? Solicite um aqui."), + "auth__create_acc__submit_error_desc_server" : MessageLookupByLibrary.simpleMessage("😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos."), + "auth__create_acc__submit_error_desc_validation" : MessageLookupByLibrary.simpleMessage("😅 Parece que algumas das informaçÔes nĂŁo estavam corretas, por favor, verifique e tente novamente."), + "auth__create_acc__submit_error_title" : MessageLookupByLibrary.simpleMessage("Ah nĂŁo..."), + "auth__create_acc__submit_loading_desc" : MessageLookupByLibrary.simpleMessage("Estamos criando sua conta."), + "auth__create_acc__submit_loading_title" : MessageLookupByLibrary.simpleMessage("Segura aĂ­!"), + "auth__create_acc__subscribe" : MessageLookupByLibrary.simpleMessage("Solicitar"), + "auth__create_acc__subscribe_to_waitlist_text" : MessageLookupByLibrary.simpleMessage("Solicitar um convite!"), + "auth__create_acc__username_characters_error" : MessageLookupByLibrary.simpleMessage("😅 Um nome de usuĂĄrio deve conter apenas caracteres alfanumĂ©ricos e underlines (_)."), + "auth__create_acc__username_empty_error" : MessageLookupByLibrary.simpleMessage("đŸ˜± O nome de usuĂĄrio nĂŁo pode ficar vazio."), + "auth__create_acc__username_length_error" : MessageLookupByLibrary.simpleMessage("😅 Um nome de usuĂĄrio nĂŁo pode ter mais de 30 caracteres."), + "auth__create_acc__username_placeholder" : MessageLookupByLibrary.simpleMessage("santosdumont"), + "auth__create_acc__username_server_error" : MessageLookupByLibrary.simpleMessage("😭 Estamos com problemas em nossos servidores, por favor tente novamente em alguns minutos."), + "auth__create_acc__username_taken_error" : MessageLookupByLibrary.simpleMessage("đŸ˜© O nome de usuĂĄrio @%s jĂĄ estĂĄ em uso."), + "auth__create_acc__welcome_to_beta" : MessageLookupByLibrary.simpleMessage("Bem-vindo(a) Ă  Beta!"), + "auth__create_acc__what_avatar" : MessageLookupByLibrary.simpleMessage("Escolha uma imagem de perfil"), + "auth__create_acc__what_email" : MessageLookupByLibrary.simpleMessage("Qual Ă© o seu email?"), + "auth__create_acc__what_name" : MessageLookupByLibrary.simpleMessage("Qual Ă© o seu nome?"), + "auth__create_acc__what_password" : MessageLookupByLibrary.simpleMessage("Escolha uma senha"), + "auth__create_acc__what_password_subtext" : MessageLookupByLibrary.simpleMessage("(mĂ­n. 10 caracteres)"), + "auth__create_acc__what_username" : MessageLookupByLibrary.simpleMessage("Escolha um nome de usuĂĄrio"), + "auth__create_acc__your_subscribed" : MessageLookupByLibrary.simpleMessage("VocĂȘ Ă© o nĂșmero {0} da lista de espera."), + "auth__create_acc__your_username_is" : MessageLookupByLibrary.simpleMessage("Seu nome de usuĂĄrio Ă© "), "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__create_account" : MessageLookupByLibrary.simpleMessage("Cadastrar-se"), + "auth__description_empty_error" : MessageLookupByLibrary.simpleMessage("A descrição nĂŁo pode ficar vazia."), "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("Better social."), - "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__email_empty_error" : MessageLookupByLibrary.simpleMessage("O email nĂŁo pode ficar vazio."), + "auth__email_invalid_error" : MessageLookupByLibrary.simpleMessage("Por favor, forneça um email vĂĄlido."), + "auth__headline" : MessageLookupByLibrary.simpleMessage("Uma rede social melhor."), + "auth__login" : MessageLookupByLibrary.simpleMessage("Entrar"), + "auth__login__connection_error" : MessageLookupByLibrary.simpleMessage("NĂŁo conseguimos alcançar nossos servidores. VocĂȘ estĂĄ conectado Ă  internet?"), + "auth__login__credentials_mismatch_error" : MessageLookupByLibrary.simpleMessage("As credenciais fornecidas nĂŁo coincidem."), + "auth__login__email_label" : MessageLookupByLibrary.simpleMessage("Email"), + "auth__login__forgot_password" : MessageLookupByLibrary.simpleMessage("Esqueci a senha"), + "auth__login__forgot_password_subtitle" : MessageLookupByLibrary.simpleMessage("Digite seu nome de usuĂĄrio ou email"), + "auth__login__login" : MessageLookupByLibrary.simpleMessage("Continuar"), + "auth__login__or_text" : MessageLookupByLibrary.simpleMessage("Ou"), + "auth__login__password_empty_error" : MessageLookupByLibrary.simpleMessage("A senha Ă© necessĂĄria."), + "auth__login__password_label" : MessageLookupByLibrary.simpleMessage("Senha"), + "auth__login__password_length_error" : MessageLookupByLibrary.simpleMessage("Sua senha deve ter entre 8 e 64 caracteres."), + "auth__login__previous" : MessageLookupByLibrary.simpleMessage("Voltar"), + "auth__login__server_error" : MessageLookupByLibrary.simpleMessage("Ops... Estamos passando por problemas em nossos servidores. Por favor, tente novamente em alguns minutos."), + "auth__login__subtitle" : MessageLookupByLibrary.simpleMessage("Insira suas credenciais para continuar."), + "auth__login__title" : MessageLookupByLibrary.simpleMessage("Bem-vindo(a) de volta!"), + "auth__login__username_characters_error" : MessageLookupByLibrary.simpleMessage("O nome de usuĂĄrio sĂł pode conter caracteres alfanumĂ©ricos e underlines (_)."), + "auth__login__username_empty_error" : MessageLookupByLibrary.simpleMessage("O nome de usuĂĄrio Ă© necessĂĄrio."), + "auth__login__username_label" : MessageLookupByLibrary.simpleMessage("Nome de usuĂĄrio"), + "auth__login__username_length_error" : MessageLookupByLibrary.simpleMessage("O nome de usuĂĄrio nĂŁo pode ter mais de 30 caracteres."), + "auth__name_empty_error" : MessageLookupByLibrary.simpleMessage("O nome nĂŁo pode ficar vazio."), "auth__name_range_error" : m2, - "auth__password_empty_error" : MessageLookupByLibrary.simpleMessage("Du mĂ„ste ange ett lösenord."), + "auth__password_empty_error" : MessageLookupByLibrary.simpleMessage("A senha nĂŁo pode ficar vazia."), "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__reset_password_success_info" : MessageLookupByLibrary.simpleMessage("Sua senha foi alterada com sucesso"), + "auth__reset_password_success_title" : MessageLookupByLibrary.simpleMessage("Tudo pronto!"), + "auth__username_characters_error" : MessageLookupByLibrary.simpleMessage("Um nome de usuĂĄrio sĂł pode conter caracteres alfanumĂ©ricos e underlines (_)."), + "auth__username_empty_error" : MessageLookupByLibrary.simpleMessage("O nome de usuĂĄrio nĂŁo pode ficar vazio."), "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__about" : MessageLookupByLibrary.simpleMessage("Sobre"), + "community__actions_invite_people_title" : MessageLookupByLibrary.simpleMessage("Convide pessoas para a comunidade"), + "community__actions_manage_text" : MessageLookupByLibrary.simpleMessage("Gerenciar"), + "community__add_administrators_title" : MessageLookupByLibrary.simpleMessage("Adicionar administrador."), + "community__add_moderator_title" : MessageLookupByLibrary.simpleMessage("Adicionar moderador"), "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__admin_desc" : MessageLookupByLibrary.simpleMessage("Isso permitirĂĄ que o membro edite os detalhes da comunidade, administradores, moderadores e usuĂĄrios banidos."), + "community__administrated_communities" : MessageLookupByLibrary.simpleMessage("comunidades administradas"), + "community__administrated_community" : MessageLookupByLibrary.simpleMessage("comunidade administrada"), + "community__administrated_title" : MessageLookupByLibrary.simpleMessage("Administradas"), + "community__administrator_plural" : MessageLookupByLibrary.simpleMessage("administradores"), + "community__administrator_text" : MessageLookupByLibrary.simpleMessage("administrador"), + "community__administrator_you" : MessageLookupByLibrary.simpleMessage("VocĂȘ"), + "community__administrators_title" : MessageLookupByLibrary.simpleMessage("Administradores"), "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__ban_desc" : MessageLookupByLibrary.simpleMessage("Isso removerĂĄ o usuĂĄrio da comunidade e impedirĂĄ que ele entre novamente."), + "community__ban_user_title" : MessageLookupByLibrary.simpleMessage("Banir usuĂĄrio"), + "community__banned_user_text" : MessageLookupByLibrary.simpleMessage("usuĂĄrio banido"), + "community__banned_users_text" : MessageLookupByLibrary.simpleMessage("usuĂĄrios banidos"), + "community__banned_users_title" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios banidos"), + "community__button_rules" : MessageLookupByLibrary.simpleMessage("Regras"), + "community__button_staff" : MessageLookupByLibrary.simpleMessage("Equipe"), + "community__categories" : MessageLookupByLibrary.simpleMessage("categorias."), + "community__category" : MessageLookupByLibrary.simpleMessage("categoria."), + "community__communities" : MessageLookupByLibrary.simpleMessage("comunidades"), + "community__communities_all_text" : MessageLookupByLibrary.simpleMessage("Todas"), + "community__communities_no_category_found" : MessageLookupByLibrary.simpleMessage("Nenhuma categoria encontrada. Por favor, tente novamente em alguns minutos."), + "community__communities_refresh_text" : MessageLookupByLibrary.simpleMessage("Atualizar"), + "community__communities_title" : MessageLookupByLibrary.simpleMessage("Comunidades"), + "community__community" : MessageLookupByLibrary.simpleMessage("comunidade"), + "community__community_members" : MessageLookupByLibrary.simpleMessage("Membros da comunidade"), + "community__community_staff" : MessageLookupByLibrary.simpleMessage("Equipe da comunidade"), + "community__confirmation_title" : MessageLookupByLibrary.simpleMessage("Confirmação"), + "community__delete_confirmation" : MessageLookupByLibrary.simpleMessage("VocĂȘ tem certeza de que deseja excluir a comunidade?"), + "community__delete_desc" : MessageLookupByLibrary.simpleMessage("VocĂȘ nĂŁo poderĂĄ mais ver as publicaçÔes desta comunidade, nem publicar nela."), "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__favorite_action" : MessageLookupByLibrary.simpleMessage("Favoritar comunidade"), + "community__favorite_communities" : MessageLookupByLibrary.simpleMessage("comunidades favoritas"), + "community__favorite_community" : MessageLookupByLibrary.simpleMessage("comunidade favorita"), + "community__favorites_title" : MessageLookupByLibrary.simpleMessage("Favoritas"), + "community__invite_to_community_resource_plural" : MessageLookupByLibrary.simpleMessage("conexĂ”es e seguidores"), + "community__invite_to_community_resource_singular" : MessageLookupByLibrary.simpleMessage("conexĂŁo ou seguidor"), + "community__invite_to_community_title" : MessageLookupByLibrary.simpleMessage("Convidar para a comunidade"), + "community__invited_by_member" : MessageLookupByLibrary.simpleMessage("VocĂȘ deve ser convidado(a) por um membro."), + "community__invited_by_moderator" : MessageLookupByLibrary.simpleMessage("VocĂȘ deve ser convidado(a) por um moderador."), + "community__is_private" : MessageLookupByLibrary.simpleMessage("Essa comunidade Ă© privada."), + "community__join_communities_desc" : MessageLookupByLibrary.simpleMessage("Entre nas comunidades para ver esta aba ganhar vida!"), + "community__join_community" : MessageLookupByLibrary.simpleMessage("Entrar"), + "community__joined_communities" : MessageLookupByLibrary.simpleMessage("comunidades ingressadas"), + "community__joined_community" : MessageLookupByLibrary.simpleMessage("comunidade ingressada"), + "community__joined_title" : MessageLookupByLibrary.simpleMessage("Ingressadas"), + "community__leave_community" : MessageLookupByLibrary.simpleMessage("Sair"), + "community__leave_confirmation" : MessageLookupByLibrary.simpleMessage("VocĂȘ tem certeza de que deseja sair da comunidade?"), + "community__leave_desc" : MessageLookupByLibrary.simpleMessage("VocĂȘ nĂŁo poderĂĄ mais ver as publicaçÔes desta comunidade, nem publicar nela."), + "community__manage_add_favourite" : MessageLookupByLibrary.simpleMessage("Adicionar a comunidade Ă s suas favoritas"), + "community__manage_admins_desc" : MessageLookupByLibrary.simpleMessage("Ver, adicionar e remover administradores."), + "community__manage_admins_title" : MessageLookupByLibrary.simpleMessage("Administradores"), + "community__manage_banned_desc" : MessageLookupByLibrary.simpleMessage("Ver, adicionar e remover usuĂĄrios banidos."), + "community__manage_banned_title" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios banidos"), + "community__manage_closed_posts_desc" : MessageLookupByLibrary.simpleMessage("Ver e gerenciar os posts fechados"), + "community__manage_closed_posts_title" : MessageLookupByLibrary.simpleMessage("Posts fechados"), + "community__manage_delete_desc" : MessageLookupByLibrary.simpleMessage("Excluir a comunidade, para sempre."), + "community__manage_delete_title" : MessageLookupByLibrary.simpleMessage("Excluir comunidade"), + "community__manage_details_desc" : MessageLookupByLibrary.simpleMessage("Alterar tĂ­tulo, nome, avatar, foto de capa e mais."), + "community__manage_details_title" : MessageLookupByLibrary.simpleMessage("Detalhes"), + "community__manage_invite_desc" : MessageLookupByLibrary.simpleMessage("Convide suas conexĂ”es e seguidores para se juntar Ă  comunidade."), + "community__manage_invite_title" : MessageLookupByLibrary.simpleMessage("Convidar pessoas"), + "community__manage_leave_desc" : MessageLookupByLibrary.simpleMessage("Sair da comunidade."), + "community__manage_leave_title" : MessageLookupByLibrary.simpleMessage("Sair da comunidade"), + "community__manage_mod_reports_desc" : MessageLookupByLibrary.simpleMessage("Revise as denĂșncias Ă  moderação da comunidade."), + "community__manage_mod_reports_title" : MessageLookupByLibrary.simpleMessage("Reportado Ă  moderação"), + "community__manage_mods_desc" : MessageLookupByLibrary.simpleMessage("Ver, adicionar e remover moderadores."), + "community__manage_mods_title" : MessageLookupByLibrary.simpleMessage("Moderadores"), + "community__manage_remove_favourite" : MessageLookupByLibrary.simpleMessage("Remover a comunidade de suas favoritas"), + "community__manage_title" : MessageLookupByLibrary.simpleMessage("Gerenciar comunidade"), + "community__member" : MessageLookupByLibrary.simpleMessage("membro"), + "community__member_capitalized" : MessageLookupByLibrary.simpleMessage("Membro"), + "community__member_plural" : MessageLookupByLibrary.simpleMessage("membros"), + "community__members_capitalized" : MessageLookupByLibrary.simpleMessage("Membros"), + "community__moderated_communities" : MessageLookupByLibrary.simpleMessage("comunidades moderadas"), + "community__moderated_community" : MessageLookupByLibrary.simpleMessage("comunidade moderada"), + "community__moderated_title" : MessageLookupByLibrary.simpleMessage("Moderadas"), "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__moderator_desc" : MessageLookupByLibrary.simpleMessage("Isso permitirĂĄ que o membro edite os detalhes da comunidade, moderadores e usuĂĄrios banidos."), + "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("VocĂȘ"), + "community__name_characters_error" : MessageLookupByLibrary.simpleMessage("O nome sĂł pode conter caracteres alfanumĂ©ricos e underlines (_)."), + "community__name_empty_error" : MessageLookupByLibrary.simpleMessage("O nome nĂŁo pode ficar vazio."), "community__name_range_error" : m10, - "community__no" : MessageLookupByLibrary.simpleMessage("Nej"), + "community__no" : MessageLookupByLibrary.simpleMessage("NĂŁo"), "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__post_plural" : MessageLookupByLibrary.simpleMessage("posts"), + "community__post_singular" : MessageLookupByLibrary.simpleMessage("post"), + "community__posts" : MessageLookupByLibrary.simpleMessage("Posts"), + "community__refresh_text" : MessageLookupByLibrary.simpleMessage("Atualizar"), + "community__refreshing" : MessageLookupByLibrary.simpleMessage("Atualizando a comunidade"), + "community__rules_empty_error" : MessageLookupByLibrary.simpleMessage("As regras nĂŁo podem ficar vazias."), "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__rules_text" : MessageLookupByLibrary.simpleMessage("Regras"), + "community__rules_title" : MessageLookupByLibrary.simpleMessage("Regras da comunidade"), + "community__save_community_create_community" : MessageLookupByLibrary.simpleMessage("Criar comunidade"), + "community__save_community_create_text" : MessageLookupByLibrary.simpleMessage("Criar"), + "community__save_community_edit_community" : MessageLookupByLibrary.simpleMessage("Editar comunidade"), + "community__save_community_label_title" : MessageLookupByLibrary.simpleMessage("TĂ­tulo"), + "community__save_community_label_title_hint_text" : MessageLookupByLibrary.simpleMessage("ex: Viagem, Fotografia, Jogos."), + "community__save_community_name_category" : MessageLookupByLibrary.simpleMessage("Categoria"), + "community__save_community_name_label_color" : MessageLookupByLibrary.simpleMessage("Cor"), + "community__save_community_name_label_color_hint_text" : MessageLookupByLibrary.simpleMessage("(Toque para alterar)"), + "community__save_community_name_label_desc_optional" : MessageLookupByLibrary.simpleMessage("Descrição · Opcional"), + "community__save_community_name_label_desc_optional_hint_text" : MessageLookupByLibrary.simpleMessage("Sobre o que Ă© a sua comunidade?"), + "community__save_community_name_label_member_adjective" : MessageLookupByLibrary.simpleMessage("Adjetivo para membro · Opcional"), + "community__save_community_name_label_member_adjective_hint_text" : MessageLookupByLibrary.simpleMessage("ex: viajante, fotĂłgrafo, gamer."), + "community__save_community_name_label_members_adjective" : MessageLookupByLibrary.simpleMessage("Adjetivo para membros · Opcional"), + "community__save_community_name_label_members_adjective_hint_text" : MessageLookupByLibrary.simpleMessage("ex: viajantes, fotĂłgrafos, gamers."), + "community__save_community_name_label_rules_optional" : MessageLookupByLibrary.simpleMessage("Regras · Opcional"), + "community__save_community_name_label_rules_optional_hint_text" : MessageLookupByLibrary.simpleMessage("HĂĄ algo que vocĂȘ gostaria que seus usuĂĄrios soubessem?"), + "community__save_community_name_label_type" : MessageLookupByLibrary.simpleMessage("Tipo"), + "community__save_community_name_label_type_hint_text" : MessageLookupByLibrary.simpleMessage("(Toque para alterar)"), + "community__save_community_name_member_invites" : MessageLookupByLibrary.simpleMessage("Convites de membros"), + "community__save_community_name_member_invites_subtitle" : MessageLookupByLibrary.simpleMessage("Membros podem convidar pessoas para a comunidade"), "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__save_community_name_title" : MessageLookupByLibrary.simpleMessage("Nome"), + "community__save_community_name_title_hint_text" : MessageLookupByLibrary.simpleMessage(" ex: viagem, fotografia, jogos."), + "community__save_community_save_text" : MessageLookupByLibrary.simpleMessage("Salvar"), + "community__title_empty_error" : MessageLookupByLibrary.simpleMessage("O tĂ­tulo nĂŁo pode ficar vazio."), "community__title_range_error" : m16, - "community__trending_in_all" : MessageLookupByLibrary.simpleMessage("Trendiga frĂ„n alla kategorier"), + "community__trending_in_all" : MessageLookupByLibrary.simpleMessage("Em alta em todas as categorias"), "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"), - "contextual_account_search_box__suggestions" : MessageLookupByLibrary.simpleMessage("Förslag"), - "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"), + "community__trending_none_found" : MessageLookupByLibrary.simpleMessage("Nenhuma comunidade em alta encontrada. Tente novamente em alguns minutos."), + "community__trending_refresh" : MessageLookupByLibrary.simpleMessage("Atualizar"), + "community__type_private" : MessageLookupByLibrary.simpleMessage("Privada"), + "community__type_public" : MessageLookupByLibrary.simpleMessage("PĂșblica"), + "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"), + "drawer__account_settings_change_password" : MessageLookupByLibrary.simpleMessage("Alterar Senha"), + "drawer__account_settings_delete_account" : MessageLookupByLibrary.simpleMessage("Excluir a minha conta"), "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"), + "drawer__account_settings_language_text" : MessageLookupByLibrary.simpleMessage("Idioma"), + "drawer__account_settings_notifications" : MessageLookupByLibrary.simpleMessage("NotificaçÔes"), + "drawer__app_account_text" : MessageLookupByLibrary.simpleMessage("Aplicativo & Conta"), + "drawer__application_settings" : MessageLookupByLibrary.simpleMessage("ConfiguraçÔes do aplicativo"), + "drawer__connections" : MessageLookupByLibrary.simpleMessage("Minhas conexĂ”es"), + "drawer__customize" : MessageLookupByLibrary.simpleMessage("Personalizar"), + "drawer__global_moderation" : MessageLookupByLibrary.simpleMessage("Moderação global"), + "drawer__help" : MessageLookupByLibrary.simpleMessage("Suporte e Feedback"), + "drawer__lists" : MessageLookupByLibrary.simpleMessage("Minhas listas"), + "drawer__logout" : MessageLookupByLibrary.simpleMessage("Sair"), + "drawer__main_title" : MessageLookupByLibrary.simpleMessage("Minha Okuna"), + "drawer__menu_title" : MessageLookupByLibrary.simpleMessage("Menu"), + "drawer__my_circles" : MessageLookupByLibrary.simpleMessage("Meus cĂ­rculos"), + "drawer__my_followers" : MessageLookupByLibrary.simpleMessage("Meus seguidores"), + "drawer__my_following" : MessageLookupByLibrary.simpleMessage("Meus seguidos"), + "drawer__my_invites" : MessageLookupByLibrary.simpleMessage("Meus convites"), + "drawer__my_lists" : MessageLookupByLibrary.simpleMessage("Minhas listas"), + "drawer__my_mod_penalties" : MessageLookupByLibrary.simpleMessage("Minhas penalidades"), + "drawer__my_pending_mod_tasks" : MessageLookupByLibrary.simpleMessage("Minhas tarefas de moderação pendentes"), + "drawer__profile" : MessageLookupByLibrary.simpleMessage("Perfil"), + "drawer__settings" : MessageLookupByLibrary.simpleMessage("ConfiguraçÔes"), + "drawer__themes" : MessageLookupByLibrary.simpleMessage("Temas"), + "drawer__useful_links_guidelines" : MessageLookupByLibrary.simpleMessage("Diretrizes da Okuna"), + "drawer__useful_links_guidelines_bug_tracker" : MessageLookupByLibrary.simpleMessage("Rastreador de bugs"), + "drawer__useful_links_guidelines_bug_tracker_desc" : MessageLookupByLibrary.simpleMessage("Reportar um bug ou votar em bugs existentes"), + "drawer__useful_links_guidelines_desc" : MessageLookupByLibrary.simpleMessage("As diretrizes que todos esperamos seguir para uma coexistĂȘncia saudĂĄvel e amigĂĄvel."), + "drawer__useful_links_guidelines_feature_requests" : MessageLookupByLibrary.simpleMessage("SugestĂ”es de recursos"), + "drawer__useful_links_guidelines_feature_requests_desc" : MessageLookupByLibrary.simpleMessage("Sugerir um recurso ou votar em sugestĂ”es existentes"), + "drawer__useful_links_guidelines_github" : MessageLookupByLibrary.simpleMessage("Projeto no Github"), + "drawer__useful_links_guidelines_github_desc" : MessageLookupByLibrary.simpleMessage("DĂȘ uma olhada no que estamos trabalhando atualmente"), + "drawer__useful_links_guidelines_handbook" : MessageLookupByLibrary.simpleMessage("Manual da Okuna"), + "drawer__useful_links_guidelines_handbook_desc" : MessageLookupByLibrary.simpleMessage("Um livro com tudo o que hĂĄ para saber sobre usar a plataforma"), + "drawer__useful_links_slack_channel" : MessageLookupByLibrary.simpleMessage("Canal da comunidade no Slack"), + "drawer__useful_links_slack_channel_desc" : MessageLookupByLibrary.simpleMessage("Um lugar para discutir tudo sobre a Okuna"), + "drawer__useful_links_support" : MessageLookupByLibrary.simpleMessage("Apoie a Okuna"), + "drawer__useful_links_support_desc" : MessageLookupByLibrary.simpleMessage("Encontre uma maneira de nos apoiar em nossa jornada!"), + "drawer__useful_links_title" : MessageLookupByLibrary.simpleMessage("Links Ășteis"), + "error__no_internet_connection" : MessageLookupByLibrary.simpleMessage("Sem conexĂŁo com a internet"), + "error__unknown_error" : MessageLookupByLibrary.simpleMessage("Erro desconhecido"), + "moderation__actions_chat_with_team" : MessageLookupByLibrary.simpleMessage("Converse com a equipe"), + "moderation__actions_review" : MessageLookupByLibrary.simpleMessage("Revisar"), + "moderation__category_text" : MessageLookupByLibrary.simpleMessage("Categoria"), + "moderation__community_moderated_objects" : MessageLookupByLibrary.simpleMessage("Itens moderados por comunidades"), + "moderation__community_review_approve" : MessageLookupByLibrary.simpleMessage("Aprovar"), + "moderation__community_review_item_verified" : MessageLookupByLibrary.simpleMessage("Este item foi verificado"), + "moderation__community_review_object" : MessageLookupByLibrary.simpleMessage("Objeto"), + "moderation__community_review_reject" : MessageLookupByLibrary.simpleMessage("rejeitar"), + "moderation__community_review_title" : MessageLookupByLibrary.simpleMessage("Revisar objeto moderado"), + "moderation__confirm_report_community_reported" : MessageLookupByLibrary.simpleMessage("Comunidade denunciada"), + "moderation__confirm_report_item_reported" : MessageLookupByLibrary.simpleMessage("Item denunciado"), + "moderation__confirm_report_post_comment_reported" : MessageLookupByLibrary.simpleMessage("ComentĂĄrio denunciado"), + "moderation__confirm_report_post_reported" : MessageLookupByLibrary.simpleMessage("Publicação denunciada"), + "moderation__confirm_report_provide_details" : MessageLookupByLibrary.simpleMessage("VocĂȘ pode fornecer mais detalhes relevantes para a denĂșncia?"), + "moderation__confirm_report_provide_happen_next" : MessageLookupByLibrary.simpleMessage("Aqui estĂĄ o que acontecerĂĄ a seguir:"), + "moderation__confirm_report_provide_happen_next_desc" : MessageLookupByLibrary.simpleMessage("- Sua denĂșncia serĂĄ enviada anonimamente. \n- Se vocĂȘ estiver denunciando uma publicação ou comentĂĄrio, a denĂșncia serĂĄ enviada Ă  equipe da Okuna e aos moderadores da comunidade (se aplicĂĄvel), e o conteĂșdo denunciado ficarĂĄ oculto do seu feed. \n- Se vocĂȘ estiver denunciando uma conta ou comunidade, a denĂșncia serĂĄ enviada para a equipe da Okuna. \n- Vamos analisar a denĂșncia e, se aprovada, o conteĂșdo serĂĄ excluĂ­do e as penalidades serĂŁo aplicadas Ă s pessoas envolvidas, desde uma suspensĂŁo temporĂĄria atĂ© a exclusĂŁo da conta, dependendo da gravidade da transgressĂŁo. \n- Se a denĂșncia for apenas uma tentativa de prejudicar um membro ou comunidade que nĂŁo cometeu a infração apontada por vocĂȘ, as penalidades serĂŁo aplicadas a vocĂȘ. \n"), + "moderation__confirm_report_provide_optional_hint_text" : MessageLookupByLibrary.simpleMessage("Digite aqui..."), + "moderation__confirm_report_provide_optional_info" : MessageLookupByLibrary.simpleMessage("(Opcional)"), + "moderation__confirm_report_submit" : MessageLookupByLibrary.simpleMessage("Eu entendo, envie."), + "moderation__confirm_report_title" : MessageLookupByLibrary.simpleMessage("Enviar denĂșncia"), + "moderation__confirm_report_user_reported" : MessageLookupByLibrary.simpleMessage("UsuĂĄrio denunciado"), + "moderation__description_text" : MessageLookupByLibrary.simpleMessage("Descrição"), + "moderation__filters_apply" : MessageLookupByLibrary.simpleMessage("Aplicar filtros"), + "moderation__filters_other" : MessageLookupByLibrary.simpleMessage("Outros"), + "moderation__filters_reset" : MessageLookupByLibrary.simpleMessage("Redefinir"), "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__filters_title" : MessageLookupByLibrary.simpleMessage("Filtros de moderação"), + "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("Itens moderados globalmente"), + "moderation__moderated_object_false_text" : MessageLookupByLibrary.simpleMessage("Falso"), + "moderation__moderated_object_reports_count" : MessageLookupByLibrary.simpleMessage("NĂșmero de denĂșncias"), "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__moderated_object_title" : MessageLookupByLibrary.simpleMessage("Objeto"), + "moderation__moderated_object_true_text" : MessageLookupByLibrary.simpleMessage("Verdadeiro"), + "moderation__moderated_object_verified" : MessageLookupByLibrary.simpleMessage("Verificado"), + "moderation__moderated_object_verified_by_staff" : MessageLookupByLibrary.simpleMessage("Verificado pela equipe da Okuna"), + "moderation__my_moderation_penalties_resouce_singular" : MessageLookupByLibrary.simpleMessage("penalidade de moderação"), + "moderation__my_moderation_penalties_resource_plural" : MessageLookupByLibrary.simpleMessage("penalidades de moderação"), + "moderation__my_moderation_penalties_title" : MessageLookupByLibrary.simpleMessage("Penalidades de moderação"), + "moderation__my_moderation_tasks_title" : MessageLookupByLibrary.simpleMessage("Tarefas de moderação pendentes"), + "moderation__no_description_text" : MessageLookupByLibrary.simpleMessage("Sem descrição"), "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__pending_moderation_tasks_plural" : MessageLookupByLibrary.simpleMessage("tarefas de moderação pendentes"), + "moderation__pending_moderation_tasks_singular" : MessageLookupByLibrary.simpleMessage("tarefa de moderação pendente"), + "moderation__report_account_text" : MessageLookupByLibrary.simpleMessage("Denunciar conta"), + "moderation__report_comment_text" : MessageLookupByLibrary.simpleMessage("Denunciar comentĂĄrio"), + "moderation__report_community_text" : MessageLookupByLibrary.simpleMessage("Denunciar comunidade"), + "moderation__report_post_text" : MessageLookupByLibrary.simpleMessage("Denunciar publicação"), + "moderation__reporter_text" : MessageLookupByLibrary.simpleMessage("Denunciante"), + "moderation__reports_preview_resource_reports" : MessageLookupByLibrary.simpleMessage("denĂșncias"), + "moderation__reports_preview_title" : MessageLookupByLibrary.simpleMessage("DenĂșncias"), "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."), + "moderation__tap_to_retry" : MessageLookupByLibrary.simpleMessage("Toque para tentar carregar os itens novamente"), + "moderation__update_category_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "moderation__update_category_title" : MessageLookupByLibrary.simpleMessage("Atualizar categoria"), + "moderation__update_description_report_desc" : MessageLookupByLibrary.simpleMessage("Descrição da denĂșncia"), + "moderation__update_description_report_hint_text" : MessageLookupByLibrary.simpleMessage("ex: O motivo da denĂșncia Ă©..."), + "moderation__update_description_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "moderation__update_description_title" : MessageLookupByLibrary.simpleMessage("Editar descrição"), + "moderation__update_status_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "moderation__update_status_title" : MessageLookupByLibrary.simpleMessage("Atualizar status"), + "moderation__you_have_reported_account_text" : MessageLookupByLibrary.simpleMessage("VocĂȘ denunciou esta conta"), + "moderation__you_have_reported_comment_text" : MessageLookupByLibrary.simpleMessage("VocĂȘ denunciou este comentĂĄrio"), + "moderation__you_have_reported_community_text" : MessageLookupByLibrary.simpleMessage("VocĂȘ denunciou esta comunidade"), + "moderation__you_have_reported_post_text" : MessageLookupByLibrary.simpleMessage("VocĂȘ denunciou esta publicação"), + "notifications__accepted_connection_request_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] aceitou seu pedido de conexĂŁo."), "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_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguĂ©m comentar uma das suas publicaçÔes ou uma que vocĂȘ tambĂ©m comentou."), + "notifications__comment_reaction_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguĂ©m reage a um dos seus comentĂĄrios."), + "notifications__comment_reaction_title" : MessageLookupByLibrary.simpleMessage("ReaçÔes a comentĂĄrios"), + "notifications__comment_reply_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguĂ©m responder a um dos seus comentĂĄrios ou a um que vocĂȘ tambĂ©m respondeu."), "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" : MessageLookupByLibrary.simpleMessage("[name] [username] nĂ€mnde dig i en kommentar."), - "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__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ĂȘ"), + "notifications__connection_request_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] quer se conectar com vocĂȘ."), + "notifications__connection_title" : MessageLookupByLibrary.simpleMessage("Pedidos de conexĂŁo"), + "notifications__follow_desc" : MessageLookupByLibrary.simpleMessage("Seja notificado(a) quando alguĂ©m começar a segui-lo(a)"), + "notifications__follow_title" : MessageLookupByLibrary.simpleMessage("Seguidores"), + "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" : MessageLookupByLibrary.simpleMessage("[name] [username] mencionou vocĂȘ em um comentĂĄrio."), + "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, - "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__action_comment" : MessageLookupByLibrary.simpleMessage("Comentar"), + "post__action_react" : MessageLookupByLibrary.simpleMessage("Reagir"), + "post__action_reply" : MessageLookupByLibrary.simpleMessage("Responder"), + "post__actions_comment_deleted" : MessageLookupByLibrary.simpleMessage("ComentĂĄrio excluĂ­do"), + "post__actions_delete" : MessageLookupByLibrary.simpleMessage("Excluir post"), + "post__actions_delete_comment" : MessageLookupByLibrary.simpleMessage("Excluir comentĂĄrio"), + "post__actions_deleted" : MessageLookupByLibrary.simpleMessage("Post excluĂ­do"), + "post__actions_edit_comment" : MessageLookupByLibrary.simpleMessage("Editar comentĂĄrio"), + "post__actions_report_text" : MessageLookupByLibrary.simpleMessage("Denunciar"), + "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_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__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..."), + "post__comment_required_error" : MessageLookupByLibrary.simpleMessage("O comentĂĄrio nĂŁo pode ficar vazio."), + "post__commenter_expanded_edit_comment" : MessageLookupByLibrary.simpleMessage("Editar comentĂĄrio"), + "post__commenter_expanded_join_conversation" : MessageLookupByLibrary.simpleMessage("Entrar na conversa..."), + "post__commenter_expanded_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "post__commenter_expanded_start_conversation" : MessageLookupByLibrary.simpleMessage("Começar uma conversa..."), + "post__commenter_post_text" : MessageLookupByLibrary.simpleMessage("Enviar"), + "post__commenter_write_something" : MessageLookupByLibrary.simpleMessage("Escreva algo..."), + "post__comments_closed_post" : MessageLookupByLibrary.simpleMessage("Post fechado"), + "post__comments_disabled" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios desativados"), + "post__comments_disabled_message" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios desativados no post"), + "post__comments_enabled_message" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios ativados no post"), + "post__comments_header_be_the_first_comments" : MessageLookupByLibrary.simpleMessage("Mande o primeiro comentĂĄrio"), + "post__comments_header_be_the_first_replies" : MessageLookupByLibrary.simpleMessage("Mande a primeira resposta"), + "post__comments_header_newer" : MessageLookupByLibrary.simpleMessage("Mais recentes"), + "post__comments_header_newest_comments" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios mais recentes"), + "post__comments_header_newest_replies" : MessageLookupByLibrary.simpleMessage("Novas respostas"), + "post__comments_header_older" : MessageLookupByLibrary.simpleMessage("Mais antigos"), + "post__comments_header_oldest_comments" : MessageLookupByLibrary.simpleMessage("ComentĂĄrios mais antigos"), + "post__comments_header_oldest_replies" : MessageLookupByLibrary.simpleMessage("Respostas mais antigas"), + "post__comments_header_see_newest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentĂĄrios mais recentes"), + "post__comments_header_see_newest_replies" : MessageLookupByLibrary.simpleMessage("Ver respostas mais recentes"), + "post__comments_header_see_oldest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentĂĄrios mais antigos"), + "post__comments_header_see_oldest_replies" : MessageLookupByLibrary.simpleMessage("Ver respostas mais antigas"), + "post__comments_header_view_newest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentĂĄrios mais recentes"), + "post__comments_header_view_newest_replies" : MessageLookupByLibrary.simpleMessage("Ver respostas mais recentes"), + "post__comments_header_view_oldest_comments" : MessageLookupByLibrary.simpleMessage("Ver comentĂĄrios mais antigos"), + "post__comments_header_view_oldest_replies" : MessageLookupByLibrary.simpleMessage("Ver respostas mais antigas"), + "post__comments_page_no_more_replies_to_load" : MessageLookupByLibrary.simpleMessage("Sem mais respostas para carregar"), + "post__comments_page_no_more_to_load" : MessageLookupByLibrary.simpleMessage("Sem mais comentĂĄrios para carregar"), + "post__comments_page_replies_title" : MessageLookupByLibrary.simpleMessage("Respostas"), + "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__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__create_new" : MessageLookupByLibrary.simpleMessage("Novo post"), + "post__create_next" : MessageLookupByLibrary.simpleMessage("Avançar"), + "post__create_photo" : MessageLookupByLibrary.simpleMessage("Imagem"), + "post__disable_post_comments" : MessageLookupByLibrary.simpleMessage("Desativar comentĂĄrios do post"), + "post__edit_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "post__edit_title" : MessageLookupByLibrary.simpleMessage("Editar publicação"), + "post__enable_post_comments" : MessageLookupByLibrary.simpleMessage("Ativar comentĂĄrios do post"), + "post__have_not_shared_anything" : MessageLookupByLibrary.simpleMessage("VocĂȘ ainda nĂŁo compartilhou nada."), + "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__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__open_post" : MessageLookupByLibrary.simpleMessage("Abrir post"), + "post__post_closed" : MessageLookupByLibrary.simpleMessage("Post fechado "), + "post__post_opened" : MessageLookupByLibrary.simpleMessage("Post aberto"), + "post__post_reactions_title" : MessageLookupByLibrary.simpleMessage("ReaçÔes ao post"), + "post__profile_counts_follower" : MessageLookupByLibrary.simpleMessage(" Seguidor"), + "post__profile_counts_followers" : MessageLookupByLibrary.simpleMessage(" Seguidores"), + "post__profile_counts_following" : MessageLookupByLibrary.simpleMessage(" Seguindo"), + "post__profile_counts_post" : MessageLookupByLibrary.simpleMessage(" Post"), + "post__profile_counts_posts" : MessageLookupByLibrary.simpleMessage(" Posts"), + "post__reaction_list_tap_retry" : MessageLookupByLibrary.simpleMessage("Toque para tentar carregar as reaçÔes novamente."), + "post__search_circles" : MessageLookupByLibrary.simpleMessage("Procurar cĂ­rculos..."), + "post__share" : MessageLookupByLibrary.simpleMessage("Compartilhar"), + "post__share_community" : MessageLookupByLibrary.simpleMessage("Compartilhar"), + "post__share_community_desc" : MessageLookupByLibrary.simpleMessage("Compartilhe a publicação com uma comunidade da qual vocĂȘ faz parte."), + "post__share_community_title" : MessageLookupByLibrary.simpleMessage("Uma comunidade"), + "post__share_to" : MessageLookupByLibrary.simpleMessage("Compartilhar em"), + "post__share_to_circles" : MessageLookupByLibrary.simpleMessage("Compartilhar nos cĂ­rculos"), + "post__share_to_community" : MessageLookupByLibrary.simpleMessage("Compartilhar na comunidade"), + "post__shared_privately_on" : MessageLookupByLibrary.simpleMessage("Compartilhado nos"), + "post__sharing_post_to" : MessageLookupByLibrary.simpleMessage("Compartilhando post em"), + "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("nu"), + "post__time_short_minutes" : MessageLookupByLibrary.simpleMessage("min"), + "post__time_short_now_text" : MessageLookupByLibrary.simpleMessage("agora"), "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_one_minute" : MessageLookupByLibrary.simpleMessage("1min"), + "post__time_short_one_week" : MessageLookupByLibrary.simpleMessage("1sem"), + "post__time_short_one_year" : MessageLookupByLibrary.simpleMessage("1a"), "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__time_short_weeks" : MessageLookupByLibrary.simpleMessage("sem"), + "post__time_short_years" : MessageLookupByLibrary.simpleMessage("a"), + "post__timeline_posts_all_loaded" : MessageLookupByLibrary.simpleMessage("🎉 Todas as publicaçÔes carregadas"), + "post__timeline_posts_default_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Tente atualizar a linha do tempo."), + "post__timeline_posts_default_drhoo_title" : MessageLookupByLibrary.simpleMessage("Algo nĂŁo estĂĄ certo."), + "post__timeline_posts_failed_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Tente novamente em alguns segundos"), + "post__timeline_posts_failed_drhoo_title" : MessageLookupByLibrary.simpleMessage("NĂŁo foi possĂ­vel carregar sua linha do tempo."), + "post__timeline_posts_no_more_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Siga usuĂĄrios ou junte-se a uma comunidade para começar!"), + "post__timeline_posts_no_more_drhoo_title" : MessageLookupByLibrary.simpleMessage("Sua linha do tempo estĂĄ vazia."), + "post__timeline_posts_refresh_posts" : MessageLookupByLibrary.simpleMessage("Atualizar publicaçÔes"), + "post__timeline_posts_refreshing_drhoo_subtitle" : MessageLookupByLibrary.simpleMessage("Carregando sua linha do tempo."), + "post__timeline_posts_refreshing_drhoo_title" : MessageLookupByLibrary.simpleMessage("Aguenta aĂ­!"), + "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__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."), + "post__world_circle_name" : MessageLookupByLibrary.simpleMessage("Mundo"), + "post__you_shared_with" : MessageLookupByLibrary.simpleMessage("VocĂȘ compartilhou com"), + "user__add_account_done" : MessageLookupByLibrary.simpleMessage("ConcluĂ­do"), + "user__add_account_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "user__add_account_success" : MessageLookupByLibrary.simpleMessage("Sucesso"), + "user__add_account_to_lists" : MessageLookupByLibrary.simpleMessage("Adicionar conta Ă  lista"), + "user__add_account_update_account_lists" : MessageLookupByLibrary.simpleMessage("Atualizar listas de contas"), + "user__add_account_update_lists" : MessageLookupByLibrary.simpleMessage("Atualizar listas"), + "user__billion_postfix" : MessageLookupByLibrary.simpleMessage("b"), + "user__block_user" : MessageLookupByLibrary.simpleMessage("Bloquear usuĂĄrio"), + "user__change_email_email_text" : MessageLookupByLibrary.simpleMessage("Email"), + "user__change_email_error" : MessageLookupByLibrary.simpleMessage("Este email jĂĄ estĂĄ registrado"), + "user__change_email_hint_text" : MessageLookupByLibrary.simpleMessage("Digite seu novo email"), + "user__change_email_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "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__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__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"), + "user__clear_app_preferences_title" : MessageLookupByLibrary.simpleMessage("Limpar preferĂȘncias"), + "user__clear_application_cache_desc" : MessageLookupByLibrary.simpleMessage("Limpar cache de posts, contas, imagens e mais."), + "user__clear_application_cache_failure" : MessageLookupByLibrary.simpleMessage("NĂŁo foi possĂ­vel limpar o cache"), + "user__clear_application_cache_success" : MessageLookupByLibrary.simpleMessage("Cache limpo com sucesso"), + "user__clear_application_cache_text" : MessageLookupByLibrary.simpleMessage("Limpar cache"), + "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_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_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_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__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."), + "user__confirm_guidelines_reject_delete_account" : MessageLookupByLibrary.simpleMessage("Excluir a minha conta"), + "user__confirm_guidelines_reject_go_back" : MessageLookupByLibrary.simpleMessage("Voltar"), + "user__confirm_guidelines_reject_info" : MessageLookupByLibrary.simpleMessage("VocĂȘ nĂŁo pode usar a Okuna atĂ© aceitar as diretrizes."), + "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_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__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"), + "user__connection_pending" : MessageLookupByLibrary.simpleMessage("Pendente"), + "user__connections_circle_delete" : MessageLookupByLibrary.simpleMessage("Excluir"), + "user__connections_header_circle_desc" : MessageLookupByLibrary.simpleMessage("O cĂ­rculo com todas as suas conexĂ”es Ă© adicionado."), + "user__connections_header_users" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios"), + "user__delete_account_confirmation_desc" : MessageLookupByLibrary.simpleMessage("Tem certeza de que deseja excluir sua conta?"), + "user__delete_account_confirmation_desc_info" : MessageLookupByLibrary.simpleMessage("Esta Ă© uma ação permanente e nĂŁo pode ser desfeita."), + "user__delete_account_confirmation_goodbye" : MessageLookupByLibrary.simpleMessage("Adeus 😱"), + "user__delete_account_confirmation_no" : MessageLookupByLibrary.simpleMessage("NĂŁo"), + "user__delete_account_confirmation_title" : MessageLookupByLibrary.simpleMessage("Confirmação"), + "user__delete_account_confirmation_yes" : MessageLookupByLibrary.simpleMessage("Sim"), + "user__delete_account_current_pwd" : MessageLookupByLibrary.simpleMessage("Senha atual"), + "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_success" : MessageLookupByLibrary.simpleMessage("Er kontakt har brutits"), + "user__disconnect_from_user_success" : MessageLookupByLibrary.simpleMessage("Desconectado com sucesso"), "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_delete" : MessageLookupByLibrary.simpleMessage("Excluir"), + "user__edit_profile_followers_count" : MessageLookupByLibrary.simpleMessage("NĂșmero de seguidores"), + "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_save_text" : MessageLookupByLibrary.simpleMessage("Spara"), - "user__edit_profile_title" : MessageLookupByLibrary.simpleMessage("Redigera profil"), + "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_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__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__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_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_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__follow_lists_search_for" : MessageLookupByLibrary.simpleMessage("Procurar por uma lista..."), + "user__follow_lists_title" : MessageLookupByLibrary.simpleMessage("Minhas 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("usuĂĄrios seguidos"), + "user__following_text" : MessageLookupByLibrary.simpleMessage("Seguindo"), "user__follows_list_accounts_count" : m40, - "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_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__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__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__invites_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("accepterad inbjudan"), - "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("accepterade inbjudningar"), - "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Accepterade"), - "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_accepted_group_item_name" : MessageLookupByLibrary.simpleMessage("convite aceito"), + "user__invites_accepted_group_name" : MessageLookupByLibrary.simpleMessage("convites aceitos"), + "user__invites_accepted_title" : MessageLookupByLibrary.simpleMessage("Aceitos"), + "user__invites_create_create" : MessageLookupByLibrary.simpleMessage("Criar"), + "user__invites_create_create_title" : MessageLookupByLibrary.simpleMessage("Criar convite"), + "user__invites_create_edit_title" : MessageLookupByLibrary.simpleMessage("Editar convite"), + "user__invites_create_name_hint" : MessageLookupByLibrary.simpleMessage("ex: JoĂŁozinho"), + "user__invites_create_name_title" : MessageLookupByLibrary.simpleMessage("Apelido"), + "user__invites_create_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "user__invites_delete" : MessageLookupByLibrary.simpleMessage("Excluir"), + "user__invites_edit_text" : MessageLookupByLibrary.simpleMessage("Editar"), + "user__invites_email_hint" : MessageLookupByLibrary.simpleMessage("ex: joaozinho@email.com"), + "user__invites_email_invite_text" : MessageLookupByLibrary.simpleMessage("Convite por email"), + "user__invites_email_send_text" : MessageLookupByLibrary.simpleMessage("Enviar"), + "user__invites_email_sent_text" : MessageLookupByLibrary.simpleMessage("Email de convite enviado"), + "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_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_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_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__invites_pending_group_item_name" : MessageLookupByLibrary.simpleMessage("convite pendente"), + "user__invites_pending_group_name" : MessageLookupByLibrary.simpleMessage("convites pendentes"), + "user__invites_refresh" : MessageLookupByLibrary.simpleMessage("Atualizar"), + "user__invites_share_email" : MessageLookupByLibrary.simpleMessage("Compartilhe o convite por email"), + "user__invites_share_email_desc" : MessageLookupByLibrary.simpleMessage("Enviaremos um email de convite com instruçÔes em seu nome"), + "user__invites_share_yourself" : MessageLookupByLibrary.simpleMessage("Compartilhe o convite vocĂȘ mesmo"), + "user__invites_share_yourself_desc" : MessageLookupByLibrary.simpleMessage("Escolha um app de mensagens, etc."), + "user__invites_title" : MessageLookupByLibrary.simpleMessage("Meus convites"), + "user__language_settings_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "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__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__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_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__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"), + "user__save_connection_circle_color_hint" : MessageLookupByLibrary.simpleMessage("(Toque para alterar)"), + "user__save_connection_circle_color_name" : MessageLookupByLibrary.simpleMessage("Cor"), + "user__save_connection_circle_create" : MessageLookupByLibrary.simpleMessage("Criar cĂ­rculo"), + "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_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_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "user__save_connection_circle_users" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios"), + "user__save_follows_list_create" : MessageLookupByLibrary.simpleMessage("Criar 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("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_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_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__save_follows_list_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "user__save_follows_list_users" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios"), + "user__thousand_postfix" : MessageLookupByLibrary.simpleMessage("k"), + "user__tile_delete" : MessageLookupByLibrary.simpleMessage("Excluir"), + "user__tile_following" : MessageLookupByLibrary.simpleMessage(" · Seguindo"), + "user__timeline_filters_apply_all" : MessageLookupByLibrary.simpleMessage("Aplicar filtros"), + "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_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__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"), + "user__translate_show_original" : MessageLookupByLibrary.simpleMessage("Mostrar original"), + "user__unblock_user" : MessageLookupByLibrary.simpleMessage("Desbloquear usuĂĄrio"), + "user__uninvite" : MessageLookupByLibrary.simpleMessage("Cancelar convite"), + "user__update_connection_circle_save" : MessageLookupByLibrary.simpleMessage("Salvar"), + "user__update_connection_circle_updated" : MessageLookupByLibrary.simpleMessage("ConexĂŁo atualizada"), + "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_refresh_text" : MessageLookupByLibrary.simpleMessage("Uppdatera"), - "user_search__list_retry" : MessageLookupByLibrary.simpleMessage("Tryck för att försöka igen."), + "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__search_text" : MessageLookupByLibrary.simpleMessage("Sök..."), + "user_search__search_text" : MessageLookupByLibrary.simpleMessage("Pesquisar..."), "user_search__searching_for" : m57, - "user_search__users" : MessageLookupByLibrary.simpleMessage("AnvĂ€ndare") + "user_search__users" : MessageLookupByLibrary.simpleMessage("UsuĂĄrios") }; } From 4086ca5a9a9c5caa20390292277fcb4c5e13cec8 Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Wed, 14 Aug 2019 12:40:04 +0200 Subject: [PATCH 08/13] :bug: fix small bug on trending posts --- .../communities/widgets/trending_communities.dart | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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; } } From fed0e3fa99f49e243c4e4495f3443d5e334f057a Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Wed, 14 Aug 2019 19:21:54 +0200 Subject: [PATCH 09/13] :sparkles: add post comment text to mention notification --- assets/i18n/en/notifications.arb | 8 +- lib/locale/messages_de.dart | 138 ++++++++--------- lib/locale/messages_en.dart | 140 +++++++++--------- lib/locale/messages_es-ES.dart | 140 +++++++++--------- lib/locale/messages_fr.dart | 140 +++++++++--------- lib/locale/messages_it.dart | 140 +++++++++--------- lib/locale/messages_pt-BR.dart | 140 +++++++++--------- lib/locale/messages_sv-SE.dart | 136 ++++++++--------- lib/locale/messages_tr.dart | 140 +++++++++--------- lib/services/localization.dart | 7 +- .../post_comment_reply_notification_tile.dart | 1 - ...omment_user_mention_notification_tile.dart | 3 +- .../post_user_mention_notification_tile.dart | 23 ++- pubspec.yaml | 2 +- 14 files changed, 587 insertions(+), 571 deletions(-) diff --git a/assets/i18n/en/notifications.arb b/assets/i18n/en/notifications.arb index cb8875283..32ada6b5d 100644 --- a/assets/i18n/en/notifications.arb +++ b/assets/i18n/en/notifications.arb @@ -191,11 +191,13 @@ "postCommentText": {} } }, - "mentioned_in_post_comment_tile": "[name] [username] mentioned you on a comment.", + "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.", + "description": "Eg.: James @jamest mentioned you on a comment: hello @jamest", "type": "text", - "placeholders": {} + "placeholders": { + "postCommentText": {} + } }, "mentioned_in_post_tile": "[name] [username] mentioned you on a post.", "@mentioned_in_post_tile": { diff --git a/lib/locale/messages_de.dart b/lib/locale/messages_de.dart index 4484a23b5..9a0338f68 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."; - static m25(maxLength) => "Ein Kommentar darf nicht lĂ€nger als ${maxLength} Zeichen lang sein."; + 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(_) => { @@ -520,7 +522,7 @@ class MessageLookup extends MessageLookupByLibrary { "notifications__following_you_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] folgt dir jetzt."), "notifications__general_desc" : MessageLookupByLibrary.simpleMessage("Werde benachrichtigt, wenn etwas passiert"), "notifications__general_title" : MessageLookupByLibrary.simpleMessage("Benachrichtigungen"), - "notifications__mentioned_in_post_comment_tile" : MessageLookupByLibrary.simpleMessage("[name] [username] hat dich in einem Kommentar erwĂ€hnt."), + "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"), @@ -533,7 +535,7 @@ class MessageLookup extends MessageLookupByLibrary { "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"), @@ -546,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..."), @@ -583,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"), @@ -595,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"), @@ -642,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"), @@ -661,8 +663,8 @@ class MessageLookup extends MessageLookupByLibrary { "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 Ă€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"), @@ -674,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."), @@ -690,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"), @@ -708,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"), @@ -716,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"), @@ -737,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"), @@ -767,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"), @@ -784,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"), @@ -801,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"), @@ -810,7 +812,7 @@ 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"), @@ -820,7 +822,7 @@ class MessageLookup extends MessageLookupByLibrary { "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"), @@ -832,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 6704b67d7..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(_) => { @@ -520,7 +522,7 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] mentioned you on a comment."), + "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"), @@ -533,7 +535,7 @@ class MessageLookup extends MessageLookupByLibrary { "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"), @@ -546,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..."), @@ -583,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"), @@ -595,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"), @@ -642,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"), @@ -661,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"), @@ -674,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."), @@ -690,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"), @@ -708,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"), @@ -716,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"), @@ -737,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"), @@ -767,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"), @@ -784,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"), @@ -801,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"), @@ -810,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"), @@ -820,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"), @@ -832,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 index 3f6a4c761..d63508bba 100644 --- a/lib/locale/messages_es-ES.dart +++ b/lib/locale/messages_es-ES.dart @@ -68,73 +68,75 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] respondiĂł: ${postCommentText}"; - static m24(communityName) => "[name] [username] te ha invitado a unirte a la comunidad /c/${communityName}."; + static m24(postCommentText) => "[name] [username] te mencionĂł en un comentario."; - static m25(maxLength) => "Un comentario no puede ser mĂĄs largo que ${maxLength} caracteres."; + static m25(communityName) => "[name] [username] te ha invitado a unirte a la comunidad /c/${communityName}."; - static m26(commentsCount) => "Ver los ${commentsCount} comentarios"; + static m26(maxLength) => "Un comentario no puede ser mĂĄs largo que ${maxLength} caracteres."; - static m27(circlesSearchQuery) => "\'No se han encontrado cĂ­rculos que coincidan con \'${circlesSearchQuery}\'."; + static m27(commentsCount) => "Ver los ${commentsCount} comentarios"; - static m28(name) => "${name} aĂșn no ha compartido nada."; + static m28(circlesSearchQuery) => "\'No se han encontrado cĂ­rculos que coincidan con \'${circlesSearchQuery}\'."; - static m29(postCreatorUsername) => "los cĂ­rculos de @${postCreatorUsername}\'s"; + static m29(name) => "${name} aĂșn no ha compartido nada."; - static m30(maxLength) => "El nombre del cĂ­rculo no debe tener mĂĄs de ${maxLength} caracteres."; + static m30(postCreatorUsername) => "los cĂ­rculos de @${postCreatorUsername}\'s"; - static m31(prettyUsersCount) => "${prettyUsersCount} gente"; + static m31(maxLength) => "El nombre del cĂ­rculo no debe tener mĂĄs de ${maxLength} caracteres."; - static m32(username) => "ÂżSeguro que quieres banear a @${username}?"; + static m32(prettyUsersCount) => "${prettyUsersCount} gente"; - static m33(userName) => "Confirmar conexiĂłn con ${userName}"; + static m33(username) => "ÂżSeguro que quieres banear a @${username}?"; - static m34(userName) => "Conectar con ${userName}"; + static m34(userName) => "Confirmar conexiĂłn con ${userName}"; - static m35(userName) => "Desconectarse de ${userName}"; + static m35(userName) => "Conectar con ${userName}"; - static m36(limit) => "Imagen demasiado grande (lĂ­mite: ${limit} MB)"; + static m36(userName) => "Desconectarse de ${userName}"; - static m37(username) => "El nombre de usuario @${username} ya existe"; + static m37(limit) => "Imagen demasiado grande (lĂ­mite: ${limit} MB)"; - static m38(searchQuery) => "No se encontrĂł un Emoji similar a \'${searchQuery}\'."; + static m38(username) => "El nombre de usuario @${username} ya existe"; - static m39(searchQuery) => "No se encontrĂł lista con \'${searchQuery}\'"; + static m39(searchQuery) => "No se encontrĂł un Emoji similar a \'${searchQuery}\'."; - static m40(prettyUsersCount) => "${prettyUsersCount} cuentas"; + static m40(searchQuery) => "No se encontrĂł lista con \'${searchQuery}\'"; - static m41(prettyUsersCount) => "${prettyUsersCount} Cuentas"; + static m41(prettyUsersCount) => "${prettyUsersCount} cuentas"; - static m42(groupName) => "Ver ${groupName}"; + static m42(prettyUsersCount) => "${prettyUsersCount} Cuentas"; - static m43(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 m43(groupName) => "Ver ${groupName}"; - static m44(username) => "Se uniĂł con el nombre de usuario @${username}"; + 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(email) => "Pendiente, email de invitaciĂłn enviado a ${email}"; + static m45(username) => "Se uniĂł con el nombre de usuario @${username}"; - static m46(maxLength) => "El nombre de la lista no debe tener mĂĄs de ${maxLength} caracteres."; + static m46(email) => "Pendiente, email de invitaciĂłn enviado a ${email}"; - static m47(maxLength) => "La biografĂ­a no puede contener mĂĄs de ${maxLength} caracteres."; + static m47(maxLength) => "El nombre de la lista no debe tener mĂĄs de ${maxLength} caracteres."; - static m48(maxLength) => "La ubicaciĂłn no puede contener mĂĄs de ${maxLength} caracteres."; + static m48(maxLength) => "La biografĂ­a no puede contener mĂĄs de ${maxLength} caracteres."; - static m49(takenConnectionsCircleName) => "El nombre de lista \'${takenConnectionsCircleName}\' esta tomado"; + static m49(maxLength) => "La ubicaciĂłn no puede contener mĂĄs de ${maxLength} caracteres."; - static m50(listName) => "El nombre de lista \'${listName}\' esta tomado"; + static m50(takenConnectionsCircleName) => "El nombre de lista \'${takenConnectionsCircleName}\' esta tomado"; - static m51(searchQuery) => "Sin resultados para \'${searchQuery}\'."; + static m51(listName) => "El nombre de lista \'${listName}\' esta tomado"; - static m52(resourcePluralName) => "No se encontrĂł ningun ${resourcePluralName}."; + static m52(searchQuery) => "Sin resultados para \'${searchQuery}\'."; - static m53(resourcePluralName) => "Buscar ${resourcePluralName}..."; + static m53(resourcePluralName) => "No se encontrĂł ningun ${resourcePluralName}."; - static m54(searchQuery) => "No se encontraron comunidades para \'${searchQuery}\'."; + static m54(resourcePluralName) => "Buscar ${resourcePluralName}..."; - static m55(searchQuery) => "Sin resultados para \"${searchQuery}\"."; + static m55(searchQuery) => "No se encontraron comunidades para \'${searchQuery}\'."; - static m56(searchQuery) => "No se encontraron usuarios para \'${searchQuery}\'."; + static m56(searchQuery) => "Sin resultados para \"${searchQuery}\"."; - static m57(searchQuery) => "Buscando \'${searchQuery}\'"; + static m57(searchQuery) => "No se encontraron usuarios para \'${searchQuery}\'."; + + static m58(searchQuery) => "Buscando \'${searchQuery}\'"; final messages = _notInlinedMessages(_notInlinedMessages); static _notInlinedMessages(_) => { @@ -520,7 +522,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : MessageLookupByLibrary.simpleMessage("[name] [username] te mencionĂł en un comentario."), + "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"), @@ -533,7 +535,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m24, + "notifications__user_community_invite_tile" : m25, "post__action_comment" : MessageLookupByLibrary.simpleMessage("Comentar"), "post__action_react" : MessageLookupByLibrary.simpleMessage("Reaccionar"), "post__action_reply" : MessageLookupByLibrary.simpleMessage("Responder"), @@ -546,7 +548,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m25, + "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..."), @@ -583,7 +585,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m26, + "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"), @@ -595,7 +597,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m27, + "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"), @@ -642,8 +644,8 @@ class MessageLookup extends MessageLookupByLibrary { "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" : 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("Has compartido con"), "user__add_account_done" : MessageLookupByLibrary.simpleMessage("Listo"), @@ -661,8 +663,8 @@ class MessageLookup extends MessageLookupByLibrary { "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" : 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("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"), @@ -674,13 +676,13 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m32, + "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" : m33, + "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."), @@ -690,7 +692,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m34, + "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"), @@ -708,7 +710,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m35, + "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"), @@ -716,20 +718,20 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m36, + "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" : m37, + "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" : m38, + "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" : m39, + "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"), @@ -737,18 +739,18 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m40, + "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" : m41, - "user__groups_see_all" : m42, + "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" : m43, + "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"), @@ -767,11 +769,11 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m44, + "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" : m45, + "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"), @@ -784,14 +786,14 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m46, + "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" : 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 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"), @@ -801,7 +803,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m49, + "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"), @@ -810,7 +812,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m50, + "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"), @@ -820,7 +822,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m51, + "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"), @@ -832,15 +834,15 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m52, + "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" : 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("Buscar..."), - "user_search__searching_for" : m57, + "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 1b269bc0a..a4330c9d1 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."; - 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(_) => { @@ -520,7 +522,7 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] vous a mentionnĂ©.e sur un commentaire."), + "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"), @@ -533,7 +535,7 @@ class MessageLookup extends MessageLookupByLibrary { "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"), @@ -546,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..."), @@ -583,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"), @@ -595,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"), @@ -642,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Ă©"), @@ -661,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"), @@ -674,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."), @@ -690,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"), @@ -708,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"), @@ -716,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"), @@ -737,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)"), @@ -767,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"), @@ -784,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"), @@ -801,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"), @@ -810,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"), @@ -820,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"), @@ -832,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 d7a782a2b..b5efe40d5 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."; - 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(_) => { @@ -520,7 +522,7 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] ti ha menzionato in un commento."), + "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"), @@ -533,7 +535,7 @@ class MessageLookup extends MessageLookupByLibrary { "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"), @@ -546,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..."), @@ -583,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"), @@ -595,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"), @@ -642,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"), @@ -661,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"), @@ -674,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."), @@ -690,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"), @@ -708,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"), @@ -716,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"), @@ -737,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"), @@ -767,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"), @@ -784,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"), @@ -801,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"), @@ -810,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"), @@ -820,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"), @@ -832,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 f3cc6013a..39024de3b 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."; - 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(_) => { @@ -520,7 +522,7 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] mencionou vocĂȘ em um comentĂĄrio."), + "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"), @@ -533,7 +535,7 @@ class MessageLookup extends MessageLookupByLibrary { "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"), @@ -546,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..."), @@ -583,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"), @@ -595,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"), @@ -642,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"), @@ -661,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"), @@ -674,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."), @@ -690,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"), @@ -708,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"), @@ -716,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"), @@ -737,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"), @@ -767,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"), @@ -784,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"), @@ -801,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"), @@ -810,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"), @@ -820,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"), @@ -832,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 index 9f34125c0..ce6824bb2 100644 --- a/lib/locale/messages_sv-SE.dart +++ b/lib/locale/messages_sv-SE.dart @@ -68,73 +68,73 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] svarade: ${postCommentText}"; - static m24(communityName) => "[name] [username] har bjudit in dig till gemenskapen /c/${communityName}."; + static m25(communityName) => "[name] [username] har bjudit in dig till gemenskapen /c/${communityName}."; - static m25(maxLength) => "En kommentar kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m26(maxLength) => "En kommentar kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m26(commentsCount) => "Visa alla ${commentsCount} kommentarer"; + static m27(commentsCount) => "Visa alla ${commentsCount} kommentarer"; - static m27(circlesSearchQuery) => "Inga kretsar hittades som matchar \'${circlesSearchQuery}\'."; + static m28(circlesSearchQuery) => "Inga kretsar hittades som matchar \'${circlesSearchQuery}\'."; - static m28(name) => "${name} har inte delat nĂ„got Ă€nnu."; + static m29(name) => "${name} har inte delat nĂ„got Ă€nnu."; - static m29(postCreatorUsername) => "@${postCreatorUsername}s kretsar"; + static m30(postCreatorUsername) => "@${postCreatorUsername}s kretsar"; - static m30(maxLength) => "Kretsens namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m31(maxLength) => "Kretsens namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m31(prettyUsersCount) => "${prettyUsersCount} personer"; + static m32(prettyUsersCount) => "${prettyUsersCount} personer"; - static m32(username) => "Är du sĂ€ker pĂ„ att du vill blockera @${username}?"; + static m33(username) => "Är du sĂ€ker pĂ„ att du vill blockera @${username}?"; - static m33(userName) => "BekrĂ€fta ${userName}s kontaktförfrĂ„gan"; + static m34(userName) => "BekrĂ€fta ${userName}s kontaktförfrĂ„gan"; - static m34(userName) => "LĂ€gg till ${userName} som kontakt"; + static m35(userName) => "LĂ€gg till ${userName} som kontakt"; - static m35(userName) => "Ta bort ${userName} som kontakt"; + static m36(userName) => "Ta bort ${userName} som kontakt"; - static m36(limit) => "Bilden Ă€r för stor (grĂ€ns: ${limit} MB)"; + static m37(limit) => "Bilden Ă€r för stor (grĂ€ns: ${limit} MB)"; - static m37(username) => "AnvĂ€ndarnamnet @${username} Ă€r upptaget"; + static m38(username) => "AnvĂ€ndarnamnet @${username} Ă€r upptaget"; - static m38(searchQuery) => "Ingen emoji hittades som matchar \'${searchQuery}\'."; + static m39(searchQuery) => "Ingen emoji hittades som matchar \'${searchQuery}\'."; - static m39(searchQuery) => "Inga listor hittades för \'${searchQuery}\'"; + static m40(searchQuery) => "Inga listor hittades för \'${searchQuery}\'"; - static m40(prettyUsersCount) => "${prettyUsersCount} konton"; + static m41(prettyUsersCount) => "${prettyUsersCount} konton"; - static m41(prettyUsersCount) => "${prettyUsersCount} Konton"; + static m42(prettyUsersCount) => "${prettyUsersCount} Konton"; - static m42(groupName) => "Visa alla ${groupName}"; + static m43(groupName) => "Visa alla ${groupName}"; - static m43(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 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 m44(username) => "Gick med under anvĂ€ndarnamnet @${username}"; + static m45(username) => "Gick med under anvĂ€ndarnamnet @${username}"; - static m45(email) => "VĂ€ntande, inbjudan skickad till ${email}"; + static m46(email) => "VĂ€ntande, inbjudan skickad till ${email}"; - static m46(maxLength) => "Listans namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m47(maxLength) => "Listans namn fĂ„r inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m47(maxLength) => "Bion kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m48(maxLength) => "Bion kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m48(maxLength) => "En plats kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; + static m49(maxLength) => "En plats kan inte vara lĂ€ngre Ă€n ${maxLength} tecken."; - static m49(takenConnectionsCircleName) => "Kretsnamnet \'${takenConnectionsCircleName}\' Ă€r upptaget"; + static m50(takenConnectionsCircleName) => "Kretsnamnet \'${takenConnectionsCircleName}\' Ă€r upptaget"; - static m50(listName) => "Listnamnet \'${listName}\' Ă€r upptaget"; + static m51(listName) => "Listnamnet \'${listName}\' Ă€r upptaget"; - static m51(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; + static m52(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; - static m52(resourcePluralName) => "Inga ${resourcePluralName} hittades."; + static m53(resourcePluralName) => "Inga ${resourcePluralName} hittades."; - static m53(resourcePluralName) => "Sök ${resourcePluralName} ..."; + static m54(resourcePluralName) => "Sök ${resourcePluralName} ..."; - static m54(searchQuery) => "Inga gemenskaper hittades för \'${searchQuery}\'."; + static m55(searchQuery) => "Inga gemenskaper hittades för \'${searchQuery}\'."; - static m55(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; + static m56(searchQuery) => "Inga resultat hittades för \'${searchQuery}\'."; - static m56(searchQuery) => "Inga anvĂ€ndare hittades för \'${searchQuery}\'."; + static m57(searchQuery) => "Inga anvĂ€ndare hittades för \'${searchQuery}\'."; - static m57(searchQuery) => "Söker efter \'${searchQuery}\'"; + static m58(searchQuery) => "Söker efter \'${searchQuery}\'"; final messages = _notInlinedMessages(_notInlinedMessages); static _notInlinedMessages(_) => { @@ -526,7 +526,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m24, + "notifications__user_community_invite_tile" : m25, "post__action_comment" : MessageLookupByLibrary.simpleMessage("Kommentera"), "post__action_react" : MessageLookupByLibrary.simpleMessage("Reagera"), "post__action_reply" : MessageLookupByLibrary.simpleMessage("Svara"), @@ -539,7 +539,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m25, + "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..."), @@ -576,7 +576,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m26, + "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"), @@ -588,7 +588,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m27, + "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"), @@ -635,8 +635,8 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m28, - "post__usernames_circles" : m29, + "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"), @@ -654,8 +654,8 @@ class MessageLookup extends MessageLookupByLibrary { "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" : 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("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"), @@ -667,13 +667,13 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m32, + "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" : m33, + "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."), @@ -683,7 +683,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m34, + "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"), @@ -701,7 +701,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m35, + "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"), @@ -709,20 +709,20 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m36, + "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" : m37, + "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" : m38, + "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" : m39, + "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"), @@ -730,18 +730,18 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m40, + "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" : m41, - "user__groups_see_all" : m42, + "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" : m43, + "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"), @@ -760,11 +760,11 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m44, + "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" : m45, + "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"), @@ -777,14 +777,14 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m46, + "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" : 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("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"), @@ -794,7 +794,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m49, + "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"), @@ -803,7 +803,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m50, + "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"), @@ -813,7 +813,7 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m51, + "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"), @@ -825,15 +825,15 @@ class MessageLookup extends MessageLookupByLibrary { "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" : m52, + "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" : 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("Sök..."), - "user_search__searching_for" : m57, + "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 1f329cbd3..7a406c6fb 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."; - 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(_) => { @@ -520,7 +522,7 @@ 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" : MessageLookupByLibrary.simpleMessage("[name] [username] bir yorumda sizden bahsetti."), + "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"), @@ -533,7 +535,7 @@ class MessageLookup extends MessageLookupByLibrary { "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"), @@ -546,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..."), @@ -583,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"), @@ -595,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ı"), @@ -642,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"), @@ -661,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"), @@ -674,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."), @@ -690,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"), @@ -708,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"), @@ -716,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"), @@ -737,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"), @@ -767,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"), @@ -784,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ı"), @@ -801,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"), @@ -810,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"), @@ -820,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"), @@ -832,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/services/localization.dart b/lib/services/localization.dart index 9c49f1cbf..96e6b3f50 100644 --- a/lib/services/localization.dart +++ b/lib/services/localization.dart @@ -3424,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/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.yaml b/pubspec.yaml index 16be58efe..3990ca4ad 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+55 environment: sdk: ">=2.1.0 <3.0.0" From 01a3186ff974832dccc5390fd419bff6c7610383 Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Wed, 14 Aug 2019 20:24:35 +0200 Subject: [PATCH 10/13] :globe_with_meridians: add post comment text on mention notification --- assets/i18n/de/notifications.arb | 150 +++++++------------------- assets/i18n/es-ES/notifications.arb | 150 +++++++------------------- assets/i18n/fr/notifications.arb | 150 +++++++------------------- assets/i18n/it/notifications.arb | 150 +++++++------------------- assets/i18n/pt-BR/notifications.arb | 150 +++++++------------------- assets/i18n/sv-SE/notifications.arb | 160 ++++++++++++---------------- assets/i18n/tr/notifications.arb | 150 +++++++------------------- lib/locale/messages_de.dart | 2 +- lib/locale/messages_es-ES.dart | 2 +- lib/locale/messages_fr.dart | 2 +- lib/locale/messages_it.dart | 2 +- lib/locale/messages_pt-BR.dart | 2 +- lib/locale/messages_sv-SE.dart | 10 +- lib/locale/messages_tr.dart | 2 +- 14 files changed, 315 insertions(+), 767 deletions(-) diff --git a/assets/i18n/de/notifications.arb b/assets/i18n/de/notifications.arb index 1e808a6f1..84592555c 100644 --- a/assets/i18n/de/notifications.arb +++ b/assets/i18n/de/notifications.arb @@ -2,226 +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": { "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": { - - } + "placeholders": {} }, "comment_user_mention_desc": "Werde benachrichtigt, wenn dich jemand in einem Kommentar erwĂ€hnt", "@comment_user_mention_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_title": "ErwĂ€hnungen in BeitrĂ€gen", "@post_user_mention_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_desc": "Werde benachrichtigt, wenn dich jemand in einem Beitrag erwĂ€hnt", "@post_user_mention_desc": { "type": "text", - "placeholders": { - - } + "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}", @@ -229,52 +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.", + "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.", + "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": { - - } + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/es-ES/notifications.arb b/assets/i18n/es-ES/notifications.arb index 8f5662c4d..548b53f90 100644 --- a/assets/i18n/es-ES/notifications.arb +++ b/assets/i18n/es-ES/notifications.arb @@ -2,226 +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": { - - } + "placeholders": {} }, "comment_user_mention_desc": "Ser notificado cuando alguien te mencione en uno de sus comentarios", "@comment_user_mention_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_title": "MenciĂłnes en posts", "@post_user_mention_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_desc": "Ser notificado cuando alguien te mencione en uno de sus mensajes", "@post_user_mention_desc": { "type": "text", - "placeholders": { - - } + "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}", @@ -229,52 +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.", + "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.", + "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": { - - } + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/fr/notifications.arb b/assets/i18n/fr/notifications.arb index b928eff2e..1c1876e51 100644 --- a/assets/i18n/fr/notifications.arb +++ b/assets/i18n/fr/notifications.arb @@ -2,226 +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": { - - } + "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": { - - } + "placeholders": {} }, "post_user_mention_title": "Mention sur une publication", "@post_user_mention_title": { "type": "text", - "placeholders": { - - } + "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": { - - } + "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}", @@ -229,52 +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.", + "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.", + "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": { - - } + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/it/notifications.arb b/assets/i18n/it/notifications.arb index 5f11c415b..08a2bb4c6 100644 --- a/assets/i18n/it/notifications.arb +++ b/assets/i18n/it/notifications.arb @@ -2,226 +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": { - - } + "placeholders": {} }, "comment_user_mention_desc": "Ricevi una notifica quando qualcuno ti cita su uno dei suoi commenti", "@comment_user_mention_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_title": "Menzione in un post", "@post_user_mention_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_desc": "Ricevi una notifica quando qualcuno ti cita su uno dei suoi post", "@post_user_mention_desc": { "type": "text", - "placeholders": { - - } + "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}", @@ -229,52 +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.", + "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.", + "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": { - - } + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/pt-BR/notifications.arb b/assets/i18n/pt-BR/notifications.arb index c3b087044..b9f90a6fc 100644 --- a/assets/i18n/pt-BR/notifications.arb +++ b/assets/i18n/pt-BR/notifications.arb @@ -2,226 +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": { - - } + "placeholders": {} }, "comment_user_mention_desc": "Seja notificado(a) quando alguĂ©m mencionar vocĂȘ em um comentĂĄrio", "@comment_user_mention_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_title": "MençÔes em publicaçÔes", "@post_user_mention_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_desc": "Seja notificado(a) quando alguĂ©m mencionar vocĂȘ em uma publicação", "@post_user_mention_desc": { "type": "text", - "placeholders": { - - } + "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}", @@ -229,52 +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.", + "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.", + "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": { - - } + "placeholders": {} } } \ No newline at end of file diff --git a/assets/i18n/sv-SE/notifications.arb b/assets/i18n/sv-SE/notifications.arb index e9473417e..3d1d6554b 100644 --- a/assets/i18n/sv-SE/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/tr/notifications.arb b/assets/i18n/tr/notifications.arb index f3c66da13..5a7ae4c7e 100644 --- a/assets/i18n/tr/notifications.arb +++ b/assets/i18n/tr/notifications.arb @@ -2,226 +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": { - - } + "placeholders": {} }, "comment_user_mention_desc": "Birisi sizden yorumlarından birinde bahsettiğinde haberdar olun", "@comment_user_mention_desc": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_title": "Gönderide bahsedilmesi", "@post_user_mention_title": { "type": "text", - "placeholders": { - - } + "placeholders": {} }, "post_user_mention_desc": "Birisi gönderilerinden birinde sizden bahsettiğinde haberdar olun", "@post_user_mention_desc": { "type": "text", - "placeholders": { - - } + "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}", @@ -229,52 +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.", + "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.", + "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": { - - } + "placeholders": {} } } \ No newline at end of file diff --git a/lib/locale/messages_de.dart b/lib/locale/messages_de.dart index 9a0338f68..6ed5e326b 100644 --- a/lib/locale/messages_de.dart +++ b/lib/locale/messages_de.dart @@ -68,7 +68,7 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] hat geantwortet: ${postCommentText}"; - static m24(postCommentText) => "[name] [username] hat dich in einem Kommentar erwĂ€hnt."; + static m24(postCommentText) => "[name] [username] hat dich in einem Kommentar erwĂ€hnt: ${postCommentText}"; static m25(communityName) => "[name] [username] hat dich in die Community /c/${communityName} eingeladen."; diff --git a/lib/locale/messages_es-ES.dart b/lib/locale/messages_es-ES.dart index d63508bba..08f3fff1c 100644 --- a/lib/locale/messages_es-ES.dart +++ b/lib/locale/messages_es-ES.dart @@ -68,7 +68,7 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] respondiĂł: ${postCommentText}"; - static m24(postCommentText) => "[name] [username] te mencionĂł en un comentario."; + 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}."; diff --git a/lib/locale/messages_fr.dart b/lib/locale/messages_fr.dart index a4330c9d1..6f68fa72b 100644 --- a/lib/locale/messages_fr.dart +++ b/lib/locale/messages_fr.dart @@ -68,7 +68,7 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] · [username] a rĂ©pondu : ${postCommentText}"; - static m24(postCommentText) => "[name] [username] vous a mentionnĂ©.e sur un commentaire."; + static m24(postCommentText) => "[name] [username] vous a mentionnĂ©.e sur un commentaire: ${postCommentText}"; static m25(communityName) => "[name] · [username] vous a invitĂ©.e Ă  rejoindre la communautĂ© /c/${communityName}."; diff --git a/lib/locale/messages_it.dart b/lib/locale/messages_it.dart index b5efe40d5..c3cb9e881 100644 --- a/lib/locale/messages_it.dart +++ b/lib/locale/messages_it.dart @@ -68,7 +68,7 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] ha risposto: ${postCommentText}"; - static m24(postCommentText) => "[name] [username] ti ha menzionato in un commento."; + static m24(postCommentText) => "[name] [username] ti ha menzionato in un commento: ${postCommentText}"; static m25(communityName) => "[name] [username] ti ha invitato a unirti alla comunitĂ  /c/${communityName}."; diff --git a/lib/locale/messages_pt-BR.dart b/lib/locale/messages_pt-BR.dart index 39024de3b..ae0ef0f01 100644 --- a/lib/locale/messages_pt-BR.dart +++ b/lib/locale/messages_pt-BR.dart @@ -68,7 +68,7 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] respondeu: ${postCommentText}"; - static m24(postCommentText) => "[name] [username] mencionou vocĂȘ em um comentĂĄrio."; + static m24(postCommentText) => "[name] [username] mencionou vocĂȘ em um comentĂĄrio: ${postCommentText}"; static m25(communityName) => "[name] [username] convidou vocĂȘ para se juntar Ă  comunidade /c/${communityName}."; diff --git a/lib/locale/messages_sv-SE.dart b/lib/locale/messages_sv-SE.dart index ce6824bb2..b349ca4d8 100644 --- a/lib/locale/messages_sv-SE.dart +++ b/lib/locale/messages_sv-SE.dart @@ -68,6 +68,8 @@ class MessageLookup extends MessageLookupByLibrary { 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."; @@ -505,8 +507,10 @@ class MessageLookup extends MessageLookupByLibrary { "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 pĂ„ inlĂ€gg"), + "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"), @@ -517,12 +521,16 @@ class MessageLookup extends MessageLookupByLibrary { "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"), diff --git a/lib/locale/messages_tr.dart b/lib/locale/messages_tr.dart index 7a406c6fb..dc976fe53 100644 --- a/lib/locale/messages_tr.dart +++ b/lib/locale/messages_tr.dart @@ -68,7 +68,7 @@ class MessageLookup extends MessageLookupByLibrary { static m23(postCommentText) => "[name] [username] yanıtladı: ${postCommentText}"; - static m24(postCommentText) => "[name] [username] bir yorumda sizden bahsetti."; + static m24(postCommentText) => "[name] [username] bir yorumda sizden bahsetti: ${postCommentText}"; static m25(communityName) => "[name] [username] sizi /c/${communityName} topluluğuna davet etti."; From 9c0c00cc599d29b38e211396de93060d74719133 Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Thu, 15 Aug 2019 12:21:24 +0200 Subject: [PATCH 11/13] :bug: fix private com creation error --- ios/OneSignalNotificationServiceExtension/Info.plist | 4 ++-- ios/Runner/Info.plist | 4 ++-- lib/widgets/fields/toggle_field.dart | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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/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/widgets/fields/toggle_field.dart b/lib/widgets/fields/toggle_field.dart index 34c108f30..80fa0e189 100644 --- a/lib/widgets/fields/toggle_field.dart +++ b/lib/widgets/fields/toggle_field.dart @@ -12,7 +12,7 @@ class OBToggleField extends StatelessWidget { final Widget subtitle; final bool hasDivider; - const OBToggleField({Key key, @required this.value, this.onChanged, this.onTap, this.leading, @required this.title, this.subtitle, this.hasDivider}) : super(key: key); + 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 From b22d8a938f23bb6e579de04830bfca78faa7f153 Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Thu, 15 Aug 2019 13:08:02 +0200 Subject: [PATCH 12/13] :package: update packages --- pubspec.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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: From e15fe1bba80a823062fb2125f9e7ad4594731d3d Mon Sep 17 00:00:00 2001 From: Joel Hernandez Date: Thu, 15 Aug 2019 18:42:58 +0200 Subject: [PATCH 13/13] :package: up packages once again --- ios/Podfile.lock | 18 +++++++++--------- ios/Runner.xcodeproj/project.pbxproj | 2 +- pubspec.yaml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) 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/pubspec.yaml b/pubspec.yaml index 3990ca4ad..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.51+55 +version: 0.0.51+56 environment: sdk: ">=2.1.0 <3.0.0"