diff --git a/README.md b/README.md index 9d027ac..7080718 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,7 @@ # Custom files for git.friendi.ca -These files are the cutsom files for git.friendi.ca. -They are overriding the default template files of gitea. -The content of `custom` needs to be placed in `/var/lib/gitea` and `/usr/share/gitea` (at least at git.friendi.ca). -Files there are accessed in the `assets` path. +These are the custom files for git.friendi.ca, which override the default template files of Forgejo. +The content of the `custom` directory is mounted inside the Docker container at `/var/lib/gitea/custom`. ## Translation @@ -11,17 +9,17 @@ Translation of the strings can be done at [Transifex](https://www.transifex.com/ ## Workflow -1. Update the strings at the top of the `generate_home_tmpl.py` file, those that start with a `str_` in the name. +1. Update the strings at the top of the `generate_home_tmpl.py` file — those that start with a `str_` in the name. 2. Extract them with `pygettext -p ./lang/C/ generate_home_tmpl.py` 3. Commit the new `messages.pot` file and push it to the repository at git.friendi.ca 4. Wait for Transifex to pick up the changes and the translation teams to make the new translations -5. Download the finished translations to `lang/$lngcode/LC_MESSAGES/messages.pot` -6. Edit the `messages.pot` file and set the characterset to UTF-8. +5. Download the finished translations to `lang/$langcode/LC_MESSAGES/messages.pot` +6. Edit the `messages.pot` file and set the character set to UTF-8: `"Content-Type: text/plain; charset=UTF-8\n"` 7. Convert the `messages.pot` file to `messages.mo` using `msgfmt messages.pot` -8. Run `python3 generate_home_tmpl.py` it will recreate the `custom/templates/home.tmpl` file +8. Run `python3 generate_home_tmpl.py` to recreate the `custom/templates/home.tmpl` file 9. Upload that file and copy it to the `custom/templates/` directory of the gitea instance. ## License -The python script to generate the template file has been released under the terms of the MIT license. +The Python script to generate the template file has been released under the terms of the MIT license. diff --git a/custom/public/img/favicon.ico b/custom/public/assets/img/favicon.ico similarity index 100% rename from custom/public/img/favicon.ico rename to custom/public/assets/img/favicon.ico diff --git a/custom/public/img/favicon.png b/custom/public/assets/img/favicon.png similarity index 100% rename from custom/public/img/favicon.png rename to custom/public/assets/img/favicon.png diff --git a/custom/public/img/friendica-128.png b/custom/public/assets/img/friendica-128.png similarity index 100% rename from custom/public/img/friendica-128.png rename to custom/public/assets/img/friendica-128.png diff --git a/custom/public/img/friendica-256.png b/custom/public/assets/img/friendica-256.png similarity index 100% rename from custom/public/img/friendica-256.png rename to custom/public/assets/img/friendica-256.png diff --git a/custom/public/img/gitea-sm.png b/custom/public/assets/img/gitea-sm.png similarity index 100% rename from custom/public/img/gitea-sm.png rename to custom/public/assets/img/gitea-sm.png diff --git a/custom/public/robots.txt b/custom/public/robots.txt new file mode 100644 index 0000000..69084d2 --- /dev/null +++ b/custom/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: /*/archive/* diff --git a/custom/templates/home.tmpl b/custom/templates/home.tmpl index 2e16ada..d6c84ef 100644 --- a/custom/templates/home.tmpl +++ b/custom/templates/home.tmpl @@ -36,6 +36,8 @@

A Friendica projekt git tárolóinak gyűjteménye.

{{else if eq .Lang "ru-RU"}}

Собрание git-репозиториев проекта Friendica.

+{{else if eq .Lang "da-DK"}} +

Friendica projektets samling af git depoter.

{{else}}

Collection of the git repositories of the Friendica project.

{{end}} @@ -191,7 +193,7 @@ Interoperacyjność

- Friendica has build in support for the ActivityPub (e.g. Hubzilla, Mastodon, Pleroma, Pixelfed, Socialhome), OStatus (e.g. GNU social) and diaspora* (e.g. diaspora*) protocol. With additional addons you can bridge to more networks like pump.io, Twitter and others. + Friendica ma wbudowaną obsługę protokołów ActivityPub (np. Hubzilla, Mastodon, Pleroma, Pixelfed, Socialhome), Ostatus (np. GNU Social) i diaspora* (np. diaspora*). Dzięki dodatkowym dodatkom możesz połączyć się z większą liczbą sieci, takimi jak pump.io, Twitter i inne.

