Update Auto-Updator (#368)
* Update .gitignore * Add Update Cider Branch selection * Add circle-ci API call * More testing * Maybe fix 'Update Cider' button * Another debug log * remove async in ipc 'check-for-update' * remove everything except debug log * semicolon * revert to async and change ipc name * more semicolon * Extract BaseURL from circleci API response * Fix compile error + rename ipc back to 'check-for-update' * Remove debug log * Update i18n files with new 'updateCider' term location * Update en_OWO.json * Fixed formatting in i18n files * Fix formatting elsewhere * Move 'Update Cider' i18n stuff from 'experimental' to 'general' * Do that thing @quacksire wanted me to do. 'for vue' * Fix bad merge * Revert Formatting. DO NOT OPEN IN AN AUTOFORMATTING IDE. USE VSCODE WEB/CODESPACES IF YOU NEED TO ACTUALLY CHANGE SOMETHING IN THE RENDERER Co-authored-by: Quacksire <19170969+quacksire@users.noreply.github.com>
This commit is contained in:
parent
0c655563e7
commit
c0d6481300
18 changed files with 865 additions and 725 deletions
|
@ -1,24 +1,24 @@
|
|||
{
|
||||
// App info
|
||||
"app.name": "Cider",
|
||||
|
||||
"date.format": "${y}年${m}月${d}日",
|
||||
|
||||
// i18n Info
|
||||
"i18n.languageName": "日本語", // name of language in native language
|
||||
// i18n Info
|
||||
"i18n.languageName": "日本語", // name of language in native language
|
||||
"i18n.languageNameEnglish": "Japanese", // name of language in English
|
||||
"i18n.category": "main", // main = real language, fun = fun community languages
|
||||
"i18n.authors": "@maikirakiwi", // Authors, if you contribute to this file feel free to add your name seperated with a space
|
||||
|
||||
// App info
|
||||
"app.name": "Cider",
|
||||
|
||||
"date.format": "${y}年${m}月${d}日",
|
||||
|
||||
// Dialogs
|
||||
"dialog.cancel": "キャンセル",
|
||||
"dialog.ok": "OK",
|
||||
|
||||
|
||||
// Notification
|
||||
"notification.updatingLibrarySongs": "ライブラリの更新中...",
|
||||
"notification.updatingLibraryAlbums": "ライブラリの更新中...",
|
||||
"notification.updatingLibraryArtists": "ライブラリの更新中...",
|
||||
|
||||
|
||||
// Terms
|
||||
"term.appleMusic": "Apple Music", // Follows brand term
|
||||
"term.applePodcasts": "Apple Podcasts", // Follows brand term
|
||||
|
@ -85,10 +85,10 @@
|
|||
"term.less": "減らす",
|
||||
"term.showMore": "もっと見る",
|
||||
"term.showLess": "表示数を少なくする",
|
||||
"term.topSongs" : "トップソング",
|
||||
"term.topSongs": "トップソング",
|
||||
"term.latestReleases": "ニューリリース",
|
||||
"term.time.added": "追加日",
|
||||
"term.time.released": "配信開始日",
|
||||
"term.time.released": "配信開始日",
|
||||
"term.time.updated": "最終更新日",
|
||||
"term.time.hours": "時間",
|
||||
"term.time.hour": "時間",
|
||||
|
@ -114,12 +114,11 @@
|
|||
"term.equalizer": "イコライザー",
|
||||
"term.reset": "リセット",
|
||||
"term.tracks": "曲", // Assume x amount of tracks. e.g. 50 tracks
|
||||
"term.videos": "ビデオ",
|
||||
"term.videos": "ビデオ",
|
||||
"term.menu": "メニュー",
|
||||
"term.check": "確認",
|
||||
"term.aboutArtist": "{{artistName}}について", // e.g. 'About Doja Cat'
|
||||
"term.updateCider": "Cider 更新",
|
||||
|
||||
|
||||
// Home
|
||||
"home.title": "ホーム",
|
||||
"home.recentlyPlayed": "最近の再生",
|
||||
|
@ -129,6 +128,7 @@
|
|||
"home.madeForYou": "あなたにおすすめ",
|
||||
"home.friendsListeningTo": "友達が聴いている",
|
||||
"home.followedArtists": "フォローしているアーティスト",
|
||||
|
||||
// Errors
|
||||
"error.appleMusicSubRequired": "Apple Musicのサブスクリプションが必要です。",
|
||||
"error.connectionError": "Apple Musicに接続できません。",
|
||||
|
@ -144,7 +144,7 @@
|
|||
"podcast.episodes": "番組",
|
||||
"podcast.playEpisode": "再生",
|
||||
"podcast.website": "Podcast ウェブ",
|
||||
|
||||
|
||||
// Actions
|
||||
"action.addToLibrary": "ライブラリに追加",
|
||||
"action.addToLibrary.success": "ライブラリに追加されました",
|
||||
|
@ -190,9 +190,9 @@
|
|||
"action.tray.show": "表示",
|
||||
"action.update": "アップデート",
|
||||
"action.copy": "コピー",
|
||||
"action.newpreset": "ニュープリセット", // Equalizer Preset
|
||||
"action.deletepreset": "プリセットを削除", // Equalizer Preset
|
||||
|
||||
"action.newpreset": "ニュープリセット", // Equalizer Preset
|
||||
"action.deletepreset": "プリセットを削除", // Equalizer Preset
|
||||
|
||||
// Settings - Audio
|
||||
"settings.header.audio": "オーディオ",
|
||||
"settings.header.audio.description": "Ciderのオーディオ設定",
|
||||
|
@ -218,6 +218,7 @@
|
|||
"settings.option.audio.enableAdvancedFunctionality.audioNormalization.description": "さまざまな曲の音量を均一にし、より整った音を楽しめるようにする機能です。",
|
||||
"settings.option.audio.enableAdvancedFunctionality.audioSpatialization": "オーディオ空間化", // Toggle
|
||||
"settings.option.audio.enableAdvancedFunctionality.audioSpatialization.description": "オーディオを空間に分散させる機能です。 (ドルビーアトモスではありません)",
|
||||
|
||||
// Settings - Visual
|
||||
"settings.header.visual": "ビジュアル",
|
||||
"settings.header.visual.description": "Ciderのビジュアル設定",
|
||||
|
@ -237,10 +238,11 @@
|
|||
"settings.option.visual.animatedWindowBackground": "アプリウィンドウの背景をアニメーション化", // Toggle
|
||||
"settings.option.visual.hardwareAcceleration": "ハードウェア アクセラレーション", // Dropdown
|
||||
"settings.option.visual.hardwareAcceleration.description": "アプリを再起動する必要があります",
|
||||
"settings.header.visual.hardwareAcceleration.default": "既定",
|
||||
"settings.header.visual.hardwareAcceleration.webGPU": "WebGPU",
|
||||
"settings.header.visual.hardwareAcceleration.default": "既定",
|
||||
"settings.header.visual.hardwareAcceleration.webGPU": "WebGPU",
|
||||
// Refer to term.disabled for the disabled option
|
||||
"settings.option.visual.showPersonalInfo": "プロフィールを表示", // Toggle
|
||||
|
||||
// Settings - General (Reserved)
|
||||
"settings.header.general": "一般",
|
||||
"settings.header.general.description": "Ciderの一般設定",
|
||||
|
@ -252,7 +254,7 @@
|
|||
"settings.option.lyrics.enableMusixmatchKaraoke": "カラオケモードを有効にする (Musixmatchのみ)", // Toggle
|
||||
"settings.option.lyrics.musixmatchPreferredLanguage": "歌詞の優先言語", // Dropdown
|
||||
"settings.option.lyrics.enableYoutubeLyrics": "YouTubeの歌詞をミュージックビデオに使用する", // Toggle
|
||||
|
||||
|
||||
// Settings - Connectivity
|
||||
"settings.header.connectivity": "アプリと連携",
|
||||
"settings.header.connectivity.description": "Ciderの連携設定",
|
||||
|
@ -262,46 +264,48 @@
|
|||
"settings.header.connectivity.discordRPC.appleMusic": "'Apple Music' を表示する",
|
||||
"settings.option.connectivity.discordRPC.clearOnPause": "一時停止時にDiscord Rich Presenceをクリアする", // Toggle
|
||||
"settings.option.connectivity.lastfmScrobble": "LastFM Scrobbling", // Option to Connect
|
||||
"settings.option.connectivity.lastfmScrobble.delay": "LastFM Scrobble Delay (%)",
|
||||
"settings.option.connectivity.lastfmScrobble.nowPlaying": "Enable LastFM Now Playing",
|
||||
"settings.option.connectivity.lastfmScrobble.removeFeatured": "Remove featuring artists from song title (LastFM)",
|
||||
"settings.option.connectivity.lastfmScrobble.delay": "LastFM Scrobble Delay (%)",
|
||||
"settings.option.connectivity.lastfmScrobble.nowPlaying": "Enable LastFM Now Playing",
|
||||
"settings.option.connectivity.lastfmScrobble.removeFeatured": "Remove featuring artists from song title (LastFM)",
|
||||
// Refer to term.connect for the connect button
|
||||
|
||||
// Settings - General - Update Cider
|
||||
"settings.option.general.updateCider": "Cider 更新", // Button
|
||||
|
||||
// Settings - Experimental
|
||||
"settings.header.experimental": "試験的な機能",
|
||||
"settings.header.experimental.description": "開発中の実験的な機能は不完全で不安定である可能性があります",
|
||||
"settings.option.experimental.compactUI": "コンパクトインターフェース", // Toggle
|
||||
"settings.option.experimental.close_button_hide": "「閉じる」ボタンでアプリを隠します", // Dropdown
|
||||
// Refer to term.disabled & term.enabled
|
||||
|
||||
// Refer to term.disabled & term.enabled
|
||||
// Spatialization Menu
|
||||
"spatial.spatialProperties" : "空間化のプロパティ",
|
||||
"spatial.width" : "幅",
|
||||
"spatial.height" : "高さ",
|
||||
"spatial.depth" : "奥行",
|
||||
"spatial.gain" : "ゲイン",
|
||||
"spatial.roomMaterials" : "部屋のマテリアル",
|
||||
"spatial.roomDimensions" : "部屋の大きさ",
|
||||
"spatial.roomPositions" : "部屋の位置",
|
||||
"spatial.setDimensions" : "大きさを設定",
|
||||
"spatial.setPositions" : "位置を設定",
|
||||
"spatial.up" : "上",
|
||||
"spatial.front" : "前",
|
||||
"spatial.left" : "左",
|
||||
"spatial.right" : "右",
|
||||
"spatial.back" : "後",
|
||||
"spatial.down" : "下",
|
||||
"spatial.listener" : "リスナー",
|
||||
"spatial.audioSource" : "音源",
|
||||
|
||||
"spatial.spatialProperties": "空間化のプロパティ",
|
||||
"spatial.width": "幅",
|
||||
"spatial.height": "高さ",
|
||||
"spatial.depth": "奥行",
|
||||
"spatial.gain": "ゲイン",
|
||||
"spatial.roomMaterials": "部屋のマテリアル",
|
||||
"spatial.roomDimensions": "部屋の大きさ",
|
||||
"spatial.roomPositions": "部屋の位置",
|
||||
"spatial.setDimensions": "大きさを設定",
|
||||
"spatial.setPositions": "位置を設定",
|
||||
"spatial.up": "上",
|
||||
"spatial.front": "前",
|
||||
"spatial.left": "左",
|
||||
"spatial.right": "右",
|
||||
"spatial.back": "後",
|
||||
"spatial.down": "下",
|
||||
"spatial.listener": "リスナー",
|
||||
"spatial.audioSource": "音源",
|
||||
|
||||
// Settings - Unfinished
|
||||
"settings.header.unfinished": "未完成",
|
||||
|
||||
|
||||
// Web Remote
|
||||
"remote.web.title": "Cider リモート",
|
||||
"remote.web.description": "QRコードを使用して、Ciderとスマートフォンをペアリングする",
|
||||
|
||||
|
||||
//About
|
||||
"about.thanks": "Cider Collective とご協力いただいた貢献者様に感謝申し上げます。"
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue