Skip to content

Commit 452c346

Browse files
Add JA, KO, DE localization (#176)
1 parent 12aa4a7 commit 452c346

9 files changed

+170
-69
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ lazy val jbAnnotVersion = "26.0.2"
1212

1313
// https://youtrack.jetbrains.com/articles/IDEA-A-2100661679/IntelliJ-IDEA-2023.3-Latest-Builds
1414
// NOTE: Latest-Builds 233
15-
lazy val intellijVersion = "252.25557.77"
16-
lazy val pluginVersion = s"0.8.0-$intellijVersion-RC2"
15+
lazy val intellijVersion = "252.25557.131"
16+
lazy val pluginVersion = s"0.8.0-$intellijVersion"
1717

1818
ThisBuild / version := pluginVersion
1919

src/main/resources/META-INF/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<idea-plugin>
33
<id>org.bitlap.sbtDependencyAnalyzer</id>
44
<name>Sbt Dependency Analyzer</name>
5-
<version>0.8.0-252.25557.77-RC2</version>
5+
<version>0.8.0-252.25557.131</version>
66
<vendor url="https://github.com/bitlap/intellij-sbt-dependency-analyzer" email="[email protected]">Bitlap
77
</vendor>
88
<!-- please see https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html for description -->
@@ -25,7 +25,7 @@
2525

2626
<registryKey key="bitlap.sbt.analyzer.SbtDependencyAnalyzerBundle"
2727
defaultValue="true" restartRequired="false"
28-
description="Force translation for notification"/>
28+
description="Analyzer for Dependency Tree"/>
2929

3030
<postStartupActivity implementation="bitlap.sbt.analyzer.activity.PluginUpdateActivity"/>
3131
<projectService serviceImplementation="bitlap.sbt.analyzer.SettingsState"/>
Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,35 @@
1-
analyzer.task.error.unknown.text=Unknown problem occurs "{0}/{1}/{2}", please report the problem to the developer
2-
analyzer.task.error.text=Unable to parse the file "{0}", cause by "{1}", please report the problem to the developer
3-
analyzer.task.error.title=Unable to use Sbt Dependency Analyzer plugin
4-
analyzer.action.name=Analyze sbt dependencies...
1+
analyzer.task.error.unknown.text=An unknown error occurred with "{0}/{1}/{2}". Please report this issue to the developer
2+
analyzer.task.error.title=Sbt Dependency Analyzer Plugin Error
3+
analyzer.task.error.text=Failed to parse file "{0}" due to: "{1}". Please report this issue to the developer
4+
analyzer.action.name=Analyze sbt Dependencies...
55
analyzer.action.whatsNew.text=What''s New in {0}
6-
analyzer.action.gotoAction.text=Goto dependency
7-
analyzer.action.excludeAction.text=Exclude dependency
8-
analyzer.action.excludeAction.description=// Exclude selected dependencies from user-defined dependencies or delete user-defined dependencies (Experimental)
9-
analyzer.notification.gotoSdap=Goto "{0}"
10-
analyzer.notification.addSdap.title=Sbt Dependency Analyzer is ready
11-
analyzer.notification.addSdap.text=The "{0}" has been added or updated, \
12-
and it has also been ignored by the ".git/info/exclude" file in the git environment, \
13-
please wait a moment, go to see more.
14-
analyzer.notification.setting.changed.title=Sbt Dependency Analyzer settings have been changed
15-
analyzer.notification.reimport.title=Sbt Dependency Analyzer is refreshing the project
16-
analyzer.notification.updated.failure.title=Failed to load!
17-
analyzer.notification.updated.failure.text=Open in browser↗
18-
analyzer.notification.updated.title={0} plugin updated to v{1}
19-
analyzer.notification.updated.text=Thank you for downloading \
6+
analyzer.action.gotoAction.text=Go to Dependency
7+
analyzer.action.excludeAction.text=Exclude Dependency
8+
analyzer.action.excludeAction.description=// Excludes the selected dependency from user-defined dependencies or deletes a user-defined dependency. (Experimental)
9+
analyzer.notification.gotoSdap=Open "{0}"
10+
analyzer.notification.addSdap.title=Sbt Dependency Analyzer: Configuration Added
11+
analyzer.notification.addSdap.text="{0}" has been added/updated and added to ".git/info/exclude". Please wait a moment for the changes to take effect
12+
analyzer.notification.setting.changed.title=Sbt Dependency Analyzer: Settings Updated
13+
analyzer.notification.reimport.title=Sbt Dependency Analyzer: Refreshing Project
14+
analyzer.notification.updated.failure.title=Load Failed
15+
analyzer.notification.updated.failure.text=Open in Browser↗
16+
analyzer.notification.updated.title={0} Updated to v{1}
17+
analyzer.notification.updated.text=Thanks for downloading \
2018
<b><a href="https://github.com/bitlap/intellij-sbt-dependency-analyzer">Sbt Dependency Analyzer</a></b>! \
21-
<div style="{0}">Change notes (<a href="https://github.com/bitlap/intellij-sbt-dependency-analyzer/releases/tag/v{2}">releases notes</a>)\:</div>\
19+
<div style="{0}">Change notes (<a href="https://github.com/bitlap/intellij-sbt-dependency-analyzer/releases/tag/v{2}">Release notes</a>)\:</div>\
2220
<div style="margin: 2px 0">{1}</div>
23-
analyzer.notification.updated.gotoBrowser=Go to see
24-
analyzer.refresh.dependencies.text=Refresh dependencies
25-
analyzer.refresh.dependencies.description=Refresh dependencies using reimport
26-
analyzer.refresh.snapshot.dependencies.text=Refresh snapshot dependencies
27-
analyzer.refresh.snapshot.dependencies.description=Set the "csrConfiguration" to refresh snapshot dependencies
21+
analyzer.notification.updated.gotoBrowser=View Details
22+
analyzer.refresh.dependencies.text=Refresh Dependencies
23+
analyzer.refresh.dependencies.description=Reloads dependencies by reimporting the project
24+
analyzer.refresh.snapshot.dependencies.text=Refresh Snapshot Dependencies
25+
analyzer.refresh.snapshot.dependencies.description=Sets the 'csrConfiguration' to refresh snapshot dependencies
2826
analyzer.settings.page.name=Sbt Dependency Analyzer
29-
analyzer.packagesearch.dependency.sbt.possible.places.to.add.new.dependency=Possible places to add new dependency
30-
analyzer.packagesearch.dependency.sbt.could.not.generate.expression.string.to.add=// Could not generate expression string to add
31-
analyzer.packagesearch.dependency.sbt.select.a.place.from.the.list.above.to.enable.this.preview=// Select a place from the list above to enable this preview
3227
analyzer.notification.dependency.excluded.title=Excluded dependency "{0}" successfully
3328
analyzer.notification.dependency.excluded.failed.title=Excluded dependency "{0}" failed
3429
analyzer.notification.dependency.removed.title=Removed dependency "{0}" successfully
3530
analyzer.notification.dependency.removed.failed.title=Removed dependency "{0}" failed
36-
analyzer.notification.ok=Ok
31+
analyzer.notification.ok=OK
32+
33+
analyzer.packagesearch.dependency.sbt.possible.places.to.add.new.dependency=Possible places to add new dependency
34+
analyzer.packagesearch.dependency.sbt.could.not.generate.expression.string.to.add=// Could not generate expression string to add
35+
analyzer.packagesearch.dependency.sbt.select.a.place.from.the.list.above.to.enable.this.preview=// Select a place from the list above to enable this preview
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
analyzer.task.error.unknown.text=Ein unbekanntes Problem „{0}/{1}/{2}“ ist aufgetreten. Bitte melden Sie es dem Entwickler
2+
analyzer.task.error.title=Das Sbt Dependency Analyzer-Plugin kann nicht verwendet werden
3+
analyzer.task.error.text=Die Datei „{0}“ konnte nicht analysiert werden. Grund: „{1}“. Bitte melden Sie dieses Problem dem Entwickler
4+
analyzer.action.name=Sbt-Abhängigkeiten analysieren...
5+
analyzer.action.whatsNew.text=Neueste Funktionen von {0}
6+
analyzer.action.gotoAction.text=Abhängigkeiten anzeigen
7+
analyzer.action.excludeAction.text=Abhängigkeit ausschließen
8+
analyzer.action.excludeAction.description=// Die ausgewählte Abhängigkeit von benutzerdefinierten Abhängigkeiten ausschließen oder die benutzerdefinierte Abhängigkeit löschen (Experimentelle Funktion)
9+
analyzer.notification.gotoSdap=„{0}“ öffnen
10+
analyzer.notification.addSdap.title=Das Sbt Dependency Analyzer-Plugin ist bereit
11+
analyzer.notification.addSdap.text=Die Datei „{0}“ wurde hinzugefügt/aktualisiert und über „.git/info/exclude“ von Git ignoriert. Bitte warten Sie einen Moment und sehen Sie nach
12+
analyzer.notification.setting.changed.title=Die Konfiguration des Sbt Dependency Analyzer-Plugins wurde geändert
13+
analyzer.notification.reimport.title=Das Sbt Dependency Analyzer-Plugin aktualisiert das Projekt
14+
analyzer.notification.updated.failure.title=Laden fehlgeschlagen!
15+
analyzer.notification.updated.failure.text=Im Browser öffnen↗
16+
analyzer.notification.updated.title=Das {0}-Plugin wurde auf v{1} aktualisiert
17+
analyzer.notification.updated.text=Vielen Dank für den Download von \
18+
<b><a href="https://github.com/bitlap/intellij-sbt-dependency-analyzer">Sbt Dependency Analyzer</a></b>! \
19+
<div style="{0}">Was ist neu (<a href="https://github.com/bitlap/intellij-sbt-dependency-analyzer/releases/tag/v{2}">Release Notes</a>):</div>\
20+
<div style="margin: 2px 0">{1}</div>
21+
analyzer.notification.updated.gotoBrowser=Ansehen↗
22+
analyzer.refresh.dependencies.text=Abhängigkeiten aktualisieren
23+
analyzer.refresh.dependencies.description=Erneut importieren, um Abhängigkeiten zu aktualisieren
24+
analyzer.refresh.snapshot.dependencies.text=Snapshot-Abhängigkeiten aktualisieren
25+
analyzer.refresh.snapshot.dependencies.description=„csrConfiguration“ setzen, um Snapshot-Abhängigkeiten zu aktualisieren
26+
analyzer.settings.page.name=Sbt Dependency Analyzer
27+
analyzer.notification.dependency.excluded.title=Abhängigkeit „{0}“ erfolgreich ausgeschlossen
28+
analyzer.notification.dependency.excluded.failed.title=Abhängigkeit „{0}“ konnte nicht ausgeschlossen werden
29+
analyzer.notification.dependency.removed.title=Abhängigkeit „{0}“ erfolgreich gelöscht
30+
analyzer.notification.dependency.removed.failed.title=Abhängigkeit „{0}“ konnte nicht gelöscht werden
31+
analyzer.notification.ok=OK
32+
33+
analyzer.packagesearch.dependency.sbt.could.not.generate.expression.string.to.add=// Konnte den hinzuzufügenden Ausdrucksstring nicht generieren
34+
analyzer.packagesearch.dependency.sbt.possible.places.to.add.new.dependency=Mögliche Positionen zum Hinzufügen einer neuen Abhängigkeit
35+
analyzer.packagesearch.dependency.sbt.select.a.place.from.the.list.above.to.enable.this.preview=// Wählen Sie einen Ort aus der obigen Liste aus, um diese Vorschau zu aktivieren
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
analyzer.task.error.unknown.text=不明な問題が発生しました「{0}/{1}/{2}」。開発者に問題を報告してください
2+
analyzer.task.error.title=Sbt Dependency Analyzer プラグインを利用できません
3+
analyzer.task.error.text=ファイル「{0}」を分析できません。理由: {1}。開発者に問題を報告してください
4+
analyzer.action.name=sbtの依存関係を分析中……
5+
analyzer.action.whatsNew.text={0}の新機能
6+
analyzer.action.gotoAction.text=依存関係を表示
7+
analyzer.action.excludeAction.text=依存関係を除外
8+
analyzer.action.excludeAction.description=選択した依存関係をユーザー定義の依存関係から除外する、または削除します(実験的機能)
9+
analyzer.notification.gotoSdap=「{0}」を開く
10+
analyzer.notification.addSdap.title=Sbt Dependency Analyzer の準備が整いました
11+
analyzer.notification.addSdap.text=ファイル「{0}」が追加または更新されました。Git 環境下では、「.git/info/exclude」ファイルでも無視されるよう設定されました
12+
analyzer.notification.setting.changed.title=Sbt Dependency Analyzer の設定が変更されました
13+
analyzer.notification.reimport.title=Sbt Dependency Analyzer がプロジェクトを更新中です
14+
analyzer.notification.updated.failure.title=読み込みに失敗しました
15+
analyzer.notification.updated.failure.text=ブラウザで開く↗
16+
analyzer.notification.updated.title={0} プラグインが v{1} に更新されました
17+
analyzer.notification.updated.text=ご利用ありがとうございます。<b><a href="https://github.com/bitlap/intellij-sbt-dependency-analyzer">Sbt Dependency Analyzer</a></b>
18+
analyzer.notification.updated.gotoBrowser=詳細を見る↗
19+
analyzer.refresh.dependencies.text=依存関係を更新
20+
analyzer.refresh.dependencies.description=再インポートして依存関係を更新します
21+
analyzer.refresh.snapshot.dependencies.text=スナップショット依存関係を更新
22+
analyzer.refresh.snapshot.dependencies.description=スナップショット依存関係を更新するために「csrConfiguration」を設定します
23+
analyzer.settings.page.name=Sbt Dependency Analyzer
24+
analyzer.notification.dependency.excluded.title=依存関係「{0}」の除外に成功しました
25+
analyzer.notification.dependency.excluded.failed.title=依存関係「{0}」の除外に失敗しました
26+
analyzer.notification.dependency.removed.title=依存関係「{0}」の削除に成功しました
27+
analyzer.notification.dependency.removed.failed.title=依存関係「{0}」の削除に失敗しました
28+
analyzer.notification.ok=了解しました
29+
30+
analyzer.packagesearch.dependency.sbt.could.not.generate.expression.string.to.add=追加する式の文字列を生成できませんでした
31+
analyzer.packagesearch.dependency.sbt.possible.places.to.add.new.dependency=新しい依存関係を追加できる可能性のある場所
32+
analyzer.packagesearch.dependency.sbt.select.a.place.from.the.list.above.to.enable.this.preview=上のリストから場所を選択して、このプレビューを有効にしてください
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
analyzer.task.error.unknown.text=알 수 없는 문제「{0}/{1}/{2}」가 발생했습니다. 개발자에게 문제를 보고해 주세요
2+
analyzer.task.error.title=Sbt Dependency Analyzer 플러그인을 사용할 수 없음
3+
analyzer.task.error.text=파일 \"{0}\"을(를) 분석할 수 없습니다. 이유: \"{1}\". 개발자에게 이 문제를 보고해 주세요
4+
analyzer.action.name=Sbt 의존성 분석...
5+
analyzer.action.whatsNew.text={0}의 최신 기능
6+
analyzer.action.gotoAction.text=의존성 확인
7+
analyzer.action.excludeAction.text=의존성 제외
8+
analyzer.action.excludeAction.description=// 사용자 정의 의존성에서 선택한 의존성을 제외하거나 사용자 정의 의존성을 삭제합니다 (실험적 기능)
9+
analyzer.notification.gotoSdap=\"{0}\" 열기
10+
analyzer.notification.addSdap.title=Sbt Dependency Analyzer 플러그인 준비 완료
11+
analyzer.notification.addSdap.text=파일 \"{0}\"이(가) 추가 또는 업데이트되었으며, Git 환경에서 \".git/info/exclude\" 파일에 의해 무시되었습니다. 잠시 기다린 후 확인하세요
12+
analyzer.notification.setting.changed.title=Sbt Dependency Analyzer 플러그인 구성이 변경됨
13+
analyzer.notification.reimport.title=Sbt Dependency Analyzer 플러그인 프로젝트 새로 고침 중
14+
analyzer.notification.updated.failure.title=로드 실패!
15+
analyzer.notification.updated.failure.text=브라우저에서 열기↗
16+
analyzer.notification.updated.title={0} 플러그인이 v{1}(으)로 업데이트됨
17+
analyzer.notification.updated.text=다운로드해 주셔서 감사합니다 \
18+
<b><a href=\"https://github.com/bitlap/intellij-sbt-dependency-analyzer\">Sbt Dependency Analyzer</a></b>! \
19+
<div style=\"{0}\">업데이트 설명 (<a href=\"https://github.com/bitlap/intellij-sbt-dependency-analyzer/releases/tag/v{2}\">릴리스 노트</a>):</div>\
20+
<div style=\"margin: 2px 0\">{1}</div>
21+
analyzer.notification.updated.gotoBrowser=확인하러 가기↗
22+
analyzer.refresh.dependencies.text=의존성 새로 고침
23+
analyzer.refresh.dependencies.description=재导入하여 의존성 새로 고침
24+
analyzer.refresh.snapshot.dependencies.text=스냅샷 의존성 새로 고침
25+
analyzer.refresh.snapshot.dependencies.description=스냅샷 의존성을 새로 고치도록 \"csrConfiguration\" 설정
26+
analyzer.settings.page.name=Sbt Dependency Analyzer
27+
analyzer.notification.dependency.excluded.title=의존성 \"{0}\" 제외 성공
28+
analyzer.notification.dependency.excluded.failed.title=의존성 \"{0}\" 제외 실패
29+
analyzer.notification.dependency.removed.title=의존성 \"{0}\" 삭제 성공
30+
analyzer.notification.dependency.removed.failed.title=의존성 \"{0}\" 삭제 실패
31+
analyzer.notification.ok=확인
32+
33+
analyzer.packagesearch.dependency.sbt.could.not.generate.expression.string.to.add=// 추가할 표현식 문자열을 생성할 수 없습니다
34+
analyzer.packagesearch.dependency.sbt.possible.places.to.add.new.dependency=새 의존성을 추가할 수 있는 가능한 위치
35+
analyzer.packagesearch.dependency.sbt.select.a.place.from.the.list.above.to.enable.this.preview=// 위 목록에서 위치를 선택하면 이 미리보기가 활성화됩니다\n

src/main/resources/messages/SbtDependencyAnalyzerBundle_zh.properties

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)