@@ -538,6 +540,44 @@ +{{else if eq .Lang "da-DK"}} +
+
+

+ Nem at installere +

+

+ Det eneste du skal bruge er PHP og en MySQL database. Installation kan foregå via filupload, git eller docker. +

+
+
+

+ Fri software +

+

+ Friendica er fri software, licenseret i henhold til AGPLv3 (eller senere). Den fulde kildekode er hostet på git.friendi.ca. Slut dig til os ved at bidrage og gøre dette projekt endnu bedre. Vær ikke bange for at blive en bidragsyder! +

+
+
+
+
+

+ Decentralisering +

+

+ Decentralized architecture with no central authority or ownership. Relationships can be made across any compatible system, creating a network of Internet scale made up of smaller sites. Seamless wall-to-wall posts and remote comments, even across different network nodes. +

+
+
+

+ Interoperabilitet +

+

+ Friendica har indbygget understøttelse for protokollerne ActivityPub (fx Hubzilla, Mastodon, Pleroma, Pixelfed, Socialhome), OStatus (fx GNU social) og diaspora* (fx diaspora*). Med yderligere tilføjelser kan du forbinde til flere netværk som pump.io, Twitter og flere. +

+
+
+ {{else}}
diff --git a/generate_home_tmpl.py b/generate_home_tmpl.py index bf985cf..8de4bac 100644 --- a/generate_home_tmpl.py +++ b/generate_home_tmpl.py @@ -56,7 +56,7 @@ fn = os.path.join(os.path.abspath(os.path.dirname(__file__)), languageDirectory) # of the available translations. Later in the script, when the home.tmpl # is created, we'll loop over all these languages. translations = ['de-DE', 'nl-NL', 'it-IT', 'pl-PL', 'cs-CZ', 'en-GB', - 'ja-JA', 'ca-ES', 'es-ES', 'fi-FI', 'fr-FR', 'hu-HU', 'ru-RU'] + 'ja-JA', 'ca-ES', 'es-ES', 'fi-FI', 'fr-FR', 'hu-HU', 'ru-RU', 'da-DK'] count = len(translations) languages = {} # read in all the available translation for later usage @@ -76,7 +76,7 @@ templateHead = """{{template "base/head" .}}
- +

