8000 fix: add missing translations by mightymop · Pull Request #1086 · jsxc/jsxc · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: add missing translations #1086

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 20 additions & 7 deletions locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@
"cmd_participant": "[nickname] Mache Nutzer zu Teilnehmer ",
"cmd_member": "[JID] Ändere Zugehörigkeit zu Mitglied",
"cmd_moderator": "[nickname] Ändere Rolle zu Moderator",
"cmd_revoke": null,
"cmd_admin": null,
"cmd_revoke": "[JID] Mitgliedschaft entziehen",
"cmd_admin": "[JID] zum Administrator befördern",
"cmd_destroy": "Löse Gruppe auf",
"cmd_owner": null,
"cmd_owner": "[JID] zum Besitzer befördern",
"cmd_invite": "[JID] (Grund) Lade Benutzer zu Gruppe ein",
"cmd_title": "Kommandos",
"cmd_description": "Durch senden der folgenden Kommandos können verschiedene Aktionen ausgeführt werden.",
Expand Down Expand Up @@ -244,7 +244,7 @@
"Server": "Server",
"Rooms_are_loaded": "Gruppen werden geladen",
"Could_load_only": "Es konnten nur __count__ Gruppen für die Autovervollständigung geladen werden",
"muc_explanation": "Bitte trage den Gruppennamen und optional einen Nickname ein, um einer Gruppe beizutreten",
"muc_explanation": "Bitte trage den Gruppennamen und optional einen Nickname ein, um einer Gruppe beizutreten oder diese zu erstellen",
"You_already_joined_this_room": "Du bist dieser Gruppe bereits beigetreten",
"This_room_will_be_closed": "Diese Gruppe wird geschlossen",
"Room_not_found_": "Es wird eine neue Gruppe erstellt",
Expand Down Expand Up @@ -437,9 +437,22 @@
"Occupants": "Teilnehmer",
"Occupants_not_provided": "Keine Teilnehmer in diesem Raum, oder die Teilnehmerliste ist privat.",
"Edit_avatar": "Bearbeite Profilfoto",
"Every_member_can_see_your_full_JID": null,
"Every_member_can_see_your_full_JID": "Jeder kann ihre JID sehen",
"message_not_delivered": "Nachricht nicht zugestellt",
"User_media_not_readable": null
"User_media_not_readable": null,
"You_left_the_building": "Sie haben den Raum verlassen.",
"muc_invitation": "Einladung",
"muc_invitation_explanation": "Sie haben eine Einladung für den Beitritt eines Raumes erhalten und nun die Wahl diese zu bestätigen oder abzulehnen.",
"Open_window": "Chatfenster öffnen",
"Configuration_canceled": "Raumkonfiguration abgebrochen",
"Aborted": "Vom Benutzer abgebrochen",
"QRCode_description": "Scannen Sie den QR-Code mit einem Mobilgerät um den Schlüssel zu verifizieren.",
"QRCode_noqrcode": "QR-Code nicht verfügbar",
"setting-jmi-enable": "Aktiviert die Möglichkeit Jingle-Nachrichten zu senden",
"Connection_interrupted": "Verbindung unterbrochen",
"Declined": "Verweigert",
"setting-pep-avatar-enable": "Verwendet PEP zum Laden der Avatare",
"setting-lmc-enable": "Aktiviert die Möglichkeit zur Korrektur der letzten Nachricht"
},
"Notifications": "Benachrichtigungen"
}
}
19 changes: 16 additions & 3 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
"Server": "Server",
"Rooms_are_loaded": "Loading rooms",
"Could_load_only": "Could load only __count__ rooms for autocomplete",
"muc_explanation": "Please enter room name and optionally a nickname to join a chat",
"muc_explanation": "Please enter room name and optionally a nickname to join or create a chat",
"You_already_joined_this_room": "You already joined this room",
"This_room_will_be_closed": "This room will be closed",
"Room_not_found_": "A new room will be created",
10000 Expand Down Expand Up @@ -439,7 +439,20 @@
"Edit_avatar": "Edit avatar",
"Every_member_can_see_your_full_JID": "Every member can see your full JID",
"message_not_delivered": "Message not delivered",
"User_media_not_readable": "User media not readable. Is your device used by another application?"
"User_media_not_readable": "User media not readable. Is your device used by another application?",
"You_left_the_building": "You have left the room",
"muc_invitation": "Invitation",
"muc_invitation_explanation": "You have got a room invitation and you have the choice to deny or accept.",
"Open_window": "Open chat window",
"Configuration_canceled": "Room configuration canceled",
"Aborted": "Canceled by user",
"QRCode_description": "Scan QR-Code with mobile client to verify the key",
"QRCode_noqrcode": "QR-Code not available",
"setting-jmi-enable": "Enable the ability to initiate jingle messages",
"Connection_interrupted": "Connection interrupted",
"Declined": "declined",
"setting-pep-avatar-enable": "PEP will be used for loading avatars",
"setting-lmc-enable": "Enables the ability to correct the last message"
},
"Notifications": "Notifications"
}
}
2 changes: 1 addition & 1 deletion src/ui/dialogs/vcard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function (contact: IContact) {
return Promise.reject();
})
.catch(() => {
clientElement.text(Translation.t('Not_available'));
clientElement.text(Translation.t('not_available'));
});
}

