Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make logging default (and clear out launcher logs each day) #131

Open
wants to merge 11 commits into
base: master
Choose a base branch
from

Conversation

VasilisThePikachu
Copy link
Member

@VasilisThePikachu VasilisThePikachu commented Jan 5, 2024

Since Serilog is weird it appends the date to the log file now. Idk why but its fine since its configured to delete logs older then a day

This PR does the following:

  1. Removing the launcher logging checkbox in settings.
  2. Replace the checkbox in the login to opening the logs folder.
  3. Make launcher logs always be written.
  4. (Side effect of serilog) apends dates to the log file (launcher-DDMMYYY.log)... I guess it can help with knowing when a bug seemed to pop up.
  5. Clear out the log file if it's a day old.

Recommended to also update the !logging command in this case potencially.

Also adds an open launcher logs button instead of a log launcher button on login

This is probably not an issue, since client resets this file on each lunch already. There's no worry that it's going to fill up the users drive.

The only way this is an issue is if you are running your os from an SD card or something where the constant writing may be a problem... most our players dont play from an sd card right?
@VasilisThePikachu VasilisThePikachu changed the title Make launcher logging default (and clear out logs each day) Make logging default (and clear out launcher logs each day) May 9, 2024
@moonheart08
Copy link

Make it delete if it's two days old, keep the last 2d of logs. Otherwise there will be a rollover point where it eats the old logs even if they were important.

@VasilisThePikachu
Copy link
Member Author

Make it delete if it's two days old, keep the last 2d of logs. Otherwise there will be a rollover point where it eats the old logs even if they were important.

Sadly it looks like I don't have that kind of power with serilogs rolling interval. Closest i got is week

@moonheart08
Copy link

Make it delete if it's two days old, keep the last 2d of logs. Otherwise there will be a rollover point where it eats the old logs even if they were important.

Sadly it looks like I don't have that kind of power with serilogs rolling interval. Closest i got is week

Probably better to retain more logs than necessary than to miss necessary logs. @PJB3005's opinion is probably needed.

* Add basic Fluent localization

* LocalizationManager improvements

Add parameter support

Static GetRequiredService wrapper

* Localize the launcher

Yeah just like that huh

* Add system for loading non-English languages.

* Merge FTL files into one as Weblate doesn't want them separated.

RIP code organization, oh well.

* Hub settings explanation word wrapping

This was manually word-wrapped with line breaks in the text string. Now there's just a max width on the text block.

* Fix typo in "back to login"

* Fix incorrect key names for "register confirmation" window

* Occured -> occurred

* DropDown improvements

Set IsLightDismissEnabled, this makes them properly dismiss when they should.

Allow setting popup placement mode, need this for upcoming language selector stuff.

* Add distinct background for popups

So they don't have the same background as the main window

* Add language selector control.

It's placed right on the login screen, so it'll be immediately available when opening it for the first time.

Language switching happens IMMEDIATELY without application restart. This is achieved by re-creating the entire view control tree while keeping the view models. Means I had to pull the main window contents out into their own control.

* Added translation using Weblate (English (United Kingdom))

* Added translation using Weblate (Dutch)

* Added translation using Weblate (Dutch (Belgium))

* Deleted translation using Weblate (English (United Kingdom))

* Deleted translation using Weblate (Dutch (Belgium))

* Added translation using Weblate (German)

* Added translation using Weblate (Greek)

* Added translation using Weblate (Spanish)

* Added translation using Weblate (French)

* Added translation using Weblate (Italian)

* Added translation using Weblate (Portuguese)

* Added translation using Weblate (Russian)

* Added translation using Weblate (Swedish)

* Added translation using Weblate (Turkish)

* Added translation using Weblate (Ukrainian)

* Deleted translation using Weblate (French)

* Deleted translation using Weblate (Italian)

* Translated using Weblate (Dutch)