diff --git a/lang/da-DK/LC_MESSAGES/messages.mo b/lang/da-DK/LC_MESSAGES/messages.mo new file mode 100644 index 0000000..33c10e5 Binary files /dev/null and b/lang/da-DK/LC_MESSAGES/messages.mo differ diff --git a/lang/da-DK/LC_MESSAGES/messages.pot b/lang/da-DK/LC_MESSAGES/messages.pot new file mode 100644 index 0000000..23febe0 --- /dev/null +++ b/lang/da-DK/LC_MESSAGES/messages.pot @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Anton , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-08-18 18:15+CEST\n" +"PO-Revision-Date: 2018-06-06 12:46+0000\n" +"Last-Translator: Anton , 2022\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/Friendica/teams/12172/da_DK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: ENCODING\n" +"Generated-By: pygettext.py 1.5\n" +"Language: da_DK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: generate_home_tmpl.py:39 +msgid "" +"Collection of the git repositories of the Friendica project." +msgstr "" +"Friendica projektets samling " +"af git depoter." + +#: generate_home_tmpl.py:40 +msgid "Easy to install" +msgstr "Nem at installere" + +#: generate_home_tmpl.py:41 +msgid "" +"All you need is PHP and a MySQL database. Installation can be done via file " +"upload, git or docker." +msgstr "" +"Det eneste du skal bruge er PHP og en MySQL database. Installation kan " +"foregå via filupload, git eller docker." + +#: generate_home_tmpl.py:42 +msgid "Free Software" +msgstr "Fri software" + +#: generate_home_tmpl.py:43 +msgid "" +"Friendica is Free Software, licensed under the terms of the AGPLv3 (or " +"later). The entire source code is hosted at git.friendi.ca. Join " +"us by contributing to make this project even better. Don't be shy to be a contributor!" +msgstr "" +"Friendica er fri software, licenseret i henhold til AGPLv3 (eller senere). " +"Den fulde kildekode er hostet på git.friendi.ca. Slut " +"dig til os ved at bidrage og gøre dette projekt endnu bedre. Vær ikke bange " +"for at blive en bidragsyder!" + +#: generate_home_tmpl.py:44 +msgid "Decentralization" +msgstr "Decentralisering" + +#: generate_home_tmpl.py:45 +msgid "" +"Decentralized architecture with no central authority or ownership. " +"Relationships can be made across any compatible system, creating a network " +"of Internet scale made up of smaller sites. Seamless wall-to-wall posts and " +"remote comments, even across different network nodes." +msgstr "" + +#: generate_home_tmpl.py:46 +msgid "Interoperability" +msgstr "Interoperabilitet" + +#: generate_home_tmpl.py:47 +msgid "" +"Friendica has build in support for the ActivityPub (e.g. Hubzilla, Mastodon," +" Pleroma, Pixelfed, Socialhome), OStatus (e.g. GNU social) and diaspora* " +"(e.g. diaspora*) protocol. With additional addons you can bridge to more " +"networks like pump.io, Twitter and others." +msgstr "" +"Friendica har indbygget understøttelse for protokollerne ActivityPub (fx " +"Hubzilla, Mastodon, Pleroma, Pixelfed, Socialhome), OStatus (fx GNU social) " +"og diaspora* (fx diaspora*). Med yderligere tilføjelser kan du forbinde til " +"flere netværk som pump.io, Twitter og flere." diff --git a/lang/pl-PL/LC_MESSAGES/messages.mo b/lang/pl-PL/LC_MESSAGES/messages.mo index 05ad211..6a8f30f 100644 Binary files a/lang/pl-PL/LC_MESSAGES/messages.mo and b/lang/pl-PL/LC_MESSAGES/messages.mo differ diff --git a/lang/pl-PL/LC_MESSAGES/messages.pot b/lang/pl-PL/LC_MESSAGES/messages.pot index 9144b8f..214a205 100644 --- a/lang/pl-PL/LC_MESSAGES/messages.pot +++ b/lang/pl-PL/LC_MESSAGES/messages.pot @@ -4,13 +4,14 @@ # # Translators: # Waldemar Stoczkowski, 2018 +# Piotr Strębski , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2020-08-18 18:15+CEST\n" "PO-Revision-Date: 2018-06-06 12:46+0000\n" -"Last-Translator: Waldemar Stoczkowski, 2018\n" +"Last-Translator: Piotr Strębski , 2022\n" "Language-Team: Polish (https://www.transifex.com/Friendica/teams/12172/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,16 +50,16 @@ msgid "" "later). The entire source code is hosted at git.friendi.ca. Join " "us by contributing to make this project even better. Don't be shy to be a contributor!" +"href='https://git.friendi.ca/friendica/friendica/src/branch/develop/doc/Developers-" +"Intro.md'>be a contributor!" msgstr "" "Friendica to wolne oprogramowanie, licencjonowane zgodnie z warunkami AGPLv3" " (lub nowszym). Cały kod źródłowy jest hostowany na stronie git.friendi.ca. Dołącz" " do nas, przyczyniając się do tego, aby ten projekt był jeszcze lepszy. Nie " "wstydź się być współtwórcą!" +"href='https://git.friendi.ca/friendica/friendica/src/branch/develop/doc/Developers-" +"Intro.md'>być współtwórcą!" #: generate_home_tmpl.py:44 msgid "Decentralization" @@ -87,3 +88,7 @@ msgid "" "(e.g. diaspora*) protocol. With additional addons you can bridge to more " "networks like pump.io, Twitter and others." msgstr "" +"Friendica ma wbudowaną obsługę protokołów ActivityPub (np. Hubzilla, " +"Mastodon, Pleroma, Pixelfed, Socialhome), Ostatus (np. GNU Social) i " +"diaspora* (np. diaspora*). Dzięki dodatkowym dodatkom możesz połączyć się z " +"większą liczbą sieci, takimi jak pump.io, Twitter i inne."