├── flatpak ├── icons-symbolic │ ├── c │ ├── media-playback-start-symbolic.svg │ ├── media-playback-stop-symbolic.svg │ ├── go-next-symbolic.svg │ ├── window-maximize-symbolic.svg │ ├── go-next-symbolic-rtl.svg │ ├── view-refresh-symbolic.svg │ ├── timer-symbolic.svg │ ├── notification-symbolic.svg │ ├── content-loading-symbolic.svg │ ├── folder-music.svg │ ├── weather-clear-night-symbolic.svg │ ├── history.svg │ ├── shortcuts.svg │ └── settings-app-symbolic.svg ├── appicon │ └── com.github.vikdevelop.timer.png ├── com.github.vikdevelop.timer.desktop ├── com.github.vikdevelop.timer.gschema.xml └── com.github.vikdevelop.timer.metainfo.xml ├── img ├── timer1.png ├── timer2.png ├── timer3.png ├── timer4.png ├── timer_main-window.png ├── timer_timing-page.png ├── timer_more-settings.png ├── timer_keyboard-shortcuts.png └── timer_notification-settings.png ├── src ├── beeps │ ├── Oxygen.ogg │ └── Oxygen-Im-Phone-Ring.ogg ├── __init__.py └── shortcuts_window.py ├── timer ├── translations └── json │ ├── README.md │ ├── zh_Hans.json │ ├── en.json │ ├── fa.json │ ├── ia.json │ ├── pl.json │ ├── nb_NO.json │ ├── ar.json │ ├── sv.json │ ├── cs.json │ ├── hi.json │ ├── tr.json │ ├── nl.json │ ├── et.json │ ├── fi.json │ ├── ca.json │ ├── hr.json │ ├── ru.json │ ├── pt_BR.json │ ├── hu.json │ ├── de.json │ ├── it.json │ ├── uk.json │ ├── fr.json │ ├── ta.json │ └── es.json ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.yaml │ └── issue_bug_template.yaml ├── com.github.vikdevelop.timer.yaml ├── README.md ├── .gitignore └── LICENSE /flatpak/icons-symbolic/c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /img/timer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/img/timer1.png -------------------------------------------------------------------------------- /img/timer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/img/timer2.png -------------------------------------------------------------------------------- /img/timer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/img/timer3.png -------------------------------------------------------------------------------- /img/timer4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/img/timer4.png -------------------------------------------------------------------------------- /src/beeps/Oxygen.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/src/beeps/Oxygen.ogg -------------------------------------------------------------------------------- /timer: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import sys 3 | sys.path.append("/app/src") 4 | import main 5 | -------------------------------------------------------------------------------- /img/timer_main-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/img/timer_main-window.png -------------------------------------------------------------------------------- /img/timer_timing-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/img/timer_timing-page.png -------------------------------------------------------------------------------- /img/timer_more-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/img/timer_more-settings.png -------------------------------------------------------------------------------- /img/timer_keyboard-shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/img/timer_keyboard-shortcuts.png -------------------------------------------------------------------------------- /img/timer_notification-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/img/timer_notification-settings.png -------------------------------------------------------------------------------- /src/beeps/Oxygen-Im-Phone-Ring.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/src/beeps/Oxygen-Im-Phone-Ring.ogg -------------------------------------------------------------------------------- /flatpak/appicon/com.github.vikdevelop.timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/timer/HEAD/flatpak/appicon/com.github.vikdevelop.timer.png -------------------------------------------------------------------------------- /flatpak/icons-symbolic/media-playback-start-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/media-playback-stop-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /translations/json/README.md: -------------------------------------------------------------------------------- 1 | ## Make Timer available in more languages 🙋 2 | Use [Weblate](https://hosted.weblate.org/projects/vikdevelop/timer/) to translate Timer. 3 | This is an open-source tool and you can register using e.g. GitHub. 4 | 5 | Thank you in advance for your support to make Timer "speak" more languages! 💕 🎉 6 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/go-next-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/window-maximize-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/go-next-symbolic-rtl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/view-refresh-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/timer-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/notification-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: Suggest idea for this project 3 | title: "[Feature request]: " 4 | labels: [enhancement] 5 | body: 6 | - type: textarea 7 | id: currentproblem 8 | attributes: 9 | label: Describe the current problem or need 10 | description: Do you have any ideas for improvements, or do you have a current issue that could be improved? 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: soulution1 15 | attributes: 16 | label: Describe the solution you would like 17 | validations: 18 | required: true 19 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/content-loading-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | import json, locale, gi 2 | from gi.repository import GLib 3 | 4 | # Path for config files 5 | CACHE = GLib.get_user_cache_dir() + "/tmp" 6 | CONFIG = GLib.get_user_config_dir() 7 | DATA = GLib.get_user_data_dir() 8 | 9 | # Load system language 10 | p_lang = locale.getlocale()[0] 11 | if p_lang == 'pt_BR': 12 | r_lang = 'pt_BR' 13 | elif p_lang == 'nb_NO': 14 | r_lang = 'nb_NO' 15 | elif 'zh' in p_lang: 16 | r_lang = 'zh_Hans' 17 | else: 18 | r_lang = p_lang[:-3] 19 | 20 | try: 21 | locale = open(f"/app/translations/{r_lang}.json") 22 | except: 23 | locale = open(f"/app/translations/en.json") 24 | 25 | jT = json.load(locale) 26 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/folder-music.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/weather-clear-night-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/history.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /com.github.vikdevelop.timer.yaml: -------------------------------------------------------------------------------- 1 | app-id: com.github.vikdevelop.timer 2 | runtime: org.gnome.Platform 3 | runtime-version: '47' 4 | sdk: org.gnome.Sdk 5 | command: timer 6 | finish-args: 7 | - --share=ipc 8 | # for continuous localization from Hosted Weblate 9 | - --share=network 10 | - --socket=wayland 11 | - --socket=fallback-x11 12 | # for potentional problems with GPU accellaration 13 | - --device=dri 14 | # for send notification about finished timing 15 | - --talk-name=org.freedesktop.Notifications 16 | # for realization shut down/reboot/suspend system after finished timer 17 | - --system-talk-name=org.freedesktop.login1 18 | # for play beep after finished timer and play alarm clock 19 | - --socket=pulseaudio 20 | modules: 21 | - name: timer 22 | buildsystem: simple 23 | build-commands: 24 | - install -D -t /app/bin timer 25 | - cp -R src /app/ 26 | - mkdir /app/translations && cp translations/json/* /app/translations 27 | - install -D -t /app/share/applications flatpak/com.github.vikdevelop.timer.desktop 28 | - install -D -t /app/share/icons/hicolor/128x128/apps flatpak/appicon/com.github.vikdevelop.timer.png 29 | - install -D -t /app/share/metainfo flatpak/com.github.vikdevelop.timer.metainfo.xml 30 | - install -D -t /app/share/glib-2.0/schemas flatpak/com.github.vikdevelop.timer.gschema.xml 31 | - glib-compile-schemas /app/share/glib-2.0/schemas 32 | - cp flatpak/icons-symbolic/* /app/share/icons/hicolor/128x128/apps/ 33 | sources: 34 | - type: dir 35 | path: . 36 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_bug_template.yaml: -------------------------------------------------------------------------------- 1 | 2 | name: Report bug 3 | description: Report a bug of Timer app to the developer 4 | title: "[Bug]: " 5 | labels: [bug] 6 | body: 7 | - type: input 8 | id: distro 9 | attributes: 10 | label: Linux distribution 11 | description: "Write the name and version of the distribution" 12 | placeholder: "e.g. Fedora 37, Ubuntu 22.04" 13 | validations: 14 | required: true 15 | - type: input 16 | id: desktop 17 | attributes: 18 | label: Desktop environment 19 | description: "Write the name and version of Desktop environment" 20 | placeholder: "e.g. GNOME 43, KDE Plasma 5.24" 21 | validations: 22 | required: true 23 | - type: input 24 | id: timerver 25 | attributes: 26 | label: Version of Timer 27 | description: "Write the version of Timer. If a new version of Timer is not available after checking for updates in a software management program (e.g. GNOME Software, KDE Discover), type 'latest' in the text box below" 28 | placeholder: "e.g. latest" 29 | validations: 30 | required: true 31 | - type: textarea 32 | id: stepstoreproduce 33 | attributes: 34 | label: Bug description 35 | description: What happened? 36 | validations: 37 | required: true 38 | - type: textarea 39 | id: steps 40 | attributes: 41 | label: Steps to reproduce 42 | description: Which steps do we need to take to reproduce this error? 43 | - type: textarea 44 | id: output 45 | attributes: 46 | label: Output in terminal 47 | description: "If is it possible, attach output of command from terminal that is: ```flatpak run com.github.vikdevelop.timer```" 48 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 |

Timer

4 |

Simple countdown

5 |
6 | 7 | > [!WARNING] 8 | > This app is in maintenance mode. While I fix critical bugs when possible, I'm not actively developing new features. Community contributions via pull requests are welcome. 9 | 10 | *Simple countdown timer* that allows: 11 | 12 | - timing in hours/minutes/seconds, 13 | - shut down/reboot/suspend system, send custom notification text or play alarm clock after finished timer 14 | - use keyboard shortcuts for start, pause or stop timer and reset timer counter values. 15 | - and more... 16 | 17 | Get it on Flathub 18 |

If you want to help localize the Timer project, you can use the Weblate tool (it is possible to sign up using e.g. GitHub or Google)

19 | 20 | 21 | Translation status 22 | 23 | 24 |

Screenshots

25 |

Main window

26 | 27 |

Timing

28 | 29 |

More settings

30 | 31 |

Notification settings

32 | 33 |

Keyboard shortcuts window

