Compare commits
2 Commits
1c6060d8d5
...
v.2.4
| Author | SHA1 | Date | |
|---|---|---|---|
| 333bb3b995 | |||
| 77db85cc71 |
@@ -1,6 +1,8 @@
|
|||||||
# Version 2.4
|
# Version 2.4
|
||||||
- Adding Login window support
|
- Adding Login window support
|
||||||
- Adding Russian translation (Thanks to blogdron)
|
- Adding Russian translation (Thanks to blogdron)
|
||||||
|
- Adding Hungarian translation (Thanks to vajdao)
|
||||||
|
- Bugfix: Time period calculation on locations near the dateline, like Japan
|
||||||
|
|
||||||
# Version 2.3
|
# Version 2.3
|
||||||
- Adding Dutch translation
|
- Adding Dutch translation
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
from gi.repository import Gio, Gdk
|
from gi.repository import Gio, Gdk
|
||||||
|
|
||||||
# Packages
|
# Packages
|
||||||
import os, time, locale, subprocess, sys
|
import os, time, locale, subprocess, getpass
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
# Local scripts
|
# Local scripts
|
||||||
@@ -187,13 +187,13 @@ class Main_View_Model:
|
|||||||
# Update the login_image
|
# Update the login_image
|
||||||
if self.cinnamon_prefs.login_image:
|
if self.cinnamon_prefs.login_image:
|
||||||
# Create the folder in /tmp
|
# Create the folder in /tmp
|
||||||
try:
|
directory = '/usr/share/pixmaps/cinnamon_dynamic_wallpaper'
|
||||||
os.mkdir("/tmp/cinnamon_dynamic_wallpaper")
|
|
||||||
except:
|
if not os.path.isdir(directory):
|
||||||
print("Folder already exists")
|
subprocess.run(['pkexec', 'install', '-o', getpass.getuser(), '-d', directory])
|
||||||
|
|
||||||
# Copy the current image to the temp folder for the login screen
|
# Copy the current image to the temp folder for the login screen
|
||||||
os.system("cp " + self.current_image_uri + " " + "/tmp/cinnamon_dynamic_wallpaper/login_image.jpg")
|
os.system("cp " + self.current_image_uri + " " + directory + "/login_image.jpg")
|
||||||
|
|
||||||
# Set background stretching
|
# Set background stretching
|
||||||
self.background_settings['picture-options'] = self.cinnamon_prefs.picture_aspect
|
self.background_settings['picture-options'] = self.cinnamon_prefs.picture_aspect
|
||||||
@@ -289,32 +289,24 @@ class Main_View_Model:
|
|||||||
# Location of the config file
|
# Location of the config file
|
||||||
file_location = self.WORKING_DIR + "/slick-greeter.conf"
|
file_location = self.WORKING_DIR + "/slick-greeter.conf"
|
||||||
|
|
||||||
|
if self.cinnamon_prefs.login_image:
|
||||||
|
self.refresh_image()
|
||||||
|
|
||||||
if os.path.isfile("/etc/lightdm/slick-greeter.conf"):
|
if os.path.isfile("/etc/lightdm/slick-greeter.conf"):
|
||||||
# File already exists, make a copy of the config
|
# File already exists, make a copy of the config
|
||||||
with open("/etc/lightdm/slick-greeter.conf", "r") as conf_file:
|
with open("/etc/lightdm/slick-greeter.conf", "r") as conf_file:
|
||||||
for line in conf_file.readlines():
|
for line in conf_file.readlines():
|
||||||
if line.startswith("background"):
|
if not line.startswith("background"):
|
||||||
# Case 1: Preference is already set as expected -> leave function
|
|
||||||
if line.find("cinnamon_dynamic_wallpaper/login_image.jpg") != -1 and self.cinnamon_prefs.login_image or \
|
|
||||||
line.find("cinnamon_dynamic_wallpaper/login_image.jpg") == -1 and not self.cinnamon_prefs.login_image:
|
|
||||||
return
|
|
||||||
|
|
||||||
# Case 2: Function enabled -> Set the path to the login image
|
|
||||||
elif self.cinnamon_prefs.login_image:
|
|
||||||
file_content += "background=/tmp/cinnamon_dynamic_wallpaper/login_image.jpg\n"
|
|
||||||
|
|
||||||
# Case 3: Function disabled -> Remove the custom login image
|
|
||||||
elif not self.cinnamon_prefs.login_image:
|
|
||||||
break
|
|
||||||
|
|
||||||
# Other config lines will be simply copied
|
|
||||||
else:
|
|
||||||
file_content += line
|
file_content += line
|
||||||
|
elif line.endswith("cinnamon_dynamic_wallpaper/login_image.jpg"):
|
||||||
|
# Skip the configuration. It's already perfect!
|
||||||
|
return
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# File doesn't exists
|
# File doesn't exists
|
||||||
file_content = "[Greeter]\n"
|
file_content = "[Greeter]\n"
|
||||||
file_content += "background=/tmp/cinnamon_dynamic_wallpaper/login_image.jpg"
|
|
||||||
|
file_content += "background=/usr/share/pixmaps/cinnamon_dynamic_wallpaper/login_image.jpg"
|
||||||
|
|
||||||
# Create the file
|
# Create the file
|
||||||
with open(file_location, "w") as conf_file:
|
with open(file_location, "w") as conf_file:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
from math import pi, sin, asin, acos, cos, floor, atan, tan
|
from math import pi, sin, asin, acos, cos, floor, atan, tan
|
||||||
from datetime import datetime, timezone, time
|
from datetime import datetime, timezone, time, timedelta
|
||||||
|
|
||||||
|
|
||||||
class Suntimes:
|
class Suntimes:
|
||||||
@@ -55,7 +55,7 @@ class Suntimes:
|
|||||||
civial_dusk_start = self.calc_sunrise_sunset_time(False)
|
civial_dusk_start = self.calc_sunrise_sunset_time(False)
|
||||||
night_start = self.calc_sunrise_sunset_time(False, 96)
|
night_start = self.calc_sunrise_sunset_time(False, 96)
|
||||||
|
|
||||||
light_period_duration = (sunset_start - morning_start) / 8
|
light_period_duration = timedelta(seconds=(sunset_start - morning_start).seconds / 8)
|
||||||
|
|
||||||
noon_start = morning_start + 3 * light_period_duration
|
noon_start = morning_start + 3 * light_period_duration
|
||||||
afternoon_start = morning_start + 5 * light_period_duration
|
afternoon_start = morning_start + 5 * light_period_duration
|
||||||
|
|||||||
@@ -5,10 +5,10 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: cinnamon-dynamic-wallpaper@TobiZog 2.3\n"
|
"Project-Id-Version: cinnamon-dynamic-wallpaper@TobiZog 2.4\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
||||||
"extensions/issues\n"
|
"extensions/issues\n"
|
||||||
"POT-Creation-Date: 2024-02-12 12:12+0100\n"
|
"POT-Creation-Date: 2024-02-15 18:38+0100\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -177,22 +177,30 @@ msgid "Picture aspect"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2556
|
#: 5.4/res/preferences.glade:2556
|
||||||
msgid "Dynamic Background color"
|
msgid "Login Screen"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2593
|
#: 5.4/res/preferences.glade:2593
|
||||||
|
msgid "Set the background image as Login Screen background"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2630
|
||||||
|
msgid "Dynamic Background color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2667
|
||||||
msgid "Use dynamic Background color to create a gradient"
|
msgid "Use dynamic Background color to create a gradient"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2639
|
#: 5.4/res/preferences.glade:2714
|
||||||
msgid "Behaviour"
|
msgid "Behaviour"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2658
|
#: 5.4/res/preferences.glade:2733
|
||||||
msgid "About the project"
|
msgid "About the project"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2687
|
#: 5.4/res/preferences.glade:2762
|
||||||
msgid ""
|
msgid ""
|
||||||
"Based on a location or by user choice, this extensions calculates the "
|
"Based on a location or by user choice, this extensions calculates the "
|
||||||
"periods of a day and switches the background image of your Cinnamon desktop. "
|
"periods of a day and switches the background image of your Cinnamon desktop. "
|
||||||
@@ -200,56 +208,56 @@ msgid ""
|
|||||||
"heic image import by the user or a custom folder with single images."
|
"heic image import by the user or a custom folder with single images."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2706
|
#: 5.4/res/preferences.glade:2781
|
||||||
msgid "Developed by TobiZog"
|
msgid "Developed by TobiZog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2723
|
#: 5.4/res/preferences.glade:2798
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you need more information or want to rate the extension, you can visit "
|
"If you need more information or want to rate the extension, you can visit "
|
||||||
"the Cinnamon Spices Website."
|
"the Cinnamon Spices Website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2734
|
#: 5.4/res/preferences.glade:2809
|
||||||
msgid "Cinnamon Dynamic Wallpaper at Cinnamon Spices Website"
|
msgid "Cinnamon Dynamic Wallpaper at Cinnamon Spices Website"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2759
|
#: 5.4/res/preferences.glade:2834
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2788
|
#: 5.4/res/preferences.glade:2863
|
||||||
msgid ""
|
msgid ""
|
||||||
"This project is Open Source. You can take a look inside the whole source "
|
"This project is Open Source. You can take a look inside the whole source "
|
||||||
"code of this extension on GitHub."
|
"code of this extension on GitHub."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2799
|
#: 5.4/res/preferences.glade:2874
|
||||||
msgid "Source Code on GitHub"
|
msgid "Source Code on GitHub"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2824
|
#: 5.4/res/preferences.glade:2899
|
||||||
msgid "Issues and Enhancements"
|
msgid "Issues and Enhancements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2853
|
#: 5.4/res/preferences.glade:2928
|
||||||
msgid ""
|
msgid ""
|
||||||
"Do you find an issue? Or want a new feature? Go to the GitHub repository and "
|
"Do you find an issue? Or want a new feature? Go to the GitHub repository and "
|
||||||
"create a new issue."
|
"create a new issue."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2864
|
#: 5.4/res/preferences.glade:2939
|
||||||
msgid "Create a new issue on GitHub"
|
msgid "Create a new issue on GitHub"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2889
|
#: 5.4/res/preferences.glade:2964
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2917
|
#: 5.4/res/preferences.glade:2992
|
||||||
msgid "Apply and close this window"
|
msgid "Apply and close this window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2929
|
#: 5.4/res/preferences.glade:3004
|
||||||
msgid "Apply the settings without closing this window"
|
msgid "Apply the settings without closing this window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ msgstr ""
|
|||||||
"Project-Id-Version: cinnamon-dynamic-wallpaper@TobiZog 2.2\n"
|
"Project-Id-Version: cinnamon-dynamic-wallpaper@TobiZog 2.2\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
||||||
"extensions/issues\n"
|
"extensions/issues\n"
|
||||||
"POT-Creation-Date: 2024-02-12 12:12+0100\n"
|
"POT-Creation-Date: 2024-02-15 18:38+0100\n"
|
||||||
"PO-Revision-Date: 2024-02-12 12:08+0100\n"
|
"PO-Revision-Date: 2024-02-15 18:39+0100\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
@@ -182,24 +182,32 @@ msgid "Picture aspect"
|
|||||||
msgstr "Bild Skalierung"
|
msgstr "Bild Skalierung"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2556
|
#: 5.4/res/preferences.glade:2556
|
||||||
|
msgid "Login Screen"
|
||||||
|
msgstr "Anmeldefenster"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2593
|
||||||
|
msgid "Set the background image as Login Screen background"
|
||||||
|
msgstr "Verwende das Desktop-Hintergrundbild auch für den Anmeldebildschirm"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2630
|
||||||
msgid "Dynamic Background color"
|
msgid "Dynamic Background color"
|
||||||
msgstr "Dynamische Hintergrundfarbe"
|
msgstr "Dynamische Hintergrundfarbe"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2593
|
#: 5.4/res/preferences.glade:2667
|
||||||
msgid "Use dynamic Background color to create a gradient"
|
msgid "Use dynamic Background color to create a gradient"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Verwende eine dynamische Hintergrundfarbe um einen Farbgradienten zu "
|
"Verwende eine dynamische Hintergrundfarbe um einen Farbgradienten zu "
|
||||||
"erstellen"
|
"erstellen"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2639
|
#: 5.4/res/preferences.glade:2714
|
||||||
msgid "Behaviour"
|
msgid "Behaviour"
|
||||||
msgstr "Verhalten"
|
msgstr "Verhalten"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2658
|
#: 5.4/res/preferences.glade:2733
|
||||||
msgid "About the project"
|
msgid "About the project"
|
||||||
msgstr "Über das Projekt"
|
msgstr "Über das Projekt"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2687
|
#: 5.4/res/preferences.glade:2762
|
||||||
msgid ""
|
msgid ""
|
||||||
"Based on a location or by user choice, this extensions calculates the "
|
"Based on a location or by user choice, this extensions calculates the "
|
||||||
"periods of a day and switches the background image of your Cinnamon desktop. "
|
"periods of a day and switches the background image of your Cinnamon desktop. "
|
||||||
@@ -212,11 +220,11 @@ msgstr ""
|
|||||||
"vorkonfigurierte Wallpaper-Sets, die Möglichkeit eigene HEIC-Dateien zu "
|
"vorkonfigurierte Wallpaper-Sets, die Möglichkeit eigene HEIC-Dateien zu "
|
||||||
"importieren oder beliebige Bilder aus einem Ordner zu verwenden."
|
"importieren oder beliebige Bilder aus einem Ordner zu verwenden."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2706
|
#: 5.4/res/preferences.glade:2781
|
||||||
msgid "Developed by TobiZog"
|
msgid "Developed by TobiZog"
|
||||||
msgstr "Entwickelt von TobiZog"
|
msgstr "Entwickelt von TobiZog"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2723
|
#: 5.4/res/preferences.glade:2798
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you need more information or want to rate the extension, you can visit "
|
"If you need more information or want to rate the extension, you can visit "
|
||||||
"the Cinnamon Spices Website."
|
"the Cinnamon Spices Website."
|
||||||
@@ -224,15 +232,15 @@ msgstr ""
|
|||||||
"Für weitere Informationen oder wenn du die Erweiterung bewerten willst, "
|
"Für weitere Informationen oder wenn du die Erweiterung bewerten willst, "
|
||||||
"kannst du die Cinnamon Spices Webseite besuchen."
|
"kannst du die Cinnamon Spices Webseite besuchen."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2734
|
#: 5.4/res/preferences.glade:2809
|
||||||
msgid "Cinnamon Dynamic Wallpaper at Cinnamon Spices Website"
|
msgid "Cinnamon Dynamic Wallpaper at Cinnamon Spices Website"
|
||||||
msgstr "Cinnamon Dynamic Wallpaper auf der Cinnamon Spices Webseite"
|
msgstr "Cinnamon Dynamic Wallpaper auf der Cinnamon Spices Webseite"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2759
|
#: 5.4/res/preferences.glade:2834
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Quellcode"
|
msgstr "Quellcode"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2788
|
#: 5.4/res/preferences.glade:2863
|
||||||
msgid ""
|
msgid ""
|
||||||
"This project is Open Source. You can take a look inside the whole source "
|
"This project is Open Source. You can take a look inside the whole source "
|
||||||
"code of this extension on GitHub."
|
"code of this extension on GitHub."
|
||||||
@@ -240,15 +248,15 @@ msgstr ""
|
|||||||
"Dieses Projekt ist quelloffen (Open Source). Du kannst den kompletten Code "
|
"Dieses Projekt ist quelloffen (Open Source). Du kannst den kompletten Code "
|
||||||
"auf GitHub einsehen."
|
"auf GitHub einsehen."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2799
|
#: 5.4/res/preferences.glade:2874
|
||||||
msgid "Source Code on GitHub"
|
msgid "Source Code on GitHub"
|
||||||
msgstr "Quellcode auf GitHub"
|
msgstr "Quellcode auf GitHub"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2824
|
#: 5.4/res/preferences.glade:2899
|
||||||
msgid "Issues and Enhancements"
|
msgid "Issues and Enhancements"
|
||||||
msgstr "Probleme und Verbesserungen"
|
msgstr "Probleme und Verbesserungen"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2853
|
#: 5.4/res/preferences.glade:2928
|
||||||
msgid ""
|
msgid ""
|
||||||
"Do you find an issue? Or want a new feature? Go to the GitHub repository and "
|
"Do you find an issue? Or want a new feature? Go to the GitHub repository and "
|
||||||
"create a new issue."
|
"create a new issue."
|
||||||
@@ -256,18 +264,18 @@ msgstr ""
|
|||||||
"Hast du ein Problem entdeckt? Oder hättest du gerne ein Feature "
|
"Hast du ein Problem entdeckt? Oder hättest du gerne ein Feature "
|
||||||
"implementiert? Besuche das GitHub Repository und erstelle ein Ticket."
|
"implementiert? Besuche das GitHub Repository und erstelle ein Ticket."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2864
|
#: 5.4/res/preferences.glade:2939
|
||||||
msgid "Create a new issue on GitHub"
|
msgid "Create a new issue on GitHub"
|
||||||
msgstr "Erstelle ein Ticket auf GitHub (auf Englisch)"
|
msgstr "Erstelle ein Ticket auf GitHub (auf Englisch)"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2889
|
#: 5.4/res/preferences.glade:2964
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "Über"
|
msgstr "Über"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2917
|
#: 5.4/res/preferences.glade:2992
|
||||||
msgid "Apply and close this window"
|
msgid "Apply and close this window"
|
||||||
msgstr "Anwenden und das Fenster schließen"
|
msgstr "Anwenden und das Fenster schließen"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2929
|
#: 5.4/res/preferences.glade:3004
|
||||||
msgid "Apply the settings without closing this window"
|
msgid "Apply the settings without closing this window"
|
||||||
msgstr "Anwenden ohne das Fenster zu schließen"
|
msgstr "Anwenden ohne das Fenster zu schließen"
|
||||||
|
|||||||
@@ -9,33 +9,34 @@ msgstr ""
|
|||||||
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
||||||
"extensions/issues\n"
|
"extensions/issues\n"
|
||||||
"POT-Creation-Date: 2024-02-12 12:12+0100\n"
|
"POT-Creation-Date: 2024-02-12 12:12+0100\n"
|
||||||
"PO-Revision-Date: 2024-02-11 19:51+0100\n"
|
"PO-Revision-Date: 2024-02-12 10:34-0300\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 3.0.1\n"
|
"X-Generator: Poedit 3.4.2\n"
|
||||||
|
|
||||||
#: 5.4/extension.js:75
|
#: 5.4/extension.js:75
|
||||||
#, fuzzy
|
|
||||||
msgid "Welcome to Cinnamon Dynamic Wallpaper"
|
msgid "Welcome to Cinnamon Dynamic Wallpaper"
|
||||||
msgstr "Fondo de pantalla dinámico de Cinnamon"
|
msgstr "Bienvenido al Fondo de pantalla dinámico de Cinnamon"
|
||||||
|
|
||||||
#: 5.4/extension.js:76
|
#: 5.4/extension.js:76
|
||||||
msgid "Check the preferences to choose a dynamic wallpaper"
|
msgid "Check the preferences to choose a dynamic wallpaper"
|
||||||
msgstr ""
|
msgstr "Compruebe las preferencias para elegir un fondo de pantalla dinámico"
|
||||||
|
|
||||||
#: 5.4/extension.js:113
|
#: 5.4/extension.js:113
|
||||||
msgid "Error!"
|
msgid "Error!"
|
||||||
msgstr ""
|
msgstr "¡Error!"
|
||||||
|
|
||||||
#: 5.4/extension.js:114
|
#: 5.4/extension.js:114
|
||||||
msgid ""
|
msgid ""
|
||||||
"Cinnamon Dynamic Wallpaper got an error while running the loop script. "
|
"Cinnamon Dynamic Wallpaper got an error while running the loop script. "
|
||||||
"Please create an issue on GitHub."
|
"Please create an issue on GitHub."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Fondo de pantalla dinámico de Cinnamon obtuvo un error al ejecutar el script "
|
||||||
|
"de bucle. Por favor, cree una incidencia en GitHub."
|
||||||
|
|
||||||
#: 5.4/extension.js:139
|
#: 5.4/extension.js:139
|
||||||
msgid "Open settings"
|
msgid "Open settings"
|
||||||
|
|||||||
269
cinnamon-dynamic-wallpaper@TobiZog/po/hu.po
Normal file
269
cinnamon-dynamic-wallpaper@TobiZog/po/hu.po
Normal file
@@ -0,0 +1,269 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: cinnamon-dynamic-wallpaper@TobiZog 2.3\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
||||||
|
"extensions/issues\n"
|
||||||
|
"POT-Creation-Date: 2024-02-12 12:12+0100\n"
|
||||||
|
"PO-Revision-Date: 2024-02-15 15:38+0100\n"
|
||||||
|
"Last-Translator: Vajda Örs <ors0092@gmail.com>\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: hu\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Generator: Poedit 3.0.1\n"
|
||||||
|
|
||||||
|
#: 5.4/extension.js:75
|
||||||
|
msgid "Welcome to Cinnamon Dynamic Wallpaper"
|
||||||
|
msgstr "Üdvözöljük a Cinnamon Dinamikus Háttérkép alkalmazásban"
|
||||||
|
|
||||||
|
#: 5.4/extension.js:76
|
||||||
|
msgid "Check the preferences to choose a dynamic wallpaper"
|
||||||
|
msgstr "Ellenőrizze a beállításokat a dinamikus háttér kiválasztásához"
|
||||||
|
|
||||||
|
#: 5.4/extension.js:113
|
||||||
|
msgid "Error!"
|
||||||
|
msgstr "Hiba!"
|
||||||
|
|
||||||
|
#: 5.4/extension.js:114
|
||||||
|
msgid ""
|
||||||
|
"Cinnamon Dynamic Wallpaper got an error while running the loop script. "
|
||||||
|
"Please create an issue on GitHub."
|
||||||
|
msgstr ""
|
||||||
|
"A Cinnamon Dinamikus Háttérkép hibába ütközött a ciklusszkript futtatása "
|
||||||
|
"során. Kérem készítsen egy hibajegyet a GitHub-on."
|
||||||
|
|
||||||
|
#: 5.4/extension.js:139
|
||||||
|
msgid "Open settings"
|
||||||
|
msgstr "Beállítások megnyitása"
|
||||||
|
|
||||||
|
#. metadata.json->name
|
||||||
|
msgid "Cinnamon Dynamic Wallpaper"
|
||||||
|
msgstr "Cinnamon Dinamikus Háttérkép"
|
||||||
|
|
||||||
|
#. metadata.json->description
|
||||||
|
msgid ""
|
||||||
|
"Cinnamon extension for dynamic desktop backgrounds based on time and location"
|
||||||
|
msgstr "Cinnamon bővítmény dinamikus asztali hátterekhez idő és hely alapján"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:135
|
||||||
|
msgid "Image Source"
|
||||||
|
msgstr "Képforrás"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:186
|
||||||
|
msgid "Image Set"
|
||||||
|
msgstr "Kép kollekció"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:236
|
||||||
|
msgid "HEIC file"
|
||||||
|
msgstr "HEIC fájl"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:286
|
||||||
|
msgid "Source Folder"
|
||||||
|
msgstr "Forrás Könyvtár"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:336
|
||||||
|
msgid "Select an image set"
|
||||||
|
msgstr "Válasszon ki egy kép kollekciót"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:379
|
||||||
|
msgid "Select a heic file to import"
|
||||||
|
msgstr "Válasszon ki egy heic fájlt az importáláshoz"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:430
|
||||||
|
msgid "Select a source folder"
|
||||||
|
msgstr "Válassza ki a forrás könyvtárat"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:440
|
||||||
|
msgid "Open file selection dialog"
|
||||||
|
msgstr "fájlkiválasztó párbeszédpanel megnyitása"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:492
|
||||||
|
msgid "Image Selection"
|
||||||
|
msgstr "Kép Kiválasztása"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:930
|
||||||
|
msgid "Image Configuration"
|
||||||
|
msgstr "Kép Beállítások"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:948
|
||||||
|
msgid "Period estimation"
|
||||||
|
msgstr "Periódus becslés"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1001
|
||||||
|
msgid "Use Network Location"
|
||||||
|
msgstr "Hálózati helyzetfelismerés használata"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1051
|
||||||
|
msgid "Custom Location"
|
||||||
|
msgstr "Egyéni helyszín"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1103
|
||||||
|
msgid "Custom Time Periods"
|
||||||
|
msgstr "Egyéni idő periódusok"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1132
|
||||||
|
msgid "Location estimation"
|
||||||
|
msgstr "Helyzet becslése"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1167
|
||||||
|
msgid "Interval time to refresh location via network (min)"
|
||||||
|
msgstr "Helyzet frissítésének időköze (perc)"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1212
|
||||||
|
msgid "Location provider"
|
||||||
|
msgstr "Helyszolgáltató"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1274
|
||||||
|
msgid "Latitude"
|
||||||
|
msgstr "Szélességi kör"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1317
|
||||||
|
msgid "Longitude"
|
||||||
|
msgstr "Hosszúság"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1357
|
||||||
|
msgid "Period 1"
|
||||||
|
msgstr "Időszak 1"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1371
|
||||||
|
msgid "Period 2"
|
||||||
|
msgstr "Időszak 2"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1385
|
||||||
|
msgid "Period 3"
|
||||||
|
msgstr "Időszak 3"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1399
|
||||||
|
msgid "Period 4"
|
||||||
|
msgstr "Időszak 4"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1413
|
||||||
|
msgid "Period 5"
|
||||||
|
msgstr "Időszak 5"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1914
|
||||||
|
msgid "Period 6"
|
||||||
|
msgstr "Időszak 6"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1928
|
||||||
|
msgid "Period 7"
|
||||||
|
msgstr "Időszak 7"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1942
|
||||||
|
msgid "Period 9"
|
||||||
|
msgstr "Időszak 9"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1956
|
||||||
|
msgid "Period 8"
|
||||||
|
msgstr "Időszak 8"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:1970
|
||||||
|
msgid "Period 10"
|
||||||
|
msgstr "Időszak 10"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2461
|
||||||
|
msgid "Location & Times"
|
||||||
|
msgstr "Hely és idő"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2480
|
||||||
|
msgid "Scaling"
|
||||||
|
msgstr "Skálázás"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2519
|
||||||
|
msgid "Picture aspect"
|
||||||
|
msgstr "Képarány"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2556
|
||||||
|
msgid "Dynamic Background color"
|
||||||
|
msgstr "Dinamikus háttérszín"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2593
|
||||||
|
msgid "Use dynamic Background color to create a gradient"
|
||||||
|
msgstr "Használjon dinamikus háttérszínt színátmenet létrehozásához"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2639
|
||||||
|
msgid "Behaviour"
|
||||||
|
msgstr "Viselkedés"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2658
|
||||||
|
msgid "About the project"
|
||||||
|
msgstr "A projektről"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2687
|
||||||
|
msgid ""
|
||||||
|
"Based on a location or by user choice, this extensions calculates the "
|
||||||
|
"periods of a day and switches the background image of your Cinnamon desktop. "
|
||||||
|
"The extension offers as image sources a set of preconfigured wallpapers, a "
|
||||||
|
"heic image import by the user or a custom folder with single images."
|
||||||
|
msgstr ""
|
||||||
|
"Egy adott hely alapján, vagy a felhasználó által választott hely szerint ez "
|
||||||
|
"az bővítmény kiszámítja a nap különböző időszakait, és megváltoztatja a "
|
||||||
|
"háttérképet a Cinnamon asztalon. A bővítmény lehetőséget biztosít előre "
|
||||||
|
"beállított háttérképek, a felhasználó által importált heic képek vagy egyéni "
|
||||||
|
"mappában található egyedi képek használatára, háttérképként."
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2706
|
||||||
|
msgid "Developed by TobiZog"
|
||||||
|
msgstr "TobiZog által fejlesztve"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2723
|
||||||
|
msgid ""
|
||||||
|
"If you need more information or want to rate the extension, you can visit "
|
||||||
|
"the Cinnamon Spices Website."
|
||||||
|
msgstr ""
|
||||||
|
"Ha további információra van szüksége, vagy értékelni szeretné a bővítményt, "
|
||||||
|
"keresse fel a Cinnamon Spices webhelyet."
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2734
|
||||||
|
msgid "Cinnamon Dynamic Wallpaper at Cinnamon Spices Website"
|
||||||
|
msgstr "Cinnamon Dinamikus Háttérkép a Cinnamon Spices webhelyen"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2759
|
||||||
|
msgid "Source Code"
|
||||||
|
msgstr "Forráskód"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2788
|
||||||
|
msgid ""
|
||||||
|
"This project is Open Source. You can take a look inside the whole source "
|
||||||
|
"code of this extension on GitHub."
|
||||||
|
msgstr ""
|
||||||
|
"Ez a projekt nyílt forráskódú. A GitHubon megtekintheti a bővítmény teljes "
|
||||||
|
"forráskódját."
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2799
|
||||||
|
msgid "Source Code on GitHub"
|
||||||
|
msgstr "Forráskód a GitHubon"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2824
|
||||||
|
msgid "Issues and Enhancements"
|
||||||
|
msgstr "Problémák és fejlesztések"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2853
|
||||||
|
msgid ""
|
||||||
|
"Do you find an issue? Or want a new feature? Go to the GitHub repository and "
|
||||||
|
"create a new issue."
|
||||||
|
msgstr ""
|
||||||
|
"Problémát talált? Vagy új funkciót szeretne? Nyissa meg a GitHub-tárat, és "
|
||||||
|
"hozzon létre egy új bejelentést."
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2864
|
||||||
|
msgid "Create a new issue on GitHub"
|
||||||
|
msgstr "Hozzon létre egy új bejentést a GitHubon"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2889
|
||||||
|
msgid "About"
|
||||||
|
msgstr "Névjegy"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2917
|
||||||
|
msgid "Apply and close this window"
|
||||||
|
msgstr "Alkalmazza és zárja be ezt az ablakot"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2929
|
||||||
|
msgid "Apply the settings without closing this window"
|
||||||
|
msgstr "Alkalmazza a beállításokat az ablak bezárása nélkül"
|
||||||
@@ -7,8 +7,8 @@ msgstr ""
|
|||||||
"Project-Id-Version: cinnamon-dynamic-wallpaper@TobiZog 2.2\n"
|
"Project-Id-Version: cinnamon-dynamic-wallpaper@TobiZog 2.2\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
||||||
"extensions/issues\n"
|
"extensions/issues\n"
|
||||||
"POT-Creation-Date: 2024-02-12 12:12+0100\n"
|
"POT-Creation-Date: 2024-02-15 18:38+0100\n"
|
||||||
"PO-Revision-Date: 2024-02-12 12:12+0100\n"
|
"PO-Revision-Date: 2024-02-15 18:42+0100\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
@@ -182,23 +182,31 @@ msgid "Picture aspect"
|
|||||||
msgstr "Beeldaspect"
|
msgstr "Beeldaspect"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2556
|
#: 5.4/res/preferences.glade:2556
|
||||||
|
msgid "Login Screen"
|
||||||
|
msgstr "Log in scherm"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2593
|
||||||
|
msgid "Set the background image as Login Screen background"
|
||||||
|
msgstr "Stel de achtergrondafbeelding in als achtergrond van het inlogscherm"
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2630
|
||||||
msgid "Dynamic Background color"
|
msgid "Dynamic Background color"
|
||||||
msgstr "Dynamische achtergrond kleur"
|
msgstr "Dynamische achtergrond kleur"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2593
|
#: 5.4/res/preferences.glade:2667
|
||||||
msgid "Use dynamic Background color to create a gradient"
|
msgid "Use dynamic Background color to create a gradient"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Gebruik een dynamische achtergrondkleur om een kleur verloop te creëren"
|
"Gebruik een dynamische achtergrondkleur om een kleur verloop te creëren"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2639
|
#: 5.4/res/preferences.glade:2714
|
||||||
msgid "Behaviour"
|
msgid "Behaviour"
|
||||||
msgstr "Gedrag"
|
msgstr "Gedrag"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2658
|
#: 5.4/res/preferences.glade:2733
|
||||||
msgid "About the project"
|
msgid "About the project"
|
||||||
msgstr "Over het project"
|
msgstr "Over het project"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2687
|
#: 5.4/res/preferences.glade:2762
|
||||||
msgid ""
|
msgid ""
|
||||||
"Based on a location or by user choice, this extensions calculates the "
|
"Based on a location or by user choice, this extensions calculates the "
|
||||||
"periods of a day and switches the background image of your Cinnamon desktop. "
|
"periods of a day and switches the background image of your Cinnamon desktop. "
|
||||||
@@ -211,11 +219,11 @@ msgstr ""
|
|||||||
"geconfigureerde achtergronden, een heic-afbeeldingsimport door de gebruiker "
|
"geconfigureerde achtergronden, een heic-afbeeldingsimport door de gebruiker "
|
||||||
"of een aangepaste map met afzonderlijke afbeeldingen."
|
"of een aangepaste map met afzonderlijke afbeeldingen."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2706
|
#: 5.4/res/preferences.glade:2781
|
||||||
msgid "Developed by TobiZog"
|
msgid "Developed by TobiZog"
|
||||||
msgstr "Ontwikkeld door TobiZog"
|
msgstr "Ontwikkeld door TobiZog"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2723
|
#: 5.4/res/preferences.glade:2798
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you need more information or want to rate the extension, you can visit "
|
"If you need more information or want to rate the extension, you can visit "
|
||||||
"the Cinnamon Spices Website."
|
"the Cinnamon Spices Website."
|
||||||
@@ -223,15 +231,15 @@ msgstr ""
|
|||||||
"Als u meer informatie nodig heeft of de extensie wilt beoordelen, kunt u de "
|
"Als u meer informatie nodig heeft of de extensie wilt beoordelen, kunt u de "
|
||||||
"website van Cinnamon Spices bezoeken."
|
"website van Cinnamon Spices bezoeken."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2734
|
#: 5.4/res/preferences.glade:2809
|
||||||
msgid "Cinnamon Dynamic Wallpaper at Cinnamon Spices Website"
|
msgid "Cinnamon Dynamic Wallpaper at Cinnamon Spices Website"
|
||||||
msgstr "Cinnamon Dynamic Wallpaper op Cinnamon Spices Website"
|
msgstr "Cinnamon Dynamic Wallpaper op Cinnamon Spices Website"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2759
|
#: 5.4/res/preferences.glade:2834
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Broncode"
|
msgstr "Broncode"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2788
|
#: 5.4/res/preferences.glade:2863
|
||||||
msgid ""
|
msgid ""
|
||||||
"This project is Open Source. You can take a look inside the whole source "
|
"This project is Open Source. You can take a look inside the whole source "
|
||||||
"code of this extension on GitHub."
|
"code of this extension on GitHub."
|
||||||
@@ -239,15 +247,15 @@ msgstr ""
|
|||||||
"Dit project is Open Source. Je kunt de volledige broncode van deze extensie "
|
"Dit project is Open Source. Je kunt de volledige broncode van deze extensie "
|
||||||
"op GitHub bekijken."
|
"op GitHub bekijken."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2799
|
#: 5.4/res/preferences.glade:2874
|
||||||
msgid "Source Code on GitHub"
|
msgid "Source Code on GitHub"
|
||||||
msgstr "Broncode op GitHub"
|
msgstr "Broncode op GitHub"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2824
|
#: 5.4/res/preferences.glade:2899
|
||||||
msgid "Issues and Enhancements"
|
msgid "Issues and Enhancements"
|
||||||
msgstr "Problemen en Verbeteringen"
|
msgstr "Problemen en Verbeteringen"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2853
|
#: 5.4/res/preferences.glade:2928
|
||||||
msgid ""
|
msgid ""
|
||||||
"Do you find an issue? Or want a new feature? Go to the GitHub repository and "
|
"Do you find an issue? Or want a new feature? Go to the GitHub repository and "
|
||||||
"create a new issue."
|
"create a new issue."
|
||||||
@@ -255,18 +263,18 @@ msgstr ""
|
|||||||
"Vindt jij een probleem? Of wil je een nieuwe functie? Ga naar de GitHub-"
|
"Vindt jij een probleem? Of wil je een nieuwe functie? Ga naar de GitHub-"
|
||||||
"repository en maak een nieuw ticket."
|
"repository en maak een nieuw ticket."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2864
|
#: 5.4/res/preferences.glade:2939
|
||||||
msgid "Create a new issue on GitHub"
|
msgid "Create a new issue on GitHub"
|
||||||
msgstr "Maak een nieuw ticket op GitHub"
|
msgstr "Maak een nieuw ticket op GitHub"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2889
|
#: 5.4/res/preferences.glade:2964
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "Over"
|
msgstr "Over"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2917
|
#: 5.4/res/preferences.glade:2992
|
||||||
msgid "Apply and close this window"
|
msgid "Apply and close this window"
|
||||||
msgstr "Toepassen en sluit dit venster"
|
msgstr "Toepassen en sluit dit venster"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2929
|
#: 5.4/res/preferences.glade:3004
|
||||||
msgid "Apply the settings without closing this window"
|
msgid "Apply the settings without closing this window"
|
||||||
msgstr "Pas de instellingen toe zonder dit venster te sluiten"
|
msgstr "Pas de instellingen toe zonder dit venster te sluiten"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: cinnamon-dynamic-wallpaper@TobiZog 2.3\n"
|
"Project-Id-Version: cinnamon-dynamic-wallpaper@TobiZog 2.3\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-"
|
||||||
"extensions/issues\n"
|
"extensions/issues\n"
|
||||||
"POT-Creation-Date: 2024-02-12 12:12+0100\n"
|
"POT-Creation-Date: 2024-02-15 18:38+0100\n"
|
||||||
"PO-Revision-Date: 2024-02-15 16:46+0300\n"
|
"PO-Revision-Date: 2024-02-15 16:46+0300\n"
|
||||||
"Last-Translator: blogdron\n"
|
"Last-Translator: blogdron\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -181,22 +181,30 @@ msgid "Picture aspect"
|
|||||||
msgstr "Соотношение сторон"
|
msgstr "Соотношение сторон"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2556
|
#: 5.4/res/preferences.glade:2556
|
||||||
|
msgid "Login Screen"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2593
|
||||||
|
msgid "Set the background image as Login Screen background"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 5.4/res/preferences.glade:2630
|
||||||
msgid "Dynamic Background color"
|
msgid "Dynamic Background color"
|
||||||
msgstr "Динамический Фоновый цвет"
|
msgstr "Динамический Фоновый цвет"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2593
|
#: 5.4/res/preferences.glade:2667
|
||||||
msgid "Use dynamic Background color to create a gradient"
|
msgid "Use dynamic Background color to create a gradient"
|
||||||
msgstr "Используйте динамический цвет фона для создания градиента"
|
msgstr "Используйте динамический цвет фона для создания градиента"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2639
|
#: 5.4/res/preferences.glade:2714
|
||||||
msgid "Behaviour"
|
msgid "Behaviour"
|
||||||
msgstr "Поведение"
|
msgstr "Поведение"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2658
|
#: 5.4/res/preferences.glade:2733
|
||||||
msgid "About the project"
|
msgid "About the project"
|
||||||
msgstr "О проекте"
|
msgstr "О проекте"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2687
|
#: 5.4/res/preferences.glade:2762
|
||||||
msgid ""
|
msgid ""
|
||||||
"Based on a location or by user choice, this extensions calculates the "
|
"Based on a location or by user choice, this extensions calculates the "
|
||||||
"periods of a day and switches the background image of your Cinnamon desktop. "
|
"periods of a day and switches the background image of your Cinnamon desktop. "
|
||||||
@@ -209,11 +217,11 @@ msgstr ""
|
|||||||
"предварительно настроенных обоев, импорт изображений Heic пользователем или "
|
"предварительно настроенных обоев, импорт изображений Heic пользователем или "
|
||||||
"пользовательский каталог с отдельными изображениями."
|
"пользовательский каталог с отдельными изображениями."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2706
|
#: 5.4/res/preferences.glade:2781
|
||||||
msgid "Developed by TobiZog"
|
msgid "Developed by TobiZog"
|
||||||
msgstr "Разработано TobiZog"
|
msgstr "Разработано TobiZog"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2723
|
#: 5.4/res/preferences.glade:2798
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you need more information or want to rate the extension, you can visit "
|
"If you need more information or want to rate the extension, you can visit "
|
||||||
"the Cinnamon Spices Website."
|
"the Cinnamon Spices Website."
|
||||||
@@ -221,15 +229,15 @@ msgstr ""
|
|||||||
"Если вам нужна дополнительная информация или вы хотите оценить расширение, "
|
"Если вам нужна дополнительная информация или вы хотите оценить расширение, "
|
||||||
"посетите веб-сайт Cinnamon Spices."
|
"посетите веб-сайт Cinnamon Spices."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2734
|
#: 5.4/res/preferences.glade:2809
|
||||||
msgid "Cinnamon Dynamic Wallpaper at Cinnamon Spices Website"
|
msgid "Cinnamon Dynamic Wallpaper at Cinnamon Spices Website"
|
||||||
msgstr "Cinnamon Dynamic Wallpaper в Cinnamon Spices Веб-сайт"
|
msgstr "Cinnamon Dynamic Wallpaper в Cinnamon Spices Веб-сайт"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2759
|
#: 5.4/res/preferences.glade:2834
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Исходный код"
|
msgstr "Исходный код"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2788
|
#: 5.4/res/preferences.glade:2863
|
||||||
msgid ""
|
msgid ""
|
||||||
"This project is Open Source. You can take a look inside the whole source "
|
"This project is Open Source. You can take a look inside the whole source "
|
||||||
"code of this extension on GitHub."
|
"code of this extension on GitHub."
|
||||||
@@ -237,15 +245,15 @@ msgstr ""
|
|||||||
"Этот проект с открытым исходным кодом. Вы можете просмотреть весь исходный "
|
"Этот проект с открытым исходным кодом. Вы можете просмотреть весь исходный "
|
||||||
"код этого расширения на GitHub."
|
"код этого расширения на GitHub."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2799
|
#: 5.4/res/preferences.glade:2874
|
||||||
msgid "Source Code on GitHub"
|
msgid "Source Code on GitHub"
|
||||||
msgstr "Исходный код на GitHub"
|
msgstr "Исходный код на GitHub"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2824
|
#: 5.4/res/preferences.glade:2899
|
||||||
msgid "Issues and Enhancements"
|
msgid "Issues and Enhancements"
|
||||||
msgstr "Проблемы и улучшения"
|
msgstr "Проблемы и улучшения"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2853
|
#: 5.4/res/preferences.glade:2928
|
||||||
msgid ""
|
msgid ""
|
||||||
"Do you find an issue? Or want a new feature? Go to the GitHub repository and "
|
"Do you find an issue? Or want a new feature? Go to the GitHub repository and "
|
||||||
"create a new issue."
|
"create a new issue."
|
||||||
@@ -254,18 +262,18 @@ msgstr ""
|
|||||||
"GitHub и создайте новую задачу (issue). Если вы обнаружите сообщение об "
|
"GitHub и создайте новую задачу (issue). Если вы обнаружите сообщение об "
|
||||||
"ошибке в журналах выше, добавьте его в отчет о проблеме."
|
"ошибке в журналах выше, добавьте его в отчет о проблеме."
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2864
|
#: 5.4/res/preferences.glade:2939
|
||||||
msgid "Create a new issue on GitHub"
|
msgid "Create a new issue on GitHub"
|
||||||
msgstr "Создайте новую задачу (issue) на GitHub"
|
msgstr "Создайте новую задачу (issue) на GitHub"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2889
|
#: 5.4/res/preferences.glade:2964
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "О проекте"
|
msgstr "О проекте"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2917
|
#: 5.4/res/preferences.glade:2992
|
||||||
msgid "Apply and close this window"
|
msgid "Apply and close this window"
|
||||||
msgstr "Применить и закрыть это окно"
|
msgstr "Применить и закрыть это окно"
|
||||||
|
|
||||||
#: 5.4/res/preferences.glade:2929
|
#: 5.4/res/preferences.glade:3004
|
||||||
msgid "Apply the settings without closing this window"
|
msgid "Apply the settings without closing this window"
|
||||||
msgstr "Применить настройки, не закрывая это окно"
|
msgstr "Применить настройки, не закрывая это окно"
|
||||||
|
|||||||
Reference in New Issue
Block a user