-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # FFXIVPlugin/XIVDeck.FFXIVPlugin.csproj # SDPlugin/package.json
- Loading branch information
Showing
81 changed files
with
3,345 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Synchronize Crowdin Changes | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
synchronize-with-crowdin: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Get Branch Name | ||
shell: bash | ||
run: echo "::set-output name=branch::${GITHUB_REF#refs/heads/}" | ||
id: branch | ||
- name: Update localization | ||
uses: crowdin/[email protected] | ||
with: | ||
upload_translations: true | ||
upload_sources: true | ||
auto_approve_imported: true | ||
import_eq_suggestions: true | ||
|
||
download_translations: true | ||
skip_untranslated_strings: true | ||
skip_untranslated_files: true | ||
export_only_approved: true | ||
push_translations: true | ||
commit_message: '[Crowdin] Synchronize Localization Changes' | ||
create_pull_request: true | ||
pull_request_title: '[Crowdin] Synchronize Localization Changes' | ||
pull_request_body: 'Update localization with latest translations from crowdin' | ||
|
||
crowdin_branch_name: ${{ steps.branch.outputs.branch }} | ||
localization_branch_name: 'crowdin-${{ steps.branch.outputs.branch }}' | ||
pull_request_base_branch_name: ${{ steps.branch.outputs.branch }} | ||
|
||
config: 'crowdin.yml' | ||
|
||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
CROWDIN_PROJECT_ID: ${{secrets.CROWDIN_PROJECT_ID}} | ||
CROWDIN_PERSONAL_TOKEN: ${{secrets.CROWDIN_PERSONAL_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Upload to Crowdin | ||
|
||
on: | ||
push: | ||
branches: [ localization ] | ||
|
||
jobs: | ||
crowdin-upload: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Get Branch Name | ||
shell: bash | ||
run: echo "::set-output name=branch::${GITHUB_REF#refs/heads/}" | ||
id: branch | ||
- name: Crowdin Action | ||
uses: crowdin/[email protected] | ||
with: | ||
upload_sources: true | ||
upload_translations: true | ||
download_translations: false | ||
crowdin_branch_name: ${{ steps.branch.outputs.branch }} | ||
env: | ||
CROWDIN_PROJECT_ID: ${{secrets.CROWDIN_PROJECT_ID}} | ||
CROWDIN_PERSONAL_TOKEN: ${{secrets.CROWDIN_PERSONAL_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
namespace XIVDeck.FFXIVPlugin { | ||
public static class Constants { | ||
public const string PluginName = "XIVDeck Game Plugin"; | ||
public const string MinimumSDPluginVersion = "0.1.0"; | ||
public const string GithubUrl = "https://github.com/KazWolfe/XIVDeck"; | ||
} | ||
} | ||
namespace XIVDeck.FFXIVPlugin; | ||
|
||
public static class Constants { | ||
public const string MinimumSDPluginVersion = "0.1.0"; | ||
public const string GithubUrl = "https://github.com/KazWolfe/XIVDeck"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.