From 5c9347555394c444356d8bea196c88ccfc59ddc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Wed, 10 May 2023 12:11:30 +0200 Subject: [PATCH] MOBILE-4270 lang: Update lang strings --- moodle.config.json | 1 + scripts/langindex.json | 2 +- src/addons/mod/bigbluebuttonbn/lang.json | 10 +++++----- .../bigbluebuttonbn/tests/behat/basic_usage.feature | 12 ++++++------ src/addons/mod/data/lang.json | 4 ++-- src/addons/mod/forum/lang.json | 4 ++-- src/addons/mod/quiz/lang.json | 2 +- src/core/features/editor/lang.json | 4 ++-- src/core/features/login/lang.json | 4 ++-- src/core/features/login/tests/behat/signup.feature | 8 ++++---- src/core/features/user/lang.json | 4 ++-- src/core/lang.json | 4 ++-- 12 files changed, 30 insertions(+), 29 deletions(-) diff --git a/moodle.config.json b/moodle.config.json index 50aaf93a5..b521642cd 100644 --- a/moodle.config.json +++ b/moodle.config.json @@ -57,6 +57,7 @@ "sr-cr": "Српски", "sr-lt": "Srpski", "sv": "Svenska", + "szl": "Ślōnski", "tg": "Тоҷикӣ", "tr": "Türkçe", "uk": "Українська", diff --git a/scripts/langindex.json b/scripts/langindex.json index ff66ad49d..65f618eaa 100644 --- a/scripts/langindex.json +++ b/scripts/langindex.json @@ -2268,7 +2268,7 @@ "core.reminders.atthetime": "local_moodlemobileapp", "core.reminders.custom": "local_moodlemobileapp", "core.reminders.customreminder": "local_moodlemobileapp", - "core.reminders.delete": "moodle", + "core.reminders.delete": "local_moodlemobileapp", "core.reminders.reminderset": "local_moodlemobileapp", "core.reminders.reminderunset": "local_moodlemobileapp", "core.reminders.setareminder": "local_moodlemobileapp", diff --git a/src/addons/mod/bigbluebuttonbn/lang.json b/src/addons/mod/bigbluebuttonbn/lang.json index abead21d5..8db55ba47 100644 --- a/src/addons/mod/bigbluebuttonbn/lang.json +++ b/src/addons/mod/bigbluebuttonbn/lang.json @@ -10,12 +10,12 @@ "view_groups_selection_warning": "There is a room for each group and you have access to more than one. Be sure to select the correct one.", "view_message_conference_in_progress": "The session is in progress.", "view_message_conference_room_ready": "This room is ready. You can join the session now.", - "view_message_moderator": "moderator", - "view_message_moderators": "moderators", + "view_message_moderator": "Moderator", + "view_message_moderators": "Moderators", "view_message_norecordings": "There are no recordings available.", - "view_message_session_started_at": "This session started at", - "view_message_viewer": "viewer", - "view_message_viewers": "viewers", + "view_message_session_started_at": "Session started at", + "view_message_viewer": "Viewer", + "view_message_viewers": "Viewers", "view_nojoin": "You do not have a role that is allowed to join this session.", "view_section_title_recordings": "Recordings" } diff --git a/src/addons/mod/bigbluebuttonbn/tests/behat/basic_usage.feature b/src/addons/mod/bigbluebuttonbn/tests/behat/basic_usage.feature index 1e2175676..856d5e698 100755 --- a/src/addons/mod/bigbluebuttonbn/tests/behat/basic_usage.feature +++ b/src/addons/mod/bigbluebuttonbn/tests/behat/basic_usage.feature @@ -53,8 +53,8 @@ Feature: Test basic usage of BBB activity in app Given I wait "10" seconds Then I should find "The session is in progress." in the app - And I should find "1" near "viewer" in the app - And I should find "0" near "moderator" in the app + And I should find "1" near "Viewer" in the app + And I should find "0" near "Moderator" in the app Scenario: Join meeting (moderator) Given the following "activities" exist: @@ -69,8 +69,8 @@ Feature: Test basic usage of BBB activity in app Given I wait "10" seconds Then I should find "The session is in progress." in the app - And I should find "1" near "moderator" in the app - And I should find "0" near "viewer" in the app + And I should find "1" near "Moderator" in the app + And I should find "0" near "Viewer" in the app Scenario: Wait for moderator Given the following "activities" exist: @@ -91,8 +91,8 @@ Feature: Test basic usage of BBB activity in app And I press "Close" in the app And I pull to refresh in the app Then I should find "The session is in progress." in the app - And I should find "1" near "moderator" in the app - And I should find "0" near "viewer" in the app + And I should find "1" near "Moderator" in the app + And I should find "0" near "Viewer" in the app And I should be able to press "Join session" in the app When I close all opened windows diff --git a/src/addons/mod/data/lang.json b/src/addons/mod/data/lang.json index d15f18e32..3ffdfdbce 100644 --- a/src/addons/mod/data/lang.json +++ b/src/addons/mod/data/lang.json @@ -13,14 +13,14 @@ "disapprove": "Undo approval", "edittagsnotsupported": "Sorry, editing tags is not supported by the app.", "emptyaddform": "You did not fill out any fields!", - "entrieslefttoadd": "You must add {{$a.entriesleft}} more entry/entries in order to complete this activity", + "entrieslefttoadd": "You must add {{$a.entriesleft}} more entry/entries to complete this activity.", "entrieslefttoaddtoview": "You must add {{$a.entrieslefttoview}} more entry/entries before you can view other participants' entries.", "errorapproving": "Error approving or unapproving entry.", "errordeleting": "Error deleting entry.", "errormustsupplyvalue": "You must supply a value here.", "expired": "Sorry, this activity closed on {{$a}} and is no longer available", "fields": "Fields", - "foundrecords": "Found records: {{$a.num}}/{{$a.max}} (Reset filters)", + "foundrecords": "Found {{$a.num}} out of {{$a.max}} records. Clear all", "gettinglocation": "Getting location", "latlongboth": "Both latitude and longitude are required.", "locationnotenabled": "Location is not enabled", diff --git a/src/addons/mod/forum/lang.json b/src/addons/mod/forum/lang.json index b3146a6a7..46277f2df 100644 --- a/src/addons/mod/forum/lang.json +++ b/src/addons/mod/forum/lang.json @@ -49,11 +49,11 @@ "pinupdated": "The pin option has been updated.", "postaddedsuccess": "Your post was successfully added.", "postingroup": "Posting in group \"{{groupname}}\".", - "postisprivatereply": "This is a private reply. It is only visible to you and anyone with the capability to view private replies, such as teachers or managers.", + "postisprivatereply": "This is a private reply. (Teachers and other users with the capability to view private replies can also see it.)", "posttoforum": "Post to forum", "posttomygroups": "Post a copy to all groups", "privatereply": "Reply privately", - "qandanotify": "This is a question and answer forum. In order to see other responses to these questions, you must first post your answer", + "qandanotify": "This is a question and answer forum. To see other replies, you must first post your reply.", "re": "Re:", "refreshposts": "Refresh posts", "removefromfavourites": "Unstar this discussion", diff --git a/src/addons/mod/quiz/lang.json b/src/addons/mod/quiz/lang.json index a1db1a409..d62d1d3c0 100644 --- a/src/addons/mod/quiz/lang.json +++ b/src/addons/mod/quiz/lang.json @@ -10,7 +10,7 @@ "clearchoice": "Clear my choice", "comment": "Comment", "completedon": "Completed on", - "confirmclose": "Once you submit, you will no longer be able to change your answers for this attempt.", + "confirmclose": "Once you submit your answers, you won’t be able to change them.", "confirmcontinueoffline": "This attempt has not been synchronised since {{$a}}. If you have continued this attempt in another device since then, you may lose data.", "confirmleavequizonerror": "An error occurred while saving the answers. Are you sure you want to leave the quiz?", "confirmstart": "Your attempt will have a time limit of {{$a}}. When you start, the timer will begin to count down and cannot be paused. You must finish your attempt before it expires. Are you sure you wish to start now?", diff --git a/src/core/features/editor/lang.json b/src/core/features/editor/lang.json index 9ea5a4454..06ed4f8ee 100644 --- a/src/core/features/editor/lang.json +++ b/src/core/features/editor/lang.json @@ -7,11 +7,11 @@ "h5": "Heading (small)", "hidetoolbar": "Hide toolbar", "italic": "Italic", - "orderedlist": "Ordered list", + "orderedlist": "Ordered List", "p": "Paragraph", "strikethrough": "Strikethrough", "textrecovered": "A draft version of this text was automatically restored.", "toggle": "Toggle editor", "underline": "Underline", - "unorderedlist": "Unordered list" + "unorderedlist": "Bulleted List" } diff --git a/src/core/features/login/lang.json b/src/core/features/login/lang.json index 01c5f519f..2be25d83d 100644 --- a/src/core/features/login/lang.json +++ b/src/core/features/login/lang.json @@ -19,7 +19,7 @@ "credentialsdescription": "Please provide your username and password to log in.", "credentialshelp": "If you have problems logging in, try again later or contact your school or learning provider.", "credentialssupportsubject": "Need help logging in", - "emailconfirmsent": "