Expand Down
4 changes: 2 additions & 2 deletions template/contactsearch.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
</div>
</div>
<div class="jsxc-content">
{{t "Loading"}}
{{t "loading"}}
</div>
<div class="jsxc-results"></div>
<div class="jsxc-results"></div>
4 changes: 2 additions & 2 deletions template/dialogOmemoDeviceList.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="jsxc-qr-code">
<label>
<input type="checkbox" />
<img src="{{qrcodedatauri}}" class="jsxc-qr-code-peer" alt="{{t " QRCode_noqrcode"}}" />
<img src="{{qrcodedatauri}}" class="jsxc-qr-code-peer" alt="{{t "QRCode_noqrcode"}}" />
</label>
<div class="jsxc-qr-code-desc-peer">{{t "QRCode_description"}}</div>
</div>
Expand All @@ -16,7 +16,7 @@
<div class="jsxc-qr-code">
<label>
<input type="checkbox" />
<img src="{{qrcodedatauri}}" class="jsxc-qr-code-own" alt="{{t " QRCode_noqrcode"}}" />
<img src="{{qrcodedatauri}}" class="jsxc-qr-code-own" alt="{{t "QRCode_noqrcode"}}" />
</label>
<div class="jsxc-qr-code-desc-own">{{t "QRCode_description"}}</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion template/multiUserInvitation.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<p class="jsxc-explanation">{{t "muc_invitation_explanation"}}</p>
<form class="form-horizontal">
<div class="form-group">
<label class="col-sm-4 control-label" for="jsxc-jid">{{t "From"}}</label>
<label class="col-sm-4 control-label" for="jsxc-jid">{{t "from"}}</label>
<div class="col-sm-8">
<p>{{from}}</p>
</div>
Expand Down
7 changes: 4 additions & 3 deletions template/roster-item.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

<div class="jsxc-bar__caption jsxc-grow">
<div title="{{jid}}" class="jsxc-bar__caption__primary">{{name}}</div>
<div class="jsxc-bar__geoloc"></div>
<div title="{{tag}}" class="jsxc-bar__tags"></div>
<div title="{{lastMessage}}" class="jsxc-bar__caption__secondary">{{lastMessage}}</div>
</div>
Expand All @@ -14,10 +15,10 @@
</div>
<div class="jsxc-menu__content">
<ul>
<li class="jsxc-rename" title="{{t " rename_buddy"}}"><i class="jsxc-icon-edit jsxc-icon--center"></i>
<li class="jsxc-rename" title="{{t "rename_buddy"}}"><i class="jsxc-icon-edit jsxc-icon--center"></i>
</li>
<li class="jsxc-vcard" title="{{t " get_info"}}"><i class="jsxc-icon-info jsxc-icon--center"></i></li>
<li class="jsxc-delete" title="{{t " delete_buddy"}}"><i class="jsxc-icon-delete jsxc-icon--center"></i>
<li class="jsxc-vcard" title="{{t "get_info"}}"><i class="jsxc-icon-info jsxc-icon--center"></i></li>
<li class="jsxc-delete" title="{{t "delete_buddy"}}"><i class="jsxc-icon-delete jsxc-icon--center"></i>
</li>
</ul>
</div>
Expand Down
0