34 | 35 | -------------------------------------------------------------------------------- /flatpak/com.github.vikdevelop.timer.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | # Name 3 | Name=Timer 4 | ## from translations/json/cs.json 5 | Name[cs]=Časovač 6 | ## from translations/json/it.json 7 | Name[it]=Timer 8 | ## from translations/json/ru.json 9 | Name[ru]=Таймер 10 | ## from translations/json/de.json 11 | Name[de]=Timer 12 | ## from translations/json/fi.json 13 | Name[fi]=Ajastin 14 | ## from translations/json/fr.json 15 | Name[fr]=Minuterie 16 | ## from translations/json/nb_NO.json 17 | Name[nb_NO]=Tidsur 18 | ## from translations/json/uk.json 19 | Name[uk]=Таймер 20 | ## from translations/json/es.json 21 | Name[es]=Temporizador 22 | ## from translations/json/tr.json 23 | Name[tr]=Kronometre 24 | ## from translations/json/nl.json 25 | Name[nl]=Tijdklok 26 | ## from translations/json/pt_BR.json 27 | Name[pt_BR]=Cronômetro 28 | ## from translations/json/hu.json 29 | Name[hu]=Időzítő 30 | ## from translations/json/hi.json 31 | Name[hi]=Timer 32 | # Comment 33 | Comment=Simple timer 34 | ## from translations/json/cs.json 35 | Comment[cs]=Jednoduchý Časovač 36 | ## from translations/json/it.json 37 | Comment[it]=Timer semplice 38 | ## from translations/json/ru.json 39 | Comment[ru]=Простой таймер 40 | ## from translations/json/de.json 41 | Comment[de]=Einfacher Timer 42 | ## from translations/json/fi.json 43 | Comment[fi]=Yksinkertainen ajastin 44 | ## from translations/json/fr.json 45 | Comment[fr]=Minuterie simple 46 | ## from translations/json/nb_NO.json 47 | Comment[nb_NO]=Enkelt tidsur 48 | ## from translations/json/uk.json 49 | Comment[uk]=Простий таймер 50 | ## from translations/json/es.json 51 | Comment[es]=Temporizador simple 52 | ## from translations/json/tr.json 53 | Comment[tr]=Basit kronometre 54 | ## from translations/json/nl.json 55 | Comment[nl]=Een eenvoudige tijdklok 56 | ## from translations/json/pt_BR.json 57 | Comment[pt_BR]=Cronômetro simples 58 | ## from translations/json/hu.json 59 | Comment[hu]=Egyszerű időzítő 60 | ## from translations/json/hi.json 61 | Comment[hi]=सरल टाइमर 62 | Type=Application 63 | Icon=com.github.vikdevelop.timer 64 | Exec=timer 65 | Categories=Utility 66 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/shortcuts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flatpak/icons-symbolic/settings-app-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /translations/json/zh_Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "计时器", 3 | "timer_running": "计时器正在运行o_o .…", 4 | "run_timer": "开始计时", 5 | "stop_timer": "停止计时", 6 | "timing_finished": "计时已完成!", 7 | "timing_ended": "计时被停止", 8 | "timer_quit": "Timer was ended", 9 | "about_app": "About app", 10 | "simple_timer": "Simple timer", 11 | "preferences": "Preferences", 12 | "resizable_of_window": "Resizable of Window", 13 | "default": "default", 14 | "hours": "h", 15 | "mins": "m", 16 | "secs": "秒", 17 | "shut_down": "Shut down", 18 | "reboot": "Reboot", 19 | "action_after_timing": "Action after finished timer", 20 | "custom_notification": "Custom notification text", 21 | "play_beep": "Play beep", 22 | "suspend": "Suspend", 23 | "notification_desc": "You will receive notification and beep in", 24 | "reboot_desc": "Your system will be rebooted in", 25 | "shut_down_desc": "Your system will be shut down in", 26 | "suspend_desc": "Your system will be suspended in", 27 | "preferences_desc": "Setting timer properties", 28 | "keyboard_shortcuts": "Keyboard shortcuts", 29 | "start": "Start", 30 | "stop": "Stop", 31 | "quit": "Quit", 32 | "show": "Show keyboard shortcuts", 33 | "reset": "Reset", 34 | "delete_timer_settings": "Reset all settings to default", 35 | "play_alarm_clock": "Play alarm clock", 36 | "cancel": "Cancel", 37 | "start_again": "Start again", 38 | "reset_counter": "Reset timer counter values", 39 | "play_alarm_clock_desc": "Your alarm will ring in", 40 | "dialog_remove_warning": "Reset all timer settings?", 41 | "show_about_dialog": "Show “About” app window", 42 | "paused": "Paused.", 43 | "pause_timer": "Pause timer", 44 | "continue_timer": "Resume timer", 45 | "use_in_alarm_clock": "Use in alarm clock dialog", 46 | "advanced": "More settings", 47 | "go_to_more_settings": "Go to More settings", 48 | "go_to_notification_settings": "Go to Notification settings", 49 | "alternative_key": "The alternative keyboard shortcut is: {}", 50 | "vertical_text": "Vertical text in countdown page", 51 | "vertical_text_desc": "Displays vertical text that counts down the time on the countdown page", 52 | "save_expander_row_state": "Expand Preferences dropdown row", 53 | "save_expander_row_state_desc": "Auto-expands the Preferences drop-down row when starting the Timer application.", 54 | "show_appicon": "Show application icon in notification", 55 | "show_appname": "Show application name in notification", 56 | "notification_text": "Notification", 57 | "alarm_clock_dialog_text": "Alarm clock dialog", 58 | "apply": "Apply", 59 | "edit_options": "Edit options", 60 | "translator_credits": "vikdevelop https://github.com/vikdevelop", 61 | "remove": "Remove", 62 | "existing_shortcut": "Select an existing shortcut", 63 | "shortcut_name": "Shortcut name", 64 | "shortcuts_warning": "You haven't any shortcut ...", 65 | "shortcut_removed": "Shortcut '{}' removed", 66 | "manage_shortcuts": "Manage Shortcuts", 67 | "new_shortcut": "Add a new shortcut", 68 | "add": "Add", 69 | "new_window": "New window", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "Timer is running …", 4 | "run_timer": "Start timer", 5 | "stop_timer": "Stop timer", 6 | "timing_finished": "Timing has been finished!", 7 | "timing_ended": "Timing was stopped", 8 | "timer_quit": "Timer was ended", 9 | "about_app": "About app", 10 | "simple_timer": "Simple timer", 11 | "preferences": "Preferences", 12 | "resizable_of_window": "Resizable of Window", 13 | "default": "default", 14 | "hours": "h", 15 | "mins": "m", 16 | "secs": "s", 17 | "shut_down": "Shut down", 18 | "reboot": "Reboot", 19 | "action_after_timing": "Action after finished timer", 20 | "custom_notification": "Custom notification text", 21 | "play_beep": "Play beep", 22 | "suspend": "Suspend", 23 | "notification_desc": "You will receive notification and beep in", 24 | "reboot_desc": "Your system will be rebooted in", 25 | "shut_down_desc": "Your system will be shut down in", 26 | "suspend_desc": "Your system will be suspended in", 27 | "preferences_desc": "Setting timer properties", 28 | "keyboard_shortcuts": "Keyboard shortcuts", 29 | "start": "Start", 30 | "stop": "Stop", 31 | "quit": "Quit", 32 | "show": "Show keyboard shortcuts", 33 | "reset": "Reset", 34 | "delete_timer_settings": "Reset all settings to default", 35 | "play_alarm_clock": "Play alarm clock", 36 | "cancel": "Cancel", 37 | "start_again": "Start again", 38 | "reset_counter": "Reset timer counter values", 39 | "play_alarm_clock_desc": "Your alarm will ring in", 40 | "dialog_remove_warning": "Reset all timer settings?", 41 | "show_about_dialog": "Show “About” app window", 42 | "paused": "Paused.", 43 | "pause_timer": "Pause timer", 44 | "continue_timer": "Resume timer", 45 | "use_in_alarm_clock": "Use in alarm clock dialog", 46 | "advanced": "More settings", 47 | "go_to_more_settings": "Go to More settings", 48 | "go_to_notification_settings": "Go to Notification settings", 49 | "alternative_key": "The alternative keyboard shortcut is: {}", 50 | "vertical_text": "Vertical text in countdown page", 51 | "vertical_text_desc": "Displays vertical text that counts down the time on the countdown page", 52 | "save_expander_row_state": "Expand Preferences dropdown row", 53 | "save_expander_row_state_desc": "Auto-expands the Preferences drop-down row when starting the Timer application.", 54 | "show_appicon": "Show application icon in notification", 55 | "show_appname": "Show application name in notification", 56 | "notification_text": "Notification", 57 | "alarm_clock_dialog_text": "Alarm clock dialog", 58 | "apply": "Apply", 59 | "edit_options": "Edit options", 60 | "manage_shortcuts": "Manage Shortcuts", 61 | "remove": "Remove", 62 | "shortcuts_warning": "You haven't any shortcut …", 63 | "existing_shortcut": "Select an existing shortcut", 64 | "new_shortcut": "Add a new shortcut", 65 | "shortcut_name": "Shortcut name", 66 | "shortcut_removed": "Shortcut '{}' removed", 67 | "add": "Add", 68 | "new_window": "New window", 69 | "select_sound": "Select custom sound", 70 | "sound_files": "Sound files", 71 | "selected_sound_file": "Selected sound file: {}", 72 | "translator_credits": " " 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/fa.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "زمان سنج", 3 | "timer_running": "زمان سنج در حال اجرا است …", 4 | "run_timer": "آغاز زمان سنجی", 5 | "stop_timer": "توقف زمان سنجی", 6 | "timing_finished": "زمان سنجی پایان یافته است!", 7 | "timing_ended": "زمان سنج متوقف شد", 8 | "timer_quit": "زمان سنجی پایان یافت", 9 | "about_app": "درباره", 10 | "simple_timer": "زمان سنج ساده", 11 | "preferences": "تنظیمات", 12 | "resizable_of_window": "تغییر اندازه ی پنجره", 13 | "default": "پیشفرض", 14 | "hours": "ساعت", 15 | "mins": "دقیقه", 16 | "secs": "ثانیه", 17 | "shut_down": "خاموش کردن", 18 | "reboot": "راه اندازی دوباره", 19 | "action_after_timing": "کاری که باید پس از زمان سنجی انجام شود.", 20 | "custom_notification": "متن اعلان:", 21 | "play_beep": "پخش صدای بیپ", 22 | "suspend": "تعلیق", 23 | "notification_desc": "شما یک اعلان به همراه صدا دریافت خواهید کرد. پس از:", 24 | "reboot_desc": "رایانه ی شما دوباره راه اندازی خواهد شد پس از:", 25 | "shut_down_desc": "رایانه ی شما خاموش خواهد شد. پس از:", 26 | "suspend_desc": "رایانه به حالت تعلیق در خواهد آمد. پس از:", 27 | "preferences_desc": "تعیین ویژگی های زمان سنج", 28 | "keyboard_shortcuts": "میانبر", 29 | "start": "شروع", 30 | "stop": "توقف", 31 | "quit": "خروج", 32 | "show": "نمایش میانبر ها", 33 | "reset": "بازنشانی", 34 | "delete_timer_settings": "بازنشانی همه ی تنظیمات", 35 | "play_alarm_clock": "پخش آهنگ زنگ", 36 | "cancel": "کنارگذاشتن", 37 | "start_again": "شروع دوباره", 38 | "reset_counter": "بازنشانی شمارشگر زمان سنج", 39 | "play_alarm_clock_desc": "آلارم به صدا در خواهد آمد. پس از:", 40 | "dialog_remove_warning": "آیا تمام تنظیمات بازنشانی شود؟", 41 | "show_about_dialog": "نمایش پنجره ی «درباره»", 42 | "paused": "مکث.", 43 | "pause_timer": "مکث کردن", 44 | "continue_timer": "ادامه دادن", 45 | "use_in_alarm_clock": "در پنجره ی آلارم استفاده شود", 46 | "advanced": "نتظیمات بیشتر", 47 | "go_to_more_settings": "برو به تنظیمات بیشتر", 48 | "go_to_notification_settings": "برو به تنظیمات اعلان", 49 | "alternative_key": "میانبر دیگر برای این میانبر: {}", 50 | "vertical_text": "شمارشگر عمودی", 51 | "vertical_text_desc": "یک شمارشگر معکوس را به صورت عمودی، در صفحه زمان سنج نشان میدهد", 52 | "save_expander_row_state": "منوی کشویی تنظیمات باز شود", 53 | "save_expander_row_state_desc": "در هنگام شروع برنامه، منوی کشویی تنظیمات را به طور خودکار باز می کند.", 54 | "show_appicon": "نمایش ایکون برنامه در اعلان", 55 | "show_appname": "نمایش نام برنامه در اعلان", 56 | "notification_text": "اعلان", 57 | "alarm_clock_dialog_text": "پنجره ی آلارم", 58 | "apply": "اعمال", 59 | "edit_options": "ویرایش", 60 | "translator_credits": "Master81 https://github.com/master811129", 61 | "remove": "Remove", 62 | "existing_shortcut": "Select an existing shortcut", 63 | "shortcut_name": "Shortcut name", 64 | "shortcuts_warning": "You haven't any shortcut ...", 65 | "shortcut_removed": "Shortcut '{}' removed", 66 | "manage_shortcuts": "Manage Shortcuts", 67 | "new_shortcut": "Add a new shortcut", 68 | "add": "Add", 69 | "new_window": "New window", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/ia.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "Timer is running …", 4 | "run_timer": "Start timer", 5 | "stop_timer": "Stop timer", 6 | "timing_finished": "Timing has been finished!", 7 | "timing_ended": "Timing was stopped", 8 | "timer_quit": "Timer was ended", 9 | "about_app": "About app", 10 | "simple_timer": "Simple timer", 11 | "preferences": "Preferences", 12 | "resizable_of_window": "Resizable of Window", 13 | "default": "default", 14 | "hours": "h", 15 | "mins": "m", 16 | "secs": "s", 17 | "shut_down": "Shut down", 18 | "reboot": "Reboot", 19 | "action_after_timing": "Action after finished timer", 20 | "custom_notification": "Custom notification text", 21 | "play_beep": "Play beep", 22 | "suspend": "Suspend", 23 | "notification_desc": "You will receive notification and beep in", 24 | "reboot_desc": "Your system will be rebooted in", 25 | "shut_down_desc": "Your system will be shut down in", 26 | "suspend_desc": "Your system will be suspended in", 27 | "preferences_desc": "Setting timer properties", 28 | "keyboard_shortcuts": "Keyboard shortcuts", 29 | "start": "Start", 30 | "stop": "Stop", 31 | "quit": "Quit", 32 | "show": "Show keyboard shortcuts", 33 | "reset": "Reset", 34 | "delete_timer_settings": "Reset all settings to default", 35 | "play_alarm_clock": "Play alarm clock", 36 | "cancel": "Cancel", 37 | "start_again": "Start again", 38 | "reset_counter": "Reset timer counter values", 39 | "play_alarm_clock_desc": "Your alarm will ring in", 40 | "dialog_remove_warning": "Reset all timer settings?", 41 | "show_about_dialog": "Show “About” app window", 42 | "paused": "Paused.", 43 | "pause_timer": "Pause timer", 44 | "continue_timer": "Resume timer", 45 | "use_in_alarm_clock": "Use in alarm clock dialog", 46 | "advanced": "More settings", 47 | "go_to_more_settings": "Go to More settings", 48 | "go_to_notification_settings": "Go to Notification settings", 49 | "alternative_key": "The alternative keyboard shortcut is: {}", 50 | "vertical_text": "Vertical text in countdown page", 51 | "vertical_text_desc": "Displays vertical text that counts down the time on the countdown page", 52 | "save_expander_row_state": "Expand Preferences dropdown row", 53 | "save_expander_row_state_desc": "Auto-expands the Preferences drop-down row when starting the Timer application.", 54 | "show_appicon": "Show application icon in notification", 55 | "show_appname": "Show application name in notification", 56 | "notification_text": "Notification", 57 | "alarm_clock_dialog_text": "Alarm clock dialog", 58 | "apply": "Apply", 59 | "edit_options": "Edit options", 60 | "manage_shortcuts": "Manage Shortcuts", 61 | "remove": "Remove", 62 | "shortcuts_warning": "You haven't any shortcut …", 63 | "existing_shortcut": "Select an existing shortcut", 64 | "new_shortcut": "Add a new shortcut", 65 | "shortcut_name": "Shortcut name", 66 | "shortcut_removed": "Shortcut '{}' removed", 67 | "add": "Add", 68 | "new_window": "New window", 69 | "select_sound": "Select custom sound", 70 | "sound_files": "Sound files", 71 | "selected_sound_file": "Selected sound file: {}", 72 | "translator_credits": "vikdevelop https://github.com/vikdevelop" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "Timer wystartował…", 4 | "run_timer": "Wystartuj timer", 5 | "stop_timer": "Zatrzymaj timer", 6 | "timing_finished": "Czas minął!", 7 | "timing_ended": "Timer został zatrzymany", 8 | "timer_quit": "Timer został zakończony", 9 | "about_app": "About app", 10 | "simple_timer": "Simple timer", 11 | "preferences": "Preferences", 12 | "resizable_of_window": "Resizable of Window", 13 | "default": "default", 14 | "hours": "h", 15 | "mins": "m", 16 | "secs": "s", 17 | "shut_down": "Shut down", 18 | "reboot": "Reboot", 19 | "action_after_timing": "Action after finished timer", 20 | "custom_notification": "Custom notification text", 21 | "play_beep": "Play beep", 22 | "suspend": "Suspend", 23 | "notification_desc": "You will receive notification and beep in", 24 | "reboot_desc": "Your system will be rebooted in", 25 | "shut_down_desc": "Your system will be shut down in", 26 | "suspend_desc": "Your system will be suspended in", 27 | "preferences_desc": "Setting timer properties", 28 | "keyboard_shortcuts": "Keyboard shortcuts", 29 | "start": "Start", 30 | "stop": "Stop", 31 | "quit": "Quit", 32 | "show": "Show keyboard shortcuts", 33 | "reset": "Reset", 34 | "delete_timer_settings": "Reset all settings to default", 35 | "play_alarm_clock": "Play alarm clock", 36 | "cancel": "Cancel", 37 | "start_again": "Start again", 38 | "reset_counter": "Reset timer counter values", 39 | "play_alarm_clock_desc": "Your alarm will ring in", 40 | "dialog_remove_warning": "Reset all timer settings?", 41 | "show_about_dialog": "Show “About” app window", 42 | "paused": "Paused.", 43 | "pause_timer": "Pause timer", 44 | "continue_timer": "Resume timer", 45 | "use_in_alarm_clock": "Use in alarm clock dialog", 46 | "advanced": "More settings", 47 | "go_to_more_settings": "Go to More settings", 48 | "go_to_notification_settings": "Go to Notification settings", 49 | "alternative_key": "The alternative keyboard shortcut is: {}", 50 | "vertical_text": "Vertical text in countdown page", 51 | "vertical_text_desc": "Displays vertical text that counts down the time on the countdown page", 52 | "save_expander_row_state": "Expand Preferences dropdown row", 53 | "save_expander_row_state_desc": "Auto-expands the Preferences drop-down row when starting the Timer application.", 54 | "show_appicon": "Show application icon in notification", 55 | "show_appname": "Show application name in notification", 56 | "notification_text": "Notification", 57 | "alarm_clock_dialog_text": "Alarm clock dialog", 58 | "apply": "Apply", 59 | "edit_options": "Edit options", 60 | "translator_credits": "vikdevelop https://github.com/vikdevelop", 61 | "remove": "Remove", 62 | "existing_shortcut": "Select an existing shortcut", 63 | "shortcut_name": "Shortcut name", 64 | "shortcuts_warning": "You haven't any shortcut ...", 65 | "shortcut_removed": "Shortcut '{}' removed", 66 | "manage_shortcuts": "Manage Shortcuts", 67 | "new_shortcut": "Add a new shortcut", 68 | "add": "Add", 69 | "new_window": "New window", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /flatpak/com.github.vikdevelop.timer.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | (395,485) 6 | Window size 7 | 8 | 9 | false 10 | Window maximize state 11 | 12 | 13 | true 14 | Play beep switch 15 | 16 | 17 | true 18 | Show notification icon switch 19 | 20 | 21 | false 22 | Use notification text in alarm clock dialog 23 | 24 | 25 | false 26 | Show vertical time text in countdown page 27 | 28 | 29 | true 30 | Show app name in notification 31 | 32 | 33 | false 34 | Save Expander row position 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | "default" 45 | Action after finished timer 46 | 47 | 48 | '' 49 | Notification text 50 | 51 | 52 | 0 53 | Hour entry 54 | 55 | 56 | 1 57 | Minutes entry 58 | 59 | 60 | 0 61 | Seconds entry 62 | 63 | 64 | 0 65 | Hour entry 66 | 67 | 68 | 1 69 | Minutes entry 70 | 71 | 72 | 0 73 | Seconds entry 74 | 75 | 76 | '' 77 | Shortcut name 78 | 79 | 80 | '/app/src/beeps/Oxygen-Im-Phone-Ring.ogg' 81 | Select the sound file 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /translations/json/nb_NO.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Tidsur", 3 | "timer_running": "Tidsur startet …", 4 | "run_timer": "Start tidsur", 5 | "stop_timer": "Stopp tidsur", 6 | "timing_finished": "Tidsur fullført!", 7 | "timing_ended": "Tidsuret ble stoppet", 8 | "timer_quit": "Tidsurett ble sluttført", 9 | "about_app": "Om programmet", 10 | "simple_timer": "Enkelt tidsur", 11 | "preferences": "Innstillinger", 12 | "resizable_of_window": "Justering av vindusstørrelse", 13 | "default": "forvalg", 14 | "hours": "t", 15 | "mins": "min", 16 | "secs": "s", 17 | "shut_down": "Slå av", 18 | "reboot": "Omstart", 19 | "action_after_timing": "Handling etter fullført tidsur", 20 | "custom_notification": "Egendefinert merknadstekst", 21 | "play_beep": "Spill pipetone", 22 | "suspend": "Hvilemodus", 23 | "translator_credits": "Allan Nordhøy https://hosted.weblate.org/user/kingu/", 24 | "notification_desc": "Du mottar merknad og signal om", 25 | "reboot_desc": "Utfører omstart av systemet om", 26 | "shut_down_desc": "Slår av systemet om", 27 | "suspend_desc": "Går i hvilemodus om", 28 | "preferences_desc": "Setter tidsursegenskaper", 29 | "keyboard_shortcuts": "Tastatursnarveier", 30 | "start": "Start", 31 | "stop": "Stopp", 32 | "quit": "Avslutt", 33 | "show": "Vis tastatursnarveier", 34 | "reset": "Tilbakestill", 35 | "delete_timer_settings": "Tilbakestill alle innstillinger til forvalg", 36 | "play_alarm_clock": "Spill alarmklokke", 37 | "cancel": "Avbryt", 38 | "start_again": "Start igjen", 39 | "reset_counter": "Tilbakestill tidsurstelleursverdier", 40 | "play_alarm_clock_desc": "Alarmklokken ringer om", 41 | "dialog_remove_warning": "Tilbakestill alle tidsursinnstillinger?", 42 | "show_about_dialog": "Vis «Om»-programvindu", 43 | "paused": "Pauset.", 44 | "pause_timer": "Sett tidsur på pause", 45 | "continue_timer": "Fortsett tidsur", 46 | "use_in_alarm_clock": "Bruk i alarmklokkedialog", 47 | "advanced": "Flere innstillinger", 48 | "show_appicon": "Vis programikon i merknaden", 49 | "show_appname": "Vis programnavn i merknad", 50 | "go_to_more_settings": "Gå til «Flere innstillinger»", 51 | "go_to_notification_settings": "Gå til «Merknadsinnstillinger»", 52 | "alternative_key": "De alternative tastatursnarveiene er: {}", 53 | "vertical_text": "Vertikal tekst i nedtellingsside", 54 | "vertical_text_desc": "Viser loddrett tekst som teller ned tiden på nedtellingssiden", 55 | "save_expander_row_state": "Utvid rullegardinsraden for «Innstillinger»", 56 | "save_expander_row_state_desc": "Auto-utvider rullegardinsraden i innstillinger når Timer-programmet startes.", 57 | "notification_text": "Merknad", 58 | "alarm_clock_dialog_text": "Alarmklokkedialog", 59 | "apply": "Apply", 60 | "edit_options": "Edit options", 61 | "remove": "Remove", 62 | "existing_shortcut": "Select an existing shortcut", 63 | "shortcut_name": "Shortcut name", 64 | "shortcuts_warning": "You haven't any shortcut ...", 65 | "shortcut_removed": "Shortcut '{}' removed", 66 | "manage_shortcuts": "Manage Shortcuts", 67 | "new_shortcut": "Add a new shortcut", 68 | "add": "Add", 69 | "new_window": "New window", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "Timer is running …", 4 | "run_timer": "Start timer", 5 | "stop_timer": "Stop timer", 6 | "timing_finished": "Timing has been finished!", 7 | "timing_ended": "Timing was stopped", 8 | "timer_quit": "Timer was ended", 9 | "about_app": "حول التطبيق", 10 | "simple_timer": "Simple timer", 11 | "preferences": "Preferences", 12 | "resizable_of_window": "Resizable of Window", 13 | "default": "default", 14 | "hours": "h", 15 | "mins": "m", 16 | "secs": "s", 17 | "shut_down": "Shut down", 18 | "reboot": "Reboot", 19 | "action_after_timing": "Action after finished timer", 20 | "custom_notification": "Custom notification text", 21 | "play_beep": "Play beep", 22 | "suspend": "Suspend", 23 | "notification_desc": "You will receive notification and beep in", 24 | "reboot_desc": "Your system will be rebooted in", 25 | "shut_down_desc": "Your system will be shut down in", 26 | "suspend_desc": "Your system will be suspended in", 27 | "preferences_desc": "Setting timer properties", 28 | "keyboard_shortcuts": "Keyboard shortcuts", 29 | "start": "Start", 30 | "stop": "Stop", 31 | "quit": "Quit", 32 | "show": "Show keyboard shortcuts", 33 | "reset": "Reset", 34 | "delete_timer_settings": "Reset all settings to default", 35 | "play_alarm_clock": "Play alarm clock", 36 | "cancel": "إلغاء", 37 | "start_again": "Start again", 38 | "reset_counter": "Reset timer counter values", 39 | "play_alarm_clock_desc": "You will ring alarm clock in", 40 | "dialog_remove_warning": "Do you really want to reset all Timer settings to default?", 41 | "show_about_dialog": "Show About app window", 42 | "paused": "Paused.", 43 | "pause_timer": "Pause timer", 44 | "continue_timer": "Continue in timing", 45 | "use_in_alarm_clock": "Use in alarm clock dialog", 46 | "advanced": "More settings", 47 | "go_to_more_settings": "Go to More settings", 48 | "go_to_notification_settings": "Go to Notification settings", 49 | "alternative_key": "The alternative keyboard shortcut is: {}", 50 | "vertical_text": "Vertical text in countdown page", 51 | "vertical_text_desc": "Displays vertical text that counts down the time on the countdown page", 52 | "save_expander_row_state": "Expand Preferences dropdown row", 53 | "save_expander_row_state_desc": "When you start the Timer application, the Preferences drop-down row will automatically expand.", 54 | "show_appicon": "Show application icon in notification", 55 | "show_appname": "Show application name in notification", 56 | "notification_text": "Notification", 57 | "alarm_clock_dialog_text": "Alarm clock dialog", 58 | "translator_credits": "vikdevelop https://github.com/vikdevelop", 59 | "apply": "Apply", 60 | "edit_options": "Edit options", 61 | "remove": "Remove", 62 | "existing_shortcut": "Select an existing shortcut", 63 | "shortcut_name": "Shortcut name", 64 | "shortcuts_warning": "You haven't any shortcut ...", 65 | "shortcut_removed": "Shortcut '{}' removed", 66 | "manage_shortcuts": "Manage Shortcuts", 67 | "new_shortcut": "Add a new shortcut", 68 | "add": "Add", 69 | "new_window": "New window", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "Timern körs…", 4 | "run_timer": "Starta timer", 5 | "stop_timer": "Stoppa timer", 6 | "timing_finished": "Timern har avslutats!", 7 | "timing_ended": "Timern stoppades", 8 | "timer_quit": "Timern avslutades", 9 | "about_app": "Om appen", 10 | "simple_timer": "Enkel timer", 11 | "preferences": "Anpassningar", 12 | "resizable_of_window": "Storleksändring av Fönster", 13 | "default": "förvalt", 14 | "hours": "T", 15 | "mins": "M", 16 | "secs": "S", 17 | "shut_down": "Stäng ner", 18 | "reboot": "Starta om", 19 | "action_after_timing": "Åtgärd vid slutförd timer", 20 | "custom_notification": "Skräddarsydd informationstext", 21 | "play_beep": "Spela pip-ljud", 22 | "suspend": "Pausa", 23 | "notification_desc": "Du kommer att få meddelande och pip-ljud om", 24 | "reboot_desc": "Ditt system kommer att startas om inom", 25 | "shut_down_desc": "Ditt system kommer att stängas ned inom", 26 | "suspend_desc": "Ditt system kommer att pausas inom", 27 | "preferences_desc": "Ställer in timerns egenskaper", 28 | "keyboard_shortcuts": "Tangentbordets genvägar", 29 | "start": "Börja", 30 | "stop": "Stanna", 31 | "quit": "Avsluta", 32 | "show": "Visa tangentbordets genvägar", 33 | "reset": "Återställ", 34 | "delete_timer_settings": "Återställ alla inställningar till förvalda värden", 35 | "play_alarm_clock": "Spela larm-klocka", 36 | "cancel": "Avbryt", 37 | "start_again": "Börja om", 38 | "reset_counter": "Återställ timerns räknevärden", 39 | "play_alarm_clock_desc": "Ditt larm kommer att ringa inom", 40 | "dialog_remove_warning": "Återställ alla timer-inställningar?", 41 | "show_about_dialog": "Visa \"Om\" app-fönster", 42 | "paused": "Pausad.", 43 | "pause_timer": "Pausa timern", 44 | "continue_timer": "Återuppta timer", 45 | "use_in_alarm_clock": "Använd i larm-klockans dialog", 46 | "advanced": "Fler inställningar", 47 | "go_to_more_settings": "Gå till Fler inställningar", 48 | "go_to_notification_settings": "Gå till Notifierings-inställningar", 49 | "alternative_key": "Alternativ tangentbords-genväg är: {}", 50 | "vertical_text": "Vertikal text på nedräknings-sidan", 51 | "vertical_text_desc": "Visar vertikal text som räknar ner tiden på nedräknings-sidan", 52 | "save_expander_row_state": "Expandera Inställnings-raden", 53 | "save_expander_row_state_desc": "Expandera Inställnings-raden automatiskt när Timer-appen startas.", 54 | "show_appicon": "Visa appens ikon i meddelanden", 55 | "show_appname": "Visa applikationens namn i meddelanden", 56 | "notification_text": "Meddelande", 57 | "alarm_clock_dialog_text": "Dialog för Larm-klocka", 58 | "apply": "Tillämpa", 59 | "edit_options": "Redigera val", 60 | "manage_shortcuts": "Hantera Genvägar", 61 | "remove": "Ta bort", 62 | "shortcuts_warning": "Du har ingen genväg …", 63 | "existing_shortcut": "Välj en befintlig genväg", 64 | "new_shortcut": "Lägg till en ny genväg", 65 | "shortcut_name": "Genvägens namn", 66 | "shortcut_removed": "Genvägen '{}' togs bort", 67 | "add": "Lägg till", 68 | "translator_credits": "vikdevelop https://github.com/vikdevelop", 69 | "new_window": "Nytt fönster", 70 | "selected_sound_file": "Vald ljudfil: {}", 71 | "select_sound": "Välj anpassat ljud", 72 | "sound_files": "Ljudfiler" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Časovač", 3 | "timer_running": "Časovač běží …", 4 | "run_timer": "Zahájit časování", 5 | "stop_timer": "Zastavit časování", 6 | "timing_finished": "Časování bylo dokončeno!", 7 | "timing_ended": "Časování bylo zastaveno", 8 | "timer_quit": "Časovač byl ukončen", 9 | "about_app": "O aplikaci", 10 | "simple_timer": "Jednoduchý časovač", 11 | "preferences": "Předvolby", 12 | "resizable_of_window": "Změnit velikost okna", 13 | "default": "výchozí", 14 | "hours": "h", 15 | "mins": "m", 16 | "secs": "s", 17 | "shut_down": "Vypnout", 18 | "reboot": "Restartovat", 19 | "action_after_timing": "Akce po dokončení časovače", 20 | "custom_notification": "Vlastní text upozornění", 21 | "play_beep": "Přehrát pípnutí", 22 | "suspend": "Uspat", 23 | "translator_credits": "vikdevelop https://github.com/vikdevelop", 24 | "notification_desc": "Obdržíte upozornění a pípnutí za", 25 | "shut_down_desc": "Váš systém bude vypnut za", 26 | "suspend_desc": "Váš systém bude uspán za", 27 | "reboot_desc": "Systém bude restartován za", 28 | "preferences_desc": "Nastavení vlastností časovače", 29 | "keyboard_shortcuts": "Klávesové zkratky", 30 | "start": "Spustit", 31 | "stop": "Zastavit", 32 | "quit": "Ukončit", 33 | "show": "Zobrazit klávesové zkratky", 34 | "reset": "Resetovat", 35 | "delete_timer_settings": "Resetovat nastavení na výchozí", 36 | "play_alarm_clock": "Přehrát budík", 37 | "cancel": "Zrušit", 38 | "start_again": "Spustit znovu", 39 | "reset_counter": "Resetovat hodnoty počítadla časovače", 40 | "play_alarm_clock_desc": "Váš budík zazvoní", 41 | "dialog_remove_warning": "Resetovat všechna nastavení časovače?", 42 | "show_about_dialog": "Zobrazit okna \"O aplikaci\"", 43 | "paused": "Pozastaveno.", 44 | "pause_timer": "Pozastavit časovač", 45 | "continue_timer": "Obnovit časovač", 46 | "use_in_alarm_clock": "Použít v dialogovém okně budíku", 47 | "advanced": "Další nastavení", 48 | "go_to_more_settings": "Přejít na Další nastavení", 49 | "go_to_notification_settings": "Přejít do nastavení oznámení", 50 | "alternative_key": "Alternativní klávesová zkratka je: {}", 51 | "vertical_text": "Vertikální text na stránce s odpočítáváním", 52 | "vertical_text_desc": "Zobrazí svislý text, který odpočítává čas na stránce odpočítávání", 53 | "save_expander_row_state": "Rozbalit rozevírací řádek Předvolby", 54 | "save_expander_row_state_desc": "Automaticky rozbalí rozevírací řádek Předvolby při spuštění aplikace Časovač.", 55 | "show_appicon": "Zobrazit ikonu aplikace v oznámení", 56 | "show_appname": "Zobrazit název aplikace v oznámení", 57 | "notification_text": "Notifikace", 58 | "alarm_clock_dialog_text": "Dialogové okno budíku", 59 | "apply": "Použít", 60 | "edit_options": "Upravit možnosti", 61 | "remove": "Odstranit", 62 | "existing_shortcut": "Vybrat existující zkratku", 63 | "shortcut_name": "Název zkratky", 64 | "shortcuts_warning": "Nemáte žádnou zkratku …", 65 | "shortcut_removed": "Zkratka '{}' odstraněna", 66 | "manage_shortcuts": "Spravovat zkratky", 67 | "new_shortcut": "Přidat novou zkratku", 68 | "add": "Přidat", 69 | "new_window": "Nové okno", 70 | "selected_sound_file": "Vybraný zvukový soubor: {}", 71 | "select_sound": "Vybrat vlastní zvuk", 72 | "sound_files": "Zvukové soubory" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/hi.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "टाइमर चल रहा है …", 4 | "run_timer": "टाइमर प्रारंभ करें", 5 | "stop_timer": "टाइमर रोकें", 6 | "timing_finished": "समय समाप्त हो गया है!", 7 | "timing_ended": "समय रोक दिया गया", 8 | "timer_quit": "टाइमर समाप्त हो गया था", 9 | "about_app": "ऐप के बारे में", 10 | "simple_timer": "सरल टाइमर", 11 | "preferences": "प्राथमिकताएं", 12 | "resizable_of_window": "विंडो का आकार बदलने योग्य", 13 | "default": "तयशुदा", 14 | "hours": "घं", 15 | "mins": "मि", 16 | "secs": "से", 17 | "shut_down": "बंद करें", 18 | "reboot": "रीबूट", 19 | "action_after_timing": "टाइमर समाप्त होने के बाद कार्रवाई", 20 | "custom_notification": "तदनुकूल अधिसूचना पाठ", 21 | "play_beep": "बीप बजाएं", 22 | "suspend": "निलंबित करें", 23 | "notification_desc": "आपको अधिसूचना और बीप प्राप्त होगी अंदर", 24 | "reboot_desc": "आपका सिस्टम रीबूट हो जाएगा अंदर", 25 | "shut_down_desc": "आपका सिस्टम बंद हो जाएगा अंदर", 26 | "suspend_desc": "आपका सिस्टम निलंबित कर दिया जाएगा अंदर", 27 | "preferences_desc": "टाइमर गुण सेटिंग", 28 | "keyboard_shortcuts": "कीबोर्ड शॉर्टकट", 29 | "start": "शुरू", 30 | "stop": "रोकें", 31 | "quit": "छोड़ें", 32 | "show": "कीबोर्ड शॉर्टकट दिखाएं", 33 | "reset": "रीसेट", 34 | "delete_timer_settings": "सभी सेटिंग्स को तयशुदा पर रीसेट करें", 35 | "play_alarm_clock": "अलार्म घड़ी बजाएं", 36 | "cancel": "रद्द करें", 37 | "start_again": "पुनः प्रारंभ करें", 38 | "reset_counter": "टाइमर काउंटर मान रीसेट करें", 39 | "play_alarm_clock_desc": "आपका अलार्म बजेगा अंदर", 40 | "dialog_remove_warning": "सभी टाइमर सेटिंग्स रीसेट करें?", 41 | "show_about_dialog": "“बारे में” ऐप विंडो दिखाएं", 42 | "paused": "विरामित।", 43 | "pause_timer": "टाइमर रोकें", 44 | "continue_timer": "टाइमर पुनः प्रारंभ करें", 45 | "use_in_alarm_clock": "अलार्म घड़ी संवाद में उपयोग करें", 46 | "advanced": "अधिक सेटिंग", 47 | "go_to_more_settings": "अधिक सेटिंग्स पर जाएं", 48 | "go_to_notification_settings": "अधिसूचना सेटिंग पर जाएं", 49 | "alternative_key": "वैकल्पिक कीबोर्ड शॉर्टकट है: {}", 50 | "vertical_text": "उलटी गिनती पृष्ठ में लंबवत पाठ", 51 | "vertical_text_desc": "लंबवत पाठ प्रदर्शित करता है जो उलटी गिनती पृष्ठ पर समय की गिनती करता है", 52 | "save_expander_row_state": "प्राथमिकताएं ड्रॉप-डाउन पंक्ति का विस्तार करें", 53 | "save_expander_row_state_desc": "टाइमर अनुप्रयोग प्रारंभ करते समय प्राथमिकताएं ड्रॉप-डाउन पंक्ति को स्वतः विस्तारित करता है।", 54 | "show_appicon": "अधिसूचना में अनुप्रयोग आइकन दिखाएं", 55 | "show_appname": "अधिसूचना में अनुप्रयोग का नाम दिखाएं", 56 | "notification_text": "अधिसूचना", 57 | "alarm_clock_dialog_text": "अलार्म घड़ी संवाद", 58 | "apply": "लागू करें", 59 | "edit_options": "विकल्प संपादित करें", 60 | "manage_shortcuts": "शॉर्टकट प्रबंधित करें", 61 | "remove": "हटाएं", 62 | "shortcuts_warning": "आपके पास कोई शॉर्टकट नहीं है …", 63 | "existing_shortcut": "कोई मौजूदा शॉर्टकट चुनें", 64 | "new_shortcut": "नया शॉर्टकट जोड़ें", 65 | "shortcut_name": "शॉर्टकट नाम", 66 | "shortcut_removed": "शॉर्टकट '{}' हटा दिया गया", 67 | "add": "जोड़ें", 68 | "translator_credits": "Scrambled777 ", 69 | "new_window": "नई विंडो", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Kronometre", 3 | "timer_running": "Kronometre çalışıyor …", 4 | "run_timer": "Kronometreyi başlat", 5 | "stop_timer": "Kronometreyi durdur", 6 | "timing_finished": "Zamanlama tamamlandı!", 7 | "timing_ended": "Zamanlama durduruldu", 8 | "timer_quit": "Kronometreyi sonlandırıldı", 9 | "about_app": "Uygulama Hakkında", 10 | "simple_timer": "Basit kronometre", 11 | "preferences": "Tercihler", 12 | "resizable_of_window": "Pencerenin Yeniden Boyutlandırılabilirliği", 13 | "default": "öntanımlı", 14 | "hours": "sa.", 15 | "mins": "dk.", 16 | "secs": "sn.", 17 | "shut_down": "Kapat", 18 | "reboot": "Yeniden Başlat", 19 | "action_after_timing": "Kronometre bittikten sonraki eylem", 20 | "custom_notification": "Özel bildirim metni", 21 | "play_beep": "Bip sesi çal", 22 | "suspend": "Askıya Al", 23 | "notification_desc": "Bildirim ve bip sesi alacaksınız", 24 | "reboot_desc": "Sisteminiz yeniden başlatılacak", 25 | "shut_down_desc": "Sisteminiz kapatılacak", 26 | "suspend_desc": "Sisteminiz askıya alınacak", 27 | "preferences_desc": "Kronometre özelliklerini ayarlama", 28 | "keyboard_shortcuts": "Klavye kısayolları", 29 | "start": "Başlat", 30 | "stop": "Durdur", 31 | "quit": "Çık", 32 | "show": "Klavye kısayollarını göster", 33 | "reset": "Sıfırla", 34 | "delete_timer_settings": "Tüm ayarları öntanımlıya sıfırla", 35 | "play_alarm_clock": "Alarm saatini çal", 36 | "cancel": "İptal", 37 | "start_again": "Yeniden başlat", 38 | "reset_counter": "Kronometre sayaç değerlerini sıfırla", 39 | "play_alarm_clock_desc": "Alarm çalacak", 40 | "dialog_remove_warning": "Tüm zamanlayıcı ayalarını sıfırla?", 41 | "show_about_dialog": "Uygulama hakkında penceresini göster", 42 | "paused": "Duraklatıldı.", 43 | "pause_timer": "Kronometreyi duraklat", 44 | "continue_timer": "Zamanlayıcı devam ettir", 45 | "use_in_alarm_clock": "Alarm saat iletişiminde kullanın", 46 | "advanced": "Daha fazla ayar", 47 | "go_to_more_settings": "Daha fazla ayara git", 48 | "go_to_notification_settings": "Bildirim ayarlarına git", 49 | "alternative_key": "Alternatif klavye kısayolu: {}", 50 | "vertical_text": "Geri sayım sayfasındaki dikey metin", 51 | "vertical_text_desc": "Geri sayım sayfasında zamanı geri sayan dikey metin görüntüler", 52 | "save_expander_row_state": "Tercihler açılır satırını genişlet", 53 | "save_expander_row_state_desc": "Kronometre uygulamasını başlattığınızda, Tercihler açılır satırı kendiliğinden genişleyecek.", 54 | "show_appicon": "Uygulama simgesini bildirimde göster", 55 | "show_appname": "Uygulama adını bildirimde göster", 56 | "notification_text": "Bildirim", 57 | "alarm_clock_dialog_text": "Çalar saat iletişim kutusu", 58 | "translator_credits": "Sabri Ünal ", 59 | "apply": "Uygula", 60 | "edit_options": "Düzenleme seçenekleri", 61 | "remove": "Kaldır", 62 | "existing_shortcut": "Var olan bir kısayolu seç", 63 | "shortcut_name": "Kısayol adı", 64 | "shortcuts_warning": "Henüz kısayol yok", 65 | "shortcut_removed": "'{}' kısayolu kaldırıldı", 66 | "manage_shortcuts": "Kısayolları Yönet", 67 | "new_shortcut": "Yeni kısayol ekle", 68 | "add": "Ekle", 69 | "new_window": "Yeni pencere", 70 | "selected_sound_file": "Seçilen ses dosyası: {}", 71 | "select_sound": "Özel ses seç", 72 | "sound_files": "Ses dosyaları" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Tijdklok", 3 | "timer_running": "De tijdklok is actief…", 4 | "run_timer": "Tijdklok starten", 5 | "stop_timer": "Tijdklok stoppen", 6 | "timing_finished": "De tijd is verstreken!", 7 | "timing_ended": "De tijdklok is gestopt", 8 | "timer_quit": "De tijdklok is beëindigd", 9 | "about_app": "Over de toepassing", 10 | "simple_timer": "Een eenvoudige tijdklok", 11 | "preferences": "Voorkeuren", 12 | "resizable_of_window": "Venstergrootte aanpasbaar maken", 13 | "default": "Standaard", 14 | "hours": "u", 15 | "mins": "m", 16 | "secs": "s", 17 | "shut_down": "Afsluiten", 18 | "reboot": "Herstarten", 19 | "action_after_timing": "Actie na verstrijken van tijd", 20 | "custom_notification": "Eigen meldingstekst", 21 | "play_beep": "Piepgeluid afspelen", 22 | "suspend": "Pauzestand", 23 | "notification_desc": "U ontvangt een melding en piepgeluid over", 24 | "reboot_desc": "Uw systeem wordt herstart over", 25 | "shut_down_desc": "Uw systeem wordt afgesloten over", 26 | "suspend_desc": "Uw systeem wordt in de pauzestand gezet over", 27 | "preferences_desc": "Stel de tijdklokvoorkeuren in", 28 | "keyboard_shortcuts": "Sneltoetsen", 29 | "start": "Starten", 30 | "stop": "Stoppen", 31 | "quit": "Afsluiten", 32 | "show": "Sneltoetsen tonen", 33 | "reset": "Standaardwaarden", 34 | "delete_timer_settings": "Standaardvoorkeuren herstellen", 35 | "play_alarm_clock": "Alarmgeluid afspelen", 36 | "cancel": "Annuleren", 37 | "start_again": "Opnieuw aanzetten", 38 | "reset_counter": "Tijdklokwaarden herstellen", 39 | "play_alarm_clock_desc": "Het alarm gaat af over", 40 | "dialog_remove_warning": "Weet u zeker dat u alle voorkeuren wilt terugzetten op de standaardwaarden?", 41 | "show_about_dialog": "Venster ‘Over’ tonen", 42 | "paused": "Onderbroken.", 43 | "pause_timer": "Tijdklok onderbreken", 44 | "continue_timer": "Tijdklok hervatten", 45 | "use_in_alarm_clock": "Alarmgeluidvenster openen", 46 | "advanced": "Meer voorkeuren", 47 | "go_to_more_settings": "Meer voorkeuren openen", 48 | "go_to_notification_settings": "Meldingsvoorkeuren openen", 49 | "alternative_key": "Alternatieve sneltoets: {}", 50 | "vertical_text": "Tekst op aftelpagina verticaal tonen", 51 | "vertical_text_desc": "Toon de aftelklok verticaal in plaats van horizontaal", 52 | "save_expander_row_state": "Voorkeuren automatisch openen", 53 | "save_expander_row_state_desc": "Open de voorkeuren automatisch na het starten van de toepassing.", 54 | "show_appicon": "Toepassingspictogram op meldingen tonen", 55 | "show_appname": "Toepassingsnaam op meldingen tonen", 56 | "notification_text": "Melding", 57 | "alarm_clock_dialog_text": "Alarmgeluidvenster", 58 | "translator_credits": "Heimen Stoffels ", 59 | "apply": "Toepassen", 60 | "edit_options": "Opties bewerken", 61 | "remove": "Verwijderen", 62 | "existing_shortcut": "Kies een bestaande sneltoets", 63 | "shortcut_name": "Sneltoetsnaam", 64 | "shortcuts_warning": "U heeft nog geen sneltoets ingesteld…", 65 | "shortcut_removed": "‘{}’ is verwijderd", 66 | "manage_shortcuts": "Sneltoetsen beheren", 67 | "new_shortcut": "Sneltoets toevoegen", 68 | "add": "Toevoegen", 69 | "new_window": "New window", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Taimer", 3 | "timer_running": "Taimer töötab …", 4 | "run_timer": "Käivita taimer", 5 | "stop_timer": "Peata taimer", 6 | "timing_finished": "Taimeri pöördloendus on lõppenud!", 7 | "timing_ended": "Taimer peatati", 8 | "timer_quit": "Taimeri pöördloendus lõppes", 9 | "about_app": "Rakenduse teave", 10 | "simple_timer": "Lihtne taimer", 11 | "preferences": "Eelistused", 12 | "resizable_of_window": "Akna suurus on muudetav", 13 | "default": "Vaikimisi toimingud", 14 | "hours": "t", 15 | "mins": "min", 16 | "secs": "sek", 17 | "shut_down": "Lülita arvuti välja", 18 | "reboot": "Käivita arvuti uuesti", 19 | "action_after_timing": "Peale taimeri töö lõppu", 20 | "custom_notification": "Teade pöördloenduse lõppedes", 21 | "play_beep": "Helisignaal pöördloenduse lõppedes", 22 | "suspend": "Peata arvuti töö", 23 | "notification_desc": "Pöördloenduse lõpus kuuled helisignaali ja näed märguannet", 24 | "reboot_desc": "Aeg sinu arvuti või nutiseadme taaskäivituseni", 25 | "shut_down_desc": "Aeg sinu arvuti või nutiseadme väljalülitumiseni", 26 | "suspend_desc": "Aeg sinu arvuti või nutiseadme töö peatamiseni", 27 | "preferences_desc": "Seadista taimeri toiminguid", 28 | "keyboard_shortcuts": "Klaviatuuri kiirklahvid", 29 | "start": "Alusta", 30 | "stop": "Lõpeta", 31 | "quit": "Välju", 32 | "show": "Näita kiirklahve", 33 | "reset": "Lähtesta", 34 | "delete_timer_settings": "Lähtestame kõik seadistused", 35 | "play_alarm_clock": "Äratuskella helin", 36 | "cancel": "Katkesta", 37 | "start_again": "Alusta uuesti", 38 | "reset_counter": "Lähtesta taimeri pöördloenduse väärtused", 39 | "play_alarm_clock_desc": "Aeg helisignaali märguandeni", 40 | "dialog_remove_warning": "Kas kindlasti soovid kõik taimeri seadistused lähtestada?", 41 | "show_about_dialog": "Näita akent „Rakenduse teave“", 42 | "paused": "Peatatud.", 43 | "pause_timer": "Peata taimer", 44 | "continue_timer": "Jätka taimeri tööd", 45 | "use_in_alarm_clock": "Kasuta äratuskella vaates", 46 | "advanced": "Lisaseadistused", 47 | "go_to_more_settings": "Ava lisaseadistused", 48 | "go_to_notification_settings": "Ava teavituste seadistused", 49 | "alternative_key": "Alternatiivne kiirklahv on: {}", 50 | "vertical_text": "Vertikaalne tekst pöördloenduse lehel", 51 | "vertical_text_desc": "Pöördloendus kuvatakse mitmel real vertikaalsena", 52 | "save_expander_row_state": "Kuva eelistuste vaade avatuna", 53 | "save_expander_row_state_desc": "Eelistuste vaade on taimeri rakenduse käivitamisel avatud.", 54 | "show_appicon": "Näita teavituses rakenduse ikooni", 55 | "show_appname": "Näita teavituses rakenduse nime", 56 | "notification_text": "Teavitus", 57 | "alarm_clock_dialog_text": "Äratuskella vaade", 58 | "apply": "Rakenda", 59 | "edit_options": "Muuda valikuid", 60 | "manage_shortcuts": "Halda kiirvalikuid", 61 | "remove": "Eemalda", 62 | "shortcuts_warning": "Sa pole veel ühtegi oma kiirvalikut lisanud…", 63 | "existing_shortcut": "Vali olemasolev kiirvalik", 64 | "new_shortcut": "Lisa uus kiirvalik", 65 | "shortcut_name": "Kiirvaliku nimi", 66 | "shortcut_removed": "Kiirvalik on eemaldatud: {}", 67 | "add": "Lisa", 68 | "new_window": "Uus aken", 69 | "select_sound": "Vali helin", 70 | "sound_files": "Helifailid", 71 | "selected_sound_file": "Valitud helifail: {}", 72 | "translator_credits": "Priit Jõerüüt 2025" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Ajastin", 3 | "timer_running": "Ajastin on käynnissä…", 4 | "run_timer": "Käynnistä ajastin", 5 | "stop_timer": "Pysäytä ajastin", 6 | "timing_finished": "Ajoitus on valmis!", 7 | "timing_ended": "Ajoitus pysäytettiin", 8 | "timer_quit": "Ajastin päättyi", 9 | "about_app": "Tietoja sovelluksesta", 10 | "simple_timer": "Yksinkertainen ajastin", 11 | "preferences": "Asetukset", 12 | "resizable_of_window": "Ikkunan kokoa muutettava", 13 | "default": "oletus", 14 | "hours": "t", 15 | "mins": "min", 16 | "secs": "s", 17 | "shut_down": "Sammuta", 18 | "reboot": "Käynnistä uudelleen", 19 | "action_after_timing": "Toiminto ajastimen päättymisen jälkeen", 20 | "custom_notification": "Mukautettu ilmoitusteksti", 21 | "play_beep": "Toista äänimerkki", 22 | "suspend": "Keskeytä", 23 | "translator_credits": "J. Lavoie https://hosted.weblate.org/user/Edanas", 24 | "notification_desc": "Saat ilmoituksen ja äänimerkin", 25 | "reboot_desc": "Järjestelmäsi käynnistetään uudelleen", 26 | "shut_down_desc": "Järjestelmäsi sammutetaan", 27 | "suspend_desc": "Järjestelmäsi siirretään valmiustilaan", 28 | "preferences_desc": "Setting timer properties", 29 | "keyboard_shortcuts": "Pikanäppäimet", 30 | "start": "Käynnistä", 31 | "stop": "Pysäytä", 32 | "quit": "Lopeta", 33 | "show": "Näytä pikanäppäimet", 34 | "reset": "Palauta oletukset", 35 | "delete_timer_settings": "Palauta kaikki asetukset oletusarvoihin", 36 | "play_alarm_clock": "Toista herätyskello", 37 | "cancel": "Peru", 38 | "start_again": "Käynnistä uudelleen", 39 | "reset_counter": "Palauta ajastimen arvot", 40 | "play_alarm_clock_desc": "Hälytyksen äänimerkin alkuun", 41 | "dialog_remove_warning": "Haluatko palauttaa kaikki ajastimen asetukset?", 42 | "show_about_dialog": "Näytä \"Tietoja\"-ikkuna", 43 | "paused": "Keskeytetty.", 44 | "pause_timer": "Keskeytä ajastin", 45 | "continue_timer": "Jatka ajastinta", 46 | "use_in_alarm_clock": "Use in alarm clock dialog", 47 | "advanced": "Lisää asetuksia", 48 | "go_to_more_settings": "Siirry lisäasetuksiin", 49 | "go_to_notification_settings": "Siirry ilmoitusasetuksiin", 50 | "alternative_key": "Vaihtoehtoinen pikanäppäin on: {}", 51 | "vertical_text": "Pystysuuntainen teksti laskentasivulla", 52 | "vertical_text_desc": "Displays vertical text that counts down the time on the countdown page", 53 | "save_expander_row_state": "Expand Preferences dropdown row", 54 | "save_expander_row_state_desc": "When you start the Timer application, the Preferences drop-down row will automatically expand.", 55 | "show_appicon": "Näytä sovelluksen kuvake ilmoituksessa", 56 | "show_appname": "Näytä sovelluksen nimi ilmoituksessa", 57 | "notification_text": "Ilmoitus", 58 | "alarm_clock_dialog_text": "Herätyskellon ikkuna", 59 | "apply": "Toteuta", 60 | "edit_options": "Muokkaa valintoja", 61 | "remove": "Poista", 62 | "existing_shortcut": "Valitse olemassa oleva pikanäppäin", 63 | "shortcut_name": "Pikanäppäimen nimi", 64 | "shortcuts_warning": "Sinulla ei ole yhtäkään pikanäppäintä…", 65 | "shortcut_removed": "Pikanäppäin '{}' poistettu", 66 | "manage_shortcuts": "Hallitse pikanäppäimiä", 67 | "new_shortcut": "Lisää uusi pikanäppäin", 68 | "add": "Lisää", 69 | "new_window": "Uusi ikkuna", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "El Timer s'està executant…", 4 | "run_timer": "Inicia el temporitzador", 5 | "stop_timer": "Atura el temporitzador", 6 | "timing_finished": "S'ha acabat el temps!", 7 | "timing_ended": "S'ha aturat el temporitzador", 8 | "timer_quit": "Ha finalitzat el temporitzador", 9 | "about_app": "Quant al Timer", 10 | "simple_timer": "Temporitzador senzill", 11 | "preferences": "Configuració", 12 | "resizable_of_window": "Finestra redimensionable", 13 | "default": "per defecte", 14 | "hours": "h", 15 | "mins": "m", 16 | "secs": "s", 17 | "shut_down": "Tanca", 18 | "reboot": "Reinicia", 19 | "action_after_timing": "Acció en finalitzar el temporitzador", 20 | "custom_notification": "Notificació personalitzada", 21 | "play_beep": "Reprodueix un so", 22 | "suspend": "Suspèn", 23 | "notification_desc": "Rebreu una notificació i so en", 24 | "reboot_desc": "El sistema es reiniciarà en", 25 | "shut_down_desc": "El sistema es tancarà en", 26 | "suspend_desc": "El sistema entrarà en suspensió en", 27 | "preferences_desc": "Opcions del temporitzador", 28 | "keyboard_shortcuts": "Dreceres de teclat", 29 | "start": "Inicia", 30 | "stop": "Atura", 31 | "quit": "Surt", 32 | "show": "Mostra les dreceres de teclat", 33 | "reset": "Reinicia", 34 | "delete_timer_settings": "Reinicia als valors per defecte", 35 | "play_alarm_clock": "Reprodueix l'alarma", 36 | "cancel": "Cancel·la", 37 | "start_again": "Inicia novament", 38 | "reset_counter": "Reinicia el valor del temporitzador", 39 | "play_alarm_clock_desc": "L'alarma sonarà en", 40 | "dialog_remove_warning": "Voleu reiniciar la configuració als valors per defecte?", 41 | "show_about_dialog": "Mostra informació de l'aplicació", 42 | "paused": "Pausat.", 43 | "pause_timer": "Pausa el temporitzador", 44 | "continue_timer": "Continua el temporitzador", 45 | "use_in_alarm_clock": "Utilitza dins la finestra de l'alarma", 46 | "advanced": "Configuració avançada", 47 | "go_to_more_settings": "Obre opcions addicionals", 48 | "go_to_notification_settings": "Obre opcions de notificació", 49 | "alternative_key": "La drecera alternativa és: {}", 50 | "vertical_text": "Text en vertical a la pàgina del compte enrere", 51 | "vertical_text_desc": "Mostra el compte enrere en vertical a la pàgina del temporitzador", 52 | "save_expander_row_state": "Mostra les opcions ampliades", 53 | "save_expander_row_state_desc": "Obre automàticament el quadre d'opcions en iniciar l'aplicació Timer.", 54 | "show_appicon": "Mostra la icona del Timer a les notificacions", 55 | "show_appname": "Mostra el nom a les notificacions del sistema", 56 | "notification_text": "Notificacions", 57 | "alarm_clock_dialog_text": "Quadre de l'alarma", 58 | "apply": "Aplica", 59 | "edit_options": "Edita les opcions", 60 | "translator_credits": "BennyBeat https://github.com/BennyBeat", 61 | "remove": "Suprimeix", 62 | "existing_shortcut": "Trieu una drecera existent", 63 | "shortcut_name": "Nom de la drecera", 64 | "shortcuts_warning": "No teniu cap drecera…", 65 | "shortcut_removed": "Drecera '{}' suprimida", 66 | "manage_shortcuts": "Gestiona les dreceres", 67 | "new_shortcut": "Afegeix una drecera nova", 68 | "add": "Afegeix", 69 | "new_window": "Finestra nova", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "Timer radi …", 4 | "run_timer": "Pokreni timer", 5 | "stop_timer": "Zaustavi timer", 6 | "timing_finished": "Mjerenje vremena je završeno!", 7 | "timing_ended": "Mjerenje vremena je zaustavljeno", 8 | "timer_quit": "Timer je završio", 9 | "about_app": "O aplikaciji", 10 | "simple_timer": "Jednostavan timer", 11 | "preferences": "Postavke", 12 | "resizable_of_window": "Promjenjiva veličina prozora", 13 | "default": "zadano", 14 | "hours": "h", 15 | "mins": "min", 16 | "secs": "s", 17 | "shut_down": "Isključi sustav", 18 | "reboot": "Ponovo pokreni", 19 | "action_after_timing": "Radnja nakon završetka timera", 20 | "custom_notification": "Prilagođeni tekst obavijesti", 21 | "play_beep": "Reproduciraj zvučni signal", 22 | "suspend": "Pripravno stanje", 23 | "notification_desc": "Primit ćeš obavijest i oglasit će se zvučni signal za", 24 | "reboot_desc": "Tvoj će se sustav ponovo pokrenuti za", 25 | "shut_down_desc": "Tvoj će se sustav isključiti za", 26 | "suspend_desc": "Tvoj će se sustav prebaciti na pripravno stanje za", 27 | "preferences_desc": "Postavljanje svojstava timera", 28 | "keyboard_shortcuts": "Tipkovni prečaci", 29 | "start": "Pokreni", 30 | "stop": "Zaustavi", 31 | "quit": "Zatvori aplikaciju", 32 | "show": "Prikaži tipkovne prečace", 33 | "reset": "Resetiraj", 34 | "delete_timer_settings": "Resetiraj sve postavke na standardne vrijednosti", 35 | "play_alarm_clock": "Reproduciraj budilicu", 36 | "cancel": "Odustani", 37 | "start_again": "Pokreni ponovo", 38 | "reset_counter": "Resetiraj vrijednosti brojača timera", 39 | "play_alarm_clock_desc": "Tvoj alarm će se oglasiti za", 40 | "dialog_remove_warning": "Resetirati sve postavke timera?", 41 | "show_about_dialog": "Prikaži prozor „O aplikaciji“", 42 | "paused": "Pauzirano.", 43 | "pause_timer": "Pauziraj timer", 44 | "continue_timer": "Nastavi timer", 45 | "use_in_alarm_clock": "Koristi u dijalogu budilice", 46 | "advanced": "Više postavki", 47 | "go_to_more_settings": "Idi na „Više postavki“", 48 | "go_to_notification_settings": "Idi na „Postavke obavijesti“", 49 | "alternative_key": "Alternativni tipkovni prečac je: {}", 50 | "vertical_text": "Okomiti tekst na stranici odbrojavanja", 51 | "vertical_text_desc": "Prikazuje okomiti tekst koji odbrojava vrijeme na stranici odbrojavanja", 52 | "save_expander_row_state": "Proširi padajući redak postavki", 53 | "save_expander_row_state_desc": "Automatski proširi padajući redak postavki prilikom pokretanja aplikacije Timer.", 54 | "show_appicon": "Prikaži ikonu aplikacije u obavijesti", 55 | "show_appname": "Prikaži ime aplikacije u obavijesti", 56 | "notification_text": "Obavijest", 57 | "alarm_clock_dialog_text": "Dijalog budilice", 58 | "apply": "Primijeni", 59 | "edit_options": "Uredi opcije", 60 | "manage_shortcuts": "Upravljaj prečacima", 61 | "remove": "Ukloni", 62 | "shortcuts_warning": "Nemaš nijedan prečac …", 63 | "existing_shortcut": "Odaberi postojeći prečac", 64 | "new_shortcut": "Dodaj novi prečac", 65 | "shortcut_name": "Ime prečaca", 66 | "shortcut_removed": "Prečac „{}“ je uklonjen", 67 | "add": "Dodaj", 68 | "new_window": "Novi prozor", 69 | "select_sound": "Odaberi prilagođeni zvuk", 70 | "sound_files": "Datoteke zvukova", 71 | "selected_sound_file": "Odabrana datoteka zvukova: {}", 72 | "translator_credits": "Milo Ivir " 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Таймер", 3 | "timer_running": "Таймер запущен …", 4 | "run_timer": "Запустить таймер", 5 | "stop_timer": "Остановить таймер", 6 | "timing_finished": "Время истекло!", 7 | "timing_ended": "Время таймера остановлено", 8 | "timer_quit": "Таймер завершён", 9 | "about_app": "О приложении", 10 | "simple_timer": "Простой таймер", 11 | "preferences": "Настройки", 12 | "resizable_of_window": "Изменяемый размер окна", 13 | "default": "по умолчанию", 14 | "hours": "ч", 15 | "mins": "м", 16 | "secs": "с", 17 | "shut_down": "Завершить", 18 | "reboot": "Перезагрузить", 19 | "action_after_timing": "Действие после завершения таймера", 20 | "custom_notification": "Пользовательский текст уведомления", 21 | "play_beep": "Звуковой сигнал", 22 | "suspend": "Ждущий режим", 23 | "translator_credits": "None", 24 | "notification_desc": "Вы получите уведомление и звуковой сигнал через", 25 | "reboot_desc": "Ваша система будет перезагружена через", 26 | "shut_down_desc": "Ваша система будет отключена через", 27 | "suspend_desc": "Ваша система перейдет в ждущий режим через", 28 | "show": "Показать комбинации клавиш", 29 | "preferences_desc": "Настройка свойств таймера", 30 | "keyboard_shortcuts": "Комбинации клавиш", 31 | "start": "Начать", 32 | "stop": "Остановить", 33 | "quit": "Выйти", 34 | "reset": "Сбросить", 35 | "play_alarm_clock": "Включить будильник", 36 | "delete_timer_settings": "Сбросить все настройки", 37 | "cancel": "Отмена", 38 | "start_again": "Начать снова", 39 | "reset_counter": "Сбросить счетчик таймера", 40 | "play_alarm_clock_desc": "Будильник зазвонит через", 41 | "dialog_remove_warning": "Сбросить все настройки таймера?", 42 | "show_about_dialog": "Показать окно «О приложении»", 43 | "paused": "Приостановлено.", 44 | "pause_timer": "Приостановка таймера", 45 | "continue_timer": "Возобновить таймер", 46 | "use_in_alarm_clock": "Использовать в диалоговом окне будильника", 47 | "advanced": "Дополнительные настройки", 48 | "go_to_more_settings": "Перейти к дополнительным настройкам", 49 | "go_to_notification_settings": "Перейти к настройкам уведомлений", 50 | "alternative_key": "Альтернативная комбинация клавиш: {}", 51 | "vertical_text": "Вертикальный текст на странице обратного отсчета", 52 | "vertical_text_desc": "Отображает вертикальный текст, отсчитывающий время на странице обратного отсчета", 53 | "save_expander_row_state": "Развернуть раскрывающийся список настроек", 54 | "save_expander_row_state_desc": "Автоматически раскрывать выпадающий список «Настройки» при запуске приложения «Таймер».", 55 | "show_appicon": "Показывать значок приложения в уведомлении", 56 | "show_appname": "Показывать название приложения в уведомлении", 57 | "notification_text": "Уведомление", 58 | "alarm_clock_dialog_text": "Диалог будильника", 59 | "apply": "Применить", 60 | "edit_options": "Изменить параметры", 61 | "remove": "Удалить", 62 | "existing_shortcut": "Выберите существующую горячую клавишу", 63 | "shortcut_name": "Название горячей клавиши", 64 | "shortcuts_warning": "Горячие клавиши не назначены…", 65 | "shortcut_removed": "Горячая клавиша '{}' удалена", 66 | "manage_shortcuts": "Управление горячими клавишами", 67 | "new_shortcut": "Добавить новую горячую клавишу", 68 | "add": "Добавить", 69 | "new_window": "Новое окно", 70 | "select_sound": "Выбрать свой звук", 71 | "sound_files": "Звуковые файлы", 72 | "selected_sound_file": "Выбранный звуковой файл: {}" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/pt_BR.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Cronômetro", 3 | "timer_running": "O cronômetro está em execução…", 4 | "run_timer": "Iniciar cronômetro", 5 | "stop_timer": "Parar cronômetro", 6 | "timing_finished": "O tempo acabou!", 7 | "timing_ended": "O cronômetro parou", 8 | "timer_quit": "O cronômetro foi encerrado", 9 | "about_app": "Sobre o app", 10 | "simple_timer": "Cronômetro simples", 11 | "preferences": "Preferências", 12 | "resizable_of_window": "Redimensionamento da Janela", 13 | "default": "padrão", 14 | "hours": "h", 15 | "mins": "m", 16 | "secs": "s", 17 | "shut_down": "Desligar", 18 | "reboot": "Reiniciar", 19 | "action_after_timing": "Ação após terminar o temporizador", 20 | "custom_notification": "Texto de notificação personalizado", 21 | "play_beep": "Tocar beep", 22 | "suspend": "Suspender", 23 | "notification_desc": "Você receberá notificação e bipe em", 24 | "reboot_desc": "Seu sistema irá reiniciar em", 25 | "shut_down_desc": "Seu sistema será desligado em", 26 | "suspend_desc": "Seu sistema será suspenso em", 27 | "preferences_desc": "Configure propriedades do crônometro", 28 | "keyboard_shortcuts": "Atalhos do teclado", 29 | "start": "Iniciar", 30 | "stop": "Parar", 31 | "quit": "Sair", 32 | "show": "Exibir atalhos de teclado", 33 | "reset": "Redefinir", 34 | "delete_timer_settings": "Redefinir todas as configurações para o padrão", 35 | "play_alarm_clock": "Tocar alarme", 36 | "cancel": "Cancelar", 37 | "start_again": "Iniciar novamente", 38 | "reset_counter": "Redefinir valores de contagem do crônometro", 39 | "play_alarm_clock_desc": "Seu alarme irá tocar em", 40 | "dialog_remove_warning": "Redefinir todas as configurações do cronômetro?", 41 | "show_about_dialog": "Mostrar informações do aplicativo", 42 | "paused": "Pausado.", 43 | "pause_timer": "Pausar cronômetro", 44 | "continue_timer": "Continuar contagem", 45 | "use_in_alarm_clock": "Usar em janela de diálogo do alarme", 46 | "advanced": "Mais opções", 47 | "go_to_more_settings": "Ir para mais configurações", 48 | "go_to_notification_settings": "Ir para configurações de notificação", 49 | "alternative_key": "O atalho de teclado alternativo é: {}", 50 | "vertical_text": "Texto vertical na página de contagem regressiva", 51 | "vertical_text_desc": "Exibe o texto vertical que faz a contagem regressiva do tempo na página de contagem regressiva", 52 | "save_expander_row_state": "Expandir linha suspensa de preferências", 53 | "save_expander_row_state_desc": "Ao iniciar a aplicação Timer, o menu de Preferências irá expandir automaticamente.", 54 | "show_appicon": "Mostrar ícone do aplicativo na notificação", 55 | "show_appname": "Mostrar nome do aplicativo na notificação", 56 | "notification_text": "Notificação", 57 | "alarm_clock_dialog_text": "Caixa de diálogo do alarme", 58 | "translator_credits": "Felipe Nogueira https://github.com/fnogcps", 59 | "apply": "Aplicar", 60 | "edit_options": "Editar opções", 61 | "remove": "Remover", 62 | "existing_shortcut": "Selecione um atalho existente", 63 | "shortcut_name": "Nome do atalho", 64 | "shortcuts_warning": "Não existe atalho …", 65 | "shortcut_removed": "Atalho '{}' removido", 66 | "manage_shortcuts": "Gerenciar atalhos", 67 | "new_shortcut": "Criar novo atalho", 68 | "add": "Novo", 69 | "new_window": "Nova janela", 70 | "selected_sound_file": "Arquivo de som selecionado: {}", 71 | "select_sound": "Selecione som personalizado", 72 | "sound_files": "Arquivos de som" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Időzítő", 3 | "timer_running": "Az időzítő fut …", 4 | "run_timer": "Időzítő indítása", 5 | "stop_timer": "Időzítő leállítása", 6 | "timing_finished": "Az időmérés befejeződött!", 7 | "timing_ended": "Időmérés leállítva", 8 | "timer_quit": "Időzítő leállítva", 9 | "about_app": "Névjegy", 10 | "simple_timer": "Egyszerű időzítő", 11 | "preferences": "Beállítások", 12 | "resizable_of_window": "Átméretezhető ablak", 13 | "default": "alapértelmezett", 14 | "hours": "ó", 15 | "mins": "p", 16 | "secs": "mp", 17 | "shut_down": "Leállítás", 18 | "reboot": "Újraindítás", 19 | "action_after_timing": "Művelet az időzítő befejezése után", 20 | "custom_notification": "Egyéni értesítési szöveg", 21 | "play_beep": "Hangjelzés lejátszása", 22 | "suspend": "Felfüggesztés", 23 | "notification_desc": "Értesítést és hangjelzést fogsz kapni", 24 | "reboot_desc": "A rendszer újraindul", 25 | "shut_down_desc": "A rendszer leáll", 26 | "suspend_desc": "A rendszer felfüggesztésre kerül", 27 | "preferences_desc": "Az időzítő tulajdonságainak beállítása", 28 | "keyboard_shortcuts": "Gyorsbillentyűk", 29 | "start": "Start", 30 | "stop": "Stop", 31 | "quit": "Kilépés", 32 | "show": "Gyorsbillentyűk mutatása", 33 | "reset": "Visszaállítás", 34 | "delete_timer_settings": "Minden beállítás visszaállítása az alapértelmezettre", 35 | "play_alarm_clock": "Riasztás lejátszása", 36 | "cancel": "Mégsem", 37 | "start_again": "Újraindítás", 38 | "reset_counter": "Az időzítő számláló értékeinek visszaállítása", 39 | "play_alarm_clock_desc": "A riasztás ennyi időn múlva fog megszólalni", 40 | "dialog_remove_warning": "Minden beállítás visszaállítása?", 41 | "show_about_dialog": "A „Névjegy” alkalmazás ablakának megjelenítése", 42 | "paused": "Szüneteltetve.", 43 | "pause_timer": "Időzítő szüneteltetése", 44 | "continue_timer": "Időzítő folytatása", 45 | "use_in_alarm_clock": "Riasztás párbeszédpanel használata", 46 | "advanced": "További beállítások", 47 | "go_to_more_settings": "Ugrás további beállításokhoz", 48 | "go_to_notification_settings": "Ugrás az értesítési beállításokhoz", 49 | "alternative_key": "Az alternatív billentyűparancs: {}", 50 | "vertical_text": "Függőleges szöveg a visszaszámlálási oldalon", 51 | "vertical_text_desc": "Függőleges szöveget jelenít meg, amely visszaszámlálja az időt a visszaszámláló oldalon", 52 | "save_expander_row_state": "Bontsa ki a Beállítások legördülő sort", 53 | "save_expander_row_state_desc": "Automatikusan kibontja a Beállítások legördülő sort az Időzítő alkalmazás indításakor.", 54 | "show_appicon": "Az alkalmazás ikon mutatása az értesítésben", 55 | "show_appname": "Az alkalmazás nevének mutatása az értesítésben", 56 | "notification_text": "Értesítés", 57 | "alarm_clock_dialog_text": "Riasztás párbeszédpanel", 58 | "translator_credits": "Daniel Uhrinyi https://github.com/danieluhrinyi", 59 | "apply": "Alkalmaz", 60 | "edit_options": "Beállítások szerkesztése", 61 | "remove": "Eltávolítás", 62 | "existing_shortcut": "Select an existing shortcut", 63 | "shortcut_name": "Shortcut name", 64 | "shortcuts_warning": "You haven't any shortcut …", 65 | "shortcut_removed": "Shortcut '{}' removed", 66 | "manage_shortcuts": "Parancsikonok kezelése", 67 | "new_shortcut": "Add a new shortcut", 68 | "add": "Add", 69 | "new_window": "New window", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "Der Timer läuft …", 4 | "run_timer": "Startzeitpunktr", 5 | "stop_timer": "Stopzeitpunktr", 6 | "timing_finished": "Die Zeitmessung ist abgeschlossen!", 7 | "timing_ended": "Die Zeitmessung wurde gestoppt", 8 | "timer_quit": "Timer wurde beendet", 9 | "about_app": "Über", 10 | "simple_timer": "Einfacher Timer", 11 | "preferences": "Präferenzen", 12 | "resizable_of_window": "Größe des Fensters ändern", 13 | "default": "standard", 14 | "hours": "St.", 15 | "mins": "Min.", 16 | "secs": "Sek.", 17 | "shut_down": "Abschalten", 18 | "reboot": "Neustart", 19 | "action_after_timing": "Aktion nach Ablauf des Timers", 20 | "custom_notification": "Benutzerdefinierter Benachrichtigungstext", 21 | "play_beep": "Signalton abspielen", 22 | "suspend": "Ruhezustand", 23 | "translator_credits": "vikdevelop https://github.com/vikdevelop", 24 | "notification_desc": "Sie erhalten eine Benachrichtigung und einen Piepton in", 25 | "reboot_desc": "Ihr System wird neu gestartet in", 26 | "shut_down_desc": "Ihr System wird heruntergefahren in", 27 | "suspend_desc": "Ihr System wird in den Ruhezustand versetzt in", 28 | "preferences_desc": "Timer-Eigenschaften festlegen", 29 | "keyboard_shortcuts": "Tastenkombinationen", 30 | "start": "Start", 31 | "stop": "Stopp", 32 | "quit": "Beenden", 33 | "show": "Tastenkombinationen anzeigen", 34 | "reset": "Zurücksetzen", 35 | "delete_timer_settings": "Alle Einstellungen auf Standardwerte zurücksetzen", 36 | "play_alarm_clock": "Wecker abspielen", 37 | "cancel": "Abbrechen", 38 | "start_again": "Erneut starten", 39 | "reset_counter": "Timer-Zählerwerte zurücksetzen", 40 | "play_alarm_clock_desc": "Der Wecker klingelt in", 41 | "dialog_remove_warning": "Möchten Sie wirklich alle Timer-Einstellungen auf die Standardwerte zurücksetzen?", 42 | "show_about_dialog": "App-Fenster „Über“ anzeigen", 43 | "paused": "Pausiert.", 44 | "pause_timer": "Timer pausieren", 45 | "continue_timer": "Timer fortsetzen", 46 | "use_in_alarm_clock": "Im Wecker-Dialog verwenden", 47 | "advanced": "Weitere Einstellungen", 48 | "go_to_more_settings": "Zu weiteren Einstellungen gehen", 49 | "go_to_notification_settings": "Zu Benachrichtigungseinstellungen gehen", 50 | "alternative_key": "Die alternative Tastenkombination ist: {}", 51 | "vertical_text": "Vertikaler Text auf der Countdown-Seite", 52 | "vertical_text_desc": "Zeigt vertikalen Text an, der die Zeit auf der Countdown-Seite herunterzählt", 53 | "save_expander_row_state": "Dropdown-Zeile Präferenzen erweitern", 54 | "save_expander_row_state_desc": "Erweitert beim Starten der Timer-Anwendung automatisch die Dropdown-Zeile Präferenzen.", 55 | "show_appicon": "Anwendungssymbol in der Benachrichtigung anzeigen", 56 | "show_appname": "Anwendungsname in der Benachrichtigung anzeigen", 57 | "notification_text": "Benachrichtigung", 58 | "alarm_clock_dialog_text": "Wecker-Dialog", 59 | "apply": "Anwenden", 60 | "edit_options": "Optionen bearbeiten", 61 | "remove": "Remove", 62 | "existing_shortcut": "Select an existing shortcut", 63 | "shortcut_name": "Shortcut name", 64 | "shortcuts_warning": "You haven't any shortcut ...", 65 | "shortcut_removed": "Shortcut '{}' removed", 66 | "manage_shortcuts": "Manage Shortcuts", 67 | "new_shortcut": "Add a new shortcut", 68 | "add": "Add", 69 | "new_window": "New window", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Timer", 3 | "timer_running": "Timer è in esecuzione …", 4 | "run_timer": "Avvia timer", 5 | "stop_timer": "Ferma timer", 6 | "timing_finished": "Il tempo è terminato!", 7 | "timing_ended": "Il tempo si è fermato", 8 | "timer_quit": "Il tempo è terminato", 9 | "about_app": "Informazioni sull'app", 10 | "simple_timer": "Timer semplice", 11 | "preferences": "Preferenze", 12 | "resizable_of_window": "Finestra ridimensionabile", 13 | "default": "predefinito", 14 | "hours": "o", 15 | "mins": "min", 16 | "secs": "s", 17 | "shut_down": "Spegni", 18 | "reboot": "Riavvia", 19 | "action_after_timing": "Azione dopo il termine del timer", 20 | "custom_notification": "Testo di notifica personalizzato", 21 | "play_beep": "Riproduci segnale acustico", 22 | "suspend": "Sospendi", 23 | "translator_credits": "Albano Battistella https://github.com/albanobattistella", 24 | "notification_desc": "Riceverai una notifica e un segnale acustico", 25 | "reboot_desc": "Il sistema verrà riavviato in", 26 | "shut_down_desc": "Il tuo sistema verrà spento tra", 27 | "suspend_desc": "Il tuo sistema verrà sospeso in", 28 | "preferences_desc": "Impostazione delle proprietà del timer", 29 | "keyboard_shortcuts": "Scorciatoie da tastiera", 30 | "start": "Avvia", 31 | "stop": "Ferma", 32 | "quit": "Esci", 33 | "show": "Mostra scorciatoie da tastiera", 34 | "reset": "Resettare", 35 | "delete_timer_settings": "Ripristina tutte le impostazioni predefinite", 36 | "play_alarm_clock": "Suona la sveglia", 37 | "cancel": "Cancella", 38 | "start_again": "Inizia di nuovo", 39 | "reset_counter": "Reimposta i valori del contatore del timer", 40 | "play_alarm_clock_desc": "La tua sveglia suonerà", 41 | "dialog_remove_warning": "Azzerare tutte le impostazioni del timer?", 42 | "show_about_dialog": "Mostra la finestra “Informazioni” nell'app", 43 | "paused": "In pausa.", 44 | "pause_timer": "Timer di pausa", 45 | "continue_timer": "Riprendi il timer", 46 | "use_in_alarm_clock": "Usa nella finestra di dialogo della sveglia", 47 | "advanced": "Altre impostazioni", 48 | "go_to_more_settings": "Vai su Altre impostazioni", 49 | "go_to_notification_settings": "Vai su Impostazioni di notifica", 50 | "alternative_key": "La scorciatoia da tastiera alternativa è: {}", 51 | "vertical_text": "Testo verticale nella pagina del conto alla rovescia", 52 | "vertical_text_desc": "Visualizza il testo verticale che esegue il conto alla rovescia nella pagina del conto alla rovescia", 53 | "save_expander_row_state": "Espandi Preferenze nella riga a discesa", 54 | "save_expander_row_state_desc": "Espande automaticamente la riga del menu a discesa Preferenze all'avvio dell'applicazione Timer.", 55 | "show_appicon": "Mostra l'icona dell'applicazione nella notifica", 56 | "show_appname": "Mostra il nome dell'applicazione nella notifica", 57 | "notification_text": "Notifica", 58 | "alarm_clock_dialog_text": "Finestra di dialogo Sveglia", 59 | "apply": "Applica", 60 | "edit_options": "Modifica opzioni", 61 | "remove": "Rimuovi", 62 | "existing_shortcut": "Seleziona una scorciatoia esistente", 63 | "shortcut_name": "Nome scorciatoia", 64 | "shortcuts_warning": "Non hai scorciatoie …", 65 | "shortcut_removed": "Scorciatoia '{}' rimossa", 66 | "manage_shortcuts": "Gestisci scorciatoie", 67 | "new_shortcut": "Aggiungi una nuova scorciatoia", 68 | "add": "Aggiungi", 69 | "new_window": "Nuova finestra", 70 | "selected_sound_file": "File audio selezionato: {}", 71 | "select_sound": "Seleziona suono personalizzato", 72 | "sound_files": "File audio" 73 | } 74 | -------------------------------------------------------------------------------- /src/shortcuts_window.py: -------------------------------------------------------------------------------- 1 | from __init__ import jT 2 | import gi 3 | gi.require_version('Gtk', '4.0') 4 | from gi.repository import Gtk 5 | 6 | SHORTCUTS_WINDOW = '\ 7 | \ 8 | \ 9 | \ 76 | ' % (jT["run_timer"], jT["stop_timer"], jT["quit"], jT["show"], jT["reset_counter"], jT["pause_timer"], jT["continue_timer"], jT["new_window"], jT["delete_timer_settings"]) 77 | 78 | # Shortcuts window 79 | @Gtk.Template(string=SHORTCUTS_WINDOW) # from shortcuts_window.py 80 | class ShortcutsWindow(Gtk.ShortcutsWindow): 81 | __gtype_name__ = 'ShortcutsWindow' 82 | 83 | def __init__(self, **kwargs): 84 | super().__init__(**kwargs) 85 | -------------------------------------------------------------------------------- /translations/json/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Таймер", 3 | "timer_running": "Таймер працює …", 4 | "run_timer": "Запустити таймер", 5 | "stop_timer": "Зупинити таймер", 6 | "timing_finished": "Відлік часу завершено!", 7 | "timing_ended": "Відлік часу було зупинено", 8 | "timer_quit": "Таймер закінчився", 9 | "about_app": "Про додаток", 10 | "simple_timer": "Простий таймер", 11 | "preferences": "Налаштування", 12 | "resizable_of_window": "Змінюваний розмір вікна", 13 | "default": "за замовчуванням", 14 | "hours": "год", 15 | "mins": "хв", 16 | "secs": "с", 17 | "shut_down": "Вимкнути", 18 | "reboot": "перезавантажити", 19 | "action_after_timing": "Дія після завершення таймера", 20 | "custom_notification": "Власний текст сповіщення", 21 | "play_beep": "Відтворити звуковий сигнал", 22 | "suspend": "Призупинити", 23 | "notification_desc": "Ви отримаєте сповіщення та звуковий сигнал через", 24 | "reboot_desc": "Система буде перезавантажено через", 25 | "shut_down_desc": "Система буде вимкнено через", 26 | "suspend_desc": "Вашу систему буде призупинено через", 27 | "preferences_desc": "Налаштування властивостей таймера", 28 | "keyboard_shortcuts": "Клавіатурні скорочення", 29 | "start": "Запуск", 30 | "stop": "Зупинити", 31 | "quit": "Вийти", 32 | "show": "Показати клавіатурні скорочення", 33 | "reset": "Скинути", 34 | "translator_credits": "vikdevelop https://github.com/vikdevelop", 35 | "delete_timer_settings": "Скинути всі налаштування до замовчування", 36 | "play_alarm_clock": "Увімкнути будильник", 37 | "cancel": "Скасувати", 38 | "start_again": "Почати спочатку", 39 | "reset_counter": "Скинути значення лічильника таймера", 40 | "play_alarm_clock_desc": "Ваш будильник задзвонить через", 41 | "dialog_remove_warning": "Скинути всі налаштування таймера?", 42 | "show_about_dialog": "Показати вікно \"Про додаток\"", 43 | "paused": "Пауза.", 44 | "pause_timer": "Призупинити таймер", 45 | "continue_timer": "Скинути таймер", 46 | "use_in_alarm_clock": "Використання в діалоговому вікні будильника", 47 | "advanced": "Додаткові налаштування", 48 | "go_to_more_settings": "Перейдіть до Додаткових налаштувань", 49 | "go_to_notification_settings": "Перейдіть до налаштувань сповіщень", 50 | "alternative_key": "Альтернативне клавіатурне скорочення: {}", 51 | "vertical_text": "Вертикальний текст на сторінці зворотного відліку", 52 | "vertical_text_desc": "Відображає вертикальний текст, який відраховує час на сторінці зворотного відліку", 53 | "save_expander_row_state": "Розгорніть випадаючий список Налаштування", 54 | "save_expander_row_state_desc": "Автоматично розгортає розкривний рядок «Налаштування» під час запуску додатку «Таймер».", 55 | "show_appicon": "Показувати піктограму додатку у сповіщенні", 56 | "show_appname": "Показувати назву додатку у сповіщенні", 57 | "notification_text": "Сповіщення", 58 | "alarm_clock_dialog_text": "Діалогове вікно будильника", 59 | "apply": "Застосувати", 60 | "edit_options": "Редагувати параметри", 61 | "remove": "Видалити", 62 | "existing_shortcut": "Оберіть існуюче клавіатурне скорочення", 63 | "shortcut_name": "Назва клавіатурного скорочення", 64 | "shortcuts_warning": "Не назначено жодного клавіатурного скорочення…", 65 | "shortcut_removed": "Клавіатурне скорочення '{}' було видалено", 66 | "manage_shortcuts": "Керування клавіатурними скороченнями", 67 | "new_shortcut": "Додати нове клавіатурне скорочення", 68 | "add": "Додати", 69 | "new_window": "Нове вікно", 70 | "selected_sound_file": "Вибраний звуковий файл: {}", 71 | "select_sound": "Вибрати власний звук", 72 | "sound_files": "Звукові файли" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Minuterie", 3 | "timer_running": "La minuterie est en cours d’exécution…", 4 | "run_timer": "Démarrer la minuterie", 5 | "stop_timer": "Arrêter la minuterie", 6 | "timing_finished": "La minuterie est terminée !", 7 | "timing_ended": "La minuterie a été arrêtée", 8 | "timer_quit": "La minuterie s’est terminée", 9 | "about_app": "À propos", 10 | "simple_timer": "Minuterie simple", 11 | "preferences": "Préférences", 12 | "resizable_of_window": "Redimensionnement de la fenêtre", 13 | "default": "par défaut", 14 | "hours": "h", 15 | "mins": "min", 16 | "secs": "s", 17 | "shut_down": "Éteindre", 18 | "reboot": "Redémarrer", 19 | "action_after_timing": "Action après la fin de la minuterie", 20 | "custom_notification": "Texte de notification personnalisé", 21 | "play_beep": "Émettre un bip", 22 | "suspend": "Suspendre", 23 | "translator_credits": "J. Lavoie https://hosted.weblate.org/user/Edanas", 24 | "notification_desc": "Vous recevrez une notification", 25 | "reboot_desc": "Votre système sera redémarré dans", 26 | "shut_down_desc": "Votre système sera arrêté dans", 27 | "suspend_desc": "Votre système sera suspendu dans", 28 | "preferences_desc": "Réglage des propriétés du minuteur", 29 | "keyboard_shortcuts": "Raccourcis clavier", 30 | "start": "Démarrer", 31 | "stop": "Arrêter", 32 | "quit": "Quitter", 33 | "show": "Afficher les raccourcis clavier", 34 | "reset": "Réinitialiser", 35 | "delete_timer_settings": "Réinitialisation des paramètres par défaut", 36 | "play_alarm_clock": "Jouer son de l'alarme", 37 | "cancel": "Annuler", 38 | "start_again": "Recommencer", 39 | "reset_counter": "Réinitialisation des valeurs des compteurs de la minuterie", 40 | "play_alarm_clock_desc": "La sonnerie retentira dans", 41 | "dialog_remove_warning": "Réinitialiser tous les paramètres de timer ?", 42 | "show_about_dialog": "Afficher la fenêtre \"A propos\" de l'application", 43 | "paused": "Pause.", 44 | "pause_timer": "Minuteur pause", 45 | "continue_timer": "Reprise de la minuterie", 46 | "use_in_alarm_clock": "Utilisation dans le dialogue de l'alarme", 47 | "advanced": "Plus de paramètres", 48 | "go_to_more_settings": "Aller dans Plus de paramètres", 49 | "go_to_notification_settings": "Aller dans les paramètres de notification", 50 | "alternative_key": "Le raccourci clavier alternatif est : {}", 51 | "vertical_text": "Texte vertical dans la page du compte à rebours", 52 | "vertical_text_desc": "Affiche un texte vertical qui décompte le temps sur la page du compte à rebours", 53 | "save_expander_row_state": "Développer la liste déroulante des préférences", 54 | "save_expander_row_state_desc": "Développe automatiquement la liste déroulante des préférences au démarrage de l'application Timer.", 55 | "show_appicon": "Afficher l'icône de l'application dans la notification", 56 | "show_appname": "Afficher le nom de l'application dans la notification", 57 | "notification_text": "Notification", 58 | "alarm_clock_dialog_text": "Dialogue d'alarme", 59 | "apply": "Appliquer", 60 | "edit_options": "Modifier les options", 61 | "remove": "Supprimer", 62 | "existing_shortcut": "Sélectionner un raccourci existant", 63 | "shortcut_name": "Nom du raccourci", 64 | "shortcuts_warning": "Vous n'avez pas de raccourci …", 65 | "shortcut_removed": "Raccourci '{}' supprimé", 66 | "manage_shortcuts": "Gestion des raccourcis", 67 | "new_shortcut": "Ajouter un nouveau raccourci", 68 | "add": "Ajouter", 69 | "new_window": "Nouvelle fenêtre", 70 | "selected_sound_file": "Selected sound file: {}", 71 | "select_sound": "Select custom sound", 72 | "sound_files": "Sound files" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/ta.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "நேரங்குறிகருவி", 3 | "timer_running": "நேரங்குறிகருவி இயங்குகிறது…", 4 | "run_timer": "டைமரைத் தொடங்குங்கள்", 5 | "stop_timer": "டைமரை நிறுத்து", 6 | "timing_finished": "நேரம் முடிந்தது!", 7 | "timing_ended": "நேரம் நிறுத்தப்பட்டது", 8 | "timer_quit": "நேரங்குறிகருவி முடிந்தது", 9 | "about_app": "பயன்பாடு பற்றி", 10 | "simple_timer": "எளிய நேரங்குறிகருவி", 11 | "preferences": "விருப்பத்தேர்வுகள்", 12 | "resizable_of_window": "சாளரத்தின் மறுசீரமைப்பு", 13 | "default": "இயல்புநிலை", 14 | "hours": "ம", 15 | "mins": "மீ", 16 | "secs": "கள்", 17 | "shut_down": "மூடு", 18 | "reboot": "மறுதொடக்கம் செய்யுங்கள்", 19 | "action_after_timing": "முடிக்கப்பட்ட டைமருக்குப் பிறகு நடவடிக்கை", 20 | "custom_notification": "தனிப்பயன் அறிவிப்பு உரை", 21 | "play_beep": "பீப் விளையாடுங்கள்", 22 | "suspend": "இடைநீக்கம்", 23 | "notification_desc": "நீங்கள் அறிவிப்பைப் பெறுவீர்கள்", 24 | "reboot_desc": "உங்கள் கணினி மீண்டும் துவக்கப்படும்", 25 | "shut_down_desc": "உங்கள் கணினி மூடப்படும்", 26 | "suspend_desc": "உங்கள் கணினி இடைநிறுத்தப்படும்", 27 | "preferences_desc": "நேரங்குறிகருவி பண்புகளை அமைத்தல்", 28 | "keyboard_shortcuts": "விசைப்பலகை குறுக்குவழிகள்", 29 | "start": "தொடங்கு", 30 | "stop": "நிறுத்து", 31 | "quit": "வெளியேறு", 32 | "show": "விசைப்பலகை குறுக்குவழிகளைக் காட்டு", 33 | "reset": "மீட்டமை", 34 | "delete_timer_settings": "எல்லா அமைப்புகளையும் இயல்புநிலைக்கு மீட்டமைக்கவும்", 35 | "play_alarm_clock": "அலாரம் கடிகாரம் விளையாடுங்கள்", 36 | "cancel": "ரத்துசெய்", 37 | "start_again": "மீண்டும் தொடங்கவும்", 38 | "reset_counter": "நேரங்குறிகருவி எதிர் மதிப்புகளை மீட்டமைக்கவும்", 39 | "play_alarm_clock_desc": "உங்கள் அலாரம் ஒலிக்கும்", 40 | "dialog_remove_warning": "அனைத்து நேரங்குறிகருவி அமைப்புகளையும் மீட்டமைக்கவா?", 41 | "show_about_dialog": "“பற்றி” பயன்பாட்டு சாளரத்தைக் காட்டு", 42 | "paused": "இடைநிறுத்தப்பட்டது.", 43 | "pause_timer": "இடைநிறுத்தம் நேரம்", 44 | "continue_timer": "டைமரை மீண்டும் தொடங்குங்கள்", 45 | "use_in_alarm_clock": "அலாரம் கடிகார உரையாடலில் பயன்படுத்தவும்", 46 | "advanced": "மேலும் அமைப்புகள்", 47 | "go_to_more_settings": "மேலும் அமைப்புகளுக்குச் செல்லுங்கள்", 48 | "go_to_notification_settings": "அறிவிப்பு அமைப்புகளுக்குச் செல்லுங்கள்", 49 | "alternative_key": "மாற்று விசைப்பலகை குறுக்குவழி: {}", 50 | "vertical_text": "கவுண்டவுன் பக்கத்தில் செங்குத்து உரை", 51 | "vertical_text_desc": "கவுண்டவுன் பக்கத்தில் நேரத்தைக் கணக்கிடும் செங்குத்து உரையைக் காட்டுகிறது", 52 | "save_expander_row_state": "விருப்பத்தேர்வுகள் கீழ்தோன்றும் வரிசையை விரிவாக்குங்கள்", 53 | "save_expander_row_state_desc": "நேரங்குறிகருவி பயன்பாட்டைத் தொடங்கும்போது விருப்பத்தேர்வுகள் கீழ்தோன்றும் வரிசையை தானாக விரிவுபடுத்துகின்றன.", 54 | "show_appicon": "அறிவிப்பில் பயன்பாட்டு ஐகானைக் காட்டு", 55 | "show_appname": "பயன்பாட்டு பெயரை அறிவிப்பில் காட்டு", 56 | "notification_text": " அறிவிப்பு ", 57 | "alarm_clock_dialog_text": " அலாரம் கடிகார உரையாடல் ", 58 | "apply": "இடு", 59 | "edit_options": "விருப்பங்களைத் திருத்தவும்", 60 | "manage_shortcuts": "குறுக்குவழிகளை நிர்வகிக்கவும்", 61 | "remove": "அகற்று", 62 | "shortcuts_warning": "உங்களிடம் குறுக்குவழி இல்லை…", 63 | "existing_shortcut": " ஏற்கனவே உள்ள குறுக்குவழியைத் தேர்ந்தெடுக்கவும் ", 64 | "new_shortcut": "புதிய குறுக்குவழியைச் சேர்க்கவும்", 65 | "shortcut_name": "குறுக்குவழி பெயர்", 66 | "shortcut_removed": "குறுக்குவழி '{}' அகற்றப்பட்டது", 67 | "add": "கூட்டு", 68 | "new_window": "புதிய சாளரம்", 69 | "select_sound": "தனிப்பயன் ஒலியைத் தேர்ந்தெடுக்கவும்", 70 | "sound_files": "ஒலி கோப்புகள்", 71 | "selected_sound_file": "தேர்ந்தெடுக்கப்பட்ட ஒலி கோப்பு: {}", 72 | "translator_credits": "WeekDewellop hattap: //gitahb.com/vicdewellop" 73 | } 74 | -------------------------------------------------------------------------------- /translations/json/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "timer_title": "Temporizador", 3 | "timer_running": "El temporizador está corriendo…", 4 | "run_timer": "Iniciar temporizador", 5 | "stop_timer": "Detener temporizador", 6 | "timing_finished": "¡Se acabó el tiempo!", 7 | "timing_ended": "El cronometraje se ha detenido", 8 | "timer_quit": "El temporizador ha finalizado", 9 | "about_app": "Sobre la aplicación", 10 | "simple_timer": "Temporizador simple", 11 | "preferences": "Preferencias", 12 | "resizable_of_window": "Cambio de tamaño de la ventana", 13 | "default": "por defecto", 14 | "hours": "hr", 15 | "mins": "min", 16 | "secs": "seg", 17 | "shut_down": "Apagar", 18 | "reboot": "Reiniciar", 19 | "action_after_timing": "Acción tras finalizar el temporizador", 20 | "custom_notification": "Texto de notificación personalizado", 21 | "play_beep": "Reproducir pitido", 22 | "suspend": "Suspender", 23 | "notification_desc": "Recibirá una notificación y un pitido en", 24 | "reboot_desc": "Su sistema se reiniciará en", 25 | "shut_down_desc": "Su sistema se apagará en", 26 | "suspend_desc": "Su sistema se suspenderá en", 27 | "preferences_desc": "Configurar las propiedades del temporizador", 28 | "keyboard_shortcuts": "Atajos de teclado", 29 | "start": "Iniciar", 30 | "stop": "Detener", 31 | "quit": "Salir", 32 | "show": "Mostrar atajos de teclado", 33 | "reset": "Reiniciar", 34 | "translator_credits": "vikdevelop https://github.com/vikdevelop", 35 | "delete_timer_settings": "Restablecer todos los ajustes por defecto", 36 | "play_alarm_clock": "Reproducir el despertador", 37 | "cancel": "Cancelar", 38 | "start_again": "Empezar de nuevo", 39 | "reset_counter": "Restablecer los valores del contador del temporizador", 40 | "play_alarm_clock_desc": "La alarma sonará en", 41 | "dialog_remove_warning": "¿Restablecer todos los ajustes del temporizador?", 42 | "show_about_dialog": "Mostrar la ventana \"Acerca de\" la aplicación", 43 | "paused": "En pausa.", 44 | "pause_timer": "Pausar el Temporizador", 45 | "continue_timer": "Reanudar el temporizador", 46 | "use_in_alarm_clock": "Usar en el cuadro de diálogo del reloj de alarma", 47 | "show_appname": "Mostrar el nombre de la aplicación en las notificaciones", 48 | "notification_text": "Notificaciones", 49 | "alarm_clock_dialog_text": "Diálogo de la alarma", 50 | "advanced": "Más ajustes", 51 | "go_to_more_settings": "Vaya a más ajustes", 52 | "go_to_notification_settings": "Ir a los ajustes de las notificaciones", 53 | "alternative_key": "El método abreviado del teclado alternativo es: {}", 54 | "vertical_text": "Texto en vertical en la página de la cuenta atrás", 55 | "vertical_text_desc": "Muestra el texto en vertical de la cuenta atrás en la página de la cuenta atrás", 56 | "save_expander_row_state": "Expandir la fila del desplegable de las Preferencias", 57 | "save_expander_row_state_desc": "Expande automáticamente la fila desplegable Preferencias al iniciar la aplicación Temporizador.", 58 | "show_appicon": "Mostrar el icono de la aplicación en las notificaciones", 59 | "apply": "Aplicar", 60 | "edit_options": "Editar las opciones", 61 | "remove": "Quitar", 62 | "existing_shortcut": "Seleccionar un acceso directo existente", 63 | "shortcut_name": "Nombre del acceso directo", 64 | "shortcuts_warning": "No tienes ningún atajo …", 65 | "shortcut_removed": "Acceso directo '{}' eliminado", 66 | "manage_shortcuts": "Gestionar los accesos directos", 67 | "new_shortcut": "Añadir un nuevo acceso directo", 68 | "add": "Añadir", 69 | "new_window": "Nueva ventana", 70 | "selected_sound_file": "Archivo de sonido seleccionado: {}", 71 | "select_sound": "Seleccionar sonido personalizado", 72 | "sound_files": "Archivos de sonido" 73 | } 74 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/#use-with-ide 110 | .pdm.toml 111 | 112 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 113 | __pypackages__/ 114 | 115 | # Celery stuff 116 | celerybeat-schedule 117 | celerybeat.pid 118 | 119 | # SageMath parsed files 120 | *.sage.py 121 | 122 | # Environments 123 | .env 124 | .venv 125 | env/ 126 | venv/ 127 | ENV/ 128 | env.bak/ 129 | venv.bak/ 130 | 131 | # Spyder project settings 132 | .spyderproject 133 | .spyproject 134 | 135 | # Rope project settings 136 | .ropeproject 137 | 138 | # mkdocs documentation 139 | /site 140 | 141 | # mypy 142 | .mypy_cache/ 143 | .dmypy.json 144 | dmypy.json 145 | 146 | # Pyre type checker 147 | .pyre/ 148 | 149 | # pytype static type analyzer 150 | .pytype/ 151 | 152 | # Cython debug symbols 153 | cython_debug/ 154 | 155 | # PyCharm 156 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 157 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 158 | # and can be added to the global gitignore or merged into this file. For a more nuclear 159 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 160 | #.idea/ 161 | -------------------------------------------------------------------------------- /flatpak/com.github.vikdevelop.timer.metainfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.github.vikdevelop.timer 5 | com.github.vikdevelop.timer.desktop 6 | Timer 7 | Simple countdown timer 8 | CC0-1.0 9 | GPL-3.0-or-later 10 | vikdevelop 11 | 12 | 13 |