Currently translated at 1.2% (3 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Translated using Weblate (Dutch)

Currently translated at 1.2% (3 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Translated using Weblate (German)

Currently translated at 5.6% (14 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (Portuguese)

Currently translated at 48.3% (119 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/pt/

* Translated using Weblate (Dutch)

Currently translated at 20.3% (50 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Translated using Weblate (Greek)

Currently translated at 9.3% (23 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Spanish)

Currently translated at 13.4% (33 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/es/

* Translated using Weblate (German)

Currently translated at 38.6% (95 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (Dutch)

Currently translated at 31.7% (78 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Translated using Weblate (German)

Currently translated at 53.6% (132 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (Spanish)

Currently translated at 25.2% (62 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/es/

* Translated using Weblate (Dutch)

Currently translated at 37.8% (93 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Translated using Weblate (Spanish)

Currently translated at 27.6% (68 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/es/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/

* Translated using Weblate (Dutch)

Currently translated at 81.3% (200 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Translated using Weblate (German)

Currently translated at 53.2% (131 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (German)

Currently translated at 53.2% (131 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (Spanish)

Currently translated at 29.6% (73 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/es/

* Translated using Weblate (German)

Currently translated at 88.6% (218 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (German)

Currently translated at 88.6% (218 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (German)

Currently translated at 91.0% (224 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (German)

Currently translated at 91.0% (224 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (German)

Currently translated at 100.0% (246 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (German)

Currently translated at 100.0% (246 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/de/

* Translated using Weblate (Greek)

Currently translated at 13.4% (33 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 13.4% (33 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Dutch)

Currently translated at 83.3% (205 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Translated using Weblate (Greek)

Currently translated at 14.2% (35 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 14.2% (35 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 14.6% (36 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 14.6% (36 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 15.0% (37 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 15.0% (37 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 15.4% (38 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 15.8% (39 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 15.8% (39 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 16.2% (40 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 16.2% (40 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 16.6% (41 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 16.6% (41 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 17.0% (42 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 17.0% (42 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 17.4% (43 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 17.4% (43 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 17.8% (44 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 17.8% (44 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 18.2% (45 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 18.6% (46 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 18.6% (46 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 19.5% (48 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 19.5% (48 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 19.9% (49 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 19.9% (49 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 20.3% (50 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 20.3% (50 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 20.7% (51 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 21.1% (52 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 21.5% (53 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 21.5% (53 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 21.9% (54 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 22.3% (55 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 22.7% (56 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 23.5% (58 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 23.9% (59 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 24.3% (60 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 26.8% (66 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 26.8% (66 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 27.2% (67 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 27.6% (68 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 28.0% (69 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 28.4% (70 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 28.4% (70 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 28.8% (71 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 29.2% (72 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 29.6% (73 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 30.0% (74 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 30.4% (75 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 30.8% (76 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 30.8% (76 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 31.3% (77 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 31.3% (77 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 31.7% (78 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 32.1% (79 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 32.1% (79 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Greek)

Currently translated at 32.5% (80 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Added translation using Weblate (Toki Pona)

* Translated using Weblate (Dutch)

Currently translated at 100.0% (246 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Translated using Weblate (Greek)

Currently translated at 32.5% (80 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Russian)

Currently translated at 79.6% (196 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/ru/

* Translated using Weblate (Portuguese)

Currently translated at 99.5% (245 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/pt/

* Translated using Weblate (Greek)

Currently translated at 60.9% (150 of 246 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/el/

* Translated using Weblate (Dutch)

Currently translated at 100.0% (252 of 252 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Fix loc strings used for "unspecified" filters

* Translated using Weblate (English (United States))

Currently translated at 100.0% (252 of 252 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/en_US/

* Translated using Weblate (Portuguese)

Currently translated at 87.3% (220 of 252 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/pt/

* Translated using Weblate (Portuguese)

Currently translated at 87.6% (221 of 252 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/pt/

* Translated using Weblate (Dutch)

Currently translated at 100.0% (252 of 252 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/nl/

* Translated using Weblate (Portuguese)

Currently translated at 100.0% (252 of 252 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/pt/

* Language selector on options tab

* Re-add filters text

Forgot to fix this while doing the initial pass to make all strings localizable.

* Automatically select language based on system

* Proper translation instructions URL on docs

* Add margin to language selector

* Translated using Weblate (Toki Pona)

Currently translated at 4.3% (11 of 252 strings)

Translation: Space Station 14 Launcher/Main
Translate-URL: https://weblate.spacestation14.com/projects/space-station-14-launcher/main/tok/

---------

Co-authored-by: Evil_PJB <pieterjan.briers+evil@gmail.com>
Co-authored-by: Simyon <simyon264@gmail.com>
Co-authored-by: mirino <j.cesarueti@yahoo.com.br>
Co-authored-by: Vasilis <vasilis@pikachu.systems>
Co-authored-by: DogZero <le0nel_1van@hotmail.com>
Co-authored-by: Weblate <noreply@weblate.org>
Co-authored-by: julian <juliangiebel@live.de>
Co-authored-by: Simyon <Simyon@users.noreply.weblate.spacestation14.com>
Co-authored-by: nikthechampiongr <nikvog4@gmail.com>
Co-authored-by: faint <faint@users.noreply.weblate.spacestation14.com>
Co-authored-by: Mintie <Mintie@users.noreply.weblate.spacestation14.com>
Copy link

This pull request has conflicts, please resolve those before we can evaluate the pull request.

Copy link

This pull request has conflicts, please resolve those before we can evaluate the pull request.

Copy link

github-actions bot commented Sep 9, 2024

This pull request has conflicts, please resolve those before we can evaluate the pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants