develop #1

Open
DasMoorhuhn wants to merge 9 commits from develop into main
3 changed files with 6 additions and 3 deletions
Showing only changes of commit 99a5c7c110 - Show all commits

View File

@@ -6,3 +6,6 @@ dst: "../app/Bilder"
# de, en, fr, it, ru, uk # de, en, fr, it, ru, uk
language: "en" language: "en"
# 1: only log the file transfers, 2: ..., 3: ...
logging: 1

View File

@@ -6,5 +6,5 @@ class ExifData:
self.day:int = int(data['day']) self.day:int = int(data['day'])
self.month:int = int(data['month']) self.month:int = int(data['month'])
self.year:int = int(data['year']) self.year:int = int(data['year'])
self.time = data['time'] self.time:str = str(data['time'])
self.make:str = str(data['make']) self.make:str = str(data['make'])

View File

@@ -1,5 +1,5 @@
en: en:
start_sorting_images: 'Start sorting %{image_count} image(s)\n' start_sorting_images: 'Start sorting %{image_count} image(s)'
done_sorting_images: '%{image_count} image(s) sorted in %{time} seconds' done_sorting_images: '%{image_count} image(s) sorted in %{time} seconds'
done: 'Done' done: 'Done'
no_images_found: 'No images found' no_images_found: 'No images found'