Timer is an open-source and simple application. It enables countdown timing in hours/minutes/seconds and:

14 |
    15 |
  • After finished timing possible shut down/reboot/suspend system, play beep and send notification
  • 16 |
  • It is possible allow/disable playing beep
  • 17 |
  • Set custom text for notification and alarm clock dialog
  • 18 |
  • Use keyboard shortcuts for start, pause or stop timer and reset timer values
  • 19 |
20 |
21 | 22 | https://github.com/vikdevelop/timer 23 | https://github.com/vikdevelop/timer/issues 24 | https://hosted.weblate.org/engage/vikdevelop/ 25 | 26 | 27 | 28 | https://raw.githubusercontent.com/vikdevelop/timer/main/img/timer_main-window.png 29 | 30 | 31 | https://raw.githubusercontent.com/vikdevelop/timer/main/img/timer_timing-page.png 32 | 33 | 34 | https://raw.githubusercontent.com/vikdevelop/timer/main/img/timer_notification-settings.png 35 | 36 | 37 | https://raw.githubusercontent.com/vikdevelop/timer/main/img/timer_more-settings.png 38 | 39 | 40 | https://raw.githubusercontent.com/vikdevelop/timer/main/img/timer_keyboard-shortcuts.png 41 | 42 | 43 | 44 | 45 | 46 | 47 | Utility 48 | 49 | 50 | 51 | #BBDBFF 52 | #3E6B8B 53 | 54 | 55 | 56 | 57 | 58 |
    59 |
  • Added option to select custom sound for the alarm clock
  • 60 |
