From 77d96a3dc30a892ca4f20946f0cd9144b42e5a7e Mon Sep 17 00:00:00 2001 From: DrMint Date: Sun, 28 Aug 2022 17:40:41 +0200 Subject: [PATCH] Fixed eslint warnings + configure prettier --- .eslintignore | 3 +- .eslintrc.js | 17 +- graphql-codegen.config.js | 11 +- next-sitemap.config.js | 11 +- package.json | 6 +- prettier.config.js | 21 + public/local-data/currencies.json | 92 +- public/local-data/languages.json | 37 +- public/local-data/websiteInterfaces.json | 887 +++++++++++++++++- src/components/AnchorShare.tsx | 21 +- src/components/AppLayout.tsx | 187 ++-- src/components/Chip.tsx | 9 +- .../Chronicles/ChroniclePreview.tsx | 39 +- src/components/Chronicles/ChroniclesList.tsx | 75 +- src/components/HorizontalLine.tsx | 6 +- src/components/Ico.tsx | 6 +- src/components/Img.tsx | 18 +- src/components/Inputs/Button.tsx | 38 +- src/components/Inputs/ButtonGroup.tsx | 8 +- src/components/Inputs/LanguageSwitcher.tsx | 3 +- src/components/Inputs/Link.tsx | 3 +- src/components/Inputs/OrderableList.tsx | 14 +- src/components/Inputs/PageSelector.tsx | 7 +- src/components/Inputs/Select.tsx | 35 +- src/components/Inputs/Switch.tsx | 19 +- src/components/Inputs/WithLabel.tsx | 15 +- src/components/InsetBox.tsx | 6 +- src/components/Library/PreviewCardCTAs.tsx | 92 +- src/components/LightBox.tsx | 34 +- src/components/Markdown/Markdawn.tsx | 111 +-- src/components/PanelComponents/NavOption.tsx | 19 +- .../PanelComponents/PanelHeader.tsx | 6 +- .../PanelComponents/ReturnButton.tsx | 19 +- src/components/Panels/ContentPanel.tsx | 3 +- src/components/Panels/MainPanel.tsx | 40 +- src/components/Panels/SubPanel.tsx | 3 +- src/components/Popup.tsx | 18 +- src/components/PostPage.tsx | 67 +- src/components/PreviewCard.tsx | 112 +-- src/components/PreviewLine.tsx | 18 +- src/components/RecorderChip.tsx | 23 +- src/components/SmartList.tsx | 43 +- src/components/ThumbnailHeader.tsx | 25 +- src/components/ToolTip.tsx | 3 +- src/components/Wiki/DefinitionCard.tsx | 25 +- src/contexts/AppLayoutContext.tsx | 103 +- src/graphql/fetchLocalData.ts | 10 +- src/graphql/getPostStaticProps.ts | 12 +- src/graphql/operations/getChronicle.graphql | 4 +- .../operations/getChronologyItems.graphql | 5 +- src/graphql/operations/getContentText.graphql | 36 +- .../operations/getContentsFolder.graphql | 4 +- src/graphql/operations/getLibraryItem.graphql | 56 +- .../operations/getLibraryItemScans.graphql | 20 +- .../operations/getLibraryItemsPreview.graphql | 20 +- .../localDataGetWebsiteInterfaces.graphql | 3 + src/helpers/component.tsx | 6 +- src/helpers/date.ts | 6 +- src/helpers/formatters.ts | 10 +- src/helpers/img.ts | 17 +- src/helpers/libraryItem.ts | 15 +- src/helpers/localData.ts | 23 +- src/helpers/locales.ts | 8 +- src/helpers/numbers.ts | 9 +- src/helpers/openGraph.ts | 21 +- src/helpers/others.ts | 48 +- src/hooks/useLightBox.tsx | 5 +- src/hooks/useLocalData.ts | 5 +- src/hooks/useMediaQuery.ts | 6 +- src/hooks/useOnResize.ts | 5 +- src/hooks/useOnScroll.ts | 10 +- src/hooks/useScrollTopOnChange.ts | 11 +- src/hooks/useSmartLanguage.ts | 14 +- src/pages/_document.tsx | 41 +- src/pages/about-us/accords-handbook.tsx | 5 +- src/pages/about-us/contact.tsx | 27 +- src/pages/about-us/index.tsx | 12 +- src/pages/about-us/legality.tsx | 5 +- src/pages/about-us/sharing-policy.tsx | 5 +- src/pages/api/revalidate.ts | 29 +- src/pages/archives/videos/c/[uid].tsx | 55 +- src/pages/archives/videos/index.tsx | 30 +- src/pages/archives/videos/v/[uid].tsx | 74 +- src/pages/chronicles/[slug]/index.tsx | 196 ++-- src/pages/chronicles/index.tsx | 35 +- src/pages/contents/[slug].tsx | 328 +++---- src/pages/contents/all.tsx | 56 +- src/pages/contents/folder/[slug].tsx | 94 +- src/pages/contents/index.tsx | 4 +- src/pages/dev/checkup/contents.tsx | 316 +++---- src/pages/dev/checkup/libraryitems.tsx | 219 ++--- src/pages/dev/editor.tsx | 139 +-- src/pages/dev/transcript.tsx | 62 +- src/pages/index.tsx | 9 +- src/pages/library/[slug]/index.tsx | 451 ++++----- src/pages/library/[slug]/scans.tsx | 395 +++----- src/pages/library/index.tsx | 107 +-- src/pages/news/[slug].tsx | 21 +- src/pages/news/index.tsx | 32 +- src/pages/wiki/[slug]/index.tsx | 198 ++-- src/pages/wiki/chronology.tsx | 261 ++---- src/pages/wiki/index.tsx | 59 +- src/tailwind.css | 6 +- src/types/SelectiveNonNullable.ts | 18 +- src/{helpers => types}/types.ts | 10 +- tailwind.config.js | 4 +- 106 files changed, 2637 insertions(+), 3413 deletions(-) create mode 100644 prettier.config.js rename src/{helpers => types}/types.ts (86%) diff --git a/.eslintignore b/.eslintignore index 1d947a8..bc3ec05 100644 --- a/.eslintignore +++ b/.eslintignore @@ -7,4 +7,5 @@ next.config.js postcss.config.js tailwind.config.js design.config.js -graphql.config.js \ No newline at end of file +graphql.config.js +prettier.config.js \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js index 806a5e6..36028d7 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -81,7 +81,7 @@ module.exports = { // "no-magic-numbers": "warn", // "no-mixed-operators": "warn", "no-multi-assign": "warn", - "no-multi-str": "warn", + // "no-multi-str": "warn", "no-negated-condition": "warn", // "no-nested-ternary": "warn", "no-new": "warn", @@ -149,24 +149,15 @@ module.exports = { "@typescript-eslint/ban-tslint-comment": "warn", "@typescript-eslint/class-literal-property-style": "warn", "@typescript-eslint/consistent-indexed-object-style": "warn", - "@typescript-eslint/consistent-type-assertions": [ - "warn", - { assertionStyle: "as" }, - ], + "@typescript-eslint/consistent-type-assertions": ["warn", { assertionStyle: "as" }], "@typescript-eslint/consistent-type-exports": "error", "@typescript-eslint/explicit-module-boundary-types": "warn", "@typescript-eslint/method-signature-style": ["error", "property"], "@typescript-eslint/no-base-to-string": "warn", "@typescript-eslint/no-confusing-non-null-assertion": "warn", - "@typescript-eslint/no-confusing-void-expression": [ - "error", - { ignoreArrowShorthand: true }, - ], + "@typescript-eslint/no-confusing-void-expression": ["error", { ignoreArrowShorthand: true }], "@typescript-eslint/no-dynamic-delete": "error", - "@typescript-eslint/no-empty-interface": [ - "error", - { allowSingleExtends: true }, - ], + "@typescript-eslint/no-empty-interface": ["error", { allowSingleExtends: true }], "@typescript-eslint/no-invalid-void-type": "error", "@typescript-eslint/no-meaningless-void-operator": "error", "@typescript-eslint/no-non-null-asserted-nullish-coalescing": "error", diff --git a/graphql-codegen.config.js b/graphql-codegen.config.js index 2155cde..4e84bd5 100644 --- a/graphql-codegen.config.js +++ b/graphql-codegen.config.js @@ -8,17 +8,10 @@ module.exports = { headers: { Authorization: `Bearer ${process.env.ACCESS_TOKEN}` }, }, }, - documents: [ - "src/graphql/operations/**/*.graphql", - "src/graphql/fragments/*.graphql", - ], + documents: ["src/graphql/operations/**/*.graphql", "src/graphql/fragments/*.graphql"], generates: { "src/graphql/generated.ts": { - plugins: [ - "typescript", - "typescript-operations", - "typescript-graphql-request", - ], + plugins: ["typescript", "typescript-operations", "typescript-graphql-request"], }, }, }; diff --git a/next-sitemap.config.js b/next-sitemap.config.js index 3f572fb..ac4672d 100644 --- a/next-sitemap.config.js +++ b/next-sitemap.config.js @@ -24,14 +24,5 @@ module.exports = { hreflang: "ja", }, ], - exclude: [ - "/en/*", - "/fr/*", - "/ja/*", - "/es/*", - "/pt-br/*", - "/404", - "/500", - "/dev/*", - ], + exclude: ["/en/*", "/fr/*", "/ja/*", "/es/*", "/pt-br/*", "/404", "/500", "/dev/*"], }; diff --git a/package.json b/package.json index 6dac116..cd58a64 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,10 @@ "private": true, "scripts": { "dev": "next dev -p 12499", - "precommit": "npm run generate && npm run fetch-local-data && npm run prettier && npm run unused-exports && npm run eslint && npm run tsc && echo ALL PRECOMMIT CHECKS PASSED SUCCESSFULLY, LET\\'S FUCKING GO!", + "precommit": "npm run fetch-local-data && npm run prettier && npm run unused-exports && npm run eslint && npm run tsc && echo ALL PRECOMMIT CHECKS PASSED SUCCESSFULLY, LET\\'S FUCKING GO!", "unused-exports": "ts-unused-exports ./tsconfig.json --excludePathsFromReport=src/pages --ignoreFiles=generated", - "fetch-local-data": "esrun src/graphql/fetchLocalData.ts", - "prebuild": "npm run generate && npm run fetch-local-data", + "fetch-local-data": "npm run generate && esrun src/graphql/fetchLocalData.ts", + "prebuild": "npm run fetch-local-data", "build": "next build", "postbuild": "next-sitemap --config next-sitemap.config.js", "start": "next start -p 12500", diff --git a/prettier.config.js b/prettier.config.js new file mode 100644 index 0000000..0f4e508 --- /dev/null +++ b/prettier.config.js @@ -0,0 +1,21 @@ +module.exports = { + printWidth: 100, + tabWidth: 2, + useTabs: false, + semi: true, + singleQuote: false, + quoteProps: "as-needed", + jsxSingleQuote: false, + trailingComma: "es5", + bracketSpacing: true, + bracketSameLine: true, + arrowParens: "always", + rangeStart: 0, + rangeEnd: Infinity, + requirePragma: false, + insertPragma: false, + proseWrap: "preserve", + htmlWhitespaceSensitivity: "ignore", + endOfLine: "lf", + singleAttributePerLine: false, +}; diff --git a/public/local-data/currencies.json b/public/local-data/currencies.json index 2b40fc9..3ee18ae 100644 --- a/public/local-data/currencies.json +++ b/public/local-data/currencies.json @@ -1 +1,91 @@ -{"currencies":{"data":[{"id":"1","attributes":{"code":"EUR","symbol":"€","rate_to_usd":1.1062771,"display_decimals":true}},{"id":"2","attributes":{"code":"CAD","symbol":"$","rate_to_usd":0.79319156,"display_decimals":true}},{"id":"3","attributes":{"code":"USD","symbol":"$","rate_to_usd":1,"display_decimals":true}},{"id":"4","attributes":{"code":"JPY","symbol":"¥","rate_to_usd":0.0083864261,"display_decimals":false}},{"id":"5","attributes":{"code":"BRL","symbol":"R$","rate_to_usd":0.19904328,"display_decimals":true}},{"id":"6","attributes":{"code":"GBP","symbol":"£","rate_to_usd":1.3181323,"display_decimals":true}},{"id":"7","attributes":{"code":"AUD","symbol":"$","rate_to_usd":0.7422,"display_decimals":true}},{"id":"8","attributes":{"code":"INR","symbol":"₹","rate_to_usd":0.013162881,"display_decimals":false}},{"id":"9","attributes":{"code":"NZD","symbol":"$","rate_to_usd":0.69089984,"display_decimals":true}},{"id":"10","attributes":{"code":"CHF","symbol":"CHF","rate_to_usd":1.0728706,"display_decimals":true}}]}} \ No newline at end of file +{ + "currencies": { + "data": [ + { + "id": "1", + "attributes": { + "code": "EUR", + "symbol": "€", + "rate_to_usd": 1.1062771, + "display_decimals": true + } + }, + { + "id": "2", + "attributes": { + "code": "CAD", + "symbol": "$", + "rate_to_usd": 0.79319156, + "display_decimals": true + } + }, + { + "id": "3", + "attributes": { "code": "USD", "symbol": "$", "rate_to_usd": 1, "display_decimals": true } + }, + { + "id": "4", + "attributes": { + "code": "JPY", + "symbol": "¥", + "rate_to_usd": 0.0083864261, + "display_decimals": false + } + }, + { + "id": "5", + "attributes": { + "code": "BRL", + "symbol": "R$", + "rate_to_usd": 0.19904328, + "display_decimals": true + } + }, + { + "id": "6", + "attributes": { + "code": "GBP", + "symbol": "£", + "rate_to_usd": 1.3181323, + "display_decimals": true + } + }, + { + "id": "7", + "attributes": { + "code": "AUD", + "symbol": "$", + "rate_to_usd": 0.7422, + "display_decimals": true + } + }, + { + "id": "8", + "attributes": { + "code": "INR", + "symbol": "₹", + "rate_to_usd": 0.013162881, + "display_decimals": false + } + }, + { + "id": "9", + "attributes": { + "code": "NZD", + "symbol": "$", + "rate_to_usd": 0.69089984, + "display_decimals": true + } + }, + { + "id": "10", + "attributes": { + "code": "CHF", + "symbol": "CHF", + "rate_to_usd": 1.0728706, + "display_decimals": true + } + } + ] + } +} diff --git a/public/local-data/languages.json b/public/local-data/languages.json index a4f33d1..cb3a003 100644 --- a/public/local-data/languages.json +++ b/public/local-data/languages.json @@ -1 +1,36 @@ -{"languages":{"data":[{"id":"1","attributes":{"name":"French","code":"fr","localized_name":"Français"}},{"id":"2","attributes":{"name":"English","code":"en","localized_name":"English"}},{"id":"3","attributes":{"name":"Japanese","code":"ja","localized_name":"日本語"}},{"id":"4","attributes":{"name":"Spanish","code":"es","localized_name":"Español"}},{"id":"6","attributes":{"name":"Portuguese (Brazil)","code":"pt-br","localized_name":"Português (Brasil)"}},{"id":"8","attributes":{"name":"German","code":"de","localized_name":"Deutsch"}},{"id":"9","attributes":{"name":"Italian","code":"it","localized_name":"Italiano"}},{"id":"10","attributes":{"name":"Russian","code":"ru","localized_name":"русский"}},{"id":"11","attributes":{"name":"Korean","code":"ko","localized_name":"한국어"}},{"id":"12","attributes":{"name":"Chinese (Traditional)","code":"zh-cht","localized_name":"中文(繁體)"}}]}} \ No newline at end of file +{ + "languages": { + "data": [ + { "id": "1", "attributes": { "name": "French", "code": "fr", "localized_name": "Français" } }, + { "id": "2", "attributes": { "name": "English", "code": "en", "localized_name": "English" } }, + { "id": "3", "attributes": { "name": "Japanese", "code": "ja", "localized_name": "日本語" } }, + { "id": "4", "attributes": { "name": "Spanish", "code": "es", "localized_name": "Español" } }, + { + "id": "6", + "attributes": { + "name": "Portuguese (Brazil)", + "code": "pt-br", + "localized_name": "Português (Brasil)" + } + }, + { "id": "8", "attributes": { "name": "German", "code": "de", "localized_name": "Deutsch" } }, + { + "id": "9", + "attributes": { "name": "Italian", "code": "it", "localized_name": "Italiano" } + }, + { + "id": "10", + "attributes": { "name": "Russian", "code": "ru", "localized_name": "русский" } + }, + { "id": "11", "attributes": { "name": "Korean", "code": "ko", "localized_name": "한국어" } }, + { + "id": "12", + "attributes": { + "name": "Chinese (Traditional)", + "code": "zh-cht", + "localized_name": "中文(繁體)" + } + } + ] + } +} diff --git a/public/local-data/websiteInterfaces.json b/public/local-data/websiteInterfaces.json index 2d27425..fdaddd4 100644 --- a/public/local-data/websiteInterfaces.json +++ b/public/local-data/websiteInterfaces.json @@ -1 +1,886 @@ -{"websiteInterfaces":{"data":[{"attributes":{"ui_language":{"data":{"attributes":{"code":"en"}}},"library":"Library","contents":"Contents","wiki":"Wiki","chronicles":"Chronicles","library_short_description":"Browse all physical and digital media","contents_short_description":"Explore all content and filter by type or category","wiki_short_description":"An encyclopedia for everything related to DrakeNieR","chronicles_short_description":"Experience all events and content in chronological order","news":"News","merch":"Merch","gallery":"Gallery","archives":"Archives","about_us":"About us","licensing_notice":"This website’s content is made available under [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/) unless otherwise noted.","copyright_notice":"Accord’s Library is not affiliated with or endorsed by SQUARE ENIX CO. LTD. All game assets and promotional materials belongs to © SQUARE ENIX CO. LTD.","contents_description":"All the contents (textual, audio, and video) from the Library or other online sources.","type":"Type","category":"Category","categories":"Categories","size":"Size","release_date":"Release date","release_year":"Release year","details":"Details","price":"Price","width":"Width","height":"Height","thickness":"Thickness","subitem":"Subitem","subitems":"Subitems","subitem_of":"Subitem of","variant":"Variant","variants":"Variants","variant_of":"Variant of","summary":"Summary","audio":"Audio","video":"Video","textual":"Textual","game":"Game","other":"Other","return_to":"Return to","left_to_right":"Left to right","right_to_left":"Right to left","page":"Page","pages":"Pages","page_order":"Page order","binding":"Binding","type_information":"Type information","front_matter":"Front matter","back_matter":"Back matter","open_content":"Open content","read_content":"Read content","watch_content":"Watch content","listen_content":"Listen to content","view_scans":"View scans","paperback":"Paperback","hardcover":"Hardcover","languages":"Languages","select_language":"Select a language","language":"Language","library_description":"A comprehensive list of all Yokoverse’s side materials (books, novellas, artbooks, stage plays, manga, drama CDs, and comics). For each, we provide photos, scans, and transcript of the content, information about what it is, when and how it was released, size, initial price…","wiki_description":"An encyclopedia for everything related to DrakeNieR. Right now, we only have the Chronology but a lot more pages are planned to be released!","chronicles_description":"Experience all events and content in chronological order.","news_description":"News articles written by our Recorders! Here you will find announcements about new merch/items releases, guides, theories, unboxings, showcases...","merch_description":"Harum ut consequatur a earum explicabo suscipit. Nostrum asperiores consectetur aperiam in ut sunt. Ipsa quibusdam et vel quam voluptas placeat. Qui est aliquam voluptatem. Tempora nisi exercitationem tempore sapiente expedita. Voluptas ut eaque nulla sunt ut dolor corrupti quos.","gallery_description":"A fully tagged Danbooru-styled gallery with currently more than a thousand unique official artworks.","archives_description":"Besides physical medias, we also archive digital contents such as websites, webpages, videos, and documents.","about_us_description":"Find more information about the Accord's Library project in the following pages.","page_not_found":"Page not found","default_description":"Accord's Library aims at gathering and archiving all of Yoko Taro’s work. Yoko Taro is a Japanese video game director and scenario writer.","name":"Name","show_subitems":"Show subitems","show_primary_items":"Show primary items","show_secondary_items":"Show secondary items","no_type":"No type","no_year":"No year","order_by":"Order by","group_by":"Group by","select_option_sidebar":"Select one of the options in the sidebar","group":"Group","settings":"Settings","theme":"Theme","light":"Light","auto":"Auto","dark":"Dark","font_size":"Font size","player_name":"Player name","currency":"Currency","font":"Font","calculated":"Calculated","status_incomplete":"This entry is only partially translated/transcribed.","status_draft":"This entry is just a draft. It usually means that this is a work-in-progress. Translation/transcription might be poor and/or computer-generated.","status_review":"This entry has not yet being proofread. The content should still be accurate.","status_done":"This entry has been checked and proofread. If you notice any translation errors or typos, please contact us so we can fix it!","incomplete":"Incomplete","draft":"Draft","review":"Review","done":"Done","status":"Status","transcribers":"Transcribers","translators":"Translators","proofreaders":"Proofreaders","transcript_notice":"This content is a transcript","translation_notice":"This content is a fan-translation","source_language":"Source language","pronouns":"Pronouns","no_category":"No category","item":"Item","items":"Items","content":"Content","result":"Result","results":"Results","language_switch_message":"","open_settings":"Open settings","change_language":"Change language","open_search":"Open search","chronology":"Chronology","accords_handbook":"Accord's Handbook","legality":"Legality","members":"Members","sharing_policy":"Sharing Policy","contact_us":"Contact us","email":"Email","email_gdpr_notice":"We only use your email in order to contact you in regard to your request. We do not share this email with anyone nor use it for any other purpose.","message":"Message","send":"Send","response_invalid_code":"Verification code is incorrect.","response_invalid_email":"Please enter a valid email address!","response_email_success":"Thank you for contacting us! We will be in touch with you shortly.","always_show_info":"Always show info","item_not_available":"This item is not for sale or is no longer available","primary_language":"Primary language","secondary_language":"Secondary languages","combine_related_contents":"Combine related contents","previous_content":"Previous content","followup_content":"Follow-up content","videos":"Videos","view_on":"View on","channel":"Channel","subscribers":"Subscribers","description":"Description","available_at":"Available at","search_title":"Search title...","want_it":"I want it!","have_it":"I have it!","source":"Source","reset_all_filters":"Reset all filters","only_display_items_i_have":"Only display items marked as “I have”","only_display_items_i_want":"Only display items marked as “I want”","only_display_unmarked_items":"Only display unmarked items","display_all_items":"Display all items","table_of_contents":"Table of Contents","definition":"Definition","no_results_message":"No results. You can try changing or resetting the search parameters.","all":"All","special_pages":"Special Pages","scan":"Scan","scanlation":"Scanlation","scanners":"Scanners","cleaners":"Cleaners","typesetters":"Typesetters","notes":"Notes","cover":"Cover","tags":"Tags","no_source_warning":"No source!","copy_anchor_link":"Click to copy the archor link","anchor_link_copied":"Copied! 👍","folders":"Folders","empty_folder_message":"This folder is empty"}},{"attributes":{"ui_language":{"data":{"attributes":{"code":"fr"}}},"library":"Bibliothèque","contents":"Contenus","wiki":"Wiki","chronicles":"Chroniques","library_short_description":"Explorer l'ensemble des médias physique ou numérique","contents_short_description":"Explorer tout les contenus et filtrer par type ou par catégorie","wiki_short_description":"Une encyclopédie pour tout l'univers DrakeNieR","chronicles_short_description":"Parcourir tous les événements et les contenu dans l'ordre chronologique","news":"News","merch":"Merch","gallery":"Galerie","archives":"Archives","about_us":"À propos","licensing_notice":"Le contenu de ce site web est mis à disposition sous licence [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/), sauf indication contraire.","copyright_notice":"Accord's Library n'est pas affiliée ni approuvée par SQUARE ENIX CO. LTD. Tous les contenus du jeu et les contenus promotionnel appartiennent à © SQUARE ENIX CO. LTD.","contents_description":"","type":"Type","category":"Catégorie","categories":"Catégories","size":"Dimension","release_date":"Date de sortie","release_year":"Année de sortie","details":"Détails","price":"Prix","width":"Largeur","height":"Hauteur","thickness":"Épaisseur","subitem":"Sous-item","subitems":"Sous-items","subitem_of":"Sous-item de","variant":"Variante","variants":"Variantes","variant_of":"Variante de","summary":"Résumé","audio":"Audio","video":"Vidéo","textual":"Textuel","game":"Jeux","other":"Autre","return_to":"Retourner à ","left_to_right":"Gauche à droite","right_to_left":"Droite à gauche","page":"Page","pages":"Pages","page_order":"Order des pages","binding":"Brochure","type_information":"Information de type","front_matter":"Avant propos","back_matter":"Après propos","open_content":"Parcourir le contenu","read_content":"Lire le contenu","watch_content":"Regarder le contenu","listen_content":"Écouter le contenu","view_scans":"Voir les scans","paperback":"Broché","hardcover":"Relié","languages":"Langues","select_language":"Séléctionner la langue","language":"Langue","library_description":"","wiki_description":"","chronicles_description":"","news_description":"","merch_description":"","gallery_description":"","archives_description":"","about_us_description":"","page_not_found":"Page introuvable","default_description":"Accord's Library a pour but de rassembler et d'archiver l'ensemble des travaux de Yoko Taro. Yoko Taro est un réalisateur et scénariste de jeux vidéo japonais.","name":"Nom","show_subitems":"Afficher les sous-items","show_primary_items":"Afficher les items primaires","show_secondary_items":"Afficher les items secondaires","no_type":"Pas de type","no_year":"Pas d'année","order_by":"Ordonné par","group_by":"Groupé par","select_option_sidebar":"Sélectionner l'une des options de la barre latérale","group":"Groupe","settings":"Paramètres","theme":"Thème","light":"Clair","auto":"Auto","dark":"Sombre","font_size":"Taille de la police","player_name":"Nom du joueur","currency":"Devise","font":"Police d'écriture","calculated":"calculé","status_incomplete":"Cette entrée n'est que partiellement traduite/transcrite.","status_draft":"Cette entrée n'est qu'un brouillon. Cela signifie généralement qu'il s'agit d'un travail en cours. La traduction/transcription peut être médiocre et/ou auto-générée par ordinateur.","status_review":"Cet entrée n'a pas encore été relue. Le contenu devrait néanmoins être correct.","status_done":"Cet entrée a été vérifiée et corrigée. Si vous remarquez des erreurs de traduction ou des fautes de frappe, veuillez nous contacter afin que nous puissions les corriger !","incomplete":"Incomplet","draft":"Ébauche","review":"Pour vérification","done":"Terminé","status":"Statut","transcribers":"Transcripteurs","translators":"Traducteurs","proofreaders":"Correcteurs","transcript_notice":"Ceci est une transcription","translation_notice":"Ceci est une traduction","source_language":"Langue source","pronouns":"Pronoms","no_category":"Pas de categorie","item":"Item","items":"Items","content":"Content","result":"Resultat","results":"Résultats","language_switch_message":"Ce contenu n'est pas disponible dans la langue actuellement sélectionnée. Vous pouvez sélectionner l'une des langues suivantes à la place :","open_settings":"Ouvrir les paramètres","change_language":"Changer de langue","open_search":"Ouvrir le menu de recherche","chronology":"Chronologie","accords_handbook":"Le manuel de Accord","legality":"Légalité","members":"Membres","sharing_policy":"Politique de partage","contact_us":"Nous contacter","email":"Email","email_gdpr_notice":"Nous utilisons votre adresse électronique uniquement pour vous contacter au sujet de votre demande. Nous ne partageons cette adresse avec personne et ne l'utilisons pas à d'autres fins.","message":"Message","send":"Envoyer","response_invalid_code":"Le code de vérification est incorrect.","response_invalid_email":"Veuillez saisir une adresse électronique valide !","response_email_success":"Merci de nous avoir contactés ! Nous prendrons contact avec vous sous peu.","always_show_info":"Toujours montrer les informations","item_not_available":"Cet article n'est pas à vendre ou n'est plus disponible.","primary_language":"Langue principale","secondary_language":"Langues secondaires","combine_related_contents":"Combiner les contenus connexes","previous_content":"Contenu précédent","followup_content":"Contenu suivant","videos":"Videos","view_on":"Voir sur","channel":"Chaîne","subscribers":"Abonnés","description":"Description","available_at":"Disponible sur","search_title":"Rechercher un titre...","want_it":"Je le veux !","have_it":"Je l'ai !","source":"Source","reset_all_filters":"Réinitialiser les filtres","only_display_items_i_have":"Seulement afficher les items marqués avec \"je le veux\"","only_display_items_i_want":"Seulement afficher les items marqués avec \"je l'ai\"","only_display_unmarked_items":"Seulement afficher les items non-marqués","display_all_items":"Afficher tous les items","table_of_contents":"Sommaire","definition":"Definition","no_results_message":"Aucun résultat. Vous pouvez essayer de modifier ou de réinitialiser les paramètres de recherche.","all":"Tous","special_pages":"Pages spéciales","scan":"Scan","scanlation":"Scantrad","scanners":"Scanneurs","cleaners":"Nettoyeurs","typesetters":"Lettreurs","notes":"Notes","cover":"Couverture","tags":"Tags","no_source_warning":"Pas de source !","copy_anchor_link":"Cliquez pour copier le permalien","anchor_link_copied":"Copié ! 👍","folders":null,"empty_folder_message":null}},{"attributes":{"ui_language":{"data":{"attributes":{"code":"ja"}}},"library":"ライブラリー","contents":"コンテンツ","wiki":"ウィキ","chronicles":"クロニクル","library_short_description":"すべての物理メディアとデジタルメディアを見る","contents_short_description":"すべてのコンテンツを検索し、種類やカテゴリーで絞り込むことができます。","wiki_short_description":"ゲーム宇宙に関連するすべての百科事典です。","chronicles_short_description":"すべてのイベントとコンテンツを時系列で体験できる","news":"ニュース","merch":"マーチ","gallery":"ギャラリー","archives":"アーカイブス","about_us":"会社概要","licensing_notice":"このウェブサイトのコンテンツは、特に断りのない限り [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/) で提供されています。","copyright_notice":"Accord's Libraryは、株式会社スクウェア・エニックスと提携、または推奨しているものではありません。株式会社スクウェア・エニックスの登録商標です。すべてのゲーム資産およびプロモーション素材は、© SQUARE ENIX CO. LTD.に帰属します。","contents_description":"図書館や他のオンラインソースのすべてのコンテンツ(テキスト、オーディオ、ビデオ)。","type":"タイプ","category":"カテゴリー","categories":"カテゴリー","size":"サイズ","release_date":"発売日","release_year":"発売年","details":"詳細","price":"価格","width":"幅","height":"高さ","thickness":"厚み","subitem":"サブアイテム","subitems":"サブアイテム","subitem_of":"のサブアイテム","variant":"バリアント","variants":"バリアント","variant_of":"のバリアント","summary":"概要","audio":"オーディオ","video":"ビデオ","textual":"テキスト","game":"ゲーム","other":"他","return_to":"戻る","left_to_right":"左から右へ","right_to_left":"右から左へ","page":"ページ","pages":"ページ","page_order":"ページ順序","binding":"製本","type_information":"タイプ情報","front_matter":"フロントマター","back_matter":"バックナンバー","open_content":"コンテンツを開放","read_content":"コンテンツを読む","watch_content":"コンテンツを見る","listen_content":"コンテンツを聴く","view_scans":"スキャンを開放","paperback":"ペーパーバック","hardcover":"ハードカバー","languages":"言語","select_language":"言語を選択する","language":"言語","library_description":"ヨコベースの副教材(書籍、小説、画集、舞台劇、漫画、ドラマCD、コミック)を網羅したリストです。それぞれについて、写真、スキャン、内容の書き起こし、どんなものなのか、いつ、どのように発売されたのか、サイズ、初回価格...などの情報を掲載しています。","wiki_description":"DrakeNieRに関連するすべての百科事典です。現在は年表のみですが、今後多くのページを公開予定です","chronicles_description":"Accord's Libraryは、ヨーコ・タローの全作品を収集・保存することを目的としています。ヨーコ・タローは、日本のゲームディレクター、シナリオライターです。","news_description":"レコーダーが書いたニュース記事です ここでは、新しい商品/アイテムのリリースに関するお知らせ、ガイド、セオリー、アンボックス、ショーケース...をご紹介しています。","merch_description":"","gallery_description":"","archives_description":"","about_us_description":"Accord's Libraryプロジェクトについては、以下のページで詳しくご紹介しています。","page_not_found":"ページが見つかりません","default_description":"Accord's Libraryは、ヨーコ・タローの全作品を収集・保存することを目的としています。ヨーコ・タローは、日本のゲームディレクター、シナリオライターです。","name":"名称","show_subitems":"サブアイテムをみせる","show_primary_items":"一次のイテムをみせる","show_secondary_items":"二次のイテムをみせる","no_type":"タイプなし","no_year":"年なし","order_by":"注文する","group_by":"グループ化する","select_option_sidebar":"サイドバーのオプションを選択します","group":"グループ","settings":"設定","theme":"テーマ","light":"光","auto":"オート","dark":"暗","font_size":"文字サイズ","player_name":"プレイヤー名","currency":"通貨","font":"文字","calculated":"計算された","status_incomplete":"このエントリーは一部のみ翻訳/転記されています。","status_draft":"このエントリーはあくまで下書きです。通常、これは作業中であることを意味します。翻訳/転写は稚拙であったり、コンピュータで作成されたものであったりするかもしれません。","status_review":"このエントリーはまだ校正されていません。内容はまだ正確であるはずです。","status_done":"このエントリーは、チェックと校正を行いました。もし、翻訳ミスや誤字脱字にお気づきの際は、修正いたしますので、ご連絡ください","incomplete":"未完成","draft":"ドラフト","review":"レビュー","done":"完了","status":"状況","transcribers":"トランスクライバー","translators":"翻訳者","proofreaders":"校正者","transcript_notice":"このコンテンツは転写です","translation_notice":"このコンテンツはファンによる翻訳です","source_language":"ソース言語","pronouns":"代名詞","no_category":"カテゴリーなし","item":"項目","items":"項目","content":"コンテンツ","result":"結果","results":"結果","language_switch_message":null,"open_settings":"オープン設定","change_language":"言語を変更する","open_search":"オープンサーチ","chronology":"年表","accords_handbook":"アコードの手引き","legality":"合法性","members":"メンバー紹介","sharing_policy":"共有ポリシー","contact_us":"お問い合わせ","email":"電子メール","email_gdpr_notice":"お客様の電子メールは、お客様のご要望に関してご連絡するためにのみ使用します。この電子メールを誰かと共有したり、他の目的で使用することはありません。","message":"メッセージ","send":"送信","response_invalid_code":"検証コードが正しくありません。","response_invalid_email":"有効なEメールアドレスを入力してください","response_email_success":"お問い合わせありがとうございます。折り返しご連絡させていただきます。","always_show_info":"常に情報を表示する","item_not_available":"この商品は非売品です","primary_language":"主要言語","secondary_language":"二次言語","combine_related_contents":"関連するコンテンツを組み合わせる","previous_content":"前のコンテンツ","followup_content":"フォローアップコンテンツ","videos":"動画","view_on":"見る","channel":"チャンネル","subscribers":"サブスクライバー","description":"説明","available_at":"でご覧いただけます。","search_title":"検索タイトル...","want_it":"欲しいです!","have_it":"持ってます!","source":"出典","reset_all_filters":"すべてのフィルタをリセットする","only_display_items_i_have":"\"持ってる \"と表示されているもののみ表示","only_display_items_i_want":"\"欲しい \"とマークされたものだけを表示する","only_display_unmarked_items":"無印のアイテムのみ表示","display_all_items":"すべての項目を表示する","table_of_contents":"目次","definition":"定義","no_results_message":"結果が出ません。検索条件を変更またはリセットしてみてください。","all":"すべて","special_pages":"特設ページ","scan":null,"scanlation":null,"scanners":null,"cleaners":null,"typesetters":null,"notes":null,"cover":null,"tags":null,"no_source_warning":null,"copy_anchor_link":null,"anchor_link_copied":null,"folders":null,"empty_folder_message":null}},{"attributes":{"ui_language":{"data":{"attributes":{"code":"es"}}},"library":"Librería","contents":"Contenidos","wiki":"Wiki","chronicles":"Crónicas","library_short_description":"Explora todos los medios físicos y digitales","contents_short_description":"Explora todo el contenido y filtra por tipo o categoría","wiki_short_description":"Una enciclopedia para todo lo relacionado con DrakeNieR","chronicles_short_description":"Experimenta todos los eventos y contenidos en orden cronológico","news":"Novedades","merch":"Merch","gallery":"Galería","archives":"Archivos","about_us":"Sobre nosotros","licensing_notice":"El contenido de este sitio web está disponible bajo [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/) a menos que se indique lo contrario.","copyright_notice":"Accord's Library no está afiliada ni respaldada por SQUARE ENIX CO. LTD. Todos los archivos de los juegos y material promocional pertenecen a © SQUARE ENIX CO. LTD.","contents_description":"Todo el contenido (textual, audio y video) de la Biblioteca u otras fuentes en línea.","type":"Tipo","category":"Categoría","categories":"Categorías","size":"Tamaño","release_date":"Fecha de lanzamiento","release_year":"Año de lanzamiento","details":"Detalles","price":"Precio","width":"Ancho","height":"Altura","thickness":"Grosor","subitem":"Sub-item","subitems":"Sub-items","subitem_of":"Sub-item de","variant":"Variante","variants":"Variantes","variant_of":"Variante de","summary":"Sumario","audio":"Audio","video":"Video","textual":"Textual","game":"Juego","other":"Otros","return_to":"Volver a","left_to_right":"Izquierda a derecha","right_to_left":"Derecha a izquierda","page":"Página","pages":"Páginas","page_order":"Orden de las páginas","binding":"Encuadernación","type_information":"Tipo de información","front_matter":"Anteportada","back_matter":"Portada anterior","open_content":"Abrir contenido","read_content":"Leer contenido","watch_content":"Ver contenido","listen_content":"Escuchar contenido","view_scans":"Ver escaneos","paperback":"Tapa blanda","hardcover":"Tapa dura","languages":"Idiomas","select_language":"Seleccionar idioma","language":"Idioma","library_description":"Una lista completa de todos los materiales complementarios de Yokoverse (libros, novelas, libros de arte, obras de teatro, manga, CDs novelizados y cómics). Para cada uno, proporcionamos fotos, escaneos y transcripciones del contenido, información sobre qué es, cuándo y cómo se ha publicado, tamaño, precio inicial...","wiki_description":"Una enciclopedia para todo lo relacionado con DrakeNieR. En este momento, solo tenemos la Cronología, ¡pero muchas más páginas están planeadas para ser publicadas!","chronicles_description":"","news_description":"¡Nuevos artículos escritos por nuestros/as Archivistas! Aquí encontrarás anuncios sobre nuevos lanzamientos de merchandising/artículos, guías, teorías, unboxings, showcases...","merch_description":"","gallery_description":"Una galería completamente etiquetada de estilo Danbooru, actualmente con más de mil obras de arte oficiales únicas.","archives_description":"","about_us_description":"Encuentra más información sobre el proyecto de Accord's Library en las siguientes páginas.","page_not_found":"Página no encontrada","default_description":"Accord's Library tiene como objetivo recopilar y archivar todo el trabajo de Yoko Taro. Yoko Taro es un director de videojuegos y escritor de escenarios japonés.","name":"Nombre","show_subitems":"Mostrar sub-items","show_primary_items":"Mostrar items principales","show_secondary_items":"Mostrar items secundarios","no_type":"Ningún tipo","no_year":"Ningún año","order_by":"Ordenar por","group_by":"Agrupar por","select_option_sidebar":"Selecciona una de las opciones en la barra lateral","group":"Grupo","settings":"Ajustes","theme":"Tema","light":"Claro","auto":"Auto","dark":"Oscuro","font_size":"Tamaño de la fuente","player_name":"Nombre del jugador/a","currency":"Divisa","font":"Fuente","calculated":"Calculada","status_incomplete":"Esta entrada está solo parcialmente traducida/transcrita.","status_draft":"Esta entrada es solo un borrador. Por lo general, significa que se trata de un trabajo en curso. La traducción/transcripción puede ser deficiente y/o generada por ordenador.","status_review":"Esta entrada aún no ha sido corregida. No obstante, el contenido debería ser preciso.","status_done":"Esta entrada ha sido revisada y corregida. Si notas algún error de traducción o error tipográfico, contáctanos para que podamos solucionarlo!","incomplete":"Incompleto","draft":"Borrador","review":"Revisado","done":"Completado","status":"Estado","transcribers":"Transcriptores/as","translators":"Traductores/as","proofreaders":"Correctores/as","transcript_notice":"Este contenido es una transcripción","translation_notice":"Este contenido es una traducción de fans","source_language":"Idioma original","pronouns":"Pronombres","no_category":"Ningún categoría","item":null,"items":null,"content":null,"result":null,"results":null,"language_switch_message":null,"open_settings":null,"change_language":null,"open_search":null,"chronology":null,"accords_handbook":null,"legality":null,"members":null,"sharing_policy":null,"contact_us":null,"email":"Email","email_gdpr_notice":"Solo usamos tu correo electrónico exclusivamente para contactarte en relación a tu solicitud. No compartimos este correo electrónico con nadie ni lo usamos para ningún otro propósito.","message":null,"send":null,"response_invalid_code":"El código de verificación es incorrecto.","response_invalid_email":"¡Por favor, introduce una dirección de correo electrónico válida!","response_email_success":"¡Gracias por contactarnos! Nos pondremos en contacto contigo en breve.","always_show_info":null,"item_not_available":null,"primary_language":null,"secondary_language":null,"combine_related_contents":null,"previous_content":null,"followup_content":null,"videos":null,"view_on":null,"channel":null,"subscribers":null,"description":null,"available_at":null,"search_title":null,"want_it":null,"have_it":null,"source":null,"reset_all_filters":null,"only_display_items_i_have":null,"only_display_items_i_want":null,"only_display_unmarked_items":null,"display_all_items":null,"table_of_contents":null,"definition":null,"no_results_message":null,"all":null,"special_pages":null,"scan":null,"scanlation":null,"scanners":null,"cleaners":null,"typesetters":null,"notes":null,"cover":null,"tags":null,"no_source_warning":null,"copy_anchor_link":null,"anchor_link_copied":null,"folders":null,"empty_folder_message":null}},{"attributes":{"ui_language":{"data":{"attributes":{"code":"pt-br"}}},"library":"Coleção","contents":"Conteúdos","wiki":"Wiki","chronicles":"Crônicas","library_short_description":"Procure por todas mídias digitais e físicas","contents_short_description":"Explore todo o conteúdo e filtre por categorias e tipos","wiki_short_description":"Uma enciclopédia com tudo relacionado a DrakeNieR","chronicles_short_description":"Explore as crônicas de DrakeNieR em ordem cronológica.","news":"Notícias","merch":"Mercadorias","gallery":"Galeria","archives":"Arquivos","about_us":"Sobre Nós","licensing_notice":"O conteúdo nesse site está disponível pela CC-BY-SA, a não ser que esteja anotado.","copyright_notice":"Accord's Library não é afiliada ou reconhecida pela SQUARE ENIX CO. LTD. Todos assets de jogos e materiais promocionais pertencem a © SQUARE ENIX CO. LTD.\n\n","contents_description":"","type":"Tipo","category":"Categoria","categories":"Categorias","size":"Tamanho","release_date":"Dia de lançamento","release_year":"Ano de lançamento","details":"Detalhes","price":"Preço","width":"Largura","height":"Altura","thickness":"Grossura","subitem":"Subitem","subitems":"Subitens","subitem_of":"Subitem de","variant":"Variante","variants":"Variantes","variant_of":"Variante de","summary":"Sumário","audio":"Audio","video":"Video","textual":"Textos","game":"Jogos","other":"Outros","return_to":"Voltar para","left_to_right":"Esquerda para direita","right_to_left":"Direita para esquerda","page":"Página","pages":"Páginas","page_order":"Ordem de páginas","binding":"Encadernação","type_information":"Informação do tipo","front_matter":"Pré textual","back_matter":"Pós textual","open_content":"Abrir conteúdo","read_content":"Ler o conteúdo","watch_content":"Assistir o conteúdo","listen_content":"Ouvir o conteúdo","view_scans":"Ver scans","paperback":"Brochura","hardcover":"Capa dura","languages":"Línguas","select_language":"Selecionar língua","language":"Língua","library_description":"","wiki_description":null,"chronicles_description":null,"news_description":"","merch_description":"","gallery_description":"","archives_description":"","about_us_description":"","page_not_found":"Página não encontrada","default_description":null,"name":"Nome","show_subitems":"Mostrar subitens","show_primary_items":"Mostrar itens primários","show_secondary_items":"Mostrar itens secundários","no_type":"Sem tipo","no_year":"Sem ano","order_by":"Ordenar por","group_by":"Agrupar por","select_option_sidebar":"Selecione uma opção na aba lateral","group":"Grupo","settings":"Configurações","theme":"Tema","light":"Claro","auto":"Automático","dark":"Escuro","font_size":"Tamanho da fonte","player_name":"Nome do jogador","currency":"Moeda","font":"Fonte","calculated":"Calculado","status_incomplete":"Este conteúdo está incompleto e não foi traduzido/transcrito completamente.","status_draft":"A tradução/transcrição selecionada é um Rascunho. Isso significa que a tradução pode estar fraca e/ou ter sido gerada por uma inteligência artificial.","status_review":"Este conteúdo ainda não foi Revisado, erros gramaticais podem ser encontrados uma vez que os revisores ainda não leram a tradução.","status_done":"O conteúdo foi completamente traduzido e revisado.","incomplete":"Incompleto","draft":"Rascunho","review":"Review","done":"Concluido","status":"Status","transcribers":"Transcritores","translators":"Tradutores","proofreaders":"Revisores","transcript_notice":"Este conteúdo foi transcrito.","translation_notice":"Este conteúdo é uma tradução de fã.","source_language":"Língua original","pronouns":"Pronomes","no_category":"Sem Categoria","item":"Item","items":"Itens","content":"Conteúdo","result":"Resultado","results":"Resultados","language_switch_message":"Este conteúdo não está disponível na língua selecionada. Você pode escolher uma das seguintes línguas:","open_settings":"Abrir configurações","change_language":"Mudar língua","open_search":"Abrir pesquisa","chronology":"Cronologia","accords_handbook":"Livro de mão da Accord","legality":"Legalidade","members":"Membros","sharing_policy":"Política de compartilhamento","contact_us":"Fale conosco","email":null,"email_gdpr_notice":null,"message":null,"send":null,"response_invalid_code":null,"response_invalid_email":null,"response_email_success":null,"always_show_info":"Mostrar informações","item_not_available":"Item indisponível","primary_language":"Língua primaria","secondary_language":"Línguas secundárias","combine_related_contents":"Combinar relacionados","previous_content":"Conteúdo anterior:","followup_content":"Próximo conteúdo:","videos":"Videos:","view_on":"Ver no:","channel":"Canal","subscribers":"Inscritos","description":"Descrição","available_at":"Disponível no:","search_title":"Pesquisar","want_it":null,"have_it":null,"source":null,"reset_all_filters":null,"only_display_items_i_have":null,"only_display_items_i_want":null,"only_display_unmarked_items":null,"display_all_items":null,"table_of_contents":null,"definition":null,"no_results_message":null,"all":null,"special_pages":null,"scan":null,"scanlation":null,"scanners":null,"cleaners":null,"typesetters":null,"notes":null,"cover":null,"tags":null,"no_source_warning":null,"copy_anchor_link":null,"anchor_link_copied":null,"folders":null,"empty_folder_message":null}}]}} \ No newline at end of file +{ + "websiteInterfaces": { + "data": [ + { + "attributes": { + "ui_language": { "data": { "attributes": { "code": "en" } } }, + "library": "Library", + "contents": "Contents", + "wiki": "Wiki", + "chronicles": "Chronicles", + "library_short_description": "Browse all physical and digital media", + "contents_short_description": "Explore all content and filter by type or category", + "wiki_short_description": "An encyclopedia for everything related to DrakeNieR", + "chronicles_short_description": "Experience all events and content in chronological order", + "news": "News", + "merch": "Merch", + "gallery": "Gallery", + "archives": "Archives", + "about_us": "About us", + "licensing_notice": "This website’s content is made available under [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/) unless otherwise noted.", + "copyright_notice": "Accord’s Library is not affiliated with or endorsed by SQUARE ENIX CO. LTD. All game assets and promotional materials belongs to © SQUARE ENIX CO. LTD.", + "contents_description": "All the contents (textual, audio, and video) from the Library or other online sources.", + "type": "Type", + "category": "Category", + "categories": "Categories", + "size": "Size", + "release_date": "Release date", + "release_year": "Release year", + "details": "Details", + "price": "Price", + "width": "Width", + "height": "Height", + "thickness": "Thickness", + "subitem": "Subitem", + "subitems": "Subitems", + "subitem_of": "Subitem of", + "variant": "Variant", + "variants": "Variants", + "variant_of": "Variant of", + "summary": "Summary", + "audio": "Audio", + "video": "Video", + "textual": "Textual", + "game": "Game", + "other": "Other", + "return_to": "Return to", + "left_to_right": "Left to right", + "right_to_left": "Right to left", + "page": "Page", + "pages": "Pages", + "page_order": "Page order", + "binding": "Binding", + "type_information": "Type information", + "front_matter": "Front matter", + "back_matter": "Back matter", + "open_content": "Open content", + "read_content": "Read content", + "watch_content": "Watch content", + "listen_content": "Listen to content", + "view_scans": "View scans", + "paperback": "Paperback", + "hardcover": "Hardcover", + "languages": "Languages", + "select_language": "Select a language", + "language": "Language", + "library_description": "A comprehensive list of all Yokoverse’s side materials (books, novellas, artbooks, stage plays, manga, drama CDs, and comics). For each, we provide photos, scans, and transcript of the content, information about what it is, when and how it was released, size, initial price…", + "wiki_description": "An encyclopedia for everything related to DrakeNieR. Right now, we only have the Chronology but a lot more pages are planned to be released!", + "chronicles_description": "Experience all events and content in chronological order.", + "news_description": "News articles written by our Recorders! Here you will find announcements about new merch/items releases, guides, theories, unboxings, showcases...", + "merch_description": "Harum ut consequatur a earum explicabo suscipit. Nostrum asperiores consectetur aperiam in ut sunt. Ipsa quibusdam et vel quam voluptas placeat. Qui est aliquam voluptatem. Tempora nisi exercitationem tempore sapiente expedita. Voluptas ut eaque nulla sunt ut dolor corrupti quos.", + "gallery_description": "A fully tagged Danbooru-styled gallery with currently more than a thousand unique official artworks.", + "archives_description": "Besides physical medias, we also archive digital contents such as websites, webpages, videos, and documents.", + "about_us_description": "Find more information about the Accord's Library project in the following pages.", + "page_not_found": "Page not found", + "default_description": "Accord's Library aims at gathering and archiving all of Yoko Taro’s work. Yoko Taro is a Japanese video game director and scenario writer.", + "name": "Name", + "show_subitems": "Show subitems", + "show_primary_items": "Show primary items", + "show_secondary_items": "Show secondary items", + "no_type": "No type", + "no_year": "No year", + "order_by": "Order by", + "group_by": "Group by", + "select_option_sidebar": "Select one of the options in the sidebar", + "group": "Group", + "settings": "Settings", + "theme": "Theme", + "light": "Light", + "auto": "Auto", + "dark": "Dark", + "font_size": "Font size", + "player_name": "Player name", + "currency": "Currency", + "font": "Font", + "calculated": "Calculated", + "status_incomplete": "This entry is only partially translated/transcribed.", + "status_draft": "This entry is just a draft. It usually means that this is a work-in-progress. Translation/transcription might be poor and/or computer-generated.", + "status_review": "This entry has not yet being proofread. The content should still be accurate.", + "status_done": "This entry has been checked and proofread. If you notice any translation errors or typos, please contact us so we can fix it!", + "incomplete": "Incomplete", + "draft": "Draft", + "review": "Review", + "done": "Done", + "status": "Status", + "transcribers": "Transcribers", + "translators": "Translators", + "proofreaders": "Proofreaders", + "transcript_notice": "This content is a transcript", + "translation_notice": "This content is a fan-translation", + "source_language": "Source language", + "pronouns": "Pronouns", + "no_category": "No category", + "item": "Item", + "items": "Items", + "content": "Content", + "result": "Result", + "results": "Results", + "language_switch_message": "", + "open_settings": "Open settings", + "change_language": "Change language", + "open_search": "Open search", + "chronology": "Chronology", + "accords_handbook": "Accord's Handbook", + "legality": "Legality", + "members": "Members", + "sharing_policy": "Sharing Policy", + "contact_us": "Contact us", + "email": "Email", + "email_gdpr_notice": "We only use your email in order to contact you in regard to your request. We do not share this email with anyone nor use it for any other purpose.", + "message": "Message", + "send": "Send", + "response_invalid_code": "Verification code is incorrect.", + "response_invalid_email": "Please enter a valid email address!", + "response_email_success": "Thank you for contacting us! We will be in touch with you shortly.", + "always_show_info": "Always show info", + "item_not_available": "This item is not for sale or is no longer available", + "primary_language": "Primary language", + "secondary_language": "Secondary languages", + "combine_related_contents": "Combine related contents", + "previous_content": "Previous content", + "followup_content": "Follow-up content", + "videos": "Videos", + "view_on": "View on", + "channel": "Channel", + "subscribers": "Subscribers", + "description": "Description", + "available_at": "Available at", + "search_title": "Search title...", + "want_it": "I want it!", + "have_it": "I have it!", + "source": "Source", + "reset_all_filters": "Reset all filters", + "only_display_items_i_have": "Only display items marked as “I have”", + "only_display_items_i_want": "Only display items marked as “I want”", + "only_display_unmarked_items": "Only display unmarked items", + "display_all_items": "Display all items", + "table_of_contents": "Table of Contents", + "definition": "Definition", + "no_results_message": "No results. You can try changing or resetting the search parameters.", + "all": "All", + "special_pages": "Special Pages", + "scan": "Scan", + "scanlation": "Scanlation", + "scanners": "Scanners", + "cleaners": "Cleaners", + "typesetters": "Typesetters", + "notes": "Notes", + "cover": "Cover", + "tags": "Tags", + "no_source_warning": "No source!", + "copy_anchor_link": "Click to copy the archor link", + "anchor_link_copied": "Copied! 👍", + "folders": "Folders", + "empty_folder_message": "This folder is empty", + "switch_to_grid_view": null, + "switch_to_folder_view": null, + "content_is_not_available": null + } + }, + { + "attributes": { + "ui_language": { "data": { "attributes": { "code": "fr" } } }, + "library": "Bibliothèque", + "contents": "Contenus", + "wiki": "Wiki", + "chronicles": "Chroniques", + "library_short_description": "Explorer l'ensemble des médias physique ou numérique", + "contents_short_description": "Explorer tout les contenus et filtrer par type ou par catégorie", + "wiki_short_description": "Une encyclopédie pour tout l'univers DrakeNieR", + "chronicles_short_description": "Parcourir tous les événements et les contenu dans l'ordre chronologique", + "news": "News", + "merch": "Merch", + "gallery": "Galerie", + "archives": "Archives", + "about_us": "À propos", + "licensing_notice": "Le contenu de ce site web est mis à disposition sous licence [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/), sauf indication contraire.", + "copyright_notice": "Accord's Library n'est pas affiliée ni approuvée par SQUARE ENIX CO. LTD. Tous les contenus du jeu et les contenus promotionnel appartiennent à © SQUARE ENIX CO. LTD.", + "contents_description": "", + "type": "Type", + "category": "Catégorie", + "categories": "Catégories", + "size": "Dimension", + "release_date": "Date de sortie", + "release_year": "Année de sortie", + "details": "Détails", + "price": "Prix", + "width": "Largeur", + "height": "Hauteur", + "thickness": "Épaisseur", + "subitem": "Sous-item", + "subitems": "Sous-items", + "subitem_of": "Sous-item de", + "variant": "Variante", + "variants": "Variantes", + "variant_of": "Variante de", + "summary": "Résumé", + "audio": "Audio", + "video": "Vidéo", + "textual": "Textuel", + "game": "Jeux", + "other": "Autre", + "return_to": "Retourner à ", + "left_to_right": "Gauche à droite", + "right_to_left": "Droite à gauche", + "page": "Page", + "pages": "Pages", + "page_order": "Order des pages", + "binding": "Brochure", + "type_information": "Information de type", + "front_matter": "Avant propos", + "back_matter": "Après propos", + "open_content": "Parcourir le contenu", + "read_content": "Lire le contenu", + "watch_content": "Regarder le contenu", + "listen_content": "Écouter le contenu", + "view_scans": "Voir les scans", + "paperback": "Broché", + "hardcover": "Relié", + "languages": "Langues", + "select_language": "Séléctionner la langue", + "language": "Langue", + "library_description": "", + "wiki_description": "", + "chronicles_description": "", + "news_description": "", + "merch_description": "", + "gallery_description": "", + "archives_description": "", + "about_us_description": "", + "page_not_found": "Page introuvable", + "default_description": "Accord's Library a pour but de rassembler et d'archiver l'ensemble des travaux de Yoko Taro. Yoko Taro est un réalisateur et scénariste de jeux vidéo japonais.", + "name": "Nom", + "show_subitems": "Afficher les sous-items", + "show_primary_items": "Afficher les items primaires", + "show_secondary_items": "Afficher les items secondaires", + "no_type": "Pas de type", + "no_year": "Pas d'année", + "order_by": "Ordonné par", + "group_by": "Groupé par", + "select_option_sidebar": "Sélectionner l'une des options de la barre latérale", + "group": "Groupe", + "settings": "Paramètres", + "theme": "Thème", + "light": "Clair", + "auto": "Auto", + "dark": "Sombre", + "font_size": "Taille de la police", + "player_name": "Nom du joueur", + "currency": "Devise", + "font": "Police d'écriture", + "calculated": "calculé", + "status_incomplete": "Cette entrée n'est que partiellement traduite/transcrite.", + "status_draft": "Cette entrée n'est qu'un brouillon. Cela signifie généralement qu'il s'agit d'un travail en cours. La traduction/transcription peut être médiocre et/ou auto-générée par ordinateur.", + "status_review": "Cet entrée n'a pas encore été relue. Le contenu devrait néanmoins être correct.", + "status_done": "Cet entrée a été vérifiée et corrigée. Si vous remarquez des erreurs de traduction ou des fautes de frappe, veuillez nous contacter afin que nous puissions les corriger !", + "incomplete": "Incomplet", + "draft": "Ébauche", + "review": "Pour vérification", + "done": "Terminé", + "status": "Statut", + "transcribers": "Transcripteurs", + "translators": "Traducteurs", + "proofreaders": "Correcteurs", + "transcript_notice": "Ceci est une transcription", + "translation_notice": "Ceci est une traduction", + "source_language": "Langue source", + "pronouns": "Pronoms", + "no_category": "Pas de categorie", + "item": "Item", + "items": "Items", + "content": "Content", + "result": "Resultat", + "results": "Résultats", + "language_switch_message": "Ce contenu n'est pas disponible dans la langue actuellement sélectionnée. Vous pouvez sélectionner l'une des langues suivantes à la place :", + "open_settings": "Ouvrir les paramètres", + "change_language": "Changer de langue", + "open_search": "Ouvrir le menu de recherche", + "chronology": "Chronologie", + "accords_handbook": "Le manuel de Accord", + "legality": "Légalité", + "members": "Membres", + "sharing_policy": "Politique de partage", + "contact_us": "Nous contacter", + "email": "Email", + "email_gdpr_notice": "Nous utilisons votre adresse électronique uniquement pour vous contacter au sujet de votre demande. Nous ne partageons cette adresse avec personne et ne l'utilisons pas à d'autres fins.", + "message": "Message", + "send": "Envoyer", + "response_invalid_code": "Le code de vérification est incorrect.", + "response_invalid_email": "Veuillez saisir une adresse électronique valide !", + "response_email_success": "Merci de nous avoir contactés ! Nous prendrons contact avec vous sous peu.", + "always_show_info": "Toujours montrer les informations", + "item_not_available": "Cet article n'est pas à vendre ou n'est plus disponible.", + "primary_language": "Langue principale", + "secondary_language": "Langues secondaires", + "combine_related_contents": "Combiner les contenus connexes", + "previous_content": "Contenu précédent", + "followup_content": "Contenu suivant", + "videos": "Videos", + "view_on": "Voir sur", + "channel": "Chaîne", + "subscribers": "Abonnés", + "description": "Description", + "available_at": "Disponible sur", + "search_title": "Rechercher un titre...", + "want_it": "Je le veux !", + "have_it": "Je l'ai !", + "source": "Source", + "reset_all_filters": "Réinitialiser les filtres", + "only_display_items_i_have": "Seulement afficher les items marqués avec \"je le veux\"", + "only_display_items_i_want": "Seulement afficher les items marqués avec \"je l'ai\"", + "only_display_unmarked_items": "Seulement afficher les items non-marqués", + "display_all_items": "Afficher tous les items", + "table_of_contents": "Sommaire", + "definition": "Definition", + "no_results_message": "Aucun résultat. Vous pouvez essayer de modifier ou de réinitialiser les paramètres de recherche.", + "all": "Tous", + "special_pages": "Pages spéciales", + "scan": "Scan", + "scanlation": "Scantrad", + "scanners": "Scanneurs", + "cleaners": "Nettoyeurs", + "typesetters": "Lettreurs", + "notes": "Notes", + "cover": "Couverture", + "tags": "Tags", + "no_source_warning": "Pas de source !", + "copy_anchor_link": "Cliquez pour copier le permalien", + "anchor_link_copied": "Copié ! 👍", + "folders": null, + "empty_folder_message": null, + "switch_to_grid_view": null, + "switch_to_folder_view": null, + "content_is_not_available": null + } + }, + { + "attributes": { + "ui_language": { "data": { "attributes": { "code": "ja" } } }, + "library": "ライブラリー", + "contents": "コンテンツ", + "wiki": "ウィキ", + "chronicles": "クロニクル", + "library_short_description": "すべての物理メディアとデジタルメディアを見る", + "contents_short_description": "すべてのコンテンツを検索し、種類やカテゴリーで絞り込むことができます。", + "wiki_short_description": "ゲーム宇宙に関連するすべての百科事典です。", + "chronicles_short_description": "すべてのイベントとコンテンツを時系列で体験できる", + "news": "ニュース", + "merch": "マーチ", + "gallery": "ギャラリー", + "archives": "アーカイブス", + "about_us": "会社概要", + "licensing_notice": "このウェブサイトのコンテンツは、特に断りのない限り [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/) で提供されています。", + "copyright_notice": "Accord's Libraryは、株式会社スクウェア・エニックスと提携、または推奨しているものではありません。株式会社スクウェア・エニックスの登録商標です。すべてのゲーム資産およびプロモーション素材は、© SQUARE ENIX CO. LTD.に帰属します。", + "contents_description": "図書館や他のオンラインソースのすべてのコンテンツ(テキスト、オーディオ、ビデオ)。", + "type": "タイプ", + "category": "カテゴリー", + "categories": "カテゴリー", + "size": "サイズ", + "release_date": "発売日", + "release_year": "発売年", + "details": "詳細", + "price": "価格", + "width": "幅", + "height": "高さ", + "thickness": "厚み", + "subitem": "サブアイテム", + "subitems": "サブアイテム", + "subitem_of": "のサブアイテム", + "variant": "バリアント", + "variants": "バリアント", + "variant_of": "のバリアント", + "summary": "概要", + "audio": "オーディオ", + "video": "ビデオ", + "textual": "テキスト", + "game": "ゲーム", + "other": "他", + "return_to": "戻る", + "left_to_right": "左から右へ", + "right_to_left": "右から左へ", + "page": "ページ", + "pages": "ページ", + "page_order": "ページ順序", + "binding": "製本", + "type_information": "タイプ情報", + "front_matter": "フロントマター", + "back_matter": "バックナンバー", + "open_content": "コンテンツを開放", + "read_content": "コンテンツを読む", + "watch_content": "コンテンツを見る", + "listen_content": "コンテンツを聴く", + "view_scans": "スキャンを開放", + "paperback": "ペーパーバック", + "hardcover": "ハードカバー", + "languages": "言語", + "select_language": "言語を選択する", + "language": "言語", + "library_description": "ヨコベースの副教材(書籍、小説、画集、舞台劇、漫画、ドラマCD、コミック)を網羅したリストです。それぞれについて、写真、スキャン、内容の書き起こし、どんなものなのか、いつ、どのように発売されたのか、サイズ、初回価格...などの情報を掲載しています。", + "wiki_description": "DrakeNieRに関連するすべての百科事典です。現在は年表のみですが、今後多くのページを公開予定です", + "chronicles_description": "Accord's Libraryは、ヨーコ・タローの全作品を収集・保存することを目的としています。ヨーコ・タローは、日本のゲームディレクター、シナリオライターです。", + "news_description": "レコーダーが書いたニュース記事です ここでは、新しい商品/アイテムのリリースに関するお知らせ、ガイド、セオリー、アンボックス、ショーケース...をご紹介しています。", + "merch_description": "", + "gallery_description": "", + "archives_description": "", + "about_us_description": "Accord's Libraryプロジェクトについては、以下のページで詳しくご紹介しています。", + "page_not_found": "ページが見つかりません", + "default_description": "Accord's Libraryは、ヨーコ・タローの全作品を収集・保存することを目的としています。ヨーコ・タローは、日本のゲームディレクター、シナリオライターです。", + "name": "名称", + "show_subitems": "サブアイテムをみせる", + "show_primary_items": "一次のイテムをみせる", + "show_secondary_items": "二次のイテムをみせる", + "no_type": "タイプなし", + "no_year": "年なし", + "order_by": "注文する", + "group_by": "グループ化する", + "select_option_sidebar": "サイドバーのオプションを選択します", + "group": "グループ", + "settings": "設定", + "theme": "テーマ", + "light": "光", + "auto": "オート", + "dark": "暗", + "font_size": "文字サイズ", + "player_name": "プレイヤー名", + "currency": "通貨", + "font": "文字", + "calculated": "計算された", + "status_incomplete": "このエントリーは一部のみ翻訳/転記されています。", + "status_draft": "このエントリーはあくまで下書きです。通常、これは作業中であることを意味します。翻訳/転写は稚拙であったり、コンピュータで作成されたものであったりするかもしれません。", + "status_review": "このエントリーはまだ校正されていません。内容はまだ正確であるはずです。", + "status_done": "このエントリーは、チェックと校正を行いました。もし、翻訳ミスや誤字脱字にお気づきの際は、修正いたしますので、ご連絡ください", + "incomplete": "未完成", + "draft": "ドラフト", + "review": "レビュー", + "done": "完了", + "status": "状況", + "transcribers": "トランスクライバー", + "translators": "翻訳者", + "proofreaders": "校正者", + "transcript_notice": "このコンテンツは転写です", + "translation_notice": "このコンテンツはファンによる翻訳です", + "source_language": "ソース言語", + "pronouns": "代名詞", + "no_category": "カテゴリーなし", + "item": "項目", + "items": "項目", + "content": "コンテンツ", + "result": "結果", + "results": "結果", + "language_switch_message": null, + "open_settings": "オープン設定", + "change_language": "言語を変更する", + "open_search": "オープンサーチ", + "chronology": "年表", + "accords_handbook": "アコードの手引き", + "legality": "合法性", + "members": "メンバー紹介", + "sharing_policy": "共有ポリシー", + "contact_us": "お問い合わせ", + "email": "電子メール", + "email_gdpr_notice": "お客様の電子メールは、お客様のご要望に関してご連絡するためにのみ使用します。この電子メールを誰かと共有したり、他の目的で使用することはありません。", + "message": "メッセージ", + "send": "送信", + "response_invalid_code": "検証コードが正しくありません。", + "response_invalid_email": "有効なEメールアドレスを入力してください", + "response_email_success": "お問い合わせありがとうございます。折り返しご連絡させていただきます。", + "always_show_info": "常に情報を表示する", + "item_not_available": "この商品は非売品です", + "primary_language": "主要言語", + "secondary_language": "二次言語", + "combine_related_contents": "関連するコンテンツを組み合わせる", + "previous_content": "前のコンテンツ", + "followup_content": "フォローアップコンテンツ", + "videos": "動画", + "view_on": "見る", + "channel": "チャンネル", + "subscribers": "サブスクライバー", + "description": "説明", + "available_at": "でご覧いただけます。", + "search_title": "検索タイトル...", + "want_it": "欲しいです!", + "have_it": "持ってます!", + "source": "出典", + "reset_all_filters": "すべてのフィルタをリセットする", + "only_display_items_i_have": "\"持ってる \"と表示されているもののみ表示", + "only_display_items_i_want": "\"欲しい \"とマークされたものだけを表示する", + "only_display_unmarked_items": "無印のアイテムのみ表示", + "display_all_items": "すべての項目を表示する", + "table_of_contents": "目次", + "definition": "定義", + "no_results_message": "結果が出ません。検索条件を変更またはリセットしてみてください。", + "all": "すべて", + "special_pages": "特設ページ", + "scan": null, + "scanlation": null, + "scanners": null, + "cleaners": null, + "typesetters": null, + "notes": null, + "cover": null, + "tags": null, + "no_source_warning": null, + "copy_anchor_link": null, + "anchor_link_copied": null, + "folders": null, + "empty_folder_message": null, + "switch_to_grid_view": null, + "switch_to_folder_view": null, + "content_is_not_available": null + } + }, + { + "attributes": { + "ui_language": { "data": { "attributes": { "code": "es" } } }, + "library": "Librería", + "contents": "Contenidos", + "wiki": "Wiki", + "chronicles": "Crónicas", + "library_short_description": "Explora todos los medios físicos y digitales", + "contents_short_description": "Explora todo el contenido y filtra por tipo o categoría", + "wiki_short_description": "Una enciclopedia para todo lo relacionado con DrakeNieR", + "chronicles_short_description": "Experimenta todos los eventos y contenidos en orden cronológico", + "news": "Novedades", + "merch": "Merch", + "gallery": "Galería", + "archives": "Archivos", + "about_us": "Sobre nosotros", + "licensing_notice": "El contenido de este sitio web está disponible bajo [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/) a menos que se indique lo contrario.", + "copyright_notice": "Accord's Library no está afiliada ni respaldada por SQUARE ENIX CO. LTD. Todos los archivos de los juegos y material promocional pertenecen a © SQUARE ENIX CO. LTD.", + "contents_description": "Todo el contenido (textual, audio y video) de la Biblioteca u otras fuentes en línea.", + "type": "Tipo", + "category": "Categoría", + "categories": "Categorías", + "size": "Tamaño", + "release_date": "Fecha de lanzamiento", + "release_year": "Año de lanzamiento", + "details": "Detalles", + "price": "Precio", + "width": "Ancho", + "height": "Altura", + "thickness": "Grosor", + "subitem": "Sub-item", + "subitems": "Sub-items", + "subitem_of": "Sub-item de", + "variant": "Variante", + "variants": "Variantes", + "variant_of": "Variante de", + "summary": "Sumario", + "audio": "Audio", + "video": "Video", + "textual": "Textual", + "game": "Juego", + "other": "Otros", + "return_to": "Volver a", + "left_to_right": "Izquierda a derecha", + "right_to_left": "Derecha a izquierda", + "page": "Página", + "pages": "Páginas", + "page_order": "Orden de las páginas", + "binding": "Encuadernación", + "type_information": "Tipo de información", + "front_matter": "Anteportada", + "back_matter": "Portada anterior", + "open_content": "Abrir contenido", + "read_content": "Leer contenido", + "watch_content": "Ver contenido", + "listen_content": "Escuchar contenido", + "view_scans": "Ver escaneos", + "paperback": "Tapa blanda", + "hardcover": "Tapa dura", + "languages": "Idiomas", + "select_language": "Seleccionar idioma", + "language": "Idioma", + "library_description": "Una lista completa de todos los materiales complementarios de Yokoverse (libros, novelas, libros de arte, obras de teatro, manga, CDs novelizados y cómics). Para cada uno, proporcionamos fotos, escaneos y transcripciones del contenido, información sobre qué es, cuándo y cómo se ha publicado, tamaño, precio inicial...", + "wiki_description": "Una enciclopedia para todo lo relacionado con DrakeNieR. En este momento, solo tenemos la Cronología, ¡pero muchas más páginas están planeadas para ser publicadas!", + "chronicles_description": "", + "news_description": "¡Nuevos artículos escritos por nuestros/as Archivistas! Aquí encontrarás anuncios sobre nuevos lanzamientos de merchandising/artículos, guías, teorías, unboxings, showcases...", + "merch_description": "", + "gallery_description": "Una galería completamente etiquetada de estilo Danbooru, actualmente con más de mil obras de arte oficiales únicas.", + "archives_description": "", + "about_us_description": "Encuentra más información sobre el proyecto de Accord's Library en las siguientes páginas.", + "page_not_found": "Página no encontrada", + "default_description": "Accord's Library tiene como objetivo recopilar y archivar todo el trabajo de Yoko Taro. Yoko Taro es un director de videojuegos y escritor de escenarios japonés.", + "name": "Nombre", + "show_subitems": "Mostrar sub-items", + "show_primary_items": "Mostrar items principales", + "show_secondary_items": "Mostrar items secundarios", + "no_type": "Ningún tipo", + "no_year": "Ningún año", + "order_by": "Ordenar por", + "group_by": "Agrupar por", + "select_option_sidebar": "Selecciona una de las opciones en la barra lateral", + "group": "Grupo", + "settings": "Ajustes", + "theme": "Tema", + "light": "Claro", + "auto": "Auto", + "dark": "Oscuro", + "font_size": "Tamaño de la fuente", + "player_name": "Nombre del jugador/a", + "currency": "Divisa", + "font": "Fuente", + "calculated": "Calculada", + "status_incomplete": "Esta entrada está solo parcialmente traducida/transcrita.", + "status_draft": "Esta entrada es solo un borrador. Por lo general, significa que se trata de un trabajo en curso. La traducción/transcripción puede ser deficiente y/o generada por ordenador.", + "status_review": "Esta entrada aún no ha sido corregida. No obstante, el contenido debería ser preciso.", + "status_done": "Esta entrada ha sido revisada y corregida. Si notas algún error de traducción o error tipográfico, contáctanos para que podamos solucionarlo!", + "incomplete": "Incompleto", + "draft": "Borrador", + "review": "Revisado", + "done": "Completado", + "status": "Estado", + "transcribers": "Transcriptores/as", + "translators": "Traductores/as", + "proofreaders": "Correctores/as", + "transcript_notice": "Este contenido es una transcripción", + "translation_notice": "Este contenido es una traducción de fans", + "source_language": "Idioma original", + "pronouns": "Pronombres", + "no_category": "Ningún categoría", + "item": null, + "items": null, + "content": null, + "result": null, + "results": null, + "language_switch_message": null, + "open_settings": null, + "change_language": null, + "open_search": null, + "chronology": null, + "accords_handbook": null, + "legality": null, + "members": null, + "sharing_policy": null, + "contact_us": null, + "email": "Email", + "email_gdpr_notice": "Solo usamos tu correo electrónico exclusivamente para contactarte en relación a tu solicitud. No compartimos este correo electrónico con nadie ni lo usamos para ningún otro propósito.", + "message": null, + "send": null, + "response_invalid_code": "El código de verificación es incorrecto.", + "response_invalid_email": "¡Por favor, introduce una dirección de correo electrónico válida!", + "response_email_success": "¡Gracias por contactarnos! Nos pondremos en contacto contigo en breve.", + "always_show_info": null, + "item_not_available": null, + "primary_language": null, + "secondary_language": null, + "combine_related_contents": null, + "previous_content": null, + "followup_content": null, + "videos": null, + "view_on": null, + "channel": null, + "subscribers": null, + "description": null, + "available_at": null, + "search_title": null, + "want_it": null, + "have_it": null, + "source": null, + "reset_all_filters": null, + "only_display_items_i_have": null, + "only_display_items_i_want": null, + "only_display_unmarked_items": null, + "display_all_items": null, + "table_of_contents": null, + "definition": null, + "no_results_message": null, + "all": null, + "special_pages": null, + "scan": null, + "scanlation": null, + "scanners": null, + "cleaners": null, + "typesetters": null, + "notes": null, + "cover": null, + "tags": null, + "no_source_warning": null, + "copy_anchor_link": null, + "anchor_link_copied": null, + "folders": null, + "empty_folder_message": null, + "switch_to_grid_view": null, + "switch_to_folder_view": null, + "content_is_not_available": null + } + }, + { + "attributes": { + "ui_language": { "data": { "attributes": { "code": "pt-br" } } }, + "library": "Coleção", + "contents": "Conteúdos", + "wiki": "Wiki", + "chronicles": "Crônicas", + "library_short_description": "Procure por todas mídias digitais e físicas", + "contents_short_description": "Explore todo o conteúdo e filtre por categorias e tipos", + "wiki_short_description": "Uma enciclopédia com tudo relacionado a DrakeNieR", + "chronicles_short_description": "Explore as crônicas de DrakeNieR em ordem cronológica.", + "news": "Notícias", + "merch": "Mercadorias", + "gallery": "Galeria", + "archives": "Arquivos", + "about_us": "Sobre Nós", + "licensing_notice": "O conteúdo nesse site está disponível pela CC-BY-SA, a não ser que esteja anotado.", + "copyright_notice": "Accord's Library não é afiliada ou reconhecida pela SQUARE ENIX CO. LTD. Todos assets de jogos e materiais promocionais pertencem a © SQUARE ENIX CO. LTD.\n\n", + "contents_description": "", + "type": "Tipo", + "category": "Categoria", + "categories": "Categorias", + "size": "Tamanho", + "release_date": "Dia de lançamento", + "release_year": "Ano de lançamento", + "details": "Detalhes", + "price": "Preço", + "width": "Largura", + "height": "Altura", + "thickness": "Grossura", + "subitem": "Subitem", + "subitems": "Subitens", + "subitem_of": "Subitem de", + "variant": "Variante", + "variants": "Variantes", + "variant_of": "Variante de", + "summary": "Sumário", + "audio": "Audio", + "video": "Video", + "textual": "Textos", + "game": "Jogos", + "other": "Outros", + "return_to": "Voltar para", + "left_to_right": "Esquerda para direita", + "right_to_left": "Direita para esquerda", + "page": "Página", + "pages": "Páginas", + "page_order": "Ordem de páginas", + "binding": "Encadernação", + "type_information": "Informação do tipo", + "front_matter": "Pré textual", + "back_matter": "Pós textual", + "open_content": "Abrir conteúdo", + "read_content": "Ler o conteúdo", + "watch_content": "Assistir o conteúdo", + "listen_content": "Ouvir o conteúdo", + "view_scans": "Ver scans", + "paperback": "Brochura", + "hardcover": "Capa dura", + "languages": "Línguas", + "select_language": "Selecionar língua", + "language": "Língua", + "library_description": "", + "wiki_description": null, + "chronicles_description": null, + "news_description": "", + "merch_description": "", + "gallery_description": "", + "archives_description": "", + "about_us_description": "", + "page_not_found": "Página não encontrada", + "default_description": null, + "name": "Nome", + "show_subitems": "Mostrar subitens", + "show_primary_items": "Mostrar itens primários", + "show_secondary_items": "Mostrar itens secundários", + "no_type": "Sem tipo", + "no_year": "Sem ano", + "order_by": "Ordenar por", + "group_by": "Agrupar por", + "select_option_sidebar": "Selecione uma opção na aba lateral", + "group": "Grupo", + "settings": "Configurações", + "theme": "Tema", + "light": "Claro", + "auto": "Automático", + "dark": "Escuro", + "font_size": "Tamanho da fonte", + "player_name": "Nome do jogador", + "currency": "Moeda", + "font": "Fonte", + "calculated": "Calculado", + "status_incomplete": "Este conteúdo está incompleto e não foi traduzido/transcrito completamente.", + "status_draft": "A tradução/transcrição selecionada é um Rascunho. Isso significa que a tradução pode estar fraca e/ou ter sido gerada por uma inteligência artificial.", + "status_review": "Este conteúdo ainda não foi Revisado, erros gramaticais podem ser encontrados uma vez que os revisores ainda não leram a tradução.", + "status_done": "O conteúdo foi completamente traduzido e revisado.", + "incomplete": "Incompleto", + "draft": "Rascunho", + "review": "Review", + "done": "Concluido", + "status": "Status", + "transcribers": "Transcritores", + "translators": "Tradutores", + "proofreaders": "Revisores", + "transcript_notice": "Este conteúdo foi transcrito.", + "translation_notice": "Este conteúdo é uma tradução de fã.", + "source_language": "Língua original", + "pronouns": "Pronomes", + "no_category": "Sem Categoria", + "item": "Item", + "items": "Itens", + "content": "Conteúdo", + "result": "Resultado", + "results": "Resultados", + "language_switch_message": "Este conteúdo não está disponível na língua selecionada. Você pode escolher uma das seguintes línguas:", + "open_settings": "Abrir configurações", + "change_language": "Mudar língua", + "open_search": "Abrir pesquisa", + "chronology": "Cronologia", + "accords_handbook": "Livro de mão da Accord", + "legality": "Legalidade", + "members": "Membros", + "sharing_policy": "Política de compartilhamento", + "contact_us": "Fale conosco", + "email": null, + "email_gdpr_notice": null, + "message": null, + "send": null, + "response_invalid_code": null, + "response_invalid_email": null, + "response_email_success": null, + "always_show_info": "Mostrar informações", + "item_not_available": "Item indisponível", + "primary_language": "Língua primaria", + "secondary_language": "Línguas secundárias", + "combine_related_contents": "Combinar relacionados", + "previous_content": "Conteúdo anterior:", + "followup_content": "Próximo conteúdo:", + "videos": "Videos:", + "view_on": "Ver no:", + "channel": "Canal", + "subscribers": "Inscritos", + "description": "Descrição", + "available_at": "Disponível no:", + "search_title": "Pesquisar", + "want_it": null, + "have_it": null, + "source": null, + "reset_all_filters": null, + "only_display_items_i_have": null, + "only_display_items_i_want": null, + "only_display_unmarked_items": null, + "display_all_items": null, + "table_of_contents": null, + "definition": null, + "no_results_message": null, + "all": null, + "special_pages": null, + "scan": null, + "scanlation": null, + "scanners": null, + "cleaners": null, + "typesetters": null, + "notes": null, + "cover": null, + "tags": null, + "no_source_warning": null, + "copy_anchor_link": null, + "anchor_link_copied": null, + "folders": null, + "empty_folder_message": null, + "switch_to_grid_view": null, + "switch_to_folder_view": null, + "content_is_not_available": null + } + } + ] + } +} diff --git a/src/components/AnchorShare.tsx b/src/components/AnchorShare.tsx index e087925..b5ea5c7 100644 --- a/src/components/AnchorShare.tsx +++ b/src/components/AnchorShare.tsx @@ -18,27 +18,14 @@ interface Props { export const AnchorShare = ({ id, className }: Props): JSX.Element => { const { langui } = useAppLayout(); return ( - - + + { navigator.clipboard.writeText( - `${ - process.env.NEXT_PUBLIC_URL_SELF + window.location.pathname - }#${id}` + `${process.env.NEXT_PUBLIC_URL_SELF + window.location.pathname}#${id}` ); }} /> diff --git a/src/components/AppLayout.tsx b/src/components/AppLayout.tsx index ce0511d..8e97679 100644 --- a/src/components/AppLayout.tsx +++ b/src/components/AppLayout.tsx @@ -19,10 +19,7 @@ import { cIf, cJoin } from "helpers/className"; import { useAppLayout } from "contexts/AppLayoutContext"; import { Button } from "components/Inputs/Button"; import { OpenGraph, TITLE_PREFIX, TITLE_SEPARATOR } from "helpers/openGraph"; -import { - useIs1ColumnLayout, - useIsScreenAtLeast, -} from "hooks/useContainerQuery"; +import { useIs1ColumnLayout, useIsScreenAtLeast } from "hooks/useContainerQuery"; import { useOnResize } from "hooks/useOnResize"; import { Ids } from "types/ids"; @@ -138,8 +135,7 @@ export const AppLayout = ({ const [currencySelect, setCurrencySelect] = useState(-1); useEffect(() => { - if (isDefined(currency)) - setCurrencySelect(currencyOptions.indexOf(currency)); + if (isDefined(currency)) setCurrencySelect(currencyOptions.indexOf(currency)); }, [currency, currencyOptions]); useEffect(() => { @@ -147,14 +143,11 @@ export const AppLayout = ({ }, [currencyOptions, currencySelect, setCurrency]); const isClient = useIsClient(); - const { value: hasDisgardSafariWarning, setTrue: disgardSafariWarning } = - useBoolean(false); + const { value: hasDisgardSafariWarning, setTrue: disgardSafariWarning } = useBoolean(false); const isSafari = useMemo(() => { if (isClient) { const parser = new UAParser(); - return ( - parser.getBrowser().name === "Safari" || parser.getOS().name === "iOS" - ); + return parser.getBrowser().name === "Safari" || parser.getOS().name === "iOS"; } return false; }, [isClient]); @@ -164,27 +157,22 @@ export const AppLayout = ({ className={cJoin( cIf(darkMode, "set-theme-dark", "set-theme-light"), cIf(dyslexic, "set-theme-font-dyslexic", "set-theme-font-standard") - )} - > + )}>
+ : `${mainPanelReduced ? layout.mainMenuReduced : layout.mainMenu}rem ${ + isDefined(subPanel) ? layout.subMenu : 0 + }rem 1fr`, + }}> {openGraph.title} @@ -197,18 +185,9 @@ export const AppLayout = ({ - - - + + + @@ -230,22 +209,16 @@ export const AppLayout = ({ "z-10 [backdrop-filter:blur(2px)]", "pointer-events-none touch-none" ) - )} - > + )}>
{ setMainPanelOpen(false); setSubPanelOpen(false); - }} - >
+ }}>
{/* Content panel */} @@ -254,8 +227,7 @@ export const AppLayout = ({ className={cJoin( "texture-paper-dots bg-light [grid-area:content]", cIf(contentPanelScroolbar, "overflow-y-scroll") - )} - > + )}> {isDefined(contentPanel) ? ( contentPanel ) : ( @@ -280,17 +252,10 @@ export const AppLayout = ({ [grid-area:content]`, "[grid-area:sub]" ), - cIf( - is1ColumnLayout && isScreenAtLeastXs, - "w-[min(30rem,90%)] border-l-[1px]" - ), - cIf( - is1ColumnLayout && !subPanelOpen && !turnSubIntoContent, - "translate-x-[100vw]" - ), + cIf(is1ColumnLayout && isScreenAtLeastXs, "w-[min(30rem,90%)] border-l-[1px]"), + cIf(is1ColumnLayout && !subPanelOpen && !turnSubIntoContent, "translate-x-[100vw]"), cIf(is1ColumnLayout && turnSubIntoContent, "w-full border-l-0") - )} - > + )}> {subPanel} )} @@ -300,15 +265,10 @@ export const AppLayout = ({ className={cJoin( `texture-paper-dots overflow-y-scroll border-r-[1px] border-dark/50 bg-light transition-transform duration-300 [scrollbar-width:none] webkit-scrollbar:w-0`, - cIf( - is1ColumnLayout, - "z-10 justify-self-start [grid-area:content]", - "[grid-area:main]" - ), + cIf(is1ColumnLayout, "z-10 justify-self-start [grid-area:content]", "[grid-area:main]"), cIf(is1ColumnLayout && isScreenAtLeastXs, "w-[min(30rem,90%)]"), cIf(!mainPanelOpen && is1ColumnLayout, "-translate-x-full") - )} - > + )}> @@ -318,8 +278,7 @@ export const AppLayout = ({ `texture-paper-dots grid grid-cols-[5rem_1fr_5rem] place-items-center border-t-[1px] border-dotted border-black bg-light [grid-area:navbar]`, cIf(!is1ColumnLayout, "hidden") - )} - > + )}> 30, - "max-h-14 text-xl", - "max-h-16 text-2xl" - ) - )} - > - {openGraph.title.substring( - TITLE_PREFIX.length + TITLE_SEPARATOR.length - ) - ? openGraph.title.substring( - TITLE_PREFIX.length + TITLE_SEPARATOR.length - ) + cIf(openGraph.title.length > 30, "max-h-14 text-xl", "max-h-16 text-2xl") + )}> + {openGraph.title.substring(TITLE_PREFIX.length + TITLE_SEPARATOR.length) + ? openGraph.title.substring(TITLE_PREFIX.length + TITLE_SEPARATOR.length) : "Accord’s Library"}

{isDefined(subPanel) && !turnSubIntoContent && ( @@ -358,26 +308,16 @@ export const AppLayout = ({ )} - null} - > + null}>

Hi, you are using Safari!

- In most cases this wouldn’t be a problem but our website - is—for some obscure reason—performing terribly on Safari (WebKit). - Because of that, we have decided to display this message instead of - letting you have a slow and painful experience. We are looking into - the problem, and are hoping to fix this soon. -

-

- In the meanwhile, if you are using an iPhone/iPad, please try using - another device. -

-

- If you are on macOS, please use another browser such as Firefox or - Chrome. + In most cases this wouldn’t be a problem but our website is—for some obscure + reason—performing terribly on Safari (WebKit). Because of that, we have decided to + display this message instead of letting you have a slow and painful experience. We are + looking into the problem, and are hoping to fix this soon.

+

In the meanwhile, if you are using an iPhone/iPad, please try using another device.

+

If you are on macOS, please use another browser such as Firefox or Chrome.