Compare commits
4 Commits
v0.12.1
...
v0.12.0-rc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9f5f4ee8d1 | ||
|
|
f79f8e1d3e | ||
|
|
7412828f05 | ||
|
|
beb694f68c |
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,19 +1,9 @@
|
||||
Changes in [0.12.1](https://github.com/vector-im/riot-web/releases/tag/v0.12.1) (2017-08-23)
|
||||
============================================================================================
|
||||
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.12.1-rc.1...v0.12.1)
|
||||
|
||||
* [No changes]
|
||||
|
||||
Changes in [0.12.1-rc.1](https://github.com/vector-im/riot-web/releases/tag/v0.12.1-rc.1) (2017-08-22)
|
||||
Changes in [0.12.0-rc.2](https://github.com/vector-im/riot-web/releases/tag/v0.12.0-rc.2) (2017-08-22)
|
||||
======================================================================================================
|
||||
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.12.0-rc.2...v0.12.1-rc.1)
|
||||
[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.12.0-rc.1...v0.12.0-rc.2)
|
||||
|
||||
* Update to react-sdk v0.10.0-rc.2
|
||||
|
||||
* Update from Weblate.
|
||||
[\#4832](https://github.com/vector-im/riot-web/pull/4832)
|
||||
* Misc styling fixes.
|
||||
[\#4826](https://github.com/vector-im/riot-web/pull/4826)
|
||||
* Show / Hide apps icons
|
||||
[\#4774](https://github.com/vector-im/riot-web/pull/4774)
|
||||
|
||||
Changes in [0.12.0-rc.1](https://github.com/vector-im/riot-web/releases/tag/v0.12.0-rc.1) (2017-08-16)
|
||||
======================================================================================================
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "riot-web",
|
||||
"productName": "Riot",
|
||||
"main": "src/electron-main.js",
|
||||
"version": "0.12.1",
|
||||
"version": "0.12.0-rc.2",
|
||||
"description": "A feature-rich client for Matrix.org",
|
||||
"author": "Vector Creations Ltd.",
|
||||
"dependencies": {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "riot-web",
|
||||
"productName": "Riot",
|
||||
"main": "electron_app/src/electron-main.js",
|
||||
"version": "0.12.1",
|
||||
"version": "0.12.0-rc.2",
|
||||
"description": "A feature-rich client for Matrix.org",
|
||||
"author": "Vector Creations Ltd.",
|
||||
"repository": {
|
||||
@@ -66,8 +66,8 @@
|
||||
"gfm.css": "^1.1.1",
|
||||
"highlight.js": "^9.0.0",
|
||||
"linkifyjs": "^2.1.3",
|
||||
"matrix-js-sdk": "0.8.1",
|
||||
"matrix-react-sdk": "0.10.1",
|
||||
"matrix-js-sdk": "0.8.0",
|
||||
"matrix-react-sdk": "0.10.0-rc.2",
|
||||
"modernizr": "^3.1.0",
|
||||
"pako": "^1.0.5",
|
||||
"react": "^15.6.0",
|
||||
@@ -151,7 +151,7 @@
|
||||
"build": {
|
||||
"appId": "im.riot.app",
|
||||
"category": "Network",
|
||||
"electronVersion": "1.7.5",
|
||||
"electronVersion": "1.6.8",
|
||||
"//asar=false": "https://github.com/electron-userland/electron-builder/issues/675",
|
||||
"asar": false,
|
||||
"dereference": true,
|
||||
|
||||
@@ -9,27 +9,24 @@
|
||||
// This could readily be automated, but it's nice to explicitly
|
||||
// control when we languages are available.
|
||||
const INCLUDE_LANGS = [
|
||||
{'value': 'da', 'label': 'Dansk'},
|
||||
{'value': 'de_DE', 'label': 'Deutsch'},
|
||||
{'value': 'en_EN', 'label': 'English'},
|
||||
{'value': 'en_US', 'label': 'English (US)'},
|
||||
{'value': 'da', 'label': 'Dansk'},
|
||||
{'value': 'el', 'label': 'Ελληνικά'},
|
||||
{'value': 'eo', 'label': 'Esperanto'},
|
||||
{'value': 'es', 'label': 'Español'},
|
||||
{'value': 'eu', 'label': 'Euskal'},
|
||||
{'value': 'nl', 'label': 'Nederlands'},
|
||||
{'value': 'de_DE', 'label': 'Deutsch'},
|
||||
{'value': 'fr', 'label': 'Français'},
|
||||
{'value': 'hu', 'label': 'Magyar'},
|
||||
{'value': 'ko', 'label': '한국어'},
|
||||
{'value': 'lv', 'label': 'Latviešu'},
|
||||
{'value': 'nb_NO', 'label': 'Norwegian Bokmål'},
|
||||
{'value': 'nl', 'label': 'Nederlands'},
|
||||
{'value': 'pl', 'label': 'Polski'},
|
||||
{'value': 'pt', 'label': 'Português'},
|
||||
{'value': 'pt_BR', 'label': 'Português do Brasil'},
|
||||
{'value': 'ru', 'label': 'Русский'},
|
||||
{'value': 'sv', 'label': 'Svenska'},
|
||||
{'value': 'es', 'label': 'Español'},
|
||||
{'value': 'th', 'label': 'ไทย'},
|
||||
{'value': 'te', 'label': 'తెలుగు'},
|
||||
{'value': 'tr', 'label': 'Türk'},
|
||||
{'value': 'zh_Hans', 'label': '简体中文'}, // simplified chinese
|
||||
{'value': 'zh_Hant', 'label': '繁體中文'}, // traditional chinese
|
||||
|
||||
@@ -1 +1 @@
|
||||
{}
|
||||
{}
|
||||
@@ -1,53 +1 @@
|
||||
{
|
||||
"Close": "Zavřít",
|
||||
"<a href=\"http://apple.com/safari\">Safari</a> and <a href=\"http://opera.com\">Opera</a> work too.": "<a href=\"http://apple.com/safari\">Safari</a> a <a href=\"http://opera.com\">Opera</a> fungují také.",
|
||||
"A new version of Riot is available.": "Je dostupná nová verze Riotu.",
|
||||
"Notifications": "Upozornění",
|
||||
"Search": "Hledání",
|
||||
"Settings": "Nastavení",
|
||||
"Create new room": "Založit novou místnost",
|
||||
"Room directory": "Adresář místností",
|
||||
"Start chat": "Začít chat",
|
||||
"All Rooms": "Všechny místnosti",
|
||||
"Files": "Soubory",
|
||||
"Filter room names": "Filtrovat místnosti dle názvu",
|
||||
"Forward Message": "Přeposlat zprávu",
|
||||
"Invite to this room": "Pozvat do této místnosti",
|
||||
"Members": "Členové",
|
||||
"Permalink": "Trvalý odkaz",
|
||||
"Search…": "Vyhledat…",
|
||||
"This Room": "Tato místnost",
|
||||
"View Source": "Zobrazit zdroj",
|
||||
"Login": "Přihlásit",
|
||||
"Advanced notification settings": "Pokročilé nastavení upozornění",
|
||||
"All messages": "Všechny zprávy",
|
||||
"Cancel": "Storno",
|
||||
"Changelog": "Seznam změn",
|
||||
"Describe your problem here.": "Popište zde svůj problém.",
|
||||
"Direct Chat": "Přímý chat",
|
||||
"Directory": "Adresář",
|
||||
"Download this file": "Stáhnout tento soubor",
|
||||
"Error": "Chyba",
|
||||
"Failed to change settings": "Nepodařilo se změnit nastavení",
|
||||
"Failed to get public room list": "Nepodařilo se získat seznam veřejných místností",
|
||||
"Failed to join the room": "Nepodařilo se vstoupit do místnosti",
|
||||
"Favourite": "V oblíbených",
|
||||
"Guests can join": "Hosté mohou vstoupit",
|
||||
"Guest users can't invite users. Please register to invite.": "Hosté nemohou zvát uživatele. Zaregistrujte se a budete moci zvát.",
|
||||
"Hide panel": "Skrýt panel",
|
||||
"I understand the risks and wish to continue": "Rozumím rizikům a přeji si pokračovat",
|
||||
"Keywords": "Klíčová slova",
|
||||
"Leave": "Opustit",
|
||||
"Loading bug report module": "Nahrává se modul nahlašování chyb",
|
||||
"Low Priority": "Nízká priorita",
|
||||
"Mentions only": "Pouze zmínky",
|
||||
"Messages containing my display name": "Zprávy obsahující mé zobrazované jméno",
|
||||
"Messages containing <span>keywords</span>": "Zprávy obsahující <span>klíčová slova</span>",
|
||||
"Messages containing my user name": "Zprávy obsahující mé uživatelské jméno",
|
||||
"Messages in group chats": "Zprávy ve skupinových chatech",
|
||||
"Messages sent by bot": "Zprávy poslané robotem",
|
||||
"more": "více",
|
||||
"Mute": "Ztišit",
|
||||
"All messages (loud)": "Všechny zprávy (hlasitě)",
|
||||
"Couldn't load home page": "Nepodařilo se nahrát úvodní stránku"
|
||||
}
|
||||
{}
|
||||
@@ -161,7 +161,7 @@
|
||||
"This Room": "In diesem Raum",
|
||||
"Unavailable": "Nicht verfügbar",
|
||||
"Unknown device": "Unbekanntes Gerät",
|
||||
"Update": "Aktualisieren",
|
||||
"Update": "Aktualisiere",
|
||||
"Uploading report": "Lade Bericht hoch",
|
||||
"What's New": "Was ist neu",
|
||||
"What's new?": "Was ist neu?",
|
||||
|
||||
@@ -206,5 +206,5 @@
|
||||
"To return to your account in future you need to <u>set a password</u>": "Para regresar a su cuenta en el futuro Ud. debe <u>establecer una contraseña</u>",
|
||||
"Set Password": "Establezca la contraseña",
|
||||
"Error encountered (%(errorDetail)s).": "Error encontrado (%(errorDetail)s).",
|
||||
"Couldn't load home page": "No se puede cargar la página principal"
|
||||
"Couldn't load home page": "No se puede cargar la pagina principal"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"Add an email address above to configure email notifications": "Ajouter une adresse e-mail pour la configuration des notifications par e-mail",
|
||||
"Add an email address above to configure email notifications": "Ajouter une adresse email pour la configuration des notifications par email",
|
||||
"All messages": "Tous les messages",
|
||||
"All messages (loud)": "Tous les messages (fort)",
|
||||
"All notifications are currently disabled for all targets.": "Toutes les notifications sont désactivées pour tous les appareils.",
|
||||
@@ -12,7 +12,7 @@
|
||||
"Custom Server Options": "Options de serveur personnalisées",
|
||||
"delete the alias.": "supprimer l'alias.",
|
||||
"Delete the room alias %(alias)s and remove %(name)s from the directory?": "Supprimer l'alias %(alias)s du salon et supprimer %(name)s du répertoire ?",
|
||||
"Direct Chat": "Discussion directe",
|
||||
"Direct Chat": "Discussion Directe",
|
||||
"Directory": "Répertoire",
|
||||
"Dismiss": "Ignorer",
|
||||
"Download this file": "Télécharger ce fichier",
|
||||
@@ -24,7 +24,7 @@
|
||||
"Enable them now": "Les activer maintenant",
|
||||
"Enter keywords separated by a comma:": "Entrez les mots clés séparés par une virgule :",
|
||||
"Error": "Erreur",
|
||||
"Error saving email notification preferences": "Erreur lors de la sauvegarde des notifications par e-mail",
|
||||
"Error saving email notification preferences": "Erreur lors de la sauvegarde des notifications par email",
|
||||
"#example": "#exemple",
|
||||
"Failed to": "Échec pour",
|
||||
"Failed to add tag %(tagName)s to room": "Échec lors de l'ajout de l’étiquette %(tagName)s au salon",
|
||||
@@ -38,7 +38,7 @@
|
||||
"Failed to set direct chat tag": "Échec dans l'attribution d'une étiquette dans la discussion directe",
|
||||
"Favourite": "Favoris",
|
||||
"Operation failed": "L'opération a échoué",
|
||||
"Please Register": "Veuillez vous inscrire",
|
||||
"Please Register": "Veuillez vous enregistrer",
|
||||
"powered by Matrix": "propulsé par Matrix",
|
||||
"Quote": "Citer",
|
||||
"Redact": "Rédiger",
|
||||
@@ -70,17 +70,17 @@
|
||||
"Filter room names": "Filtrer les salons par nom",
|
||||
"Forget": "Oublier",
|
||||
" from room": " du salon",
|
||||
"Guest users can't invite users. Please register to invite.": "Les visiteurs ne peuvent démarrer une discussion. Merci de vous inscrire pour pouvoir démarrer une discussion.",
|
||||
"Guest users can't invite users. Please register to invite.": "Les visiteurs ne peuvent démarrer une discussion. Merci de vous enregistrer pour pouvoir démarrer une discussion.",
|
||||
"Invite to this room": "Inviter dans ce salon",
|
||||
"Keywords": "Mots-clés",
|
||||
"Leave": "Quitter",
|
||||
"Low Priority": "Priorité basse",
|
||||
"Low Priority": "Priorité Basse",
|
||||
"Members": "Membres",
|
||||
"Mentions only": "Seulement les mentions",
|
||||
"Messages containing my display name": "Messages contenant mon nom",
|
||||
"Messages containing my user name": "Message contenant mon nom d'utilisateur",
|
||||
"Messages in group chats": "Messages dans les conversations de groupe",
|
||||
"Messages in one-to-one chats": "Messages dans les discussions directes",
|
||||
"Messages in one-to-one chats": "Messages dans les conversations directes",
|
||||
"Messages sent by bot": "Messages envoyés par des robots",
|
||||
"more": "plus",
|
||||
"Mute": "Couper le son",
|
||||
@@ -99,12 +99,12 @@
|
||||
"Riot does not know how to join a room on this network": "Riot ne peut pas joindre un salon sur ce réseau",
|
||||
"Room directory": "Répertoire des salons",
|
||||
"Room not found": "Salon non trouvé",
|
||||
"Search for a room": "Rechercher un salon",
|
||||
"Search for a room": "Chercher un salon",
|
||||
"Source URL": "URL source",
|
||||
"The Home Server may be too old to support third party networks": "Le homeserver semble trop ancien pour supporter des réseaux tiers",
|
||||
"The Home Server may be too old to support third party networks": "Le Home Server semble trop ancien pour supporter des réseaux tiers",
|
||||
"There are advanced notifications which are not shown here": "Il existe une configuration avancée des notifications qui ne peut être affichée ici",
|
||||
"The server may be unavailable or overloaded": "Le serveur est indisponible ou surchargé",
|
||||
"This room is inaccessible to guests. You may be able to join if you register.": "Ce salon n'est pas ouvert aux visiteurs. Vous pourrez peut-être le rejoindre si vous vous inscrivez.",
|
||||
"This room is inaccessible to guests. You may be able to join if you register.": "Ce salon n'est pas ouvert aux visiteurs. Vous pourrez peut-être le rejoindre si vous vous enregistrez.",
|
||||
"Unable to fetch notification target list": "Impossible de récupérer la liste des appareils recevant les notifications",
|
||||
"Unable to join network": "Impossible de rejoindre le réseau",
|
||||
"Unable to look up room ID from server": "Impossible de récupérer l'ID du salon sur le serveur",
|
||||
@@ -118,7 +118,7 @@
|
||||
"Guests can join": "Ouvert aux visiteurs",
|
||||
" to room": " au salon",
|
||||
"Advanced notification settings": "Paramètres de notification avancés",
|
||||
"customServer_text": "Vous pouvez utiliser l'option de serveur personnalisé pour vous connectez à d'autres serveurs Matrix, en spécifiant une adresse de homerserver différente.<br/>Cela permet d'utiliser Riot avec un compte existant sur un homeserver différent.<br/><br/>Vous pouvez aussi indiquer un serveur d'identité personnel mais vous ne pourrez plus inviter des utilisateurs par e-mail, ou être invité par e-mail.",
|
||||
"customServer_text": "Vous pouvez utiliser l'option de serveur personnalisé pour vous connectez à d'autres serveurs Matrix, en spécifiant une adresse de homerserver différente.<br/>Cela permet d'utiliser Riot avec un compte existant sur un homeserver différent.<br/><br/>Vous pouvez aussi indiquer un serveur d'identité personnel mais vous ne pourrez plus inviter des utilisateurs par email, ou être invité par email.",
|
||||
"Notifications on the following keywords follow rules which can’t be displayed here:": "Les notifications pour les mots-clés suivant répondent à des critères qui ne peuvent pas être affichés ici :",
|
||||
"Collapse panel": "Cacher le panneau",
|
||||
"Expand panel": "Dévoiler le panneau",
|
||||
@@ -144,7 +144,7 @@
|
||||
"Loading bug report module": "Chargement du module de rapport d’erreur",
|
||||
"Please describe the bug. What did you do? What did you expect to happen? What actually happened?": "Veuillez décrire le problème. Qu’avez-vous fait ? Quel comportement vous attendiez vous à voir ? Que s’est-il effectivement passé ?",
|
||||
"Please describe the bug and/or send logs.": "Veuillez décrire le problème et/ou envoyer les traces.",
|
||||
"Report a bug": "Signaler un problème",
|
||||
"Report a bug": "Reporter un problème",
|
||||
"Riot Desktop on %(platformName)s": "Version bureau de Riot sur %(platformName)s",
|
||||
"Riot is not supported on mobile web. Install the app?": "Riot Web n’est pas supporté sur mobile. Installer l’application ?",
|
||||
"Search": "Rechercher",
|
||||
@@ -159,7 +159,7 @@
|
||||
"What's New": "Nouveautés",
|
||||
"What's new?": "Nouveautés ?",
|
||||
"Waiting for response from server": "En attente d’une réponse du serveur",
|
||||
"You are Rioting as a guest. <a>Register</a> or <a>sign in</a> to access more rooms and features!": "Vous utilisez Riot en tant que visiteur. <a>Inscrivez-vous</a> ou <a>identifiez-vous</a> pour accéder à plus de salons et de fonctionnalités !",
|
||||
"You are Rioting as a guest. <a>Register</a> or <a>sign in</a> to access more rooms and features!": "Vous utilisez Riot en tant que visiteur. <a>Enregistrez-vous</a> ou <a>identifiez-vous</a> pour accéder à plus de salons et de fonctionnalités !",
|
||||
"You need to be using HTTPS to place a screen-sharing call.": "Vous devez utiliser HTTPS pour effectuer un appel en partage d’écran.",
|
||||
"OK": "OK",
|
||||
"Failed to change password. Is your password correct?": "Échec du changement de mot de passe. Votre mot de passe est-il correct ?",
|
||||
@@ -189,15 +189,15 @@
|
||||
"Discussion of all things Matrix!": "Discussion de tous les sujets Matrix !",
|
||||
"Support for those using the Matrix spec": "Support pour les utilisateurs de la spec Matrix",
|
||||
"Design and implementation of E2E in Matrix": "Définition et implémentation du chiffrement de bout-en-bout dans Matrix",
|
||||
"Implementing VR services with Matrix": "Implémentation de services de réalité virtuelle avec Matrix",
|
||||
"Implementing VoIP services with Matrix": "Implémentation de services de voix sur IP avec Matrix",
|
||||
"Implementing VR services with Matrix": "Implémentation de de services de réalité virtuelle avec Matrix",
|
||||
"Implementing VoIP services with Matrix": "Implémentation de de services de voix sur IP avec Matrix",
|
||||
"Discussion of the Identity Service API": "Discussion sur l’API du Service Identité",
|
||||
"Support for those using, running and writing other bridges": "Support pour les utilisateurs, administrateurs et développeurs de passerelles",
|
||||
"Contributing code to Matrix and Riot": "Contribuer à Matrix et Riot",
|
||||
"Dev chat for the Riot/Web dev team": "Forum pour les discussions sur les développements de Riot/Web",
|
||||
"Dev chat for the Dendrite dev team": "Forum pour les discussion sur les développements de Dendrite",
|
||||
"Co-ordination for Riot/Web translators": "Coordination des traducteurs de Riot/Web",
|
||||
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Beaucoup de salons existent déjà dans Matrix, liés à des réseaux existants (Slack, IRC, Gitter, etc.) ou indépendants. Jetez un œil au répertoire !",
|
||||
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Beaucoup de salons existent déjà dans Matrix, liés à des réseaux existants (Slack, IRC, Gitter etc) ou indépendants. Jetez un œil au répertoire !",
|
||||
"You have successfully set a password and an email address!": "Vous avez configuré un mot de passe et une adresse e-mail avec succès !",
|
||||
"Remember, you can always set an email address in user settings if you change your mind.": "Souvenez-vous que vous pourrez toujours définir une adresse e-mail dans la configuration utilisateur si vous changez d’avis.",
|
||||
"Warning": "Attention",
|
||||
|
||||
@@ -10,52 +10,10 @@
|
||||
"An error occurred whilst saving your email notification preferences.": "உங்கள் மின்னஞ்சல் அறிவிப்பு விருப்பங்களை சேமிக்கும்பொழுது தவறு ஏற்ப்பட்டது.",
|
||||
"Cancel": "நீக்கு",
|
||||
"Cancel Sending": "அனுப்புதலை நீக்கு",
|
||||
"Changelog": "மாற்றப்பதிவு",
|
||||
"Changelog": "மாற்றப்பதிவுகள்",
|
||||
"Close": "மூடு",
|
||||
"Collapse panel": "பலகத்தை மாற்றியமை",
|
||||
"Collecting app version information": "செயலியின் பதிப்பு தகவல்கள் சேகரிக்கப்படுகிறது",
|
||||
"Collecting logs": "பதிவுகள் சேகரிக்கப்படுகிறது",
|
||||
"Create new room": "புதிய அறையை உருவாக்கு",
|
||||
"%(appName)s via %(browserName)s on %(osName)s": "%(osName)s -ல் %(browserName)s -ன் வழியாக %(appName)s",
|
||||
"Call invitation": "தொடர்பு கொள்ள அழைப்பு",
|
||||
"Can't update user notification settings": "பயனர் அறிவிப்பு அமைப்புகளை மாற்ற முடியவில்லை",
|
||||
"Couldn't find a matching Matrix room": "பொருத்தமான Matrix அறை கண்டுபிடிக்கப்படவில்லை",
|
||||
"Custom Server Options": "விருப்பிற்கேற்ற வழங்கி இடப்புகள்",
|
||||
"delete the alias.": "மாற்றை அழி.",
|
||||
"Delete the room alias %(alias)s and remove %(name)s from the directory?": "அறை மாற்று %(alias)s -ஐ அழித்து, %(name)s -ஐ அடைவிலிருந்து நீக்க தயாரா?",
|
||||
"Describe your problem here.": "உங்கள் பிரச்சனையை இங்கு விவரிக்கவும்.",
|
||||
"Direct Chat": "நேரடி அரட்டை",
|
||||
"Directory": "அடைவு",
|
||||
"Dismiss": "நீக்கு",
|
||||
"Download this file": "இந்த கோப்பைத் தரவிறக்கு",
|
||||
"Drop here %(toAction)s": "%(toAction)s -ஐ இங்கு விடு",
|
||||
"Enable audible notifications in web client": "இணைய வாங்கியில் கேட்கக்கூடிய அறிவிப்புகளை ஏதுவாக்கு",
|
||||
"Enable desktop notifications": "திரை அறிவிப்புகளை ஏதுவாக்கு",
|
||||
"Enable email notifications": "மின்னஞ்சல் அறிவிப்புகளை ஏதுவாக்கு",
|
||||
"Enable notifications for this account": "இந்த கணக்கிற்க்கான அறிவிப்புகளை ஏதுவாக்கு",
|
||||
"Enable them now": "இப்போது அவற்றை ஏதுவாக்கு",
|
||||
"Error": "தவறு",
|
||||
"Expand panel": "பலகத்தை விரிவாக்கு",
|
||||
"Failed to": "ல் தோல்வி",
|
||||
"Failed to add tag %(tagName)s to room": "%(tagName)s எனும் குறிச்சொல்லை அறையில் சேர்ப்பதில் தோல்வி",
|
||||
"Failed to change settings": "அமைப்புகள் மாற்றத்தில் தோல்வி",
|
||||
"Failed to forget room %(errCode)s": "அறை மறப்பதில் தோல்வி %(errCode)s",
|
||||
"Failed to update keywords": "முக்கிய வார்த்தைகளை புதுப்பித்தலில் தோல்வி",
|
||||
"Failed to get public room list": "பொது அறைப் பட்டியலைப் பெறுவதில் தோல்வி",
|
||||
"Failed to join the room": "அறையில் சேர்வதில் தோல்வி",
|
||||
"Failed to send report: ": "அறிக்கை அனுப்புதலில் தோல்வி ",
|
||||
"Favourite": "விருப்பமான",
|
||||
"Files": "கோப்புகள்",
|
||||
"Filter room names": "அறை பெயர்களை வடிகட்டு",
|
||||
"Forget": "மற",
|
||||
" from room": " அறையில் இருந்து",
|
||||
"Guests can join": "விருந்தினர்கள் சேரலாம்",
|
||||
"Hide panel": "பலகத்தை மறை",
|
||||
"Invite to this room": "இந்த அறைக்கு அழை",
|
||||
"Keywords": "முக்கிய வார்த்தைகள்",
|
||||
"Leave": "வெளியேறு",
|
||||
"Login": "உள்நுழை",
|
||||
"Low Priority": "குறைந்த முன்னுரிமை",
|
||||
"Members": "உறுப்பினர்கள்",
|
||||
"Mentions only": "குறிப்பிடுகள் மட்டும்"
|
||||
"Create new room": "புதிய அறையை உருவாக்கு"
|
||||
}
|
||||
|
||||
@@ -76,10 +76,6 @@ limitations under the License.
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.mx_RoomView_auxPanel_apps {
|
||||
max-width: 1920px ! important;
|
||||
}
|
||||
|
||||
.mx_RoomView_topUnreadMessagesBar {
|
||||
order: 3;
|
||||
}
|
||||
|
||||
@@ -15,14 +15,12 @@ limitations under the License.
|
||||
*/
|
||||
|
||||
.mx_AppsDrawer {
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.mx_AppsContainer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.mx_AddWidget_button {
|
||||
@@ -30,15 +28,11 @@ limitations under the License.
|
||||
cursor: pointer;
|
||||
padding-right: 12px;
|
||||
padding: 0;
|
||||
margin: 5px auto 5px auto;
|
||||
margin: 0 0 5px 0;
|
||||
color: $accent-color;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.mx_AddWidget_button_full_width {
|
||||
max-width: 960px;
|
||||
}
|
||||
|
||||
.mx_SetAppURLDialog_input {
|
||||
border-radius: 3px;
|
||||
border: 1px solid $input-border-color;
|
||||
@@ -49,7 +43,6 @@ limitations under the License.
|
||||
}
|
||||
|
||||
.mx_AppTile {
|
||||
max-width: 960px;
|
||||
width: 50%;
|
||||
margin: 0 5px 2px 0;
|
||||
border: 1px solid $primary-hairline-color;
|
||||
@@ -59,7 +52,6 @@ limitations under the License.
|
||||
}
|
||||
|
||||
.mx_AppTileFullWidth {
|
||||
max-width: 960px;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@@ -74,7 +66,7 @@ limitations under the License.
|
||||
margin: 0;
|
||||
padding: 2px 10px;
|
||||
// background-color: $e2e-verified-color;
|
||||
// border-bottom: 1px solid $primary-hairline-color;
|
||||
border-bottom: 1px solid $primary-hairline-color;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
@@ -102,7 +94,6 @@ limitations under the License.
|
||||
|
||||
.mx_AppTileBody{
|
||||
height: 350px;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st1{opacity:0.85;}
|
||||
.st2{fill:none;stroke:#FFFFFF;stroke-width:1;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st3{fill:#FFFFFF;}
|
||||
.st4{fill:none;stroke:#FFFFFF;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g id="Layer_1_1_">
|
||||
<path id="Oval-109-Copy" fill="#76CFA6" d="M17.5,35C27.2,35,35,27.2,35,17.5S27.2,0,17.5,0S0,7.8,0,17.5S7.8,35,17.5,35z"/>
|
||||
</g>
|
||||
<g id="frame" class="st1">
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<g>
|
||||
<line class="st2" x1="17.5" y1="21" x2="17.5" y2="26"/>
|
||||
<g>
|
||||
<polygon class="st3" points="15.5,21.8 17.5,18.3 19.5,21.8 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="6.7" y="6.7" class="st4" width="21.6" height="21.6"/>
|
||||
<line class="st4" x1="6.7" y1="16.7" x2="28.2" y2="16.7"/>
|
||||
<path class="st3" d="M13.3,13.3v-3.1c0-0.1-0.1-0.3-0.3-0.3H9.9c-0.1,0-0.3,0.1-0.3,0.3v3.1c0,0.1,0.1,0.3,0.3,0.3H13
|
||||
C13.2,13.5,13.3,13.4,13.3,13.3z"/>
|
||||
<path class="st3" d="M19.3,13.3v-3.1c0-0.1-0.1-0.3-0.3-0.3h-3.1c-0.1,0-0.3,0.1-0.3,0.3v3.1c0,0.1,0.1,0.3,0.3,0.3H19
|
||||
C19.2,13.5,19.3,13.4,19.3,13.3z"/>
|
||||
<path class="st3" d="M25.3,13.3v-3.1c0-0.1-0.1-0.3-0.3-0.3h-3.1c-0.1,0-0.3,0.1-0.3,0.3v3.1c0,0.1,0.1,0.3,0.3,0.3H25
|
||||
C25.2,13.5,25.3,13.4,25.3,13.3z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,33 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{opacity:0.15;}
|
||||
.st2{fill:none;stroke-width:1;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st3{fill:none;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g id="Layer_1_1_" class="st0">
|
||||
<path id="Oval-109-Copy" fill="#76CFA6" d="M17.5,35C27.2,35,35,27.2,35,17.5S27.2,0,17.5,0S0,7.8,0,17.5S7.8,35,17.5,35z"/>
|
||||
</g>
|
||||
<g id="frame">
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<g>
|
||||
<line class="st2" stroke="#76CFA6" x1="17.5" y1="23.9" x2="17.5" y2="18.9"/>
|
||||
<g>
|
||||
<polygon fill="#76CFA6" points="19.5,23.1 17.5,26.6 15.5,23.1 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="6.7" y="6.7" class="st3" stroke="#76CFA6" width="21.6" height="21.6"/>
|
||||
<line class="st3" stroke="#76CFA6" x1="6.7" y1="16.7" x2="28.2" y2="16.7"/>
|
||||
<path fill="#76CFA6" d="M13.3,13.3v-3.1c0-0.1-0.1-0.3-0.3-0.3H9.9c-0.1,0-0.3,0.1-0.3,0.3v3.1c0,0.1,0.1,0.3,0.3,0.3H13
|
||||
C13.2,13.5,13.3,13.4,13.3,13.3z"/>
|
||||
<path fill="#76CFA6" d="M19.3,13.3v-3.1c0-0.1-0.1-0.3-0.3-0.3h-3.1c-0.1,0-0.3,0.1-0.3,0.3v3.1c0,0.1,0.1,0.3,0.3,0.3H19
|
||||
C19.2,13.5,19.3,13.4,19.3,13.3z"/>
|
||||
<path fill="#76CFA6" d="M25.3,13.3v-3.1c0-0.1-0.1-0.3-0.3-0.3h-3.1c-0.1,0-0.3,0.1-0.3,0.3v3.1c0,0.1,0.1,0.3,0.3,0.3H25
|
||||
C25.2,13.5,25.3,13.4,25.3,13.3z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
Reference in New Issue
Block a user