diff --git a/.github/workflows/build-devel.yml b/.github/workflows/build-devel.yml index 0f75430c..4fbd18f3 100644 --- a/.github/workflows/build-devel.yml +++ b/.github/workflows/build-devel.yml @@ -25,14 +25,14 @@ defaults: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: # Do not wait up to the default of 10 minutes for network timeouts in a workflow which runs ca. 3 minutes. SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Caching Docker images is not ready yet, see # https://github.com/storeman-developers/harbour-storeman-installer/blob/devel/cache-docker-images_github-ci.md @@ -54,7 +54,7 @@ jobs: arch: i486 - name: Upload build result - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: RPM-build-results_devel-i486-SFOS3.3.0+ path: RPMS/ diff --git a/.github/workflows/build-sfos3.1.yml b/.github/workflows/build-sfos3.1.yml index ffeac511..324a59d6 100644 --- a/.github/workflows/build-sfos3.1.yml +++ b/.github/workflows/build-sfos3.1.yml @@ -32,14 +32,14 @@ concurrency: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: # Do not wait up to the default of 10 minutes for network timeouts in a workflow which runs ca. 5 minutes. SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Caching Docker images is not ready yet, see # https://github.com/storeman-developers/harbour-storeman-installer/blob/devel/cache-docker-images_github-ci.md @@ -66,7 +66,7 @@ jobs: arch: i486 - name: Upload build results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: RPM-build-results_SFOS3.1.0-3.2.1 path: RPMS/ diff --git a/.github/workflows/build-sfos3.3.yml b/.github/workflows/build-sfos3.3.yml index 5faa3a67..afa4105f 100644 --- a/.github/workflows/build-sfos3.3.yml +++ b/.github/workflows/build-sfos3.3.yml @@ -32,14 +32,14 @@ concurrency: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: # Do not wait up to the default of 10 minutes for network timeouts in a workflow which runs ca. 10 minutes. SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Caching Docker images is not ready yet, see # https://github.com/storeman-developers/harbour-storeman-installer/blob/devel/cache-docker-images_github-ci.md @@ -72,7 +72,7 @@ jobs: arch: i486 - name: Upload build results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: RPM-build-results_SFOS3.3.0-4.1.0 path: RPMS/ diff --git a/.github/workflows/build-sfos4.2.yml b/.github/workflows/build-sfos4.2.yml index 62c7537f..7915e40b 100644 --- a/.github/workflows/build-sfos4.2.yml +++ b/.github/workflows/build-sfos4.2.yml @@ -32,14 +32,14 @@ concurrency: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: # Do not wait up to the default of 10 minutes for network timeouts in a workflow which runs ca. 10 minutes. SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Caching Docker images is not ready yet, see # https://github.com/storeman-developers/harbour-storeman-installer/blob/devel/cache-docker-images_github-ci.md @@ -72,7 +72,7 @@ jobs: arch: i486 - name: Upload build results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: RPM-build-results_SFOS4.2.0+ path: RPMS/ diff --git a/.github/workflows/build-sfos4.2_sdk-4.3.yml b/.github/workflows/build-sfos4.2_sdk-4.3.yml new file mode 100644 index 00000000..5a0c81ea --- /dev/null +++ b/.github/workflows/build-sfos4.2_sdk-4.3.yml @@ -0,0 +1,86 @@ +name: CI - sfos4.2 branch on SDK for 4.3.0 (aarch64,armv7hl,i486) + +env: + # For the available docker images, see https://github.com/CODeRUS/docker-sailfishos-platform-sdk + # Binaries for 4.3.0 are known to run on the most recent SFOS release (5.0.0 as of April 2025), + # but when this breaks a new CI workflow configuration file shall be created from this one for the + # "oldest common denominator"-SDK known to generate binaries which run on the then current SailfishOS release. + RELEASE: 4.3.0.12 + +on: + push: + tags: + - 'release*_sfos4.2/*' + - 'rc*_sfos4.2/*' + - 'beta*_sfos4.2/*' + - 'alpha*_sfos4.2/*' + - 'sfos4.2/*' + # Allows to run this workflow manually from the Actions tab. + #workflow_dispatch: + # Rather set a new release in the spec file and a new tag in the format N/X.Y.Z (e.g., release2_sfos4.2/0.6.3) to build a release version again. + +defaults: + run: + # Note that 'bash' provides -o pipefail, in contrast to the default (i.e., unspecified, which also uses bash) or 'sh', + # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell + shell: sh + +# See, e.g.: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow +concurrency: + group: ci-${{ github.ref_name }} + # 'false' (default) allows for two concurrent runs, one executing and one freshly enqueued; 'true' for only one; no 'concurrency:' defined for multiple. + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-24.04 + env: + # Do not wait up to the default of 10 minutes for network timeouts in a workflow which runs ca. 10 minutes. + SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 + steps: + + - name: Checkout + uses: actions/checkout@v4 + + # Caching Docker images is not ready yet, see + # https://github.com/storeman-developers/harbour-storeman-installer/blob/devel/cache-docker-images_github-ci.md + #- name: Cache Docker images of the Sailfish-SDK + # id: cache-sdk + # uses: actions/cache@v3 + # with: + # path: $GITHUB_WORKSPACE/… + # key: cache + + - name: Prepare + run: mkdir RPMS + + - name: Build aarch64 on ${{ env.RELEASE }} + uses: coderus/github-sfos-build@master + with: + release: ${{ env.RELEASE }} + arch: aarch64 + + - name: Build armv7hl on ${{ env.RELEASE }} + uses: coderus/github-sfos-build@master + with: + release: ${{ env.RELEASE }} + arch: armv7hl + + - name: Build i486 on ${{ env.RELEASE }} + uses: coderus/github-sfos-build@master + with: + release: ${{ env.RELEASE }} + arch: i486 + + - name: Upload build results + uses: actions/upload-artifact@v4 + with: + name: RPM-build-results_SFOS4.3.0+ + path: RPMS/ + +# Just for fun, see https://feathericons.com/ and +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#branding +#branding: # "Invalid workflow file: Unexpected value 'branding'"; maybe action MUST be located in '/' or the name MUST be action.yml or both, see e.g., https://github.com/actions/cache/blob/main/action.yml#L37 +# icon: 'gift' +# color: 'purple' + diff --git a/.github/workflows/build-sfos4.2_latest.yml b/.github/workflows/build-sfos4.2_sdk-latest.yml similarity index 92% rename from .github/workflows/build-sfos4.2_latest.yml rename to .github/workflows/build-sfos4.2_sdk-latest.yml index 192a5ac4..8f27e639 100644 --- a/.github/workflows/build-sfos4.2_latest.yml +++ b/.github/workflows/build-sfos4.2_sdk-latest.yml @@ -1,8 +1,8 @@ name: CI - sfos4.2 branch on latest SDK (aarch64,armv7hl,i486) env: - # For the latest available docker image, see https://github.com/CODeRUS/docker-sailfishos-platform-sdk - RELEASE: 4.5.0.16 + # For the available docker images, see https://github.com/CODeRUS/docker-sailfishos-platform-sdk + RELEASE: 5.0.0.43 on: push: @@ -33,14 +33,14 @@ concurrency: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: # Do not wait up to the default of 10 minutes for network timeouts in a workflow which runs ca. 10 minutes. SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Caching Docker images is not ready yet, see # https://github.com/storeman-developers/harbour-storeman-installer/blob/devel/cache-docker-images_github-ci.md @@ -73,7 +73,7 @@ jobs: arch: i486 - name: Upload build results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: RPM-build-results_SFOS${{ env.RELEASE }}+ path: RPMS/ diff --git a/README.md b/README.md index bbf98738..df44eec5 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The [Storeman Installer](https://github.com/storeman-developers/harbour-storeman ## Important notes * If you experience issues when installing, removing or updating packages after a SailfishOS upgrade, try running `devel-su pkcon refresh` in a terminal app. -* Starting with version 0.2.9, Storeman is built by the help of the SailfishOS-OBS and initially installed by the Storeman Installer (or manually). To update from Storeman < 0.2.9 (needs SailfishOS ≥ 3.1.0), one should reinstall Storeman via the Storeman Installer (which installs the current Storeman release, and since Storeman Installer 1.3.0 automatically removes a Storeman < 0.3.0 before that) or manually remove Storeman < 0.2.9 and install Storeman ≥ 0.3.0. After an initial installation of Storeman ≥ 0.3.0, further updates of Storeman will be performed within Storeman, as usual. +* Starting with version 0.2.9, Storeman is built by the help of the SailfishOS-OBS and initially installed by the Storeman Installer (or manually). To update from Storeman < 0.2.9 (requires SailfishOS ≥ 3.1.0), one should either reinstall Storeman via the Storeman Installer (which installs the current Storeman release from the SailfishOS-OBS for SailfishOS ≥ 3.4.0, and since Storeman Installer 1.3.0 automatically removes a Storeman < 0.3.0 before that), or manually remove Storeman < 0.2.9 and install Storeman ≥ 0.3.0. After an initial installation of Storeman ≥ 0.3.0, further updates of Storeman will be performed within Storeman, as usual. * Before software can be build for a new SailfishOS release at the SailfishOS-OBS, Jolla must create a [corresponding "download on demand (DoD)" OBS-repository](https://build.sailfishos.org/project/subprojects/sailfishos). Before that is employed by Jolla, Storeman's download repository for this new SailfishOS release will usually be mapped to the prior SailfishOS release by [its OBS-meta-configuration](https://build.sailfishos.org/project/meta/home:olf:harbour-storeman), in hope that there is no change in the new SailfishOS release which breaks Storeman; if there is, please report that soon at [Storeman's issue tracker](https://github.com/storeman-developers/harbour-storeman/issues). * Disclaimer: Storeman and its installer may still have flaws, kill your kittens or break your SailfishOS installation! Although this is very unlikely after years of testing by many users, new flaws may be introduced in any release (as for any software). Mind that the license you implicitly accept by using Storeman or Storeman Installer excludes any liability. diff --git a/qml/models/TranslatorsModel.qml b/qml/models/TranslatorsModel.qml index 70b5ed72..3f40f6ba 100644 --- a/qml/models/TranslatorsModel.qml +++ b/qml/models/TranslatorsModel.qml @@ -77,7 +77,9 @@ ListModel { ListElement { name: "raketti" }, ListElement { name: "direc85" } ] - reviewers: [] + reviewers: [ + ListElement { name: "tuplasuhveli" } + ] } ListElement { @@ -113,7 +115,9 @@ ListModel { translators: [ ListElement { name: "claustn" } ] - reviewers: [] + reviewers: [ + ListElement { name: "legacychimera247" } + ] } ListElement { @@ -139,7 +143,9 @@ ListModel { coordinators: [ ListElement { name: "storeslem" } ] - translators: [] + translators: [ + ListElement { name: "fsilye" } + ] reviewers: [] } diff --git a/qml/pages/AuthorisationDialog.qml b/qml/pages/AuthorisationDialog.qml index ea8b65c4..6a500323 100644 --- a/qml/pages/AuthorisationDialog.qml +++ b/qml/pages/AuthorisationDialog.qml @@ -60,8 +60,8 @@ Dialog { TextField { id: usernameField width: parent.width - //: A translated string should not be longer than the original - //% "Username or e-mail address" + //: A translated string should comprise less than 27 characters + //% "Username" placeholderText: qsTrId("orn-username") label: placeholderText validator: RegExpValidator { diff --git a/rpm/harbour-storeman.changes b/rpm/harbour-storeman.changes index 446d7dc3..ab290ab4 100644 --- a/rpm/harbour-storeman.changes +++ b/rpm/harbour-storeman.changes @@ -1,3 +1,8 @@ +* Mon Feb 02 2026 olf - 0.7.3 +- Update translations: Tartar (`tt`) by @arustg (#517), Swedish (`sv`) by @eson57 (#516), Slovenian (`sl`; #525), Slovak (`sk`) by @holask (#524), French (`fr`; #520), Estonian (`et`) by [**tlend\@transifex**](https://app.transifex.com/user/profile/tlend/) (#519), German (`de`; #518), Hungarian (`hu`) by @martonmiklos (#521), Spanish (`es`) by @carmenfdezb (#526), Polish (`pl`) by @atlochowski (#522), Russian (`ru`) by @dikonov / @arustg (#523), Finnish (`fi`) by @tuplasuhveli (#531, #534) +- Revived Italian (`it`) translation by @legacychimera247 (#532). +- Overhaul Norwegian (Bokmål) translation (`no`; #537, #538) + * Mon Nov 25 2024 olf - 0.7.2 - Rework OBS repository handling, part 2: Improve (#498) - Fix, comment and enhance `%post` scriptlet (#505) diff --git a/rpm/harbour-storeman.spec b/rpm/harbour-storeman.spec index c24ebfa3..d0186b19 100644 --- a/rpm/harbour-storeman.spec +++ b/rpm/harbour-storeman.spec @@ -3,7 +3,7 @@ Name: harbour-storeman Summary: OpenRepos client application for SailfishOS # The tag must adhere to semantic versioning: Among multiple other # reasons due to its use for `qmake5` in line 107. See https://semver.org/ -Version: 0.7.2 +Version: 0.7.3 # The tag comprises one of {alpha,beta,rc,release} postfixed with a # natural number greater or equal to 1 (e.g., "beta3") and may additionally be # postfixed with a plus character ("+"), the name of the packager and a release @@ -14,7 +14,7 @@ Version: 0.7.2 # build at GitHub and OBS, when configured accordingly; mind the sorting # (`adud` < `alpha`). For details and reasons, see # https://github.com/storeman-developers/harbour-storeman/wiki/Git-tag-format -Release: release2_%{branch} +Release: release1_%{branch} # The Group tag should comprise one of the groups listed here: # https://github.com/mer-tools/spectacle/blob/master/data/GROUPS Group: Software Management/Package Manager diff --git a/translations/README.md b/translations/README.md index e55befef..98d183f0 100644 --- a/translations/README.md +++ b/translations/README.md @@ -6,7 +6,7 @@ Note that for Storeman principally translations designated with a country code o [Transifex](https://app.transifex.com/mentaljam/harbour-storeman) is the preferred way of submitting translations. Please do not send pull requests (PRs) with translations directly to GitHub, if you have a Transifex account. -If you do not want to use Atlassian's Transifex, alternatives are [Qt Linguist](https://doc.qt.io/qt-5/linguist-translators.html) or to perform this manually, which is tediously and error prone, hence only suitable for small changes. The resulting changes must be submitted as a pull request. +If you do not want to use Atlassian's Transifex, alternatives are [Qt Linguist](https://doc.qt.io/qt-5/linguist-translators.html) or to perform this manually, which is tedious and error prone, hence only suitable for small changes. The resulting changes must be submitted as a pull request, unfortunately. ### Testing translations diff --git a/translations/harbour-storeman-cs.ts b/translations/harbour-storeman-cs.ts index 2756741b..67af3064 100644 --- a/translations/harbour-storeman-cs.ts +++ b/translations/harbour-storeman-cs.ts @@ -406,9 +406,9 @@ Přihlásit - Username or e-mail address - A translated string should not be longer than the original - Uživatelské jméno nebo e-mail + Username + A translated string should comprise less than 27 characters + Uživatelské jméno Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-da.ts b/translations/harbour-storeman-da.ts index ea0c36d6..47cc3cda 100644 --- a/translations/harbour-storeman-da.ts +++ b/translations/harbour-storeman-da.ts @@ -404,8 +404,8 @@ - Username or e-mail address - A translated string should not be longer than the original + Username + A translated string should comprise less than 27 characters diff --git a/translations/harbour-storeman-de.ts b/translations/harbour-storeman-de.ts index c962640f..20ff9ce9 100644 --- a/translations/harbour-storeman-de.ts +++ b/translations/harbour-storeman-de.ts @@ -397,9 +397,9 @@ Anmelden - Username or e-mail address - A translated string should not be longer than the original - Benutzername oder E-Mail-Adresse + Username + A translated string should comprise less than 27 characters + Benutzername Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-el.ts b/translations/harbour-storeman-el.ts index f060c064..9a7993f0 100644 --- a/translations/harbour-storeman-el.ts +++ b/translations/harbour-storeman-el.ts @@ -404,9 +404,9 @@ Σύνδεση - Username or e-mail address - A translated string should not be longer than the original - Όνομα χρήστη ή ηλεκτρονική διεύθυνση + Username + A translated string should comprise less than 27 characters + Όνομα χρήστη Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-es.ts b/translations/harbour-storeman-es.ts index d6b4b736..adb70793 100644 --- a/translations/harbour-storeman-es.ts +++ b/translations/harbour-storeman-es.ts @@ -71,7 +71,7 @@ Eliminando - An error occured + An error occurred Se produjo un error @@ -116,7 +116,7 @@ yyyy-MM-dd hh:mm - Output format for the date labels. For details visit http://doc.qt.io/qt-5/qdate.html#toString + Output format for the date labels. For details visit https://doc.qt.io/qt-5/qdate.html#toString hh:mm dd-MM-yyyy @@ -330,7 +330,8 @@ Desliza hacia abajo para actualizar - Development + Credits + Acknowledgements for contributions - should be a noun Desarrollo @@ -338,11 +339,11 @@ Desarrolladores - Application Icon + Application icon Icono de la aplicación - Source Code + Source code & Issue tracker Código fuente @@ -351,11 +352,11 @@ %n minute(s) ago - hace %n minutohace %n minutos + hace %n minutohace %n minutoshace %n minutos %n hour(s) ago - hace %n horahace %n horas + hace %n horahace %n horashace %n horas Reply to %0 @@ -396,9 +397,9 @@ Iniciar sesión - Username or e-mail address - A translated string should not be longer than the original - Nombre de usuario o correo + Username + A translated string should comprise less than 27 characters + Nombre de usuario Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. @@ -528,7 +529,7 @@ Nothing provides %1 needed by %2 - A template string for a dependecy resolution error. %1 is a dependency and %2 is a failed package. + A template string for a dependency resolution error. %1 is a dependency and %2 is a failed package. No se encuentra %1, necesario para instalar %2 @@ -710,7 +711,7 @@ %n operations are in progress There are always more than 1 operations - %n operación en curso%n operaciones en curso + %n operación en curso%n operaciones en curso%n operaciones en curso Available version @@ -764,11 +765,11 @@ %n minute(s) - %n minuto%n minutos + %n minuto%n minutos%n minutos %n hour(s) - %n hora%n horas + %n hora%n horas%n horas S @@ -996,6 +997,7 @@ Donation + Should be a noun Donar @@ -1007,8 +1009,8 @@ El paquete %0 se actualizó correctamente - <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Issues shall be reported preferably at GitHub or alternatively at OpenRepos (use the buttons below).</p> - Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software). + <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Any issues (bug reports, feature suggestions, help requests etc.) shall be filed at GitHub (you may use the button below).</p> + Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software), just keep it as "(FLOSS)". <p>Cliente de OpenRepos para SailfishOS<br />&nbsp;</p><p>Este es un programa de código abierto que se distribuye bajo los términos de la <a href='%1'>licencia&nbsp;MIT</a>.</p><p>Puedes informar de un problema en GitHub o en OpenRepos (usa los botones de abajo).</p> @@ -1060,4 +1062,4 @@ Repositorio OBS de Storeman - + \ No newline at end of file diff --git a/translations/harbour-storeman-et.ts b/translations/harbour-storeman-et.ts index 475b57e0..cf315108 100644 --- a/translations/harbour-storeman-et.ts +++ b/translations/harbour-storeman-et.ts @@ -397,9 +397,9 @@ Logi sisse - Username or e-mail address - A translated string should not be longer than the original - Kasutajanimi või e-post + Username + A translated string should comprise less than 27 characters + Kasutajanimi Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-fi.ts b/translations/harbour-storeman-fi.ts index 92534ed8..41cd40a0 100644 --- a/translations/harbour-storeman-fi.ts +++ b/translations/harbour-storeman-fi.ts @@ -1,8 +1,6 @@ - - - + - + Not rated yet Ei arvioita @@ -73,7 +71,7 @@ Poistetaan - An error occured + An error occurred Tapahtui virhe @@ -98,11 +96,11 @@ Package %0 was successfully installed - %0 paketti asennettiin onnistuneesti + Paketti %0 asennettiin onnistuneesti Package %0 was successfully removed - %0 paketti poistettiin onnistuneesti + Paketti 0% poistettiin onnistuneesti Installed @@ -118,7 +116,7 @@ yyyy-MM-dd hh:mm - Output format for the date labels. For details visit http://doc.qt.io/qt-5/qdate.html#toString + Output format for the date labels. For details visit https://doc.qt.io/qt-5/qdate.html#toString hh:mm, dd.MM.yyyy @@ -179,7 +177,7 @@ Patches - Käyttöjärjestelmän muokkaukset + Muutostiedostot Photo & video @@ -332,7 +330,8 @@ Virkistä vetämällä alas - Development + Credits + Acknowledgements for contributions - should be a noun Kehitys @@ -340,12 +339,12 @@ Kehittäjät - Application Icon + Application icon Sovelluksen kuvake - Source Code - Lähdekoodi + Source code & Issue tracker + Lähdekoodi ja ongelmien seuranta Just now @@ -353,17 +352,11 @@ %n minute(s) ago - - %n minuutti sitten - %n minuuttia sitten - + %n minuutti sitten%n minuuttia sitten %n hour(s) ago - - %n tunti sitten - %n tuntia sitten - + %n tunti sitten%n tuntia sitten Reply to %0 @@ -404,9 +397,9 @@ Kirjaudu sisään - Username or e-mail address - A translated string should not be longer than the original - Käyttäjänimi tai sähköposti + Username + A translated string should comprise less than 27 characters + Käyttäjänimi Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. @@ -536,7 +529,7 @@ Nothing provides %1 needed by %2 - A template string for a dependecy resolution error. %1 is a dependency and %2 is a failed package. + A template string for a dependency resolution error. %1 is a dependency and %2 is a failed package. %2 tarvitsee paketin %1, jota ei löydy @@ -718,10 +711,7 @@ %n operations are in progress There are always more than 1 operations - - Suoritetaan %n operaatiota - Suoritetaan %n operaatiota - + Suoritetaan %n operaatiotaSuoritetaan %n operaatiota Available version @@ -775,17 +765,11 @@ %n minute(s) - - %n minuutti - %n minuuttia - + %n minuutti%n minuuttia %n hour(s) - - %n tunti - %n tuntia - + %n tunti%n tuntia S @@ -794,7 +778,7 @@ Swipe to see all the tag buttons - Pyyhkäise nähdäksesi kaikki avainsanapainikkeet + Pyyhkäise nähdäksesi kaikki tunnistepainikkeet Deep Thought @@ -837,11 +821,11 @@ Log in to rate the application - Kirjaudu arvostelleksesi sovellus + Kirjaudu arvostellaksesi sovellus Tap to rate the application - Paina arvostelleksesi sovellus + Paina arvostellaksesi sovellus Local RPM files @@ -1013,6 +997,7 @@ Donation + Should be a noun lahjoitus @@ -1024,8 +1009,8 @@ Paketti %0 päivitettiin onnistuneesti - <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Issues shall be reported preferably at GitHub or alternatively at OpenRepos (use the buttons below).</p> - Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software). + <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Any issues (bug reports, feature suggestions, help requests etc.) shall be filed at GitHub (you may use the button below).</p> + Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software), just keep it as "(FLOSS)". <p>OpenRepos-sovelluskauppa SailfishOS:lle<br />&nbsp;</p><p>Storeman on avoimen lähdekoodin sovellus, joka käyttää <a href='%1'>MIT-lisenssiä</a>.</p><p>Voit raportoida ongelmista GitHub-projektissa, tai OpenRepos-sivulla (allaolevat painikkeet).</p> @@ -1066,15 +1051,15 @@ Check for self-updates - + Tarkista sovelluksen päivitykset Enable the Storeman OBS repository to check for Storeman updates - + Ota Storeman OBS -pakettilähde käyttöön Storemanin päivitysten tarkistusta varten Storeman OBS Repository - + Storeman OBS -pakettilähde - + \ No newline at end of file diff --git a/translations/harbour-storeman-fr.ts b/translations/harbour-storeman-fr.ts index 7c938163..4de2c155 100644 --- a/translations/harbour-storeman-fr.ts +++ b/translations/harbour-storeman-fr.ts @@ -397,9 +397,9 @@ Connexion - Username or e-mail address - A translated string should not be longer than the original - Nom d'utilisateur ou adresse mail + Username + A translated string should comprise less than 27 characters + Nom d'utilisateur Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-hu.ts b/translations/harbour-storeman-hu.ts index a097af3e..c7c07799 100644 --- a/translations/harbour-storeman-hu.ts +++ b/translations/harbour-storeman-hu.ts @@ -71,7 +71,7 @@ Eltávolítás - An error occured + An error occurred Hiba történt @@ -116,7 +116,7 @@ yyyy-MM-dd hh:mm - Output format for the date labels. For details visit http://doc.qt.io/qt-5/qdate.html#toString + Output format for the date labels. For details visit https://doc.qt.io/qt-5/qdate.html#toString yyyy.MM.dd. hh:mm @@ -330,7 +330,8 @@ Húzd le a frissítéshez - Development + Credits + Acknowledgements for contributions - should be a noun Fejlesztés @@ -338,11 +339,11 @@ Fejlesztők - Application Icon + Application icon Alkalmazásikon - Source Code + Source code & Issue tracker Forráskód @@ -396,8 +397,8 @@ Bejelentkezés - Username or e-mail address - A translated string should not be longer than the original + Username + A translated string should comprise less than 27 characters Felhasználónév @@ -528,7 +529,7 @@ Nothing provides %1 needed by %2 - A template string for a dependecy resolution error. %1 is a dependency and %2 is a failed package. + A template string for a dependency resolution error. %1 is a dependency and %2 is a failed package. A(z) %2 által igényelt %1 függőség nem telepíthető @@ -996,6 +997,7 @@ Donation + Should be a noun Adományozz @@ -1007,8 +1009,8 @@ A(z) %0 csomag sikeresen frissült - <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Issues shall be reported preferably at GitHub or alternatively at OpenRepos (use the buttons below).</p> - Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software). + <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Any issues (bug reports, feature suggestions, help requests etc.) shall be filed at GitHub (you may use the button below).</p> + Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software), just keep it as "(FLOSS)". <p>OpenRepos kliens SailfishOS-re<br />&nbsp;</p><p>Ez egy nyílt forrású szoftver, amely a <a href='%1'>MIT&nbsp;licenc</a> hatálya alá esik.</p><p>Hibákat jelenthetsz az GitHub, vagy a OpenRepos oldalon (használd az alábbi gombokat).</p> @@ -1060,4 +1062,4 @@ Storeman OBS tároló - + \ No newline at end of file diff --git a/translations/harbour-storeman-it.ts b/translations/harbour-storeman-it.ts index 50525d97..15632c8a 100644 --- a/translations/harbour-storeman-it.ts +++ b/translations/harbour-storeman-it.ts @@ -1,11 +1,9 @@ - - - + - + Not rated yet - Nessun voto + Ancora nessun voto Repositories @@ -73,7 +71,7 @@ Rimozione - An error occured + An error occurred Errore @@ -118,7 +116,7 @@ yyyy-MM-dd hh:mm - Output format for the date labels. For details visit http://doc.qt.io/qt-5/qdate.html#toString + Output format for the date labels. For details visit https://doc.qt.io/qt-5/qdate.html#toString dd MMM yyyy hh:mm @@ -332,7 +330,8 @@ Trascina in basso per ricaricare - Development + Credits + Acknowledgements for contributions - should be a noun Sviluppo @@ -340,11 +339,11 @@ Sviluppatori - Application Icon + Application icon Icona applicazione - Source Code + Source code & Issue tracker Codice sorgente @@ -353,17 +352,11 @@ %n minute(s) ago - - %n minuto fa - %n minuti fa - + %n minuto fa%n minuti fa%n minuti fa %n hour(s) ago - - %n ora fa - %n ore fa - + %n ora fa%n ore fa%n ore fa Reply to %0 @@ -404,9 +397,9 @@ Accedi - Username or e-mail address - A translated string should not be longer than the original - Nome utente o indirizzo email + Username + A translated string should comprise less than 27 characters + Nome utente Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. @@ -536,7 +529,7 @@ Nothing provides %1 needed by %2 - A template string for a dependecy resolution error. %1 is a dependency and %2 is a failed package. + A template string for a dependency resolution error. %1 is a dependency and %2 is a failed package. Niente fornisce %1 richiesto da %2 @@ -718,10 +711,7 @@ %n operations are in progress There are always more than 1 operations - - %n operazione in corso - %n operazioni in corso - + %n operazione in corso%n operazioni in corso%n operazioni in corso Available version @@ -775,17 +765,11 @@ %n minute(s) - - %n minuto - %n minuti - + %n minuto%n minuti%n minuti %n hour(s) - - %n ora - %n ore - + %n ora%n ore%n ore S @@ -1009,10 +993,11 @@ My repository - Le mie repository + Repository attivi Donation + Should be a noun Dona @@ -1024,57 +1009,57 @@ %0 è stato aggiornato correttamente - <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Issues shall be reported preferably at GitHub or alternatively at OpenRepos (use the buttons below).</p> - Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software). - + <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Any issues (bug reports, feature suggestions, help requests etc.) shall be filed at GitHub (you may use the button below).</p> + Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software), just keep it as "(FLOSS)". + <p>Client per OpenRepos per SailfishOS<br />&nbsp;</p><p>Storeman è software libero (FLOSS) sotto i termini della <a href='%1'>licenza MIT&nbsp;</a>.</p><p> Qualsiasi problema (sia esso una segnalazione di un bug, un suggerimento, una richiesta d'aiuto ecc.) va segnalato su GitHub ( puoi usare il pulsante qui di fianco).</p> Show details - + Mostra dettagli Unused repositories found - + Repository inutilizzati trovati Unused repositories not found - + Nessun repository inutilizzato trovato Search for unused - + Cerca per inutilizzati Search for unused repositories - + Cerca per repository inutilizzati Search for unused repositories after removing packages. - + Cerca per repository inutilizzati dopo aver rimosso i pacchetti. Unused repositories - + Repository inutilizzati <p>There are no installed packages for the next repositories.</p><p>Do you want to remove them now?</p> - + <p>Non ci sono pacchetti installati per i prossimi repository.</p><p>Vuoi rimuoverli adesso?</p> At least 10 minutes - + Almeno 10 minuti Check for self-updates - + Controlla per aggiornamenti automatici Enable the Storeman OBS repository to check for Storeman updates - + Abilita il repository OBS di storeman per controllare gli aggiornamenti di Storeman Storeman OBS Repository - + Repository OBS di Storeman - + \ No newline at end of file diff --git a/translations/harbour-storeman-nl.ts b/translations/harbour-storeman-nl.ts index b5756615..4c9cbb78 100644 --- a/translations/harbour-storeman-nl.ts +++ b/translations/harbour-storeman-nl.ts @@ -404,9 +404,9 @@ Aanmelden - Username or e-mail address - A translated string should not be longer than the original - Gebruikersnaam of e-mailadres + Username + A translated string should comprise less than 27 characters + Gebruikersnaam Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-nl_BE.ts b/translations/harbour-storeman-nl_BE.ts index 8e37c4f6..7dc80d39 100644 --- a/translations/harbour-storeman-nl_BE.ts +++ b/translations/harbour-storeman-nl_BE.ts @@ -404,9 +404,9 @@ Aanmelden - Username or e-mail address - A translated string should not be longer than the original - Gebruikersnaam of e-mailadres + Username + A translated string should comprise less than 27 characters + Gebruikersnaam Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-no.ts b/translations/harbour-storeman-no.ts index c00ef7c1..211c623a 100644 --- a/translations/harbour-storeman-no.ts +++ b/translations/harbour-storeman-no.ts @@ -1,8 +1,6 @@ - - - + - + Not rated yet Ikke vurdert foreløpig @@ -73,7 +71,7 @@ Fjerner - An error occured + An error occurred En feil oppstod @@ -118,7 +116,7 @@ yyyy-MM-dd hh:mm - Output format for the date labels. For details visit http://doc.qt.io/qt-5/qdate.html#toString + Output format for the date labels. For details visit https://doc.qt.io/qt-5/qdate.html#toString yyyy-MM-dd hh:mm @@ -131,11 +129,11 @@ More by %0 - + Mer av %0 Coding Competition - + Kodekonkurranse Applications @@ -151,7 +149,7 @@ Business - + Kontor City guides & maps @@ -179,7 +177,7 @@ Patches - + Patcher Photo & video @@ -203,7 +201,7 @@ Utilities - + Verketøy Games @@ -243,7 +241,7 @@ Trivia - + Kuriosa Translations @@ -259,7 +257,7 @@ Update available - Oppdatering tilgjengelig + Oppdatering tilgjengelig Update @@ -288,7 +286,7 @@ Try to change search keywords - Forsøk å endre på søkeord + Forsøk å endre på søkeord Search @@ -309,7 +307,7 @@ Translations - Språk + Oversettelser Coordinators @@ -321,7 +319,7 @@ Reviewers - + Redigenter A network error occurred @@ -329,23 +327,24 @@ Pull down to refresh - + Dra ned for å oppdatere - Development - + Credits + Acknowledgements for contributions - should be a noun + Utvikling Developers Utviklere - Application Icon - Applikasjons icon + Application icon + Applikasjonsikon - Source Code - Kildekode + Source code & Issue tracker + Kildekode og problemsporing Just now @@ -353,22 +352,16 @@ %n minute(s) ago - - - - + %n minutt siden%n minutter siden %n hour(s) ago - - - - + %n time siden%n timer siden Reply to %0 Active label to navigate to the original comment - should be a noun - + Svar til %0 Categories @@ -376,7 +369,7 @@ Currently there are no apps in this category - + Det finnes foreløpig ingen apper i denne kategorien. Unknown category @@ -404,29 +397,29 @@ Logg inn - Username or e-mail address - A translated string should not be longer than the original - Brukernavn eller epostadresse + Username + A translated string should comprise less than 27 characters + Brukernavn Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. - + Logg inn på OpenRepos.net for å kommentere apper og svare på andres kommentarer.<br /><br />Storeman sender ikke passordet ditt til tredjepart. You have successfully logged in to the OpenRepos.net - Du er pålogget openrepos.net + Du er pålogget OpenRepos.net You have logged out from the OpenRepos.net - Du er utlogget fra OpenRepos.net + Du er logget ut fra OpenRepos.net Login error - Feil ved innlogging + Feil ved pålogging Could not log in the OpenRepos.net - check your credentials and network connection - Kunne ikke logge på openrepos.net. Kontroller brukernavn og passord. Sjekk internett forbindelsen din. + Kunne ikke logge på OpenRepos.net - Kontroller brukernavn, passord og internettforbindelsen din. Logged in as %0 @@ -449,7 +442,7 @@ Update Update a comment - Oppdatering + Oppdater Send @@ -465,7 +458,7 @@ Click to reauthorise - Reautorisere + Klikk for å reautorisere Enable all @@ -489,11 +482,11 @@ The app was added to bookmarks - Program lagt til + Program lagt til i bokmerker The app was removed from bookmarks - Programmet ble fjernet fra bookmarks + Programmet ble fjernet fra bokmerker Your bookmarked applications will be shown here @@ -505,15 +498,15 @@ No OpenRepos repositories have been added yet - + Det er ingen OpenRepos‑pakkebrønner lagt til ennå. You can add a repository from an application page - + Du kan legge til en pakkebrønn fra appens side. Refresh cache - + Last inn cache på nytt U @@ -536,8 +529,8 @@ Nothing provides %1 needed by %2 - A template string for a dependecy resolution error. %1 is a dependency and %2 is a failed package. - + A template string for a dependency resolution error. %1 is a dependency and %2 is a failed package. + Ingenting tilbyr %1 som kreves av %2. Backups @@ -545,19 +538,19 @@ Backup and restore repos and installed apps - + Sikkerhetskopier og gjenopprett arkiver og installerte apper Create a backup - + Lag en sikkerhetskopi Backup error - + Feil ved sikkerhetskopiering Could not create directory - + Kunne ikke opprette katalog Restore from a file @@ -569,67 +562,69 @@ Restore OpenRepos repositories and installed apps from the selected file. This action will not affect your current repositories and will not remove installed applications. - + Gjenopprett OpenRepos‑pakkebrønner og installerte apper fra valgt fil. Denne handlingen påvirker ikke dine nåværende depoter og vil ikke fjerne installerte apper. Created - + Opprettet Total repositories - + Totalt antall pakkebrønner Details - + Detaljer Backups will be shown here - + Sikkerhetskopier vil vises her Restoring repositories - + Gjenoppretter pakkebrønner Refreshing repositories - + Oppdaterer pakkebrønner Searching packages - + Søker etter pakker Installing packages - + Installerer pakker Restoring - + Gjenoppretter Successful backup - + Sikkerhetskopiering fullført Successful restore - + Gjenoppretting fullført Installed packages - + Installerte pakker Login to comment - + Logg på for å kommentere Backup - + Sikkerhetskopi <h2>Backup to a file</h2><br /><p>Backup allows you to save your current OpenRepos repositories, installed applications and bookmarks and restore them later (for example after factory reset). A backup is a local file that is saved to the<br /><i>~/Documents/Storeman</i> directory.</p><br /><p><b>Attention!</b> You should copy your backups manually to some safe place before performing a factory reset. It could be your SD card, external device, cloud storage or something else.</p> - + <h2>Backup til fil</h2><br /><p>Backup lar deg lagre dine nåværende OpenRepos‑pakkebrønner, installerte apper og bokmerker og gjenopprette dem senere (for eksempel etter tilbakestilling til fabrikkinnstillinger). En backup er en lokal fil som lagres i +<br /><i>~/Documents/Storeman</i>-mappen.</p><br /><p><b>Obs!</b> Du bør kopiere backupene manuelt til et trygt sted før du utfører tilbakestilling til fabrikkinnstillinger. Dette kan være SD‑kort, ekstern lagring, skytjeneste eller lignende.</p> + Initialising @@ -637,51 +632,51 @@ Adding repo %0 - + Legger til pakkebrønn %0 Removing repo %0 - + Fjerner pakkebrønn %0 Enabling repo %0 - + Aktiverer pakkebrønn %0 Disabling repo %0 - + Deaktiverer pakkebrønn %0 Refreshing %0 - + Oppdaterer %0 Installing package %0 - + Installerer pakke %0 Removing package %0 - + Fjerner pakke %0 Updating package %0 - + Oppdaterer pakke %0 The repository %0 was removed - + Pakkebrønn %0 ble fjernet The repository %0 was added - + Pakkebrønn %0 ble lagt til The repository %0 was disabled - + Pakkebrønn %0 ble deaktivert The repository %0 was enabled - + Pakkebrønn %0 ble aktivert Not installed @@ -701,7 +696,7 @@ Available in other repositories - Tilgjengelig i andre pakkebrønner + Tilgjengelig i andre pakkebrønner Only from enabled repositories @@ -718,10 +713,7 @@ %n operations are in progress There are always more than 1 operations - - - - + %n operasjon pågår%n operasjoner pågår Available version @@ -755,7 +747,7 @@ There is nothing here yet - Intet her for, + Ingenting her ennå Settings @@ -767,25 +759,19 @@ Show updates notification - + Vis oppdateringsvarsler Updates check interval - + Intervall for å se etter oppdateringer %n minute(s) - - - - + %n minutt%n minutter %n hour(s) - - - - + %n time%n timer S @@ -794,7 +780,7 @@ Swipe to see all the tag buttons - + Sveip for å se alle tag-knappene Deep Thought @@ -809,155 +795,155 @@ What is the Answer to the Ultimate Question of Life, the Universe, and Everything? https://simple.wikipedia.org/wiki/42_(answer) - + Hva er svaret på det ultimate spørsmålet om livet, universet og alt? 7.5 million years ago - + 7.5 millioner år siden Tap to navigate to the replied comment - + Trykk for å gå til kommentaren det ble svart på. Tags - + Emneknagger Tagged Applications - + Emnemerkede applikasjoner Rate the application - + Vurder applikasjon Your vote has been sent - + Din stemme er registrert Log in to rate the application - + Logg inn for å vurdere applikasjonen Tap to rate the application - + Trykk for å vurdere applikasjonen Local RPM files - + Lokale RPM-filer Delete - + Slett Deleting - + Sletter No local RPM files were found - + Ingen lokale RPM-filer funnet Failed to delete - + Sletting feilet Remove all - + Fjern alle Removing all - + Fjerner alle All repositories were removed - + Alle pakkebrønner ble fjernet Search on OpenRepos.net - + Søk på OpenRepos.net Check for updates - + Se etter oppdateringer Updates are checked only when the Storeman is running - + Oppdateringer sjekkes bare når Storeman kjører Smart check - + Smart sjekk Use the OpenRepos.net API to determine if there are new updates - + Bruk OpenRepos.net‑APIet for å avgjøre om det finnes nye oppdateringer Reload - + Last på nytt No packages available - + Ingen pakker tilgjengelig Error sending comment - + Feil ved sending av kommentar Error deleting comment - + Feil ved sletting av kommentar Network error - + Nettverksfeil Tap to bookmark the application - + Trykk for å bokmerke applikasjonen Invalid package ID %1 - + Ugyldig pakke‑ID %1 A file name for backup - + Et filnavn for sikkerhetskopi File already exists - + Filen eksisterer allerede What to backup - + Hva som skal sikkerhetskopieres Installed applications - Installerte programmer + Installerte programmer Tap again to close the hint - + Trykk igjen for å lukke tipset Main page - + Hovedside Show recently updated on start - + Vis nylig oppdatert ved oppstart Switch to the page of recently updated packages on start - + Åpne siden med nylig oppdaterte pakker ved oppstart Order items - Bestill gjenstander + Bestill goppføringer Reset @@ -965,7 +951,7 @@ Drag items to change their order - + Dra oppføringer for å endre deres rekkefølge Adult Content @@ -977,7 +963,7 @@ Select which categories to show - + Velg hvilke kategorier som skal vises Refreshing of cache @@ -985,11 +971,11 @@ Refresh cache after system upgrade - + Oppfrisk mellomlagring etter systemoppgadering Force refreshing of cache of all repositories after system upgrade - + Tvungen oppfrisking av mellomlagring for alle pakkebrønner etter systemoppgradering Save password @@ -997,84 +983,85 @@ Save password to the encrypted device storage to perform automatic re-login. - + Lagre passord i enhetens krypterte lagring for automatisk pålogging. Share link - + Del lenke Repository - + Pakkebrønner My repository - + Mine pakkebrønner Donation - + Should be a noun + Donasjon Updates available - Oppdateringer tilgjengelig + Oppdateringer er tilgjengelig Package %0 was successfully updated - + Pakke %0 ble oppdatert - <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Issues shall be reported preferably at GitHub or alternatively at OpenRepos (use the buttons below).</p> - Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software). - + <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Any issues (bug reports, feature suggestions, help requests etc.) shall be filed at GitHub (you may use the button below).</p> + Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software), just keep it as "(FLOSS)". + <p>OpenRepos‑klientapplikasjon for SailfishOS<br />&nbsp;</p><p>Storeman er fri programvare (FLOSS), distribuert under vilkårene i <a href='%1'>MIT&nbsp;lisensen</a>.</p><p>Feil bør rapporteres helst på GitHub (bruk knappene nedenfor).</p> Show details - + Vis detaljer Unused repositories found - + Ubrukte pakkebrønner funnet Unused repositories not found - + Ingen ubrukte pakkebrønner funnet Search for unused - + Søk etter ubrukte Search for unused repositories - + Søk etter ubrukte pakkebrønner Search for unused repositories after removing packages. - + Søk etter ubrukte pakkebrønner etter fjerning av pakker. Unused repositories - + Ubrukte pakkebrønner <p>There are no installed packages for the next repositories.</p><p>Do you want to remove them now?</p> - + <p>Det finnes ingen installerte pakker for disse pakkebrønnene.</p><p>Vil du fjerne dem nå?</p> At least 10 minutes - + Minst 10 minutter Check for self-updates - + Se etter oppdateringer for programmet Enable the Storeman OBS repository to check for Storeman updates - + Aktiver Storeman OBS-pakkebrønnen for å se etter oppdateringer av Storeman Storeman OBS Repository - + Storeman OBS-pakkebrønn - + \ No newline at end of file diff --git a/translations/harbour-storeman-pl.ts b/translations/harbour-storeman-pl.ts index 5c77114d..7e08ca1e 100644 --- a/translations/harbour-storeman-pl.ts +++ b/translations/harbour-storeman-pl.ts @@ -1,8 +1,6 @@ - - - + - + Not rated yet Jeszcze nie ocenione @@ -73,7 +71,7 @@ Usuwanie - An error occured + An error occurred Wystąpił błąd @@ -118,7 +116,7 @@ yyyy-MM-dd hh:mm - Output format for the date labels. For details visit http://doc.qt.io/qt-5/qdate.html#toString + Output format for the date labels. For details visit https://doc.qt.io/qt-5/qdate.html#toString dd-MM-yyyy hh:mm @@ -332,7 +330,8 @@ Przeciągnij w dół aby odświeżyć - Development + Credits + Acknowledgements for contributions - should be a noun Rozwój @@ -340,11 +339,11 @@ Deweloperzy - Application Icon + Application icon Ikona aplikacji - Source Code + Source code & Issue tracker Kod źródłowy @@ -353,19 +352,11 @@ %n minute(s) ago - - %n minutę temu - %n minuty temu - %n minut temu - + %n minutę temu%n minuty temu%n minut temu%n minut temu %n hour(s) ago - - %n godzinę temu - %n godziny temu - %n godzin temu - + %n godzinę temu%n godziny temu%n godzin temu%n godzin temu Reply to %0 @@ -406,9 +397,9 @@ Zaloguj - Username or e-mail address - A translated string should not be longer than the original - Nazwa użytkownika lub adres email + Username + A translated string should comprise less than 27 characters + Nazwa użytkownika Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. @@ -538,7 +529,7 @@ Nothing provides %1 needed by %2 - A template string for a dependecy resolution error. %1 is a dependency and %2 is a failed package. + A template string for a dependency resolution error. %1 is a dependency and %2 is a failed package. Nic nie zapewnia %1 wymaganego przez %2 @@ -720,11 +711,7 @@ %n operations are in progress There are always more than 1 operations - - %n proces w trakcie - %n procesy w trakcie - %n procesów w trakcie - + %n proces w trakcie%n procesy w trakcie%n procesów w trakcie%n procesów w trakcie Available version @@ -778,19 +765,11 @@ %n minute(s) - - %n minuta - %n minuty - %n minut - + %n minuta%n minuty%n minut%n minut %n hour(s) - - %n godzina - %n godziny - %n godzin - + %n godzina%n godziny%n godzin%n godzin S @@ -1018,6 +997,7 @@ Donation + Should be a noun Wspomóż @@ -1029,8 +1009,8 @@ Pakiet %0 został pomyślnie zaktualizowany - <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Issues shall be reported preferably at GitHub or alternatively at OpenRepos (use the buttons below).</p> - Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software). + <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Any issues (bug reports, feature suggestions, help requests etc.) shall be filed at GitHub (you may use the button below).</p> + Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software), just keep it as "(FLOSS)". <p>Klient OpenRepos dla SailfishOS<br />&nbsp;</p><p>To jest otwartoźródłowe oprogramowanie dystrybuowane na warunkach <a href='%1'>MIT&nbsp;license</a>.</p><p>Możesz raportować błędy na GitHubie lub OpenRepos (użyj przycisków poniżej).</p> @@ -1082,4 +1062,4 @@ Repozytorium OBS Storeman - + \ No newline at end of file diff --git a/translations/harbour-storeman-pt.ts b/translations/harbour-storeman-pt.ts index 0d59c9d0..ededed0b 100644 --- a/translations/harbour-storeman-pt.ts +++ b/translations/harbour-storeman-pt.ts @@ -404,9 +404,9 @@ Log in - Username or e-mail address - A translated string should not be longer than the original - Usuário ou e-mail + Username + A translated string should comprise less than 27 characters + Usuário Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-ru.ts b/translations/harbour-storeman-ru.ts index ff76c6a5..715be3ec 100644 --- a/translations/harbour-storeman-ru.ts +++ b/translations/harbour-storeman-ru.ts @@ -71,7 +71,7 @@ Удаление - An error occured + An error occurred Ошибка @@ -116,7 +116,7 @@ yyyy-MM-dd hh:mm - Output format for the date labels. For details visit http://doc.qt.io/qt-5/qdate.html#toString + Output format for the date labels. For details visit https://doc.qt.io/qt-5/qdate.html#toString hh:mm, dd.MM.yyyy @@ -330,7 +330,8 @@ Потяните вниз чтобы обновить - Development + Credits + Acknowledgements for contributions - should be a noun Разработка @@ -338,11 +339,11 @@ Разработчики - Application Icon + Application icon Иконка приложения - Source Code + Source code & Issue tracker Исходный код @@ -396,9 +397,9 @@ Войти - Username or e-mail address - A translated string should not be longer than the original - Имя пользователя или email + Username + A translated string should comprise less than 27 characters + Имя пользователя Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. @@ -530,7 +531,7 @@ Storeman не передает ваш пароль третьим лицам. Nothing provides %1 needed by %2 - A template string for a dependecy resolution error. %1 is a dependency and %2 is a failed package. + A template string for a dependency resolution error. %1 is a dependency and %2 is a failed package. Невозможно удовлетворить зависимость %1, необходимую для %2. @@ -998,6 +999,7 @@ Storeman не передает ваш пароль третьим лицам. Donation + Should be a noun Поддержать @@ -1009,8 +1011,8 @@ Storeman не передает ваш пароль третьим лицам.Пакет %0 успешно обновлен - <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Issues shall be reported preferably at GitHub or alternatively at OpenRepos (use the buttons below).</p> - Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software). + <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Any issues (bug reports, feature suggestions, help requests etc.) shall be filed at GitHub (you may use the button below).</p> + Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software), just keep it as "(FLOSS)". <p>Клиент OpenRepos для SailfishOS<br />&nbsp;</p><p>Исходный код Storeman распространяется в соответствии с условиями <a href="%1">лицензии&nbsp;MIT</a>.</p><p>Вы можете сообщить об ошибке на GitHub или OpenRepos (используйте кнопки ниже).</p> @@ -1062,4 +1064,4 @@ Storeman не передает ваш пароль третьим лицам.Репозиторий Storeman OBS - + \ No newline at end of file diff --git a/translations/harbour-storeman-sk.ts b/translations/harbour-storeman-sk.ts index 59d57274..93303f03 100644 --- a/translations/harbour-storeman-sk.ts +++ b/translations/harbour-storeman-sk.ts @@ -397,9 +397,9 @@ Prihlásiť sa - Username or e-mail address - A translated string should not be longer than the original - Meno používateľa alebo e-mail + Username + A translated string should comprise less than 27 characters + Meno používateľa Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-sl.ts b/translations/harbour-storeman-sl.ts index ea1c6fda..b951ec7c 100644 --- a/translations/harbour-storeman-sl.ts +++ b/translations/harbour-storeman-sl.ts @@ -397,9 +397,9 @@ Prijava - Username or e-mail address - A translated string should not be longer than the original - Uporabniško ime ali e-poštni naslov + Username + A translated string should comprise less than 27 characters + Uporabniško ime Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-sv.ts b/translations/harbour-storeman-sv.ts index 5ca61808..10e92821 100644 --- a/translations/harbour-storeman-sv.ts +++ b/translations/harbour-storeman-sv.ts @@ -397,9 +397,9 @@ Lösenord - Username or e-mail address - A translated string should not be longer than the original - Användarnamn eller e-postadress + Username + A translated string should comprise less than 27 characters + Användarnamn Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman-tt.ts b/translations/harbour-storeman-tt.ts index f0b0e6fa..5ef35dbc 100644 --- a/translations/harbour-storeman-tt.ts +++ b/translations/harbour-storeman-tt.ts @@ -71,7 +71,7 @@ Бетерү - An error occured + An error occurred Хата @@ -116,7 +116,7 @@ yyyy-MM-dd hh:mm - Output format for the date labels. For details visit http://doc.qt.io/qt-5/qdate.html#toString + Output format for the date labels. For details visit https://doc.qt.io/qt-5/qdate.html#toString hh:mm, dd.MM.yyyy @@ -330,20 +330,21 @@ Яңартыр өчен аска тартыгыз - Development - Җитештерүчәнлек + Credits + Acknowledgements for contributions - should be a noun + Катнашучылар Developers Җитештерүчеләр - Application Icon + Application icon Кушымта иконкасы - Source Code - Чыганак код + Source code & Issue tracker + Чыганак кодны һәм проблемаларны күзәтү Just now @@ -396,9 +397,9 @@ Керү - Username or e-mail address - A translated string should not be longer than the original - Кулланучы исеме я e-mail + Username + A translated string should comprise less than 27 characters + Кулланучы исеме Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. @@ -530,7 +531,7 @@ Storeman серсүзне өченче затларга җибәрми. Nothing provides %1 needed by %2 - A template string for a dependecy resolution error. %1 is a dependency and %2 is a failed package. + A template string for a dependency resolution error. %1 is a dependency and %2 is a failed package. %2 өчен кирәкле %1 бәйлелеген үтәп булмый. @@ -998,7 +999,8 @@ Storeman серсүзне өченче затларга җибәрми. Donation - булышу + Should be a noun + Донатлау Updates available @@ -1009,9 +1011,9 @@ Storeman серсүзне өченче затларга җибәрми.%0 пакеты уңышлы яңартылды - <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Issues shall be reported preferably at GitHub or alternatively at OpenRepos (use the buttons below).</p> - Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software). - <p>SailfishOS өчен бердәм OpenRepos клиенты<br />&nbsp;</p><p>Storeman'ның чыганак коды <a href='%1'>MIT&nbsp;лицензиясе</a> шартлары буенча тарала.</p><p>Тәкъдимнәрне GitHub һәм OpenRepos сайтлары аша җиткереп була (астагы төймәләр).</p> + <p>OpenRepos client application for SailfishOS<br />&nbsp;</p><p>Storeman is Free Software (FLOSS), distributed under the terms of the <a href='%1'>MIT&nbsp;license</a>.</p><p>Any issues (bug reports, feature suggestions, help requests etc.) shall be filed at GitHub (you may use the button below).</p> + Avoid to translate the acronym FLOSS (Free, Libre, Open Source Software), just keep it as "(FLOSS)". + <p>SailfishOS өчен бердәм OpenRepos клиенты<br />nbsp;</p><p>Storeman'ның чыганак коды <a href='%1'>MIT&nbsp;лицензиясе</a> шартлары буенча тарала.</p><p>Тәкъдимнәрне GitHub сайтлары аша җиткереп була (астагы төймәләр).</p> Show details @@ -1062,4 +1064,4 @@ Storeman серсүзне өченче затларга җибәрми.Storeman OBS репозиториясе - + \ No newline at end of file diff --git a/translations/harbour-storeman-zh.ts b/translations/harbour-storeman-zh.ts index 67744a6e..7797f179 100644 --- a/translations/harbour-storeman-zh.ts +++ b/translations/harbour-storeman-zh.ts @@ -402,9 +402,9 @@ 登录 - Username or e-mail address - A translated string should not be longer than the original - 用户名称或邮箱地址 + Username + A translated string should comprise less than 27 characters + 用户名 Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties. diff --git a/translations/harbour-storeman.ts b/translations/harbour-storeman.ts index 144f8a72..a3b84e94 100644 --- a/translations/harbour-storeman.ts +++ b/translations/harbour-storeman.ts @@ -405,9 +405,9 @@ Log in - Username or e-mail address - A translated string should not be longer than the original - Username or e-mail address + Username + A translated string should comprise less than 27 characters + Username Log in to OpenRepos.net to comment applications and reply to others comments.<br /><br />Storeman does not send your password to third-parties.