An email should have been sent to your address at {{$a}}

It contains easy instructions to complete your registration.

", + "emailconfirmsent": "

An email should have been sent to your address at {{$a}}

\n

It contains easy instructions to complete your registration.

\n

If you continue to have difficulty, contact the site administrator.

", "emailconfirmsentnoemail": "

An email should have been sent to your address.

It contains easy instructions to complete your registration.

", "emailconfirmsentsuccess": "Confirmation email sent successfully", "emailnotmatch": "Emails do not match", @@ -71,7 +71,7 @@ "loginsteps": "For full access to this site, you first need to create an account.", "missingemail": "Missing email address", "missingfirstname": "Missing given name", - "missinglastname": "Missing surname", + "missinglastname": "Missing last name", "mobileservicesnotenabled": "Mobile services are not enabled on the site.", "mustconfirm": "You need to confirm your account", "newaccount": "New account", diff --git a/src/core/features/login/tests/behat/signup.feature b/src/core/features/login/tests/behat/signup.feature index caf9e1be6..29723bf84 100755 --- a/src/core/features/login/tests/behat/signup.feature +++ b/src/core/features/login/tests/behat/signup.feature @@ -40,7 +40,7 @@ Feature: Test signup in app And I should find "Password required" in the app And I should find "Missing email address" in the app And I should find "Missing given name" in the app - And I should find "Missing surname" in the app + And I should find "Missing last name" in the app When I set the following fields to these values in the app: | Username | u1 | @@ -48,7 +48,7 @@ Feature: Test signup in app | Email address | u1@u1.com | | Email (again) | u2@u1.com | | First name | User | - | Surname | Test | + | Last name | Test | | City/town | Barcelona | | Country | Spain | Then I should find "Emails do not match" in the app @@ -98,7 +98,7 @@ Feature: Test signup in app | Email address | u1@u1.com | | Email (again) | u1@u1.com | | First name | User | - | Surname | Test | + | Last name | Test | | City/town | Barcelona | | Country | Spain | And I press "Create my new account" in the app @@ -147,7 +147,7 @@ Feature: Test signup in app | Email address | u1@u1.com | | Email (again) | u1@u1.com | | First name | User | - | Surname | Test | + | Last name | Test | | City/town | Barcelona | | Country | Spain | And I press "Create my new account" in the app diff --git a/src/core/features/user/lang.json b/src/core/features/user/lang.json index 027f190f4..5cb9ff365 100644 --- a/src/core/features/user/lang.json +++ b/src/core/features/user/lang.json @@ -1,6 +1,5 @@ { "address": "Address", - "useraccount": "User account", "city": "City/town", "completeprofile": "Complete profile", "completeprofilehelp": "If you have problems completing your profile, try again later or contact your school or learning provider.", @@ -20,7 +19,7 @@ "firstname": "First name", "interests": "Interests", "lastcourseaccess": "Last access to course", - "lastname": "Surname", + "lastname": "Last name", "manager": "Manager", "newpicture": "New picture", "noparticipants": "No participants found for this course", @@ -35,6 +34,7 @@ "supportmessagesent": "Your message has been sent.", "supportsubject": "[App] {{subject}}", "teacher": "Non-editing teacher", + "useraccount": "User account", "userwithid": "User with ID {{id}}", "webpage": "Web page" } diff --git a/src/core/lang.json b/src/core/lang.json index 6897372a9..fc5ff75b5 100644 --- a/src/core/lang.json +++ b/src/core/lang.json @@ -174,8 +174,8 @@ "minutes": "minutes", "misc": "Miscellaneous", "mod_assign": "Assignment", - "mod_book": "Book", "mod_bigbluebuttonbn": "BigBlueButton", + "mod_book": "Book", "mod_chat": "Chat", "mod_choice": "Choice", "mod_data": "Database", @@ -187,7 +187,7 @@ "mod_glossary": "Glossary", "mod_h5pactivity": "H5P", "mod_imscp": "IMS content package", - "mod_label": "Text and media", + "mod_label": "Text and media area", "mod_lesson": "Lesson", "mod_lti": "External tool", "mod_page": "Page",