From ef35c3e8cb22bb2e0b59eff31ca05360ff7bb370 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 7 Jan 2024 14:32:02 -0800 Subject: [PATCH] update copyright year and version details While the update to the copyright year really isn't required, it just looks better. By using the canonical instead of the git version in user visible strings we are creating more consistency in how we refer to the version. Signed-off-by: Dirk Hohndel --- core/subsurfacestartup.c | 4 ++-- desktop-widgets/about.cpp | 4 ++-- mobile-widgets/qml/About.qml | 2 +- packaging/ios/Info.plist.in | 2 +- packaging/ubuntu/debian/copyright | 2 +- translations/subsurface_bg_BG.ts | 8 ++++---- translations/subsurface_ca.ts | 8 ++++---- translations/subsurface_cs.ts | 4 ++-- translations/subsurface_da_DK.ts | 4 ++-- translations/subsurface_de_CH.ts | 6 +++--- translations/subsurface_de_DE.ts | 8 ++++---- translations/subsurface_el_GR.ts | 4 ++-- translations/subsurface_en_GB.ts | 8 ++++---- translations/subsurface_en_US.ts | 4 ++-- translations/subsurface_es_ES.ts | 8 ++++---- translations/subsurface_et_EE.ts | 4 ++-- translations/subsurface_fi_FI.ts | 8 ++++---- translations/subsurface_fr_FR.ts | 8 ++++---- translations/subsurface_he.ts | 4 ++-- translations/subsurface_hr_HR.ts | 4 ++-- translations/subsurface_hu.ts | 4 ++-- translations/subsurface_id.ts | 4 ++-- translations/subsurface_it_IT.ts | 8 ++++---- translations/subsurface_ja_JP.ts | 4 ++-- translations/subsurface_lv_LV.ts | 4 ++-- translations/subsurface_nb_NO.ts | 6 +++--- translations/subsurface_nl_NL.ts | 8 ++++---- translations/subsurface_pl_PL.ts | 4 ++-- translations/subsurface_pt_BR.ts | 4 ++-- translations/subsurface_pt_PT.ts | 8 ++++---- translations/subsurface_ro_RO.ts | 8 ++++---- translations/subsurface_ru_RU.ts | 4 ++-- translations/subsurface_sk_SK.ts | 4 ++-- translations/subsurface_source.ts | 4 ++-- translations/subsurface_sv_SE.ts | 8 ++++---- translations/subsurface_tr.ts | 6 +++--- translations/subsurface_vi.ts | 4 ++-- translations/subsurface_zh_TW.ts | 4 ++-- 38 files changed, 100 insertions(+), 100 deletions(-) diff --git a/core/subsurfacestartup.c b/core/subsurfacestartup.c index 099ad7942..4a97a683f 100644 --- a/core/subsurfacestartup.c +++ b/core/subsurfacestartup.c @@ -31,9 +31,9 @@ void print_version() if (version_printed) return; #if defined(SUBSURFACE_DOWNLOADER) - printf("Subsurface-downloader v%s,\n", subsurface_git_version()); + printf("Subsurface-downloader v%s,\n", subsurface_canonical_version()); #else - printf("Subsurface v%s,\n", subsurface_git_version()); + printf("Subsurface v%s,\n", subsurface_canonical_version()); #endif printf("built with libdivecomputer v%s\n", dc_version(NULL)); print_qt_versions(); diff --git a/desktop-widgets/about.cpp b/desktop-widgets/about.cpp index 503bb5e69..5582648e3 100644 --- a/desktop-widgets/about.cpp +++ b/desktop-widgets/about.cpp @@ -10,13 +10,13 @@ SubsurfaceAbout::SubsurfaceAbout(QWidget *parent) : QDialog(parent, QFlag(0)) ui.setupUi(this); setWindowModality(Qt::ApplicationModal); - QString versionString(subsurface_git_version()); + QString versionString(subsurface_canonical_version()); ui.aboutLabel->setText(tr("" "Subsurface %1

