review changes: colon

This commit is contained in:
10G Meow 2022-11-02 17:50:51 +02:00 committed by n8fr8
parent be342b8f52
commit 6eb5ea1643
13 changed files with 13 additions and 13 deletions

View file

@ -71,7 +71,7 @@
"room_topic": "གལ་ཏེ་འདོད་པ་ཡོད་ན། ཚོགས་པའི་སྐོར་གྱི་འགྲེལ་བཤད་ཐུང་ངུ་ཞིག་འབྲི་ཆོག",
"create": "བཟོས།",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"menu": {
"logout": "ཕྱིར་ཐོན།",

View file

@ -97,7 +97,7 @@
"name_room": "Raum benennen",
"room_topic": "Füge eine Beschreibung hinzu, wenn du möchtest",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"device_list": {
"title": "GERÄTE",

View file

@ -107,7 +107,7 @@
"status_avatar_total": "Uploading avatar: {count} of {total}",
"status_avatar": "Uploading avatar: {count}",
"room_name_limit_error_msg": "Maximum 50 characters allowed",
"semicolon_not_allowed": "Semicolon is allowed"
"colon_not_allowed": "Colon is not allowed"
},
"device_list": {
"title": "DEVICES",

View file

@ -123,7 +123,7 @@
"create": "Crear",
"room_topic": "Añade una descripción si quieres",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"room_welcome": {
"join_public": "Cualquiera puede unirse abriendo este vínculo: {link}",

View file

@ -29,7 +29,7 @@
"link_copied": "Linkki kopioitu!",
"public_info": "Kuka tahansa, jolla on linkki",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"purge_room": {
"n_seconds": "{seconds} sekuntia",

View file

@ -97,7 +97,7 @@
"join_permissions_info": "Ces autorisations déterminent comment les personnes peuvent rejoindre le salon et avec quelle facilité dautres personnes peuvent être invitées. Elles peuvent être modifiées à tout moment.",
"status_creating": "Création du salon",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"device_list": {
"title": "APPAREILS",

View file

@ -96,7 +96,7 @@
"join_permissions_info": "Questi permessi determinano come le persone possono entrare nella stanza e quanto facilmente gli altri possono essere invitati. Possono essere cambiati in qualsiasi momento.",
"public_info": "Chiunque abbia un collegamento",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"device_list": {
"title": "DISPOSITIVI",

View file

@ -116,7 +116,7 @@
"create": "Opprett",
"new_room": "Nytt rom",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"room_welcome": {
"room_history_is": "Romhistorikken er {type}.",

View file

@ -120,7 +120,7 @@
"status_avatar_total": "Enviando o avatar: {count} de {total}",
"status_avatar": "Enviando avatar: {count}",
"room_name_limit_error_msg": "O máximo de 50 caracteres são permitidos",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"device_list": {
"title": "DISPOSITIVOS",

View file

@ -168,7 +168,7 @@
"create": "Creați",
"new_room": "Cameră nouă",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"room_welcome": {
"got_it": "L-am prins",

View file

@ -85,7 +85,7 @@
"create": "قۇرۇش",
"new_room": "يېڭى مۇنازىرەخانا",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"room": {
"purge_failed": "مۇنازىرەخانىنى يۇيۇش مەغلۇب بولدى!",

View file

@ -218,7 +218,7 @@
"room_topic": "如果您愿意,请添加说明",
"create": "创建",
"room_name_limit_error_msg": "",
"semicolon_not_allowed": ""
"colon_not_allowed": ""
},
"room_welcome": {
"got_it": "知道了",

View file

@ -302,7 +302,7 @@ export default {
enterRoomDialog: false,
roomNamerules: [
v => v.length <= 50 || this.$t("new_room.room_name_limit_error_msg"),
v => !v.includes(':') || this.$t("new_room.semicolon_not_allowed")
v => !v.includes(':') || this.$t("new_room.colon_not_allowed")
],
roomNameHasError: false,
roomCreationErrorMsg: ""