Skip to content

Commit

Permalink
Rebase: Master -> CSS Rewrite (RiiConnect24#14)
Browse files Browse the repository at this point in the history
* Feature: Moderation (RiiConnect24#9)

* feature: Added banning, and, forced hidden button

* feature: Added hiding and shadow hiding users

* feature: Added badges to user profile

* feature: Added hiding from the front page when hidden

* fix: Fixed code related to front page hiding

* Feature: Full-Site Multilanguage support (RiiConnect24#13)

* Feature: Moderation (RiiConnect24#9) (RiiConnect24#12)

* feature: Added banning, and, forced hidden button

* feature: Added hiding and shadow hiding users

* feature: Added badges to user profile

* feature: Added hiding from the front page when hidden

* fix: Fixed code related to front page hiding

* feature: Began adding the framework for multi-language support

* feature: Full localization support and all pages and nav bars
  • Loading branch information
matthe815 authored Sep 13, 2023
1 parent 1e03cdc commit c029f2a
Show file tree
Hide file tree
Showing 26 changed files with 1,174 additions and 611 deletions.
3 changes: 2 additions & 1 deletion jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"paths": {
"@/components/*": ["components/*"],
"@/lib/*": ["lib/*"],
"@/styles/*": ["styles/*"]
"@/styles/*": ["styles/*"],
"@/locales/*": ["locales/*"],
}
},
"exclude": ["node_modules"]
Expand Down
50 changes: 50 additions & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"welcome": "Welcome to LinkTag!",
"join_others": "Join {0} other gamers that have played games {1} times!",
"credits": "Credits",
"discord": "Login with Discord",
"carasol_linktag": "<a href='user/{0}'>{1}</a>'s LinkTag",
"supported_platforms": "Supported Platforms",
"banned_reason": "This account has been banned. Reason: {0}",
"game_id": "Game / ID",
"play_time": "Play Time",
"last_played": "Last Played",
"play_count": "Play Count",
"user_info": "User Information",
"banned": "Banned",
"hidden": "Hidden",
"administrator": "Administrator",
"moderator": "Moderator",
"play_log": "Play Log",

"registered_on": "<strong>Registered</strong>",
"overlay": "<strong>Overlay</strong>",
"background": "<strong>Background</strong>",
"coin": "<strong>Coin</strong>",
"font": "<strong>Font</strong>",
"flag": "<strong>Flag</strong>",
"cover_region": "<strong>Cover Region</strong>",
"cover_type": "<strong>Cover Type</strong>",

"edit_tag": "Edit Tag",

"general": "General",
"display_name": "<string>Display Name</strong>",
"friend_code": "<strong>Friend Code</strong>",

"cover_region_explanation": "Linktag will try the game&apos;s region and fallback to English\nif it can&apos;t find a cover.",
"show_avatar": "Show Avatar",

"select_overlay": "Select Overlay",
"select_background": "Select Background",
"select_coin": "Select Coin",
"select_font": "Select Font",

"images": "Images",

"home": "Home",
"profile": "Profile",
"account": "My Account",
"edit_mii": "Edit Mii",
"logout": "Logout"
}
49 changes: 49 additions & 0 deletions locales/jp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"welcome": "LinkTagへようこそ!",
"join_others": "ゲームを{0}回プレイしたことがある他の{1}人のゲーマーに参加しよう!",
"discord": "Discordでログイン",
"carasol_linktag": "<a href='user/{0}'>{1}</a>のLinkTag",
"supported_platforms": "対応プラットホーム",
"banned_reason": "このユーザは追放されました。 理由: {0}",
"game_id": "ゲーム / ID",
"play_time": "プレイタイム",
"last_played": "最後にプレイした",
"play_count": "プレイ回数",
"user_info": "ユーザー情報",
"banned": "追放",
"hidden": "非表示",
"administrator": "管理者",
"moderator": "モデレーター",
"play_log": "プレイログ",

"registered_on": "<strong>登録日</strong>",
"overlay": "<strong>オーバーレイ</strong>",
"background": "<strong>背景</strong>",
"coin": "<strong>コイン</strong>",
"font": "<strong>フォント</strong>",
"flag": "<strong>国旗</strong>",
"cover_region": "<strong>カバー地域</strong>",
"cover_type": "<strong>カバータイプ</strong>",

"edit_tag": "タグを編集",

"general": "一般",
"display_name": "<strong>表示名</strong>",
"friend_code": "<strong>フレンドコード</strong>",

"cover_region_explanation": "カバー地域は、ゲームのカバーに表示される地域です。データベースで無かったら英語にします",
"show_avatar": "アバターを表示",

"select_overlay": "オーバーレイを選択",
"select_background": "背景を選択",
"select_coin": "コインを選択",
"select_font": "フォントを選択",

"images": "画像",

"home": "ホーム",
"profile": "プロファイル",
"account": "マイアカウント",
"edit_mii": "Miiを編集",
"logout": "ログアウト"
}
Loading

0 comments on commit c029f2a

Please sign in to comment.