" "Multi-platform divelog software
" "" - "Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022" + "Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024" "").arg(versionString)); QShortcut *close = new QShortcut(QKeySequence(Qt::CTRL | Qt::Key_W), this); diff --git a/mobile-widgets/qml/About.qml b/mobile-widgets/qml/About.qml index f1703fee3..eab91ad60 100644 --- a/mobile-widgets/qml/About.qml +++ b/mobile-widgets/qml/About.qml @@ -48,7 +48,7 @@ Kirigami.ScrollablePage { } Kirigami.Heading { - text: qsTr("Version: %1\n\n© Subsurface developer team\n2011-2022").arg(manager.getVersion()) + text: qsTr("Version: %1\n\n© Subsurface developer team\n2011-2024").arg(manager.getVersion()) level: 5 color: subsurfaceTheme.textColor font.pointSize: subsurfaceTheme.smallPointSize + 1 diff --git a/packaging/ios/Info.plist.in b/packaging/ios/Info.plist.in index 73ab786cd..68ac73535 100644 --- a/packaging/ios/Info.plist.in +++ b/packaging/ios/Info.plist.in @@ -27,7 +27,7 @@ NOTE Subsurface is open source software released under the GPLv2 -- and includes many other open source components like Qt, Kirigami, libdivecomputer, and others. NSHumanReadableCopyright - Copyright © 2011-2022 Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and the Subsurface developer team + Copyright © 2011-2024 Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and the Subsurface developer team NSMainNibFile SubsurfaceMobileLaunch UILaunchStoryboardName diff --git a/packaging/ubuntu/debian/copyright b/packaging/ubuntu/debian/copyright index d072ad428..d54de0285 100644 --- a/packaging/ubuntu/debian/copyright +++ b/packaging/ubuntu/debian/copyright @@ -2,7 +2,7 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: Files: * -Copyright: 2011-2022 Dirk Hohndel, Linus Torvalds, Tomaz Canabrava, Berthold Stoeger, and others +Copyright: 2011-2024 Dirk Hohndel, Linus Torvalds, Tomaz Canabrava, Berthold Stoeger, and others License: GPL-2.0 Files: debian/* diff --git a/translations/subsurface_bg_BG.ts b/translations/subsurface_bg_BG.ts index eb9f578d2..61c72608e 100644 --- a/translations/subsurface_bg_BG.ts +++ b/translations/subsurface_bg_BG.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Версия: %1 © Subsurface екипа -2011-2022 +2011-2024 @@ -9395,8 +9395,8 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>мулти-платформен, гмуркачески регистър софтуер<br><span style='font-size: 8pt'>Линус Торвалдс, Дърк Хондел, Томаз Канабрава, Бертхолд Щогер и други, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>мулти-платформен, гмуркачески регистър софтуер<br><span style='font-size: 8pt'>Линус Торвалдс, Дърк Хондел, Томаз Канабрава, Бертхолд Щогер и други, 2011-2024</span> diff --git a/translations/subsurface_ca.ts b/translations/subsurface_ca.ts index 4ff010ac9..50a4b2606 100644 --- a/translations/subsurface_ca.ts +++ b/translations/subsurface_ca.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Versió: %1 © Equip de desenvolupament del Subsurface -2011-2022 +2011-2024 @@ -9399,8 +9399,8 @@ Fitxers amb una data/hora inapropiada - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Un programari multiplataforma per a enregistrar un diari de busseig<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger i altres, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Un programari multiplataforma per a enregistrar un diari de busseig<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger i altres, 2011-2024</span> diff --git a/translations/subsurface_cs.ts b/translations/subsurface_cs.ts index 3a87fa34d..57d55853e 100644 --- a/translations/subsurface_cs.ts +++ b/translations/subsurface_cs.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9286,7 +9286,7 @@ Soubory se špatným datem/časem - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_da_DK.ts b/translations/subsurface_da_DK.ts index 322decfb7..d6705ea3e 100644 --- a/translations/subsurface_da_DK.ts +++ b/translations/subsurface_da_DK.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9233,7 +9233,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_de_CH.ts b/translations/subsurface_de_CH.ts index 0f5582068..a3eba71d6 100644 --- a/translations/subsurface_de_CH.ts +++ b/translations/subsurface_de_CH.ts @@ -23,11 +23,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Version: %1 © Subsurface Entwicklungsteam -2011-2022 +2011-2024 @@ -9256,7 +9256,7 @@ Dateien mit unpassendem Datum/Zeit - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_de_DE.ts b/translations/subsurface_de_DE.ts index 932276caa..5bc2cab6d 100644 --- a/translations/subsurface_de_DE.ts +++ b/translations/subsurface_de_DE.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Version: %1 © Subsurface Entwicklungsteam -2011-2022 +2011-2024 @@ -9392,8 +9392,8 @@ Dateien mit unpassendem Datum/Zeit - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multiplattform-Tauchlogbuch-Software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, und andere, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multiplattform-Tauchlogbuch-Software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, und andere, 2011-2024</span> diff --git a/translations/subsurface_el_GR.ts b/translations/subsurface_el_GR.ts index ddab7adf8..7d77c19bf 100644 --- a/translations/subsurface_el_GR.ts +++ b/translations/subsurface_el_GR.ts @@ -23,7 +23,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9233,7 +9233,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_en_GB.ts b/translations/subsurface_en_GB.ts index aa1ff15fa..52dc7d587 100644 --- a/translations/subsurface_en_GB.ts +++ b/translations/subsurface_en_GB.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9397,8 +9397,8 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_en_US.ts b/translations/subsurface_en_US.ts index f4d0af445..b1eae3818 100644 --- a/translations/subsurface_en_US.ts +++ b/translations/subsurface_en_US.ts @@ -23,7 +23,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9225,7 +9225,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_es_ES.ts b/translations/subsurface_es_ES.ts index c55c4db14..201b4e0f4 100644 --- a/translations/subsurface_es_ES.ts +++ b/translations/subsurface_es_ES.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Versión: %1 © Equipo de desarrolladores de Subsurface -2011-2022 +2011-2024 @@ -9400,8 +9400,8 @@ Archivos con fecha/hora incorrectas - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Software de registro de inmersiones multiplataforma <br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Software de registro de inmersiones multiplataforma <br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_et_EE.ts b/translations/subsurface_et_EE.ts index e33bb1a79..e6db668f5 100644 --- a/translations/subsurface_et_EE.ts +++ b/translations/subsurface_et_EE.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9238,7 +9238,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_fi_FI.ts b/translations/subsurface_fi_FI.ts index 39e31e1a4..332f8bb99 100644 --- a/translations/subsurface_fi_FI.ts +++ b/translations/subsurface_fi_FI.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Versio: %1 © Subsurfacen kehitystiimi -2011-2022 +2011-2024 @@ -9376,8 +9376,8 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Sukelluslokiohjelmisto useille käyttöjärjestelmille<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger ja tiimi, 2011-2022 </span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Sukelluslokiohjelmisto useille käyttöjärjestelmille<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger ja tiimi, 2011-2024 </span> diff --git a/translations/subsurface_fr_FR.ts b/translations/subsurface_fr_FR.ts index 9b76628fd..49dec3154 100644 --- a/translations/subsurface_fr_FR.ts +++ b/translations/subsurface_fr_FR.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Version: %1 © L'équipe de développeur de Subsurface -2011-2022 +2011-2024 @@ -9293,8 +9293,8 @@ Fichiers avec dates/heures incorrectes - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Logiciel de carnet de plongées multiplateformes<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, et autres, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Logiciel de carnet de plongées multiplateformes<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, et autres, 2011-2024</span> diff --git a/translations/subsurface_he.ts b/translations/subsurface_he.ts index f4bb249ed..8bcd70d0f 100644 --- a/translations/subsurface_he.ts +++ b/translations/subsurface_he.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9292,7 +9292,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_hr_HR.ts b/translations/subsurface_hr_HR.ts index f062f9f66..afceb4b74 100644 --- a/translations/subsurface_hr_HR.ts +++ b/translations/subsurface_hr_HR.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9237,7 +9237,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_hu.ts b/translations/subsurface_hu.ts index 0cfa6fc91..7b3ebf09e 100644 --- a/translations/subsurface_hu.ts +++ b/translations/subsurface_hu.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9339,7 +9339,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_id.ts b/translations/subsurface_id.ts index 95aa5e61d..2d0015dc9 100644 --- a/translations/subsurface_id.ts +++ b/translations/subsurface_id.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9338,7 +9338,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_it_IT.ts b/translations/subsurface_it_IT.ts index 6ee3ea7ec..1b5314f42 100644 --- a/translations/subsurface_it_IT.ts +++ b/translations/subsurface_it_IT.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Versione: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9297,8 +9297,8 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Software multi-piattaforma per immersioni<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger e altri, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Software multi-piattaforma per immersioni<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger e altri, 2011-2024</span> diff --git a/translations/subsurface_ja_JP.ts b/translations/subsurface_ja_JP.ts index 94246c9da..944a80509 100644 --- a/translations/subsurface_ja_JP.ts +++ b/translations/subsurface_ja_JP.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9338,7 +9338,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_lv_LV.ts b/translations/subsurface_lv_LV.ts index f27d1f3df..06fce7000 100644 --- a/translations/subsurface_lv_LV.ts +++ b/translations/subsurface_lv_LV.ts @@ -23,7 +23,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9338,7 +9338,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_nb_NO.ts b/translations/subsurface_nb_NO.ts index d1e4fa1f4..c21c413bc 100644 --- a/translations/subsurface_nb_NO.ts +++ b/translations/subsurface_nb_NO.ts @@ -23,8 +23,8 @@ Version: %1 © Subsurface developer team -2011-2022 - Versjon: %1© Utviklerteamet til Subsurface 2011-2022 +2011-2024 + Versjon: %1© Utviklerteamet til Subsurface 2011-2024 @@ -9284,7 +9284,7 @@ Filer med upassende dykkedato/-tid - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_nl_NL.ts b/translations/subsurface_nl_NL.ts index 71ba381e0..189d14248 100644 --- a/translations/subsurface_nl_NL.ts +++ b/translations/subsurface_nl_NL.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Versie: %1 © Subsurface ontwikkelteam -2011-2022 +2011-2024 @@ -9397,8 +9397,8 @@ Bestanden met onjuiste datum/tijd - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform duiklog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger en anderen, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform duiklog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger en anderen, 2011-2024</span> diff --git a/translations/subsurface_pl_PL.ts b/translations/subsurface_pl_PL.ts index 7fead9d6a..02a169746 100644 --- a/translations/subsurface_pl_PL.ts +++ b/translations/subsurface_pl_PL.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9288,7 +9288,7 @@ Pliki z niepasującą datą/czasem - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_pt_BR.ts b/translations/subsurface_pt_BR.ts index 9d7164fed..a129a59ac 100644 --- a/translations/subsurface_pt_BR.ts +++ b/translations/subsurface_pt_BR.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9280,7 +9280,7 @@ Arquivos com data/hora inapropriados - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_pt_PT.ts b/translations/subsurface_pt_PT.ts index c97e35cd5..8c54c3f5e 100644 --- a/translations/subsurface_pt_PT.ts +++ b/translations/subsurface_pt_PT.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Versão: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9391,8 +9391,8 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1</span><br><br>Programa multi-plataforma para registo de mergulhos<br><span style='font-size: 8pt'> Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger e outros, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1</span><br><br>Programa multi-plataforma para registo de mergulhos<br><span style='font-size: 8pt'> Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger e outros, 2011-2024</span> diff --git a/translations/subsurface_ro_RO.ts b/translations/subsurface_ro_RO.ts index 493ff4802..3f3f008bd 100644 --- a/translations/subsurface_ro_RO.ts +++ b/translations/subsurface_ro_RO.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Versiunea: %1 © Echipa Subsurface -2011-2022 +2011-2024 @@ -9394,8 +9394,8 @@ Fisiere cu data/ora neconforme - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Software jurnal de scufundare multi platformă<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, și alții, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Software jurnal de scufundare multi platformă<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, și alții, 2011-2024</span> diff --git a/translations/subsurface_ru_RU.ts b/translations/subsurface_ru_RU.ts index 4b47c263c..795516472 100644 --- a/translations/subsurface_ru_RU.ts +++ b/translations/subsurface_ru_RU.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9238,7 +9238,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_sk_SK.ts b/translations/subsurface_sk_SK.ts index e2464a3b6..3327aa8a0 100644 --- a/translations/subsurface_sk_SK.ts +++ b/translations/subsurface_sk_SK.ts @@ -23,7 +23,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9228,7 +9228,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_source.ts b/translations/subsurface_source.ts index 50406013b..59f3f5ad7 100644 --- a/translations/subsurface_source.ts +++ b/translations/subsurface_source.ts @@ -25,7 +25,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9448,7 +9448,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_sv_SE.ts b/translations/subsurface_sv_SE.ts index b34078c20..e93597abe 100644 --- a/translations/subsurface_sv_SE.ts +++ b/translations/subsurface_sv_SE.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Version: %1 © Subsurface utvecklingsteam -2011-2022 +2011-2024 @@ -9295,8 +9295,8 @@ Filer med felaktig datum/tid - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Dykprogramvara med stöd för flera plattformar<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, och andra, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Dykprogramvara med stöd för flera plattformar<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, och andra, 2011-2024</span> diff --git a/translations/subsurface_tr.ts b/translations/subsurface_tr.ts index 96210a1b1..1a5dac4e3 100644 --- a/translations/subsurface_tr.ts +++ b/translations/subsurface_tr.ts @@ -24,11 +24,11 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 Versiyon: %1 © Subsurface geliştirme takımı -2011-2022 +2011-2024 @@ -9342,7 +9342,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_vi.ts b/translations/subsurface_vi.ts index 3a81c5274..a4471866d 100644 --- a/translations/subsurface_vi.ts +++ b/translations/subsurface_vi.ts @@ -23,7 +23,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9337,7 +9337,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span> diff --git a/translations/subsurface_zh_TW.ts b/translations/subsurface_zh_TW.ts index 998c7724c..a7395d6ae 100644 --- a/translations/subsurface_zh_TW.ts +++ b/translations/subsurface_zh_TW.ts @@ -24,7 +24,7 @@ Version: %1 © Subsurface developer team -2011-2022 +2011-2024 @@ -9289,7 +9289,7 @@ Files with inappropriate date/time - <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2022</span> + <span style='font-size: 18pt; font-weight: bold;'>Subsurface %1 </span><br><br>Multi-platform divelog software<br><span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, Berthold Stoeger, and others, 2011-2024</span>