diff --git a/app/aboutdialog.cpp b/app/aboutdialog.cpp
index ae5fea6..b61f448 100644
--- a/app/aboutdialog.cpp
+++ b/app/aboutdialog.cpp
@@ -25,16 +25,18 @@ AboutDialog::AboutDialog(QWidget *parent)
const QStringList helpStr {
QStringLiteral("
%1
").arg(tr("Launch application with image file path as argument to load the file.")),
QStringLiteral("%1
").arg(tr("Drag and drop image file onto the window is also supported.")),
+ QStringLiteral("%1
").arg(tr("None of the operations in this application will alter the pictures on disk.")),
QStringLiteral("%1
").arg(tr("Context menu option explanation:")),
QStringLiteral(""),
- QStringLiteral("%1 : %2 ").arg(
- QCoreApplication::translate("MainWindow", "Stay on top"),
- tr("Make window stay on top of all other windows.")
- ),
- QStringLiteral("%1 : %2 ").arg(
- QCoreApplication::translate("MainWindow", "Protected mode"),
- tr("Avoid close window accidentally. (eg. by double clicking the window)")
- ),
+ // blumia: Chain two arg() here since it seems lupdate will remove one of them if we use
+ // the old `arg(QCoreApp::translate(), tr())` way, but it's worth to mention
+ // `arg(QCoreApp::translate(), this->tr())` works, but lupdate will complain about the usage.
+ QStringLiteral("%1 : %2 ")
+ .arg(QCoreApplication::translate("MainWindow", "Stay on top"))
+ .arg(tr("Make window stay on top of all other windows.")),
+ QStringLiteral("%1 : %2 ")
+ .arg(QCoreApplication::translate("MainWindow", "Protected mode"))
+ .arg(tr("Avoid close window accidentally. (eg. by double clicking the window)")),
QStringLiteral(" ")
};
diff --git a/app/metadatamodel.cpp b/app/metadatamodel.cpp
index 64a676d..6878518 100644
--- a/app/metadatamodel.cpp
+++ b/app/metadatamodel.cpp
@@ -43,7 +43,11 @@ void MetadataModel::setFile(const QString &imageFilePath)
appendProperty(QStringLiteral("Image"), QStringLiteral("Image.Dimensions"),
tr("Dimensions"), imageDimensionsString);
appendProperty(QStringLiteral("Image"), QStringLiteral("Image.SizeRatio"),
- tr("Aspect Ratio"), imageRatioString);
+ tr("Aspect ratio"), imageRatioString);
+ if (imgReader.supportsAnimation() && imgReader.imageCount() > 1) {
+ appendProperty(QStringLiteral("Image"), QStringLiteral("Image.FrameCount"),
+ tr("Frame count"), QString::number(imgReader.imageCount()));
+ }
appendProperty(QStringLiteral("File"), QStringLiteral("File.Name"),
tr("Name"), fileInfo.fileName());
@@ -54,9 +58,9 @@ void MetadataModel::setFile(const QString &imageFilePath)
appendProperty(QStringLiteral("File"), QStringLiteral("File.Size"),
tr("Size"), sizeString);
appendProperty(QStringLiteral("File"), QStringLiteral("File.CreatedTime"),
- tr("Date Created"), birthTimeString);
+ tr("Date created"), birthTimeString);
appendProperty(QStringLiteral("File"), QStringLiteral("File.LastModified"),
- tr("Date Modified"), lastModifiedTimeString);
+ tr("Date modified"), lastModifiedTimeString);
Exiv2Wrapper wrapper;
if (wrapper.load(imageFilePath)) {
@@ -73,6 +77,8 @@ void MetadataModel::setFile(const QString &imageFilePath)
QStringLiteral("Exif.Photo.DateTimeOriginal"), tr("Date taken"));
appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
QStringLiteral("Exif.Image.Software"), tr("Program name"));
+ appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
+ QStringLiteral("Exif.Image.Copyright"), tr("Copyright"));
appendExivPropertyIfExist(wrapper, QStringLiteral("Image"),
QStringLiteral("Exif.Image.XResolution"), tr("Horizontal resolution"));
diff --git a/app/translations/PineapplePictures.ts b/app/translations/PineapplePictures.ts
index 48bda93..05e6ddf 100644
--- a/app/translations/PineapplePictures.ts
+++ b/app/translations/PineapplePictures.ts
@@ -20,142 +20,147 @@
+ None of the operations in this application will alter the pictures on disk.
+
+
+
+
Context menu option explanation:
-
+
Make window stay on top of all other windows.
-
+
Avoid close window accidentally. (eg. by double clicking the window)
-
+
Version: %1
-
+
Copyright (c) 2020 %1
-
+
Logo designed by %1
-
+
Built with Qt %1 (%2)
-
+
Source code
-
+
Contributors
-
+
List of contributors on GitHub
-
+
Thanks to all people who contributed to this project.
-
+
Translators
-
+
I would like to thank the following people who volunteered to translate this application.
-
+
%1 is built on the following free software libraries:
Free as in freedom
-
+
&Special Thanks
-
+
&Third-party Libraries
-
+
Your Rights
-
+
%1 is released under the MIT License.
-
+
This license grants people a number of freedoms:
-
+
You are free to use %1, for any purpose
-
+
You are free to distribute %1
-
+
You can study how %1 works and change it
-
+
You can distribute changed versions of %1
-
+
The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.
-
+
Third-party Libraries used by %1
-
+
&Help
-
+
&About
-
+
&License
@@ -171,28 +176,28 @@
GraphicsView
-
+
File url list is empty
-
+
File is not a valid image
-
-
+
+
Image data is invalid or currently unsupported
-
+
Image data is invalid
-
+
Not supported mimedata: %1
@@ -200,74 +205,79 @@
MainWindow
-
+
File url list is empty
-
+
&Copy
-
+
Copy P&ixmap
-
+
Copy &File Path
-
+
Properties
-
-
+
+
Stay on top
-
-
+
+
Protected mode
-
+
Zoom in
-
+
Zoom out
-
+
+ Flip &Horizontally
+
+
+
+
&Paste
-
+
Toggle Checkerboard
-
+
Configure...
-
+
Help
-
+
Quit
@@ -336,226 +346,236 @@
- Aspect Ratio
+ Aspect ratio
- Name
-
-
-
-
- Item type
+ Frame count
- Folder path
+ Name
- Size
+ Item type
- Date Created
+ Folder path
- Date Modified
+ Size
-
+
+ Date created
+
+
+
+
+ Date modified
+
+
+
+
Rating
-
+
Comments
-
+
Authors
-
+
Date taken
-
+
Program name
-
- Horizontal resolution
-
-
-
-
- Vertical resolution
-
-
-
-
- Resolution unit
+
+ Copyright
+ Horizontal resolution
+
+
+
+
+ Vertical resolution
+
+
+
+
+ Resolution unit
+
+
+
+
Colour representation
-
+
Camera maker
-
+
Camera model
-
+
F-stop
-
+
Exposure time
-
+
ISO speed
-
+
Exposure bias
-
+
Focal length
-
+
Max aperture
-
+
Metering mode
-
+
Flash mode
-
+
35mm focal length
-
+
Lens model
-
+
Brightness
-
+
Exposure program
-
+
Saturation
-
+
Sharpness
-
+
White balance
-
+
Digital zoom
-
+
EXIF version
-
+
Latitude reference
-
+
Latitude
-
+
Longitude reference
-
+
Longitude
-
+
Altitude reference
-
+
Altitude
-
+
%1 x %2
-
+
%1 : %2
-
+
Property
-
+
Value
diff --git a/app/translations/PineapplePictures_de.ts b/app/translations/PineapplePictures_de.ts
index 64c65b0..a7febce 100644
--- a/app/translations/PineapplePictures_de.ts
+++ b/app/translations/PineapplePictures_de.ts
@@ -20,142 +20,147 @@
+ None of the operations in this application will alter the pictures on disk.
+
+
+
+
Context menu option explanation:
Erklärung der Kontextmenüoptionen:
-
+
Make window stay on top of all other windows.
Sicher stellen, dass das Fenster über allen anderen Fenstern bleibt.
-
+
Avoid close window accidentally. (eg. by double clicking the window)
Es vermeiden, das Fenster versehentlich zu schließen. (z.B. durch Doppelklick auf das Fenster)
-
+
Version: %1
Version: %1
-
+
Copyright (c) 2020 %1
Copyright © 2020 %1
-
+
Logo designed by %1
Logo entworfen von %1
-
+
Built with Qt %1 (%2)
Gemacht mit Qt %1 (%2)
-
+
Source code
Quellcode
-
+
Contributors
Mitwirkenden
-
+
List of contributors on GitHub
Liste der Mitwirkenden auf GitHub
-
+
Thanks to all people who contributed to this project.
Vielen Dank an alle, die zu diesem Projekt beigetragen haben.
-
+
Translators
Übersetzer
-
+
I would like to thank the following people who volunteered to translate this application.
Ich möchte den folgenden Personen danken, die sich freiwillig zur Übersetzung dieser Anwendung gemeldet haben.
-
+
%1 is built on the following free software libraries:
Free as in freedom
%1 basiert auf den folgenden freien Softwarebibliotheken:
-
+
&Special Thanks
&Besonderer Dank
-
+
&Third-party Libraries
&Bibliotheken von Drittanbietern
-
+
Your Rights
Ihre Rechte
-
+
%1 is released under the MIT License.
%1 wird unter der MIT-Lizenz veröffentlicht.
-
+
This license grants people a number of freedoms:
Diese Lizenz gewährt Menschen eine Reihe von Freiheiten:
-
+
You are free to use %1, for any purpose
Sie dürfen %1 für jeden Zweck verwenden
-
+
You are free to distribute %1
Sie dürfen %1 verteilen
-
+
You can study how %1 works and change it
Sie können untersuchen, wie %1 funktioniert, und es ändern
-
+
You can distribute changed versions of %1
Sie können geänderte Versionen von %1 verteilen
-
+
The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.
Die MIT-Lizenz garantiert Ihnen diese Freiheit. Niemand darf es jemals wegnehmen.
-
+
Third-party Libraries used by %1
Von %1 verwendete Bibliotheken von Drittanbietern
-
+
&Help
&Hilfe
-
+
&About
&Über
-
+
&License
&Lizenz
@@ -171,28 +176,28 @@
GraphicsView
-
+
File url list is empty
Die Datei-URL-Liste ist leer
-
+
File is not a valid image
Datei ist kein gültiges Bild
-
-
+
+
Image data is invalid or currently unsupported
Bilddaten sind ungültig oder werden derzeit nicht unterstützt
-
+
Image data is invalid
Bilddaten sind ungültig
-
+
Not supported mimedata: %1
Nicht unterstützte Mimedaten: %1
@@ -200,74 +205,79 @@
MainWindow
-
+
File url list is empty
Die Datei-URL-Liste ist leer
-
+
&Copy
&Kopieren
-
+
Copy P&ixmap
P&ixmap kopieren
-
+
Copy &File Path
&Dateipfad kopieren
-
+
Properties
Eigenschaften
-
-
+
+
Stay on top
Oben bleiben
-
-
+
+
Protected mode
Geschützter Modus
-
+
Zoom in
-
+
Zoom out
-
+
+ Flip &Horizontally
+
+
+
+
&Paste
-
+
Toggle Checkerboard
-
+
Configure...
Konfigurieren …
-
+
Help
Hilfe
-
+
Quit
@@ -336,226 +346,236 @@
- Aspect Ratio
+ Aspect ratio
Seitenverhältnis
+ Frame count
+
+
+
+
Name
Name
-
+
Item type
Objekttyp
-
+
Folder path
Ordnerpfad
-
+
Size
Größe
-
- Date Created
+
+ Date created
Datum erstellt
-
- Date Modified
+
+ Date modified
Datum geändert
-
+
Rating
Bewertung
-
+
Comments
Kommentare
-
+
Authors
Autoren
-
+
Date taken
Datum genommen
-
+
Program name
Programmname
-
+
+ Copyright
+
+
+
+
Horizontal resolution
Horizontale Auflösung
-
+
Vertical resolution
Vertikale Auflösung
-
+
Resolution unit
Auflösungseinheit
-
+
Colour representation
Farbdarstellung
-
+
Camera maker
Kamerahersteller
-
+
Camera model
Kameramodell
-
+
F-stop
Blendenzahl
-
+
Exposure time
Belichtungszeit
-
+
ISO speed
ISO-Geschwindigkeit
-
+
Exposure bias
Belichtungskorrektur
-
+
Focal length
Brennweite
-
+
Max aperture
Maximale Blende
-
+
Metering mode
Messmodus
-
+
Flash mode
Flash-Modus
-
+
35mm focal length
35 mm Brennweite
-
+
Lens model
Objektivmodell
-
+
Brightness
Helligkeit
-
+
Exposure program
Belichtungsprogramm
-
+
Saturation
Sättigung
-
+
Sharpness
Schärfe
-
+
White balance
Weißabgleich
-
+
Digital zoom
Digitaler Zoom
-
+
EXIF version
EXIF-Version
-
+
Latitude reference
-
+
Latitude
Breitengrad
-
+
Longitude reference
-
+
Longitude
Längengrad
-
+
Altitude reference
-
+
Altitude
Höhe
-
+
%1 x %2
%1 × %2
-
+
%1 : %2
%1 : %2
-
+
Property
Eigenschaft
-
+
Value
Wert
diff --git a/app/translations/PineapplePictures_es.ts b/app/translations/PineapplePictures_es.ts
index 075e91d..ab6d668 100644
--- a/app/translations/PineapplePictures_es.ts
+++ b/app/translations/PineapplePictures_es.ts
@@ -20,142 +20,147 @@
+ None of the operations in this application will alter the pictures on disk.
+
+
+
+
Context menu option explanation:
Explicación de la opción del menú contextual:
-
+
Make window stay on top of all other windows.
Haz que la ventana se quede encima de todas las demás ventanas.
-
+
Avoid close window accidentally. (eg. by double clicking the window)
Evita cerrar la ventana accidentalmente. (por ejemplo, haciendo doble clic en la ventana)
-
+
Version: %1
Versión: %1
-
+
Copyright (c) 2020 %1
Derechos reservados (c) 2020 %1
-
+
Logo designed by %1
Logo diseñado por %1
-
+
Built with Qt %1 (%2)
Construido con Qt %1 (%2)
-
+
Source code
Código fuente
-
+
Contributors
Colaboradores
-
+
List of contributors on GitHub
Lista de colaboradores en GitHub
-
+
Thanks to all people who contributed to this project.
Gracias a todas las personas que contibuyen a este proyecto.
-
+
Translators
Traductores
-
+
I would like to thank the following people who volunteered to translate this application.
Me gustaría dar las gracias a las siguientes personas que se ofrecieron a traducir esta solicitud.
-
+
%1 is built on the following free software libraries:
Free as in freedom
%1 está construido sobre las siguientes bibliotecas de software libre:
-
+
&Special Thanks
&Agradecimiento especial
-
+
&Third-party Libraries
-
+
Your Rights
-
+
%1 is released under the MIT License.
-
+
This license grants people a number of freedoms:
-
+
You are free to use %1, for any purpose
-
+
You are free to distribute %1
-
+
You can study how %1 works and change it
-
+
You can distribute changed versions of %1
-
+
The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.
-
+
Third-party Libraries used by %1
-
+
&Help
-
+
&About
-
+
&License
@@ -171,28 +176,28 @@
GraphicsView
-
+
File url list is empty
-
+
File is not a valid image
-
-
+
+
Image data is invalid or currently unsupported
-
+
Image data is invalid
-
+
Not supported mimedata: %1
@@ -200,74 +205,79 @@
MainWindow
-
+
File url list is empty
-
+
&Copy
-
+
Copy P&ixmap
-
+
Copy &File Path
-
+
Properties
-
-
+
+
Stay on top
-
-
+
+
Protected mode
-
+
Zoom in
-
+
Zoom out
-
+
+ Flip &Horizontally
+
+
+
+
&Paste
-
+
Toggle Checkerboard
-
+
Configure...
-
+
Help
-
+
Quit
@@ -336,226 +346,236 @@
- Aspect Ratio
+ Aspect ratio
- Name
-
-
-
-
- Item type
+ Frame count
- Folder path
+ Name
- Size
+ Item type
- Date Created
+ Folder path
- Date Modified
+ Size
-
+
+ Date created
+
+
+
+
+ Date modified
+
+
+
+
Rating
-
+
Comments
-
+
Authors
-
+
Date taken
-
+
Program name
-
- Horizontal resolution
-
-
-
-
- Vertical resolution
-
-
-
-
- Resolution unit
+
+ Copyright
+ Horizontal resolution
+
+
+
+
+ Vertical resolution
+
+
+
+
+ Resolution unit
+
+
+
+
Colour representation
-
+
Camera maker
-
+
Camera model
-
+
F-stop
-
+
Exposure time
-
+
ISO speed
-
+
Exposure bias
-
+
Focal length
-
+
Max aperture
-
+
Metering mode
-
+
Flash mode
-
+
35mm focal length
-
+
Lens model
-
+
Brightness
-
+
Exposure program
-
+
Saturation
-
+
Sharpness
-
+
White balance
-
+
Digital zoom
-
+
EXIF version
-
+
Latitude reference
-
+
Latitude
-
+
Longitude reference
-
+
Longitude
-
+
Altitude reference
-
+
Altitude
-
+
%1 x %2
-
+
%1 : %2
-
+
Property
-
+
Value
diff --git a/app/translations/PineapplePictures_fr.ts b/app/translations/PineapplePictures_fr.ts
index 83d1df2..e11e913 100644
--- a/app/translations/PineapplePictures_fr.ts
+++ b/app/translations/PineapplePictures_fr.ts
@@ -20,142 +20,147 @@
+ None of the operations in this application will alter the pictures on disk.
+
+
+
+
Context menu option explanation:
Explication des options du menu contextuel :
-
+
Make window stay on top of all other windows.
Faire en sorte que la fenêtre reste au-dessus de toutes les autres fenêtres.
-
+
Avoid close window accidentally. (eg. by double clicking the window)
Éviter de fermer la fenêtre accidentellement. (par exemple en cliquant deux fois sur la fenêtre)
-
+
Version: %1
Version : %1
-
+
Copyright (c) 2020 %1
Copyright © 2020 %1
-
+
Logo designed by %1
Logo conçu par %1
-
+
Built with Qt %1 (%2)
Fait avec Qt %1 (%2)
-
+
Source code
Code source
-
+
Contributors
Contributeurs
-
+
List of contributors on GitHub
Liste des contributeurs sur GitHub
-
+
Thanks to all people who contributed to this project.
Merci à toutes les personnes qui ont contribué à ce projet.
-
+
Translators
Traducteurs
-
+
I would like to thank the following people who volunteered to translate this application.
Je tiens à remercier les personnes suivantes qui se sont portées volontaires pour traduire cette application.
-
+
%1 is built on the following free software libraries:
Free as in freedom
%1 est basé sur les bibliothèques de logiciels libres suivantes :
-
+
&Special Thanks
&Remerciement spécial
-
+
&Third-party Libraries
&Bibliothèques tierces
-
+
Your Rights
Vos droits
-
+
%1 is released under the MIT License.
%1 est publié sous licence MIT.
-
+
This license grants people a number of freedoms:
Cette licence accorde aux personnes un certain nombre de libertés :
-
+
You are free to use %1, for any purpose
Vous êtes libre d'utiliser %1, dans n'importe quel but
-
+
You are free to distribute %1
Vous êtes libre de distribuer %1
-
+
You can study how %1 works and change it
Vous pouvez étudier le fonctionnement de %1 et le modifier
-
+
You can distribute changed versions of %1
Vous pouvez distribuer des versions modifiées de %1
-
+
The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.
La licence MIT vous garantit cette liberté. Personne n'est autorisé à l'enlever.
-
+
Third-party Libraries used by %1
Bibliothèques tierces utilisées par %1
-
+
&Help
&Aide
-
+
&About
&À propos
-
+
&License
&Licence
@@ -171,28 +176,28 @@
GraphicsView
-
+
File url list is empty
La liste des URL du fichier est vide
-
+
File is not a valid image
Le fichier n'est pas une image valide
-
-
+
+
Image data is invalid or currently unsupported
Les données d'image ne sont pas valides ou ne sont actuellement pas prises en charge
-
+
Image data is invalid
Les données d'image ne sont pas valides
-
+
Not supported mimedata: %1
Mimedata non pris en charge : %1
@@ -200,74 +205,79 @@
MainWindow
-
+
File url list is empty
La liste des URL de fichiers est vide
-
+
&Copy
&Copier
-
+
Copy P&ixmap
Copier P&ixmap
-
+
Copy &File Path
Copier le &chemin du fichier
-
+
Properties
Propriétés
-
-
+
+
Stay on top
Rester en-haut
-
-
+
+
Protected mode
Mode protégé
-
+
Zoom in
-
+
Zoom out
-
+
+ Flip &Horizontally
+
+
+
+
&Paste
-
+
Toggle Checkerboard
-
+
Configure...
Configurer…
-
+
Help
Aide
-
+
Quit
@@ -336,226 +346,236 @@
- Aspect Ratio
+ Aspect ratio
Rapport d'aspect
+ Frame count
+
+
+
+
Name
Nom
-
+
Item type
Type d'élément
-
+
Folder path
Chemin du dossier
-
+
Size
Taille
-
- Date Created
+
+ Date created
Date créée
-
- Date Modified
+
+ Date modified
Date modifiée
-
+
Rating
Évaluation
-
+
Comments
Commentaires
-
+
Authors
Auteurs
-
+
Date taken
Date prise
-
+
Program name
Nom du programme
-
+
+ Copyright
+
+
+
+
Horizontal resolution
Résolution horizontale
-
+
Vertical resolution
Résolution verticale
-
+
Resolution unit
Unité de résolution
-
+
Colour representation
Représentation des couleurs
-
+
Camera maker
Fabricant de l'appareil photo
-
+
Camera model
Modèle d'appareil photo
-
+
F-stop
Nombre d'ouverture
-
+
Exposure time
Temps d'exposition
-
+
ISO speed
Vitesse ISO
-
+
Exposure bias
Biais d'exposition
-
+
Focal length
Distance focale
-
+
Max aperture
Ouverture maximale
-
+
Metering mode
Mode de mesure
-
+
Flash mode
Mode flash
-
+
35mm focal length
Distance focale de 35 mm
-
+
Lens model
Modèle d'objectif
-
+
Brightness
Luminosité
-
+
Exposure program
Programme d'exposition
-
+
Saturation
Saturation
-
+
Sharpness
Netteté
-
+
White balance
Balance des blancs
-
+
Digital zoom
Zoom numérique
-
+
EXIF version
Version EXIF
-
+
Latitude reference
Référence de latitude
-
+
Latitude
Latitude
-
+
Longitude reference
Référence de longitude
-
+
Longitude
Longitude
-
+
Altitude reference
Référence d'altitude
-
+
Altitude
Altitude
-
+
%1 x %2
%1 × %2
-
+
%1 : %2
%1 : %2
-
+
Property
Propriété
-
+
Value
Valeur
diff --git a/app/translations/PineapplePictures_nb_NO.ts b/app/translations/PineapplePictures_nb_NO.ts
index fa40cb4..ff6488b 100644
--- a/app/translations/PineapplePictures_nb_NO.ts
+++ b/app/translations/PineapplePictures_nb_NO.ts
@@ -20,142 +20,147 @@
+ None of the operations in this application will alter the pictures on disk.
+
+
+
+
Context menu option explanation:
Forklaring av alternativer i bindeleddsmeny:
-
+
Make window stay on top of all other windows.
Få vinduet til å alltid ligge over andre vinduer.
-
+
Avoid close window accidentally. (eg. by double clicking the window)
Unngå lukking av vinduet ved feiltagelser (f.eks. ved dobbeltklikking av vinduet)
-
+
Version: %1
Versjon: %1
-
+
Copyright (c) 2020 %1
Opphavsrett © 2020 %1
-
+
Logo designed by %1
Logo designet av %1
-
+
Built with Qt %1 (%2)
Bygd med Qt %1 (%2)
-
+
Source code
Kildekode
-
+
Contributors
Bidragsytere
-
+
List of contributors on GitHub
Liste over bidragsytere på GitHub
-
+
Thanks to all people who contributed to this project.
Takk til alle som har bidratt til prosjektet.
-
+
Translators
Oversettere
-
+
I would like to thank the following people who volunteered to translate this application.
Takk til følgende dugnadsoversettere.
-
+
%1 is built on the following free software libraries:
Free as in freedom
%1 er bygd med følgende friprog-bibliotek:
-
+
&Special Thanks
&Spesiell takk til
-
+
&Third-party Libraries
&Tredjepartslisenser
-
+
Your Rights
Dine rettigheter
-
+
%1 is released under the MIT License.
%1 er MIT-lisensiert.
-
+
This license grants people a number of freedoms:
Lisensen gir den en rekke friheter:
-
+
You are free to use %1, for any purpose
Du kan bruke %1 som du vil
-
+
You are free to distribute %1
Du kan dele %1
-
+
You can study how %1 works and change it
Du kan se kildekoden til %1 og endre den
-
+
You can distribute changed versions of %1
Du kan distribuere endrede versjoner av %1
-
+
The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.
MIT-lisensen garanterer deg disse frihetene.
-
+
Third-party Libraries used by %1
Tredjepartsbibliotek brukt av %1
-
+
&Help
&Hjelp
-
+
&About
&Om
-
+
&License
&Lisens
@@ -171,28 +176,28 @@
GraphicsView
-
+
File url list is empty
Listen over filnettadresser er tom
-
+
File is not a valid image
Filen er ikke et gyldig bilde
-
-
+
+
Image data is invalid or currently unsupported
Ugyldig bildedata, eller for tiden ustøttet
-
+
Image data is invalid
Ugyldig bildedata
-
+
Not supported mimedata: %1
Ustøttet MIME-data: %1
@@ -200,74 +205,79 @@
MainWindow
-
+
File url list is empty
Listen over filnettadresser er ugyldig
-
+
&Copy
&Kopier
-
+
Copy P&ixmap
Kopier p&ixmap
-
+
Copy &File Path
Kopier %filsti
-
+
Properties
Egenskaper
-
-
+
+
Stay on top
Behold øverst
-
-
+
+
Protected mode
Beskyttet modus
-
+
Zoom in
Førstørr
-
+
Zoom out
Forminsk
-
+
+ Flip &Horizontally
+
+
+
+
&Paste
&Lim inn
-
+
Toggle Checkerboard
Skru av/på rutemønster
-
+
Configure...
Sett opp …
-
+
Help
Hjelp
-
+
Quit
Avslutt
@@ -336,226 +346,236 @@
- Aspect Ratio
+ Aspect ratio
Størrelsesforhold
+ Frame count
+
+
+
+
Name
Navn
-
+
Item type
Elementstype
-
+
Folder path
Mappesti
-
+
Size
Størrelse
-
- Date Created
+
+ Date created
Dato opprettet
-
- Date Modified
+
+ Date modified
Dato endret
-
+
Rating
Vurdering
-
+
Comments
Kommentarer
-
+
Authors
Opphavsmenn
-
+
Date taken
Dato tatt
-
+
Program name
Programnavn
-
+
+ Copyright
+
+
+
+
Horizontal resolution
Vannrett oppløsning
-
+
Vertical resolution
Loddrett oppløsning
-
+
Resolution unit
Oppløsningsenhet
-
+
Colour representation
Fargerepresentasjon
-
+
Camera maker
Kamerafabrikat
-
+
Camera model
Kameramodell
-
+
F-stop
Blenderåpning
-
+
Exposure time
Eksponeringstid
-
+
ISO speed
ISO-hastighet
-
+
Exposure bias
Eksponeringskorrigering
-
+
Focal length
Brennvidde
-
+
Max aperture
Maks. blenderåpning
-
+
Metering mode
Målingsmodus
-
+
Flash mode
Blitz-modus
-
+
35mm focal length
35 mm-brennvidde
-
+
Lens model
Linsemodell
-
+
Brightness
Lysstyrke
-
+
Exposure program
Eksponeringsprogram
-
+
Saturation
Metning
-
+
Sharpness
Skarphet
-
+
White balance
Hvitbalanse
-
+
Digital zoom
Digital forstørrelse
-
+
EXIF version
EXIF-versjon
-
+
Latitude reference
Breddegradsreferanse
-
+
Latitude
Breddegrad
-
+
Longitude reference
Lengdegradsreferanse
-
+
Longitude
Lengdegrad
-
+
Altitude reference
Høydereferanse
-
+
Altitude
Høyde
-
+
%1 x %2
%1 x %2
-
+
%1 : %2
%1 : %2
-
+
Property
Egenskap
-
+
Value
Verdi
diff --git a/app/translations/PineapplePictures_nl.ts b/app/translations/PineapplePictures_nl.ts
index d35d410..6142590 100644
--- a/app/translations/PineapplePictures_nl.ts
+++ b/app/translations/PineapplePictures_nl.ts
@@ -20,142 +20,147 @@
+ None of the operations in this application will alter the pictures on disk.
+
+
+
+
Context menu option explanation:
Rechtermuisknopmenu-uitleg:
-
+
Make window stay on top of all other windows.
Houdt het venster boven andere vensters.
-
+
Avoid close window accidentally. (eg. by double clicking the window)
Voorkomt per ongeluk sluiten (bijv. door te dubbelklikken op het venster).
-
+
Version: %1
Versie: %1
-
+
Copyright (c) 2020 %1
Copyright (c) 2020 %1
-
+
Logo designed by %1
Logo gemaakt door %1
-
+
Built with Qt %1 (%2)
Gebouwd met Qt %1 (%2)
-
+
Source code
Broncode
-
+
Contributors
Bijdragers
-
+
List of contributors on GitHub
Lijst met bijdragers op GitHub
-
+
Thanks to all people who contributed to this project.
Met dank aan alle personen die hebben bijgedragen aan dit project.
-
+
Translators
Vertalers
-
+
I would like to thank the following people who volunteered to translate this application.
Ik wil graag de volgende mensen bedanken die vrijwillig hebben bijgedragen aan vertalingen.
-
+
%1 is built on the following free software libraries:
Free as in freedom
%1 is gebouwd met de volgende vrijesoftwarebibliotheken:
-
+
&Special Thanks
&Met dank aan
-
+
&Third-party Libraries
Ex&terne bibliotheken
-
+
Your Rights
Uw rechten
-
+
%1 is released under the MIT License.
%1 is uitgebracht onder de MIT-licentie.
-
+
This license grants people a number of freedoms:
Deze licentie biedt een hoop vrijheden:
-
+
You are free to use %1, for any purpose
U mag %1 gratis gebruiken, voor welk doeleinde dan ook
-
+
You are free to distribute %1
U mag %1 vrij verspreiden
-
+
You can study how %1 works and change it
U kunt bekijken hoe %1 werkt en aanpassingen doen
-
+
You can distribute changed versions of %1
U mag aangepaste versie van %1 vrij verspreiden
-
+
The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.
De MIT-licentie garandeert u deze vrijheid, en niemand mag deze vrijheid wegnemen.
-
+
Third-party Libraries used by %1
Door %1 gebruikte externe bibliotheken
-
+
&Help
&Hulp
-
+
&About
&Over
-
+
&License
&Licentie
@@ -171,28 +176,28 @@
GraphicsView
-
+
File url list is empty
De bestandspadlijst is leeg
-
+
File is not a valid image
Het bestand is geen afbeelding
-
-
+
+
Image data is invalid or currently unsupported
De afbeeldingsgegevens zijn beschadigd of worden niet ondersteund
-
+
Image data is invalid
Beschadigde afbeeldingsgegevens
-
+
Not supported mimedata: %1
Niet-ondersteunde mime-gegevens: %1
@@ -200,74 +205,79 @@
MainWindow
-
+
File url list is empty
De bestandspadlijst is leeg
-
+
&Copy
&Kopiëren
-
+
Copy P&ixmap
P&ixmap kopiëren
-
+
Copy &File Path
&Bestandspad kopiëren
-
+
Properties
Eigenschappen
-
-
+
+
Stay on top
Altijd bovenop
-
-
+
+
Protected mode
Beschermde modus
-
+
Zoom in
Inzoomen
-
+
Zoom out
Uitzoomen
-
+
+ Flip &Horizontally
+
+
+
+
&Paste
&Plakken
-
+
Toggle Checkerboard
Schaakbordpatroon aan/uit
-
+
Configure...
Instellen...
-
+
Help
Hulp
-
+
Quit
Afsluiten
@@ -336,226 +346,236 @@
- Aspect Ratio
+ Aspect ratio
Beeldverhouding
+ Frame count
+
+
+
+
Name
Naam
-
+
Item type
Soort item
-
+
Folder path
Bestandspad
-
+
Size
Grootte
-
- Date Created
+
+ Date created
Gemaakt op
-
- Date Modified
+
+ Date modified
Bewerkt op
-
+
Rating
Waardering
-
+
Comments
Opmerkingen
-
+
Authors
Makers
-
+
Date taken
Genomen op
-
+
Program name
Programmanaam
-
+
+ Copyright
+
+
+
+
Horizontal resolution
Horizontale resolutie
-
+
Vertical resolution
Verticale resolutie
-
+
Resolution unit
Resolutie-eenheid
-
+
Colour representation
Kleurweergave
-
+
Camera maker
Camerafabrikant
-
+
Camera model
Cameramodel
-
+
F-stop
Openingsverhouding
-
+
Exposure time
Belichtingstijd
-
+
ISO speed
ISO-snelheid
-
+
Exposure bias
Belichtingsvertekening
-
+
Focal length
Focale lengte
-
+
Max aperture
Max. opening
-
+
Metering mode
Metermodus
-
+
Flash mode
Flitsmodus
-
+
35mm focal length
35mm focale lengte
-
+
Lens model
Lensmodel
-
+
Brightness
Helderheid
-
+
Exposure program
Belichtingsprogramma
-
+
Saturation
Verzadiging
-
+
Sharpness
Scherpte
-
+
White balance
Witbalans
-
+
Digital zoom
Digitale zoom
-
+
EXIF version
EXIF-versie
-
+
Latitude reference
Breedtegraadverwijzing
-
+
Latitude
Breedtegraad
-
+
Longitude reference
Lengtegraadverwijzing
-
+
Longitude
Lengtegraad
-
+
Altitude reference
Hoogteverwijzing
-
+
Altitude
Hoogte
-
+
%1 x %2
%1 x %2
-
+
%1 : %2
%1 : %2
-
+
Property
Eigenschap
-
+
Value
Waarde
diff --git a/app/translations/PineapplePictures_ru.ts b/app/translations/PineapplePictures_ru.ts
index 647d8f0..8ecf409 100644
--- a/app/translations/PineapplePictures_ru.ts
+++ b/app/translations/PineapplePictures_ru.ts
@@ -20,142 +20,147 @@
+ None of the operations in this application will alter the pictures on disk.
+
+
+
+
Context menu option explanation:
Объяснение пунктов контекстного меню:
-
+
Make window stay on top of all other windows.
Сделать окно поверх всех остальных окон.
-
+
Avoid close window accidentally. (eg. by double clicking the window)
Избежать случайного закрытия окна (например, двойным щелчком по окну).
-
+
Version: %1
Версия: %1
-
+
Copyright (c) 2020 %1
Авторское право (c) 2020 %1
-
+
Logo designed by %1
Логотип разработан %1
-
+
Built with Qt %1 (%2)
Создано с использованием Qt %1 (%2)
-
+
Source code
Исходный код
-
+
Contributors
Участники
-
+
List of contributors on GitHub
Список участников на GitHub
-
+
Thanks to all people who contributed to this project.
Спасибо всем, кто внёс свой вклад в этот проект.
-
+
Translators
Переводчики
-
+
I would like to thank the following people who volunteered to translate this application.
Я хотел бы поблагодарить следующих людей, которые вызвались перевести это приложение.
-
+
%1 is built on the following free software libraries:
Free as in freedom
%1 собран на следующих бесплатных библиотеках программного обеспечения:
-
+
&Special Thanks
&Особая благодарность
-
+
&Third-party Libraries
&Сторонние библиотеки
-
+
Your Rights
Ваши Права
-
+
%1 is released under the MIT License.
%1 выпущен под лицензией MIT.
-
+
This license grants people a number of freedoms:
Эта лицензия дает людям ряд свобод:
-
+
You are free to use %1, for any purpose
Вы можете свободно использовать %1 для любых целей
-
+
You are free to distribute %1
Вы можете свободно распространять %1
-
+
You can study how %1 works and change it
Вы можете изучать, как работает %1, и изменять его
-
+
You can distribute changed versions of %1
Вы можете распространять измененные версии %1
-
+
The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.
Лицензия MIT гарантирует вам эту свободу. Никому и никогда не разрешается забирать её.
-
+
Third-party Libraries used by %1
Сторонние библиотеки, используемые %1
-
+
&Help
&Помощь
-
+
&About
&О программе
-
+
&License
&Лицензия
@@ -171,28 +176,28 @@
GraphicsView
-
+
File url list is empty
Список URL-адресов файлов пуст
-
+
File is not a valid image
Файл не является действительным изображением
-
-
+
+
Image data is invalid or currently unsupported
Данные изображения недействительны или в настоящее время не поддерживаются
-
+
Image data is invalid
Данные изображения недействительны
-
+
Not supported mimedata: %1
Неподдерживаемые mimedata: %1
@@ -200,74 +205,79 @@
MainWindow
-
+
File url list is empty
Список URL-адресов файлов пуст
-
+
&Copy
&Копировать
-
+
Copy P&ixmap
Копировать P&ixmap
-
+
Copy &File Path
Копировать &путь к файлу
-
+
Properties
Свойства
-
-
+
+
Stay on top
Поверх всех окон
-
-
+
+
Protected mode
Защищённый режим
-
+
Zoom in
Увеличить
-
+
Zoom out
Уменьшить
-
+
+ Flip &Horizontally
+
+
+
+
&Paste
&Вставить
-
+
Toggle Checkerboard
Переключить шахматную доску
-
+
Configure...
Настроить...
-
+
Help
Помощь
-
+
Quit
Выход
@@ -336,226 +346,236 @@
- Aspect Ratio
+ Aspect ratio
Соотношение сторон
+ Frame count
+
+
+
+
Name
Название
-
+
Item type
Тип элемента
-
+
Folder path
Путь к папке
-
+
Size
Размер
-
- Date Created
+
+ Date created
Дата создания
-
- Date Modified
+
+ Date modified
Дата изменения
-
+
Rating
Рейтинг
-
+
Comments
Комментарии
-
+
Authors
Авторы
-
+
Date taken
Дата захвата
-
+
Program name
Название программы
-
+
+ Copyright
+
+
+
+
Horizontal resolution
Горизонтальное разрешение
-
+
Vertical resolution
Вертикальное разрешение
-
+
Resolution unit
Единица разрешения
-
+
Colour representation
Цветовое представление
-
+
Camera maker
Производитель камеры
-
+
Camera model
Модель камеры
-
+
F-stop
F-stop
-
+
Exposure time
Экспозиция
-
+
ISO speed
ISO
-
+
Exposure bias
Смещение экспозиции
-
+
Focal length
Фокусное расстояние
-
+
Max aperture
Максимальная апертура
-
+
Metering mode
Режим замера
-
+
Flash mode
Режим вспышки
-
+
35mm focal length
Фокусное расстояние 35 мм
-
+
Lens model
Модель объектива
-
+
Brightness
Яркость
-
+
Exposure program
Программа экспозиции
-
+
Saturation
Насыщенность
-
+
Sharpness
Чёткость
-
+
White balance
Баланс белого
-
+
Digital zoom
Цифровой зум
-
+
EXIF version
Версия EXIF
-
+
Latitude reference
Ссылка на широту
-
+
Latitude
Широта
-
+
Longitude reference
Ссылка на долготу
-
+
Longitude
Долгота
-
+
Altitude reference
Ссылка на высоту
-
+
Altitude
Высота
-
+
%1 x %2
%1 x %2
-
+
%1 : %2
%1 : %2
-
+
Property
Свойство
-
+
Value
Значение
diff --git a/app/translations/PineapplePictures_si.ts b/app/translations/PineapplePictures_si.ts
index b410dcf..15b4c79 100644
--- a/app/translations/PineapplePictures_si.ts
+++ b/app/translations/PineapplePictures_si.ts
@@ -20,142 +20,147 @@
+ None of the operations in this application will alter the pictures on disk.
+
+
+
+
Context menu option explanation:
-
+
Make window stay on top of all other windows.
-
+
Avoid close window accidentally. (eg. by double clicking the window)
-
+
Version: %1
අනුවාදය: %1
-
+
Copyright (c) 2020 %1
ප්රකාශන හිමිකම (ඇ) 2020 %1
-
+
Logo designed by %1
ලාංඡනය %1 විසින් නිර්මාණය කරන ලදි
-
+
Built with Qt %1 (%2)
-
+
Source code
-
+
Contributors
සහදායකයින්
-
+
List of contributors on GitHub
ගිට්හබ් හි සහදායකයින්ගේ ලැයිස්තුව
-
+
Thanks to all people who contributed to this project.
මෙම ව්යාපෘතියට දායක වූ සියලු දෙනාටම ස්තූතියි.
-
+
Translators
පරිවර්තකයින්
-
+
I would like to thank the following people who volunteered to translate this application.
මෙම යෙදුම පරිවර්තනය කිරීමට ස්වේච්ඡාවෙන් ඉදිරිපත් වූ පහත සඳහන් පුද්ගලයින්ට මම ස්තූතිවන්ත වෙමි.
-
+
%1 is built on the following free software libraries:
Free as in freedom
-
+
&Special Thanks
-
+
&Third-party Libraries
-
+
Your Rights
ඔබගේ අයිතිවාසිකම්
-
+
%1 is released under the MIT License.
-
+
This license grants people a number of freedoms:
-
+
You are free to use %1, for any purpose
ඕනෑම කටයුත්තක් සඳහා %1 භාවිතා කිරීමට ඔබට නිදහස තිබේ
-
+
You are free to distribute %1
%1 බෙදා හැරීමට ඔබට නිදහස තිබේ
-
+
You can study how %1 works and change it
%1 ක්රියා කරන ආකාරය අධ්යයනය කර එය වෙනස් කළ හැකිය
-
+
You can distribute changed versions of %1
%1 හි වෙනස් කළ අනුවාදයන් ඔබට බෙදා හැරීමට හැකිය
-
+
The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.
-
+
Third-party Libraries used by %1
-
+
&Help
&උපකාර
-
+
&About
&පිළිබඳව
-
+
&License
&බලපත්රය
@@ -171,28 +176,28 @@
GraphicsView
-
+
File url list is empty
ගොනු ඒ.ස.නි. (url) ලැයිස්තුව හිස් ය
-
+
File is not a valid image
ගොනුව වලංගු නොවන රූපයකි
-
-
+
+
Image data is invalid or currently unsupported
-
+
Image data is invalid
රූපයේ දත්ත වලංගු නොවේ
-
+
Not supported mimedata: %1
@@ -200,74 +205,79 @@
MainWindow
-
+
File url list is empty
ගොනු ඒ.ස.නි. (url) ලැයිස්තුව හිස් ය
-
+
&Copy
&පිටපත්
-
-
+
+
Stay on top
-
-
+
+
Protected mode
-
+
Zoom in
-
+
Zoom out
-
-
- Copy P&ixmap
-
-
- Copy &File Path
+ Flip &Horizontally
- &Paste
+ Copy P&ixmap
+ Copy &File Path
+
+
+
+
+ &Paste
+
+
+
+
Toggle Checkerboard
-
+
Configure...
-
+
Help
-
+
Properties
-
+
Quit
@@ -336,226 +346,236 @@
- Aspect Ratio
+ Aspect ratio
දර්ශන අනුපාතය
- Name
- නම
-
-
-
- Item type
+ Frame count
+ Name
+ නම
+
+
+
+ Item type
+
+
+
+
Folder path
ගොනුවේ මාර්ගය
-
+
Size
ප්රමාණය
-
- Date Created
+
+ Date created
සෑදූ දිනය
-
- Date Modified
+
+ Date modified
වෙනස් කළ දිනය
-
+
Rating
ශ්රේණිගත කිරීම
-
+
Comments
අදහස්
-
+
Authors
කතුවරුන්
-
+
Date taken
ගත් දිනය
-
+
Program name
වැඩසටහනේ නම
-
+
+ Copyright
+
+
+
+
Horizontal resolution
තිරස් විභේදනය
-
+
Vertical resolution
සිරස් විභේදනය
-
+
Resolution unit
විභේදන ඒකකය
-
+
Colour representation
වර්ණ නිරූපණය
-
+
Camera maker
-
+
Camera model
-
+
F-stop
-
+
Exposure time
නිරාවරණ කාලය
-
+
ISO speed
-
+
Exposure bias
නිරාවරණ නැඹුරුව
-
+
Focal length
-
+
Max aperture
-
+
Metering mode
-
+
Flash mode
-
+
35mm focal length
-
+
Lens model
කාච ආකෘතිය
-
+
Brightness
දීප්තිය
-
+
Exposure program
නිරාවරණ වැඩසටහන
-
+
Saturation
-
+
Sharpness
තියුණු බව
-
+
White balance
-
+
Digital zoom
සංඛ්යාංක විශාලනය
-
+
EXIF version
-
+
Latitude reference
-
+
Latitude
අක්ෂාංශ
-
+
Longitude reference
-
+
Longitude
දේශාංශ
-
+
Altitude reference
-
+
Altitude
උන්නතාංශය
-
+
%1 x %2
%1 x %2
-
+
%1 : %2
%1 : %2
-
+
Property
-
+
Value
අගය
diff --git a/app/translations/PineapplePictures_zh_CN.ts b/app/translations/PineapplePictures_zh_CN.ts
index 46f2f92..a5236a0 100644
--- a/app/translations/PineapplePictures_zh_CN.ts
+++ b/app/translations/PineapplePictures_zh_CN.ts
@@ -20,142 +20,147 @@
+ None of the operations in this application will alter the pictures on disk.
+ 此程序中所有的操作均不会修改图片文件本身。
+
+
+
Context menu option explanation:
菜单项说明:
-
+
Make window stay on top of all other windows.
使窗口始终至于其它非置顶窗口上方。
-
+
Avoid close window accidentally. (eg. by double clicking the window)
避免窗口意外关闭。(如:不小心双击了窗口触发了关闭窗口行为)
-
+
Version: %1
版本: %1
-
+
Copyright (c) 2020 %1
版权所有 (c) 2020 %1
-
+
Logo designed by %1
Logo 由 %1 设计
-
+
Built with Qt %1 (%2)
使用 Qt %1 (%2) 进行构建
-
+
Source code
源代码
-
+
Contributors
贡献者
-
+
List of contributors on GitHub
GitHub 上的贡献者列表
-
+
Thanks to all people who contributed to this project.
感谢所有参与此项目的朋友。
-
+
Translators
翻译者
-
+
I would like to thank the following people who volunteered to translate this application.
我想要感谢下列自愿参与翻译此应用程序的朋友。
-
+
%1 is built on the following free software libraries:
Free as in freedom
%1 采用了下列自由软件程序库进行构建:
-
+
&Special Thanks
致谢(&S)
-
+
&Third-party Libraries
第三方程序库(&T)
-
+
Your Rights
用户的权利
-
+
%1 is released under the MIT License.
%1 是在 MIT 许可协议下发布的。
-
+
This license grants people a number of freedoms:
此许可证赋予人们以下自由的权利:
-
+
You are free to use %1, for any purpose
任何人都可以为了任何目的自由地使用 %1
-
+
You are free to distribute %1
任何人都可以自由地分发 %1
-
+
You can study how %1 works and change it
任何人都可以自由地研究 %1 的工作原理并对其进行修改
-
+
You can distribute changed versions of %1
任何人都可以自由地分发修改过的 %1 版本
-
+
The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.
此软件通过 MIT 许可证赋予用户上述自由,任何人无权剥夺。
-
+
Third-party Libraries used by %1
%1 使用的第三方程序库
-
+
&Help
帮助(&H)
-
+
&About
关于(&A)
-
+
&License
软件许可证(&L)
@@ -171,28 +176,28 @@
GraphicsView
-
+
File url list is empty
文件 URL 列表为空
-
+
File is not a valid image
文件不是有效的图片文件
-
-
+
+
Image data is invalid or currently unsupported
图像数据无效或暂未支持
-
+
Image data is invalid
图片数据无效
-
+
Not supported mimedata: %1
不受支持的 MimeData 格式:%1
@@ -200,74 +205,79 @@
MainWindow
-
+
File url list is empty
文件 URL 列表为空
-
+
&Copy
复制(&C)
-
+
Copy P&ixmap
复制位图(&I)
-
+
Copy &File Path
复制文件路径(&F)
-
+
Properties
属性
-
-
+
+
Stay on top
总在最前
-
-
+
+
Protected mode
保护模式
-
+
Zoom in
放大
-
+
Zoom out
缩小
-
+
+ Flip &Horizontally
+ 水平翻转(&H)
+
+
+
&Paste
粘贴(&P)
-
+
Toggle Checkerboard
切换棋盘格
-
+
Configure...
设置...
-
+
Help
帮助
-
+
Quit
退出
@@ -336,226 +346,236 @@
- Aspect Ratio
+ Aspect ratio
纵横比
+ Frame count
+ 总帧数
+
+
+
Name
名称
-
+
Item type
项目类型
-
+
Folder path
文件夹路径
-
+
Size
大小
-
- Date Created
+
+ Date created
创建日期
-
- Date Modified
+
+ Date modified
修改日期
-
+
Rating
分级
-
+
Comments
备注
-
+
Authors
作者
-
+
Date taken
拍摄日期
-
+
Program name
程序名称
-
+
+ Copyright
+ 版权
+
+
+
Horizontal resolution
水平分辨率
-
+
Vertical resolution
垂直分辨率
-
+
Resolution unit
分辨率单位
-
+
Colour representation
颜色表示
-
+
Camera maker
照相机制造商
-
+
Camera model
照相机型号
-
+
F-stop
光圈值
-
+
Exposure time
曝光时间
-
+
ISO speed
ISO 感光度
-
+
Exposure bias
曝光补偿
-
+
Focal length
焦距
-
+
Max aperture
镜头最大光圈
-
+
Metering mode
测光模式
-
+
Flash mode
闪光灯模式
-
+
35mm focal length
换算至 35mm 焦距
-
+
Lens model
镜头型号
-
+
Brightness
亮度
-
+
Exposure program
曝光程序
-
+
Saturation
饱和度
-
+
Sharpness
清晰度
-
+
White balance
白平衡
-
+
Digital zoom
数字缩放
-
+
EXIF version
EXIF 版本
-
+
Latitude reference
纬度基准
-
+
Latitude
纬度
-
+
Longitude reference
经度基准
-
+
Longitude
经度
-
+
Altitude reference
海拔基准
-
+
Altitude
海拔
-
+
%1 x %2
%1 x %2
-
+
%1 : %2
%1 : %2
-
+
Property
属性
-
+
Value
值