Bladeren bron

Fixes typos and removes a translation key.

master
Boris Grozev 9 jaren geleden
bovenliggende
commit
741b9adc1e
2 gewijzigde bestanden met toevoegingen van 10 en 11 verwijderingen
  1. 9
    10
      lang/main.json
  2. 1
    1
      modules/UI/UI.js

+ 9
- 10
lang/main.json Bestand weergeven

12
     "welcomepage":{
12
     "welcomepage":{
13
         "go": "GO",
13
         "go": "GO",
14
         "roomname": "Enter room name",
14
         "roomname": "Enter room name",
15
-        "disable": "Don't show this page next time I enter",
15
+        "disable": "Don't show this page the next time I enter",
16
         "feature1": {
16
         "feature1": {
17
             "title": "Simple to use",
17
             "title": "Simple to use",
18
             "content": "No downloads required. __app__ works directly within your browser. Simply share your conference URL with others to get started."
18
             "content": "No downloads required. __app__ works directly within your browser. Simply share your conference URL with others to get started."
23
         },
23
         },
24
         "feature3": {
24
         "feature3": {
25
             "title": "Open source",
25
             "title": "Open source",
26
-            "content": "__app__ is licensed under MIT. You are free to download, use, modify, and share them as per these licenses."
26
+            "content": "__app__ is licensed under the Apache License. You are free to download, use, modify, and share it as per this license."
27
         },
27
         },
28
         "feature4": {
28
         "feature4": {
29
             "title": "Unlimited users",
29
             "title": "Unlimited users",
131
     },
131
     },
132
     "dialog": {
132
     "dialog": {
133
         "kickMessage": "Ouch! You have been kicked out of the meet!",
133
         "kickMessage": "Ouch! You have been kicked out of the meet!",
134
-        "popupError": "Your browser is blocking popup windows from this site. Please enable popups in your browser security settings and try again.",
135
-        "passwordError": "This conversation is currently protected by a password. Only the owner of the conference could set a password.",
136
-        "passwordError2": "This conversation isn't currently protected by a password. Only the owner of the conference could set a password.",
137
-        "joinError": "Oops! We couldn't join the conference. There might be some problem with security configuration. Please contact service administrator.",
134
+        "popupError": "Your browser is blocking popup windows from this site. Please enable popups in your browser's security settings and try again.",
135
+        "passwordError": "This conversation is currently protected by a password. Only the owner of the conference can set a password.",
136
+        "passwordError2": "This conversation isn't currently protected by a password. Only the owner of the conference can set a password.",
138
         "connectError": "Oops! Something went wrong and we couldn't connect to the conference.",
137
         "connectError": "Oops! Something went wrong and we couldn't connect to the conference.",
139
         "connectErrorWithMsg": "Oops! Something went wrong and we couldn't connect to the conference: __msg__",
138
         "connectErrorWithMsg": "Oops! Something went wrong and we couldn't connect to the conference: __msg__",
140
         "connecting": "Connecting",
139
         "connecting": "Connecting",
144
         "failedpermissions": "Failed to obtain permissions to use the local microphone and/or camera.",
143
         "failedpermissions": "Failed to obtain permissions to use the local microphone and/or camera.",
145
         "bridgeUnavailable": "Jitsi Videobridge is currently unavailable. Please try again later!",
144
         "bridgeUnavailable": "Jitsi Videobridge is currently unavailable. Please try again later!",
146
         "lockTitle": "Lock failed",
145
         "lockTitle": "Lock failed",
147
-        "lockMessage": "Failed to lock conference.",
146
+        "lockMessage": "Failed to lock the conference.",
148
         "warning": "Warning",
147
         "warning": "Warning",
149
         "passwordNotSupported": "Room passwords are currently not supported.",
148
         "passwordNotSupported": "Room passwords are currently not supported.",
150
         "sorry": "Sorry",
149
         "sorry": "Sorry",
159
         "removePreziTitle": "Remove Prezi",
158
         "removePreziTitle": "Remove Prezi",
160
         "removePreziMsg": "Are you sure you would like to remove your Prezi?",
159
         "removePreziMsg": "Are you sure you would like to remove your Prezi?",
161
         "sharePreziTitle": "Share a Prezi",
160
         "sharePreziTitle": "Share a Prezi",
162
-        "sharePreziMsg": "Another participant is already sharing a Prezi.This conference allows only one Prezi at a time.",
161
+        "sharePreziMsg": "Another participant is already sharing a Prezi. This conference allows only one Prezi at a time.",
163
         "Remove": "Remove",
162
         "Remove": "Remove",
164
         "WaitingForHost": "Waiting for the host ...",
163
         "WaitingForHost": "Waiting for the host ...",
165
         "WaitForHostMsg": "The conference <b>__room__ </b> has not yet started. If you are the host then please authenticate. Otherwise, please wait for the host to arrive.",
164
         "WaitForHostMsg": "The conference <b>__room__ </b> has not yet started. If you are the host then please authenticate. Otherwise, please wait for the host to arrive.",
169
         "logoutTitle" : "Logout",
168
         "logoutTitle" : "Logout",
170
         "logoutQuestion" : "Are you sure you want to logout and stop the conference?",
169
         "logoutQuestion" : "Are you sure you want to logout and stop the conference?",
171
         "sessTerminated": "Session Terminated",
170
         "sessTerminated": "Session Terminated",
172
-        "hungUp": "You hung up the call",
171
+        "hungUp": "You hung up",
173
         "joinAgain": "Join again",
172
         "joinAgain": "Join again",
174
         "Share": "Share",
173
         "Share": "Share",
175
         "preziLinkError": "Please provide a correct prezi link.",
174
         "preziLinkError": "Please provide a correct prezi link.",
200
     "email":
199
     "email":
201
     {
200
     {
202
         "sharedKey": [
201
         "sharedKey": [
203
-            "This conference is password protected. Please use the following pin when joining:",
202
+            "This conference is password-protected. Please use the following pin when joining:",
204
             "",
203
             "",
205
             "",
204
             "",
206
             "__sharedKey__",
205
             "__sharedKey__",

+ 1
- 1
modules/UI/UI.js Bestand weergeven

314
 
314
 
315
     APP.xmpp.addListener(XMPPEvents.ROOM_JOIN_ERROR, function (pres) {
315
     APP.xmpp.addListener(XMPPEvents.ROOM_JOIN_ERROR, function (pres) {
316
         UI.messageHandler.openReportDialog(null,
316
         UI.messageHandler.openReportDialog(null,
317
-            "dialog.joinError", pres);
317
+            "dialog.connectError", pres);
318
     });
318
     });
319
     APP.xmpp.addListener(XMPPEvents.ROOM_CONNECT_ERROR, function (pres) {
319
     APP.xmpp.addListener(XMPPEvents.ROOM_CONNECT_ERROR, function (pres) {
320
         UI.messageHandler.openReportDialog(null,
320
         UI.messageHandler.openReportDialog(null,

Laden…
Annuleren
Opslaan