61 |
62 |
63 | 64 | 65 |
    66 |
  • Setted up shortcut for opening new app windows (Ctrl+N)
  • 67 |
  • Added Hindi translations, thanks to @Scrambled777
  • 68 |
  • Updated translations
  • 69 |
70 |
71 |
72 | 73 | 74 |
    75 |
  • Added shortcuts
  • 76 |
  • Added Catalan translations, thanks to @BennyBeat
  • 77 |
  • Added Chinese translations, thanks to @carrothu-cn
  • 78 |
  • Added Japanese translations, thanks to @inkch
  • 79 |
  • Added Polish translations, thanks to Antoni Błoński (Weblate)
  • 80 |
  • Updated translations
  • 81 |
82 |
83 |
84 | 85 | 86 |
    87 |
  • Added support for timing on the background
  • 88 |
  • Fixed minor bugs
  • 89 |
90 |
91 |
92 | 93 | 94 |
    95 |
  • Added Persian translations, thanks to @Master811129
  • 96 |
  • Updated translations
  • 97 |
  • Added GSettings for better storing the Timer configuration
  • 98 |
99 |
100 |
101 | 102 | 103 |
    104 |
  • Added Hungarian translations, thanks to @danieluhrinyi
  • 105 |
  • Added Portugalese (Brasil) translations, thanks to @fnogcps
  • 106 |
  • Added Arabic translations, thanks to @fawaz006
  • 107 |
  • added option to change action after timer finishes, play sound, custom notification text during timer (#73)
  • 108 |
109 |
110 |
111 | 112 | 113 |
    114 |
  • Option of set dark theme, resizable of Window and now also option of set vertical text in countdown page and option of expand the Preferences drop-down row after launching the Timer app has been moved to the tab "More settings" in the Preferences drop-down row
  • 115 |
  • Removed spinner animation and option of set spinner size
  • 116 |
  • If the "Resizable of Window" option is enabled, the Timer will save the current window size set by the user
  • 117 |
  • added alternative keys for stop timer (EsC) and new keyboard shortcuts: Ctrl+M for show more settings and Ctrl+N for show notification settings
  • 118 |
  • minor UI changes
  • 119 |
120 |
121 |
122 | 123 | 124 |
    125 |
  • The keyboard shortcuts Ctrl+P to pause the timer and Ctrl+T to continue in timing are now used instead of the original F6 and F7
  • 126 |
  • Custom text for notification is now possible also use for alarm clock dialog
  • 127 |
  • Minor UI changes
  • 128 |
129 |
130 |
131 | 132 | 133 |
    134 |
  • added option to action after finished timer "Play alarm clock". On timeout will be played sound until stopped and show message dialog
  • 135 |
  • added Spanish translations, thanks to @haggen88
  • 136 |
  • added option for remove all settings of Timer to headerbar next to Reset button
  • 137 |
  • aded new keyboard shortcuts: F1 for show about dialog, F2 for switch to dark theme, F3 for switch to system theme and F5 for remove all Timer settings
  • 138 |
139 |
140 |
141 | 142 | 143 |
    144 |
  • New application design
  • 145 |
  • if selected action after finished timer is reboot, suspend or shut down, is delay between beep and action 2 seconds
  • 146 |
  • added keyboard shortcuts: Ctrl+S for start timer, Ctrl+C for stop timer, Ctrl+Q for quit Timer application, Ctrl+R for reset timer values and Ctrl+? for display Keyboard shortcuts window
  • 147 |
148 |
149 |
150 | 151 | 152 |

Changes:

153 |
    154 |
  • Added summary section to main window. This section is an overview of Timer Set Values
  • 155 |
  • Minor UI changes
  • 156 |
157 |
158 |
159 | 160 | 161 |

Changes:

162 |
    163 |
  • it is now possible set custom notification text
  • 164 |
  • added option of disable beep to preferences
  • 165 |
  • added new action after finished timing: suspend
  • 166 |
  • minor UI changes
  • 167 |
168 |
169 |
170 | 171 | 172 |

Changes:

173 |
    174 |
  • There is no longer a need to restart the Timer after making changes to the preferences
  • 175 |
  • Added option of action after finished timing to preferences (e.g. reboot system after finished timing)
  • 176 |
  • Other minor UI changes
  • 177 |
178 |
179 |
180 | 181 | 182 |

Changes:

183 |
    184 |
  • Added dark theme option for desktop environments that Timer doesn't follow the system theme (e.g. Cinnamon and Xfce)
  • 185 |
  • It is now possible to type time input in hours, minutes and seconds, thanks @KenyC
  • 186 |
  • Enhanced Preferences dialog
  • 187 |
  • Added better beep
  • 188 |
  • Added Russian translations, thanks @ViktorOn
  • 189 |
  • Other minor UI changes
  • 190 |
191 |
192 |
193 | 194 | 195 |

Minor UI changes such as adjust window size based on spinner size, new sizes of spinner and more.

196 |
197 |
198 | 199 | 200 |
    201 |
  • Added Preferences dialog
  • 202 |
  • Added icon to notification about finished timing
  • 203 |
  • Minor UI changes such as set up default size and style of fonts and more
  • 204 |
  • Added beep that timing started, stopped, and finished
  • 205 |
  • Added About Dialog
  • 206 |
207 |
208 |
209 | 210 | 211 |

This release brings this following changes:

212 |
    213 |
  • Switched from GTK3 to GTK4 + Libadwaita
  • 214 |
  • Added notifications that timing is finished
  • 215 |
  • Added/Updated Czech, Deutsch and Italian translations
  • 216 |
  • Added better app icon
  • 217 |
  • Other small edits of source code such as editation of metainfo file, edittion README.md and so on.
  • 218 |
219 |
220 |
221 | 222 | 223 |

Small edits of source code: Added output for Timer events.

224 |
225 |
226 | 227 | 228 |
229 | 230 | 231 | 232 | timer 233 | 234 | countdown 235 | 236 | stopwatch 237 | 238 | 239 | 240 |
241 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------