-
-
Notifications
You must be signed in to change notification settings - Fork 491
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/SuperTux/supertux into re…
…al-master
- Loading branch information
Showing
429 changed files
with
67,460 additions
and
62,666 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
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,52 @@ | ||
# SuperTux | ||
# Copyright (C) 2024 Tobias Markus | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License | ||
# as published by the Free Software Foundation; either version 3 | ||
# of the License, or (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
|
||
name: translation_templates | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update-all-templates: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout SuperTux repository | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'SuperTux/supertux' | ||
fetch-depth: 0 | ||
|
||
- name: Update translation templates | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
# Update packages | ||
sudo apt-get update | ||
sudo apt-get install -y gettext | ||
# Checkout master to make git describe work | ||
git checkout master | ||
# Update translation templates: | ||
chmod +x makepot.sh | ||
sh ./makepot.sh | ||
# Commit | ||
git status | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "SuperTux Bot" | ||
git commit -am "Update translation templates" || true | ||
git push https://git:[email protected]/SuperTux/supertux.git master |
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,12 +1,17 @@ | ||
(supertux-converter-data | ||
(nightly_all_tiles.sttc | ||
(title (_ "Nightly Tiles")) | ||
(author "SuperTux Team") | ||
(description (_ "For levels, created in previous Nightly builds.")) | ||
) | ||
(pre-0.6.3_crystal_tiles.sttc | ||
(title (_ "Pre-0.6.3 Crystal Tiles")) | ||
(author "tylerandari12") | ||
(description (_ "For levels, created in pre-0.6.3 versions, which use crystal tiles.")) | ||
) | ||
) | ||
(supertux-converter-data | ||
(nightly_all_tiles.sttc | ||
(title (_ "Nightly Tiles")) | ||
(author "SuperTux Team") | ||
(description (_ "For levels, created in previous Nightly builds.")) | ||
) | ||
(pre-0.6.3_crystal_tiles.sttc | ||
(title (_ "Pre-0.6.3 Crystal Tiles")) | ||
(author "tylerandari12") | ||
(description (_ "For levels, created in pre-0.6.3 versions, which use crystal tiles.")) | ||
) | ||
(rock_tiles_addon_to_vanilla.sttc | ||
(title (_ "Jagged Rock Tiles from Addon")) | ||
(author "Eauix") | ||
(description (_ "For levels, created with the rock tiles addon, converts their IDs to vanilla rock tile IDs")) | ||
) | ||
) |
Oops, something went wrong.