diff --git a/app/embeds/GoogleDrawings.js b/app/embeds/GoogleDrawings.js new file mode 100644 index 000000000..6be5db510 --- /dev/null +++ b/app/embeds/GoogleDrawings.js @@ -0,0 +1,39 @@ +// @flow +import * as React from "react"; +import Image from "components/Image"; +import Frame from "./components/Frame"; + +const URL_REGEX = new RegExp( + "^https://docs.google.com/drawings/d/(.*)/(edit|preview)(.*)$" +); + +type Props = {| + attrs: {| + href: string, + matches: string[], + |}, +|}; + +export default class GoogleDrawings extends React.Component { + static ENABLED = [URL_REGEX]; + + render() { + return ( + + } + canonicalUrl={this.props.attrs.href.replace("/preview", "/edit")} + title="Google Drawings" + border + /> + ); + } +} diff --git a/app/embeds/GoogleDrawings.test.js b/app/embeds/GoogleDrawings.test.js new file mode 100644 index 000000000..27617ed8c --- /dev/null +++ b/app/embeds/GoogleDrawings.test.js @@ -0,0 +1,29 @@ +/* eslint-disable flowtype/require-valid-file-annotation */ +import GoogleDrawings from "./GoogleDrawings"; + +describe("GoogleDrawings", () => { + const match = GoogleDrawings.ENABLED[0]; + test("to be enabled on share link", () => { + expect( + "https://docs.google.com/drawings/d/1zDLtJ4HSCnjGCGSoCgqGe3F8p6o7R8Vjk8MDR6dKf-U/edit".match( + match + ) + ).toBeTruthy(); + expect( + "https://docs.google.com/drawings/d/1zDLtJ4HSCnjGCGSoCgqGe3F8p6o7R8Vjk8MDR6dKf-U/edit?usp=sharing".match( + match + ) + ).toBeTruthy(); + }); + + test("to not be enabled elsewhere", () => { + expect( + "https://docs.google.com/drawings/d/e/2PACX-1vRtzIzEWN6svSrIYZq-kq2XZEN6WaOFXHbPKRLXNOFRlxLIdJg0Vo6RfretGqs9SzD-fUazLeS594Kw/pub?w=960&h=720".match( + match + ) + ).toBe(null); + expect("https://docs.google.com/drawings".match(match)).toBe(null); + expect("https://docs.google.com".match(match)).toBe(null); + expect("https://www.google.com".match(match)).toBe(null); + }); +}); diff --git a/app/embeds/index.js b/app/embeds/index.js index 0e1c07e6f..1e389a53f 100644 --- a/app/embeds/index.js +++ b/app/embeds/index.js @@ -10,6 +10,7 @@ import Figma from "./Figma"; import Framer from "./Framer"; import Gist from "./Gist"; import GoogleDocs from "./GoogleDocs"; +import GoogleDrawings from "./GoogleDrawings"; import GoogleDrive from "./GoogleDrive"; import GoogleSheets from "./GoogleSheets"; import GoogleSlides from "./GoogleSlides"; @@ -95,6 +96,13 @@ export default [ component: Gist, matcher: matcher(Gist), }, + { + title: "Google Drawings", + keywords: "drawings", + icon: () => , + component: GoogleDrawings, + matcher: matcher(GoogleDrawings), + }, { title: "Google Drive", keywords: "drive", diff --git a/public/images/google-drawings.png b/public/images/google-drawings.png new file mode 100644 index 000000000..d690ddff9 Binary files /dev/null and b/public/images/google-drawings.png differ diff --git a/shared/i18n/locales/de_DE/translation.json b/shared/i18n/locales/de_DE/translation.json index d431a7dce..7bbaef23e 100644 --- a/shared/i18n/locales/de_DE/translation.json +++ b/shared/i18n/locales/de_DE/translation.json @@ -76,6 +76,7 @@ "Warning": "Warnung", "Warning notice": "Warnhinweis", "Icon": "Icon", + "Show menu": "Show menu", "Choose icon": "Choose icon", "Loading": "Laden", "Search": "Suche", @@ -90,13 +91,15 @@ "Untitled": "Ohne Titel", "Home": "Startseite", "Starred": "Favoriten", - "Invite people…": "Personen einladen…", + "Settings": "Einstellungen", "Invite people": "Personen einladen", "Create a collection": "Sammlung erstellen", "Return to App": "Zurück zur App", + "Account": "Account", "Profile": "Profil", "Notifications": "Benachrichtigungen", "API Tokens": "API-Tokens", + "Team": "Team", "Details": "Details", "Security": "Sicherheit", "People": "Personen", @@ -105,17 +108,19 @@ "Export Data": "Daten exportieren", "Integrations": "Integrationen", "Installation": "Installation", + "Resize sidebar": "Resize sidebar", + "Unstar": "Aus den Favoriten entfernen", + "Star": "Favorisieren", "Appearance": "Darstellung", "System": "System", "Light": "Hell", "Dark": "Dunkel", - "Account": "Account", - "Settings": "Einstellungen", "API documentation": "API Dokumentation", "Changelog": "Änderungsprotokoll", "Send us feedback": "Schicken Sie uns Feedback", "Report a bug": "Ein technischer Fehler melden", "Log out": "Ausloggen", + "Show path to document": "Show path to document", "Path to document": "Path to document", "Group member options": "Group member options", "Members": "Mitglieder", @@ -131,6 +136,7 @@ "Edit collection": "Sammlung bearbeiten", "Delete collection": "Sammlung löschen", "Export collection": "Sammlung exportieren", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Seitenleiste sortieren", "Alphabetical sort": "Alphabetische Sortierung", "Manual sort": "Manuelle Sortierung", @@ -143,8 +149,6 @@ "Choose a collection": "Sammlung auswählen", "Unpin": "Lospinnen", "Pin to collection": "Zur Sammlung anpinnen", - "Unstar": "Aus den Favoriten entfernen", - "Star": "Favorisieren", "Share link": "Link teilen", "Enable embeds": "Einbettungen aktivieren", "Disable embeds": "Einbettungen deaktivieren", @@ -234,6 +238,7 @@ "Create": "Erstellen", "Recently viewed": "Zuletzt angesehen", "Created by me": "Von mir erstellt", + "Search documents": "Search documents", "Hide contents": "Inhalt ausblenden", "Show contents": "Inhalt anzeigen", "Archived": "Archiviert", diff --git a/shared/i18n/locales/es_ES/translation.json b/shared/i18n/locales/es_ES/translation.json index 5da84ce7e..21d5f549d 100644 --- a/shared/i18n/locales/es_ES/translation.json +++ b/shared/i18n/locales/es_ES/translation.json @@ -76,6 +76,7 @@ "Warning": "Atención", "Warning notice": "Aviso", "Icon": "Ícono", + "Show menu": "Show menu", "Choose icon": "Choose icon", "Loading": "Cargando", "Search": "Buscar", @@ -90,13 +91,15 @@ "Untitled": "Sin título", "Home": "Inicio", "Starred": "Favoritos", - "Invite people…": "Invitar personas…", + "Settings": "Configuración", "Invite people": "Invitar personas", "Create a collection": "Crear una colección", "Return to App": "Volver a la app", + "Account": "Account", "Profile": "Perfil", "Notifications": "Notificaciones", "API Tokens": "Tokens API", + "Team": "Team", "Details": "Detalles", "Security": "Seguridad", "People": "Personas", @@ -105,17 +108,19 @@ "Export Data": "Exportar datos", "Integrations": "Integraciones", "Installation": "Instalación", + "Resize sidebar": "Resize sidebar", + "Unstar": "Eliminar de favoritos", + "Star": "Favorito", "Appearance": "Apariencia", "System": "Sistema", "Light": "Claro", "Dark": "Oscuro", - "Account": "Account", - "Settings": "Configuración", "API documentation": "Documentación de la API", "Changelog": "Cambios", "Send us feedback": "Envíenos sus comentarios", "Report a bug": "Reportar un error", "Log out": "Salir", + "Show path to document": "Show path to document", "Path to document": "Path to document", "Group member options": "Group member options", "Members": "Miembros", @@ -131,6 +136,7 @@ "Edit collection": "Editar colección", "Delete collection": "Eliminar colección", "Export collection": "Exportar colección", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Sort in sidebar", "Alphabetical sort": "Alphabetical sort", "Manual sort": "Manual sort", @@ -143,8 +149,6 @@ "Choose a collection": "Elige una Colección", "Unpin": "Eliminar fijado", "Pin to collection": "Fijar a colección", - "Unstar": "Eliminar de favoritos", - "Star": "Favorito", "Share link": "Compartir enlace", "Enable embeds": "Habilitar embeds", "Disable embeds": "Desactivar embeds", @@ -234,6 +238,7 @@ "Create": "Crear", "Recently viewed": "Recientemente vistos", "Created by me": "Creado por mí", + "Search documents": "Search documents", "Hide contents": "Ocultar contenidos", "Show contents": "Mostrar contenidos", "Archived": "Archivado", diff --git a/shared/i18n/locales/fr_FR/translation.json b/shared/i18n/locales/fr_FR/translation.json index be20ddec2..ab9bfe43d 100644 --- a/shared/i18n/locales/fr_FR/translation.json +++ b/shared/i18n/locales/fr_FR/translation.json @@ -76,6 +76,7 @@ "Warning": "Avertissement", "Warning notice": "Avertissement", "Icon": "Icône", + "Show menu": "Show menu", "Choose icon": "Choose icon", "Loading": "Chargement", "Search": "Recherche", @@ -90,13 +91,15 @@ "Untitled": "Sans titre", "Home": "Accueil", "Starred": "Favoris", - "Invite people…": "Inviter des personnes…", + "Settings": "Réglages", "Invite people": "Inviter des personnes", "Create a collection": "Créer une collection", "Return to App": "Retour à l’application", + "Account": "Account", "Profile": "Profil", "Notifications": "Notifications", "API Tokens": "Tokens API", + "Team": "Team", "Details": "Détails", "Security": "Sécurité", "People": "Contacts", @@ -105,17 +108,19 @@ "Export Data": "Exporter les données", "Integrations": "Intégrations", "Installation": "Installation", + "Resize sidebar": "Resize sidebar", + "Unstar": "Enlever des favoris", + "Star": "Ajouter aux favoris", "Appearance": "Affichage", "System": "Système", "Light": "Clair", "Dark": "Foncé", - "Account": "Account", - "Settings": "Réglages", "API documentation": "Documentation de l'API", "Changelog": "Historique des modifications", "Send us feedback": "Donnez-nous votre avis", "Report a bug": "Signaler un bug", "Log out": "Déconnexion", + "Show path to document": "Show path to document", "Path to document": "Path to document", "Group member options": "Group member options", "Members": "Membres", @@ -131,6 +136,7 @@ "Edit collection": "Modifier la collection", "Delete collection": "Supprimer la collection", "Export collection": "Exporter la collection", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Sort in sidebar", "Alphabetical sort": "Alphabetical sort", "Manual sort": "Manual sort", @@ -143,8 +149,6 @@ "Choose a collection": "Choisir une collection", "Unpin": "Désépingler", "Pin to collection": "Épingler à la collection", - "Unstar": "Enlever des favoris", - "Star": "Ajouter aux favoris", "Share link": "Partager le lien", "Enable embeds": "Activer les intégrations", "Disable embeds": "Désactiver les intégrations", @@ -234,6 +238,7 @@ "Create": "Créer", "Recently viewed": "Vu récemment", "Created by me": "Créé par moi", + "Search documents": "Search documents", "Hide contents": "Masquer le contenu", "Show contents": "Afficher le contenu", "Archived": "Archivé", diff --git a/shared/i18n/locales/it_IT/translation.json b/shared/i18n/locales/it_IT/translation.json index 43e6e3927..f2f9241b4 100644 --- a/shared/i18n/locales/it_IT/translation.json +++ b/shared/i18n/locales/it_IT/translation.json @@ -21,7 +21,7 @@ "saved": "salvato", "updated": "aggiornato", "Never viewed": "Mai visualizzati", - "Viewed": "Visti", + "Viewed": "Visto", "in": "in", "Insert column after": "Inserisci colonna dopo", "Insert column before": "Inserisci colonna prima", @@ -76,6 +76,7 @@ "Warning": "Avviso", "Warning notice": "Nota di avviso", "Icon": "Icona", + "Show menu": "Show menu", "Choose icon": "Scegli icona", "Loading": "Caricamento in corso", "Search": "Cerca", @@ -90,13 +91,15 @@ "Untitled": "Senza titolo", "Home": "Home", "Starred": "Preferiti", - "Invite people…": "Invita altri…", + "Settings": "Impostazioni", "Invite people": "Invita persone", "Create a collection": "Crea raccolta", "Return to App": "Torna all'app", + "Account": "Account", "Profile": "Profilo", "Notifications": "Notifiche", "API Tokens": "Token API", + "Team": "Team", "Details": "Dettagli", "Security": "Sicurezza", "People": "Utenti", @@ -105,17 +108,19 @@ "Export Data": "Esporta Dati", "Integrations": "Integrazioni", "Installation": "Installazione", + "Resize sidebar": "Resize sidebar", + "Unstar": "Rimuovi dai Preferiti", + "Star": "Preferito", "Appearance": "Aspetto", "System": "Sistema", "Light": "Chiaro", "Dark": "Scuro", - "Account": "Account", - "Settings": "Impostazioni", "API documentation": "Documentazione API", "Changelog": "Log delle modifiche", "Send us feedback": "Inviaci il tuo feedback", "Report a bug": "Segnala un bug", "Log out": "Log out", + "Show path to document": "Show path to document", "Path to document": "Percorso del documento", "Group member options": "Opzioni membri del gruppo", "Members": "Membri", @@ -131,6 +136,7 @@ "Edit collection": "Modifica raccolta", "Delete collection": "Elimina raccolta", "Export collection": "Esporta raccolta", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Ordina nella barra laterale", "Alphabetical sort": "Ordine Alfabetico", "Manual sort": "Ordinamento manuale", @@ -143,8 +149,6 @@ "Choose a collection": "Scegli una raccolta", "Unpin": "Rimuovi contrassegno", "Pin to collection": "Fissa alla raccolta", - "Unstar": "Rimuovi dai Preferiti", - "Star": "Preferito", "Share link": "Condividi link", "Enable embeds": "Abilita l'embedding", "Disable embeds": "Disabilita l'embedding", @@ -234,6 +238,7 @@ "Create": "Crea", "Recently viewed": "Visualizzati di recente", "Created by me": "Creato da me", + "Search documents": "Search documents", "Hide contents": "Nascondi contenuti", "Show contents": "Mostra contenuti", "Archived": "Archiviati", diff --git a/shared/i18n/locales/ja_JP/translation.json b/shared/i18n/locales/ja_JP/translation.json index b0beb9593..e7c8df31d 100644 --- a/shared/i18n/locales/ja_JP/translation.json +++ b/shared/i18n/locales/ja_JP/translation.json @@ -4,14 +4,14 @@ "viewed {{ timeAgo }} ago": "{{ timeAgo }}前に見た", "You": "あなた", "Trash": "ゴミ箱", - "Archive": "Archive", + "Archive": "アーカイブ", "Drafts": "下書き", - "Templates": "Templates", - "Deleted Collection": "Deleted Collection", - "Submenu": "Submenu", + "Templates": "テンプレート", + "Deleted Collection": "削除したコレクション", + "Submenu": "サブメニュー", "New": "New", "Only visible to you": "あなたにしか見えない", - "Draft": "Draft", + "Draft": "下書き", "Template": "テンプレート", "New doc": "New doc", "deleted": "deleted", @@ -76,6 +76,7 @@ "Warning": "警告", "Warning notice": "Warning notice", "Icon": "アイコン", + "Show menu": "Show menu", "Choose icon": "Choose icon", "Loading": "ローディング...", "Search": "検索", @@ -90,37 +91,41 @@ "Untitled": "文書", "Home": "ホーム", "Starred": "スター文書", - "Invite people…": "Invite people…", - "Invite people": "Invite people", + "Settings": "設定", + "Invite people": "他の人を招待", "Create a collection": "コレクションを作る", "Return to App": "Return to App", - "Profile": "Profile", + "Account": "アカウント", + "Profile": "プロフィール", "Notifications": "通知", "API Tokens": "APIトークン", + "Team": "チーム", "Details": "Details", "Security": "Security", - "People": "人々", + "People": "メンバー", "Groups": "グループ", - "Share Links": "Share Links", + "Share Links": "リンクを共有", "Export Data": "データのエクスポート", "Integrations": "Integrations", - "Installation": "Installation", + "Installation": "インストール", + "Resize sidebar": "Resize sidebar", + "Unstar": "スター解除", + "Star": "スター", "Appearance": "外観", "System": "システム", "Light": "ライトモード", "Dark": "ダークモード", - "Account": "Account", - "Settings": "設定", "API documentation": "API ドキュメント", "Changelog": "変更履歴", "Send us feedback": "フィードバック", "Report a bug": "バグ報告", "Log out": "ログアウト", + "Show path to document": "Show path to document", "Path to document": "Path to document", "Group member options": "Group member options", "Members": "メンバー", "Remove": "削除", - "Collection": "Collection", + "Collection": "コレクション", "New document": "New document", "Import document": "ドキュメントのインポート", "Edit": "編集", @@ -131,6 +136,7 @@ "Edit collection": "編集コレクション", "Delete collection": "コレクションの削除", "Export collection": "エクスポート(コレクション)", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Sort in sidebar", "Alphabetical sort": "Alphabetical sort", "Manual sort": "Manual sort", @@ -143,8 +149,6 @@ "Choose a collection": "コレクションを選ぶ", "Unpin": "固定しない", "Pin to collection": "Pin to collection", - "Unstar": "スター解除", - "Star": "スター", "Share link": "Share link", "Enable embeds": "Enable embeds", "Disable embeds": "埋め込みを無効にする", @@ -187,7 +191,7 @@ "Suspend account": "アカウントの一時停止", "Documents": "Documents", "The document archive is empty at the moment.": "ドキュメントアーカイブは現在空です。", - "Search in collection": "Search in collection", + "Search in collection": "コレクション内を検索", "<0>{{collectionName}} doesn’t contain any documents yet.": "<0>{{collectionName}}には文書は含まれていません。", "Get started by creating a new one!": "さっそく、新しい文書を作成してみましょう!", "Create a document": "ドキュメントの作成", @@ -211,8 +215,8 @@ "Could not add user": "Could not add user", "Can’t find the group you’re looking for?": "お探しのグループが見つかりませんか?", "Create a group": "Create a group", - "Search by group name": "Search by group name", - "Search groups": "Search groups", + "Search by group name": "グループ名で検索", + "Search groups": "グループを検索", "No groups matching your search": "検索に一致するグループはありません", "No groups left to add": "No groups left to add", "Add": "Add", @@ -220,7 +224,7 @@ "Need to add someone who’s not yet on the team yet?": "まだチームにいない人を追加する必要があるのか?", "Invite people to {{ teamName }}": "他の人を{{ teamName }}に招待する。", "Search by name": "名前から探す", - "Search people": "Search people", + "Search people": "メンバーを検索", "No people matching your search": "あなたの検索に一致する人はいません", "No people left to add": "No people left to add", "Read only": "Read only", @@ -234,13 +238,14 @@ "Create": "作る", "Recently viewed": "Recently viewed", "Created by me": "Created by me", + "Search documents": "Search documents", "Hide contents": "Hide contents", "Show contents": "Show contents", "Archived": "アーカイブ", "Anyone with the link <1>can view this document": "このリンク<1>があれば誰でもドキュメントを見ることができます。", "Share": "共有", "Save Draft": "Save Draft", - "Done Editing": "Done Editing", + "Done Editing": "編集を終了", "Edit {{noun}}": "Edit {{noun}}", "New from template": "テンプレートから作成", "Publish": "公開", diff --git a/shared/i18n/locales/ko_KR/translation.json b/shared/i18n/locales/ko_KR/translation.json index 760082d7a..854ac1960 100644 --- a/shared/i18n/locales/ko_KR/translation.json +++ b/shared/i18n/locales/ko_KR/translation.json @@ -76,6 +76,7 @@ "Warning": "주의", "Warning notice": "주의 사항", "Icon": "아이콘", + "Show menu": "Show menu", "Choose icon": "Choose icon", "Loading": "로딩 중", "Search": "검색", @@ -90,13 +91,15 @@ "Untitled": "제목없음", "Home": "홈", "Starred": "중요 문서", - "Invite people…": "초대하기…", + "Settings": "설정", "Invite people": "초대하기", "Create a collection": "컬렉션 만들기", "Return to App": "앱으로 돌아가기", + "Account": "Account", "Profile": "사용자 정보", "Notifications": "알림", "API Tokens": "API 토큰", + "Team": "Team", "Details": "세부 정보", "Security": "보안", "People": "사용자", @@ -105,17 +108,19 @@ "Export Data": "데이터 내보내기", "Integrations": "연동", "Installation": "설치", + "Resize sidebar": "Resize sidebar", + "Unstar": "중요 문서 해제", + "Star": "중요 문서 표시", "Appearance": "화면", "System": "시스템", "Light": "밝게 보기", "Dark": "어둡게 보기", - "Account": "Account", - "Settings": "설정", "API documentation": "API 문서", "Changelog": "변경 사항", "Send us feedback": "의견 보내기", "Report a bug": "버그 신고", "Log out": "로그아웃", + "Show path to document": "Show path to document", "Path to document": "Path to document", "Group member options": "Group member options", "Members": "Members", @@ -131,6 +136,7 @@ "Edit collection": "컬렉션 편집", "Delete collection": "컬렉션 삭제", "Export collection": "컬렉션 내보내기", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Sort in sidebar", "Alphabetical sort": "Alphabetical sort", "Manual sort": "Manual sort", @@ -143,8 +149,6 @@ "Choose a collection": "컬렉션 선택", "Unpin": "고정 해제", "Pin to collection": "컬렉션에 고정", - "Unstar": "중요 문서 해제", - "Star": "중요 문서 표시", "Share link": "링크 공유하기", "Enable embeds": "임베드 활성화", "Disable embeds": "임베드 비활성화", @@ -234,6 +238,7 @@ "Create": "생성", "Recently viewed": "최근에 조회됨", "Created by me": "나에 의해 생성됨", + "Search documents": "Search documents", "Hide contents": "내용 숨기기", "Show contents": "내용 보기", "Archived": "보관됨", diff --git a/shared/i18n/locales/pt_BR/translation.json b/shared/i18n/locales/pt_BR/translation.json index 5daaa3689..ba8e55b30 100644 --- a/shared/i18n/locales/pt_BR/translation.json +++ b/shared/i18n/locales/pt_BR/translation.json @@ -76,6 +76,7 @@ "Warning": "Atenção", "Warning notice": "Aviso de atenção", "Icon": "Ícone", + "Show menu": "Show menu", "Choose icon": "Choose icon", "Loading": "Loading", "Search": "Busca", @@ -90,13 +91,15 @@ "Untitled": "Sem título", "Home": "Início", "Starred": "Favoritos", - "Invite people…": "Convidar pessoas…", + "Settings": "Configurações", "Invite people": "Convidar pessoas", "Create a collection": "Criar uma coleção", "Return to App": "Voltar ao App", + "Account": "Account", "Profile": "Perfil", "Notifications": "Notificações", "API Tokens": "Tokens de API", + "Team": "Team", "Details": "Detalhes", "Security": "Segurança", "People": "Pessoas", @@ -105,17 +108,19 @@ "Export Data": "Exportar Dados", "Integrations": "Integrações", "Installation": "Instalação", + "Resize sidebar": "Resize sidebar", + "Unstar": "Remover estrela", + "Star": "Adicionar aos favoritos", "Appearance": "Aparência", "System": "Sistema", "Light": "Claro", "Dark": "Escuro", - "Account": "Account", - "Settings": "Configurações", "API documentation": "Documentação da API", "Changelog": "Histórico de Atualizações", "Send us feedback": "Envie-nos a sua opinião", "Report a bug": "Reportar erro", "Log out": "Sair", + "Show path to document": "Show path to document", "Path to document": "Path to document", "Group member options": "Group member options", "Members": "Members", @@ -131,6 +136,7 @@ "Edit collection": "Editar coleção", "Delete collection": "Excluir coleção", "Export collection": "Exportar coleção", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Sort in sidebar", "Alphabetical sort": "Alphabetical sort", "Manual sort": "Manual sort", @@ -143,8 +149,6 @@ "Choose a collection": "Escolha uma coleção", "Unpin": "Desafixar", "Pin to collection": "Fixar à coleção", - "Unstar": "Remover estrela", - "Star": "Adicionar aos favoritos", "Share link": "Share link", "Enable embeds": "Enable embeds", "Disable embeds": "Disable embeds", @@ -234,6 +238,7 @@ "Create": "Create", "Recently viewed": "Recently viewed", "Created by me": "Created by me", + "Search documents": "Search documents", "Hide contents": "Hide contents", "Show contents": "Show contents", "Archived": "Archived", diff --git a/shared/i18n/locales/pt_PT/translation.json b/shared/i18n/locales/pt_PT/translation.json index dfa627b6c..951b71900 100644 --- a/shared/i18n/locales/pt_PT/translation.json +++ b/shared/i18n/locales/pt_PT/translation.json @@ -76,6 +76,7 @@ "Warning": "Aviso", "Warning notice": "Aviso de alerta", "Icon": "Ícone", + "Show menu": "Show menu", "Choose icon": "Choose icon", "Loading": "A carregar", "Search": "Pesquisa", @@ -90,13 +91,15 @@ "Untitled": "Sem título", "Home": "Página inicial", "Starred": "Favoritos", - "Invite people…": "Convidar pessoas…", + "Settings": "Configurações", "Invite people": "Convidar pessoas", "Create a collection": "Criar coleção", "Return to App": "Voltar à App", + "Account": "Account", "Profile": "Perfil", "Notifications": "Notificações", "API Tokens": "Tokens de API", + "Team": "Team", "Details": "Detalhes", "Security": "Segurança", "People": "Pessoas", @@ -105,17 +108,19 @@ "Export Data": "Exportar dados", "Integrations": "Integrações", "Installation": "Instalação", + "Resize sidebar": "Resize sidebar", + "Unstar": "Tirar estrela", + "Star": "Estrela", "Appearance": "Aparência", "System": "Sistema", "Light": "Claro", "Dark": "Escuro", - "Account": "Account", - "Settings": "Configurações", "API documentation": "Documentação da API", "Changelog": "Changelog", "Send us feedback": "Envia-nos Feedback", "Report a bug": "Reportar um erro técnico", "Log out": "Deslogar", + "Show path to document": "Show path to document", "Path to document": "Path to document", "Group member options": "Group member options", "Members": "Membros", @@ -131,6 +136,7 @@ "Edit collection": "Editar coleção", "Delete collection": "Apagar coleção", "Export collection": "Exportar coleção", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Sort in sidebar", "Alphabetical sort": "Alphabetical sort", "Manual sort": "Manual sort", @@ -143,8 +149,6 @@ "Choose a collection": "Escolher coleção", "Unpin": "Tirar pino", "Pin to collection": "Pin coleção", - "Unstar": "Tirar estrela", - "Star": "Estrela", "Share link": "Partilhar link", "Enable embeds": "Ativar embeds", "Disable embeds": "Desativar embeds", @@ -234,6 +238,7 @@ "Create": "Criar", "Recently viewed": "Visto recentemente", "Created by me": "Criado por mim", + "Search documents": "Search documents", "Hide contents": "Ocultar conteúdo", "Show contents": "Mostrar conteúdo", "Archived": "Arquivado", diff --git a/shared/i18n/locales/ru_RU/translation.json b/shared/i18n/locales/ru_RU/translation.json index 3a828f289..a61f7d6ab 100644 --- a/shared/i18n/locales/ru_RU/translation.json +++ b/shared/i18n/locales/ru_RU/translation.json @@ -76,6 +76,7 @@ "Warning": "Предупреждение", "Warning notice": "Предупреждение", "Icon": "Значок", + "Show menu": "Show menu", "Choose icon": "Choose icon", "Loading": "Загрузка", "Search": "Поиск", @@ -90,13 +91,15 @@ "Untitled": "Без названия", "Home": "Домашняя страница", "Starred": "Избранное", - "Invite people…": "Пригласить людей…", + "Settings": "Настройки", "Invite people": "Пригласить людей", "Create a collection": "Создать коллекцию", "Return to App": "Вернуться в приложение", + "Account": "Account", "Profile": "Профиль", "Notifications": "Уведомления", "API Tokens": "Токены API", + "Team": "Team", "Details": "Подробнее", "Security": "Безопасность", "People": "Люди", @@ -105,17 +108,19 @@ "Export Data": "Экспорт данных", "Integrations": "Интеграции", "Installation": "Установка", + "Resize sidebar": "Resize sidebar", + "Unstar": "Убрать из избранного", + "Star": "Добавить в избранное", "Appearance": "Оформление", "System": "Система", "Light": "Светлая", "Dark": "Темная", - "Account": "Account", - "Settings": "Настройки", "API documentation": "Документация по API", "Changelog": "История изменений", "Send us feedback": "Отправьте нам отзыв", "Report a bug": "Сообщить об ошибке", "Log out": "Выйти из системы", + "Show path to document": "Show path to document", "Path to document": "Path to document", "Group member options": "Group member options", "Members": "Участники", @@ -131,6 +136,7 @@ "Edit collection": "Редактировать коллекцию", "Delete collection": "Удалить коллекцию", "Export collection": "Экспорт коллекции", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Сортировать на боковой панели", "Alphabetical sort": "Сортировка по алфавиту", "Manual sort": "Ручная сортировка", @@ -143,8 +149,6 @@ "Choose a collection": "Выберите коллекцию", "Unpin": "Открепить", "Pin to collection": "Прикрепить к коллекции", - "Unstar": "Убрать из избранного", - "Star": "Добавить в избранное", "Share link": "Поделиться ссылкой", "Enable embeds": "Включить встраивание", "Disable embeds": "Отключить встраивание", @@ -234,6 +238,7 @@ "Create": "Создать", "Recently viewed": "Недавно просмотренные", "Created by me": "Созданные мной", + "Search documents": "Search documents", "Hide contents": "Скрыть содержимое", "Show contents": "Показать содержимое", "Archived": "Архивировано", diff --git a/shared/i18n/locales/th_TH/translation.json b/shared/i18n/locales/th_TH/translation.json index 15089cc35..ba3490b07 100644 --- a/shared/i18n/locales/th_TH/translation.json +++ b/shared/i18n/locales/th_TH/translation.json @@ -76,6 +76,7 @@ "Warning": "คำเตือน", "Warning notice": "Warning notice", "Icon": "ไอคอน", + "Show menu": "Show menu", "Choose icon": "เลือกไอคอน", "Loading": "กำลังโหลด", "Search": "ค้นหา", @@ -90,13 +91,15 @@ "Untitled": "ไม่มีชื่อ", "Home": "หน้า​แรก​", "Starred": "ติดดาว", - "Invite people…": "เชิญผู้คน…", + "Settings": "การตั้งค่า", "Invite people": "เชิญผู้คน", "Create a collection": "สร้างคอลเลกชัน", "Return to App": "กลับไปที่แอพ", + "Account": "บัญชีผู้ใช้", "Profile": "โปรไฟล์", "Notifications": "การแจ้งเตือน", "API Tokens": "API Tokens", + "Team": "Team", "Details": "ราย​ละเอียด", "Security": "ความปลอดภัย", "People": "People", @@ -105,17 +108,19 @@ "Export Data": "ส่งออกข้อมูล", "Integrations": "Integration", "Installation": "การติดตั้ง", + "Resize sidebar": "Resize sidebar", + "Unstar": "Unstar", + "Star": "Star", "Appearance": "รูปร่างหน้าตา", "System": "System", "Light": "สว่าง", "Dark": "มืด", - "Account": "บัญชีผู้ใช้", - "Settings": "การตั้งค่า", "API documentation": "API documentation", "Changelog": "Changelog", "Send us feedback": "ส่งคำติชมถึงเรา", "Report a bug": "รายงานข้อผิดพลาด", "Log out": "ออกจากระบบ", + "Show path to document": "Show path to document", "Path to document": "Path to document", "Group member options": "Group member options", "Members": "Members", @@ -131,6 +136,7 @@ "Edit collection": "Edit collection", "Delete collection": "Delete collection", "Export collection": "Export collection", + "Show sort menu": "Show sort menu", "Sort in sidebar": "Sort in sidebar", "Alphabetical sort": "Alphabetical sort", "Manual sort": "Manual sort", @@ -143,8 +149,6 @@ "Choose a collection": "Choose a collection", "Unpin": "Unpin", "Pin to collection": "Pin to collection", - "Unstar": "Unstar", - "Star": "Star", "Share link": "แชร์​ลิงก์", "Enable embeds": "Enable embeds", "Disable embeds": "Disable embeds", @@ -234,6 +238,7 @@ "Create": "Create", "Recently viewed": "Recently viewed", "Created by me": "Created by me", + "Search documents": "Search documents", "Hide contents": "Hide contents", "Show contents": "Show contents", "Archived": "Archived", diff --git a/shared/i18n/locales/zh_CN/translation.json b/shared/i18n/locales/zh_CN/translation.json index 14f43c369..8adfb5d1d 100644 --- a/shared/i18n/locales/zh_CN/translation.json +++ b/shared/i18n/locales/zh_CN/translation.json @@ -76,6 +76,7 @@ "Warning": "警告", "Warning notice": "警告信息", "Icon": "图标", + "Show menu": "显示菜单", "Choose icon": "选择图标", "Loading": "加载中", "Search": "搜索", @@ -90,13 +91,15 @@ "Untitled": "无标题", "Home": "主页", "Starred": "已加星标", - "Invite people…": "邀请其他人…", + "Settings": "设置", "Invite people": "邀请其他人", "Create a collection": "创建文档集", "Return to App": "返回应用", + "Account": "账号", "Profile": "基本资料", "Notifications": "通知", "API Tokens": "API 令牌", + "Team": "团队", "Details": "详情", "Security": "安全性", "People": "用户", @@ -105,17 +108,19 @@ "Export Data": "导出数据", "Integrations": "集成", "Installation": "安装", + "Resize sidebar": "调整侧边栏", + "Unstar": "取消收藏", + "Star": "加入收藏", "Appearance": "界面风格", "System": "系统信息", "Light": "浅色主题", "Dark": "深色主题", - "Account": "账号", - "Settings": "设置", "API documentation": "API 文档", "Changelog": "更新日志", "Send us feedback": "反馈给我们", "Report a bug": "提交 Bug", "Log out": "退出登录", + "Show path to document": "显示文档路径", "Path to document": "文件路径", "Group member options": "小组成员选项", "Members": "成员", @@ -131,6 +136,7 @@ "Edit collection": "编辑文档集", "Delete collection": "删除文档集", "Export collection": "导出文档集", + "Show sort menu": "显示排序菜单", "Sort in sidebar": "调整侧边栏的显示顺序", "Alphabetical sort": "按字母顺序排序", "Manual sort": "手动排序", @@ -143,8 +149,6 @@ "Choose a collection": "选择一个文档集", "Unpin": "取消置顶", "Pin to collection": "置顶文档集", - "Unstar": "取消收藏", - "Star": "加入收藏", "Share link": "分享链接", "Enable embeds": "启用嵌入", "Disable embeds": "禁用嵌入", @@ -234,6 +238,7 @@ "Create": "创建", "Recently viewed": "最近浏览", "Created by me": "由我创建", + "Search documents": "搜索文档", "Hide contents": "隐藏内容", "Show contents": "显示内容", "Archived": "已归档",