diff options
106 files changed, 24349 insertions, 16119 deletions
@@ -1,56 +1,26 @@ -# Backup files +*\#* *~ -\#*\# - -# Object files *.o -*.ko - -# Libraries -*.lib *.a - -# Shared objects (inc. Windows DLLs) -*.dll +*.lo +*.su *.so *.so.* +*.dll *.dylib +*.gch +*.gcov +*.gcno +*.gcda +*.pyo* +*.pyc* +__pycache__/ +redshift-gtk +redshift -# Executables -*.exe -*.out -*.app -#src/redshift* - -# autotools -/autom4te.cache -Makefile.in -Makefile -stamp-h1 -/config.* -/ABOUT-NLS -/aclocal.m4 -/configure -/depcomp -/install-sh -/missing -/py-compile -/compile -*.deps/ -/m4/ - -# generated files -src/redshift-gtk/defs.py -src/redshift-gtk/redshift-gtk -contrib/redshift.spec -src/redshift -src/redshift-gtk/__pycache__/ -/data/systemd/redshift.service -/data/systemd/redshift-gtk.service - -# gettext /po/POTFILES /po/stamp-po +/po/stamp-it /po/*.gmo /po/Makefile.in.in /po/Rules-quot diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index eef7b6c..0000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: c -before_install: - - sed -i -e 's|AC_PREREQ(\[2.69\])|AC_PREREQ([2.68])|' configure.ac - - sudo apt-get update -qq -install: - - sudo apt-get install -qq autopoint intltool - - sudo apt-get install -qq libdrm-dev - - sudo apt-get install -qq libxcb1-dev libxcb-randr0-dev - - sudo apt-get install -qq libx11-dev libxxf86vm-dev - - sudo apt-get install -qq libgeoclue-dev - - sudo apt-get install -qq libglib2.0-dev - - sudo apt-get install -qq python3 -script: ./bootstrap && ./configure --enable-drm --enable-vidmode --enable-randr --enable-geoclue --enable-geoclue2 --enable-gui && make -j2 distcheck @@ -1,95 +0,0 @@ -This is a document describing how redshift works. It might be useful -if the normal docs don't answer a question, or when you want to hack -on the code. - - -Programs -======== - -redshift --------- - -redshift is a program written in C that tries to figure out the user's -location during startup, and then goes into a loop setting the display -gamma according to the time of day every couple seconds or minutes -(details?). - -On systems that support signals, it reacts to the SIGUSR1 signal by -switching to day/night immediately, and when receiving SIGINT or -SIGTERM, it restores the screen gamma (to 6500K). - -Redshift knows short and long transitions, short transitions being -used at start and when reacting to signals. Short transitions take -about 10 seconds; long transitions about 50 minutes. - -Once running, redshift currently doesn't check location providers -again. - - -redshift-gtk ------------- - -redshift-gtk is a small program written in Python that shows a status -icon (what is an appindicator versus a GTK status icon?) (does it -change the icon according to internal program state of redshift? -doesn't seem so) and run an instance of the "redshift" program, and -will send it SIGUSR1 each time the user clicks the icon. - - -Alternative Features -==================== - -Redshift interacts with the rest of the system in two ways: reading -the location, and setting the gamma. Both can be done in different -ways, and so for both areas there are configure options to -enable/disable compilation of the various methods. ./configure --help -shows more about what parts of the program that can be conditionally -compiled. - -NOTE: some features have to be disabled explicitely, like ---disable-gnome-clock to prevent the gnome-clock code from being built -in. - -The two groups of features shall be called: "location providers" and -"adjustment methods". - -These are probably not the best names for these things but at least -I've been mostly consistent with the naming throughout the source code -(I hope). - -First adjustment methods: There is "randr" which is the preferred -because it has support for multiple outputs per X screen which is lacking -in "vidmode". Both are APIs in the X server that allow for manipulation -of gamma ramps, which is what Redshift uses to change the screen color -temperature. There's also "wingdi" which is for the Windows version, -and "drm" which allows manipulation of gamma ramps in a TTY in Linux. - -Then there are location providers: "manual", "gnome-clock" and -"geoclue". Some time ago there was only one way to specify the -location which had to be done manually with the argument "-l LAT:LON". -Then later, automatic "location providers" were added and the syntax -had to be changed to "-l PROVIDER:OPTIONS" where OPTIONS are arguments -specific to the provider. But to make people less confused about the -change I decided to still support the "-l LAT:LON" syntax, so if the -PROVIDER is a number, the whole thing is parsed as LAT:LON. You could -run redshift with "-l manual:lat=55:lon=12" and get the same effect as -"-l 55:12". - -So there are currently two automatic location providers "gnome-clock" -and "geoclue". From the beginning I was looking for a way to get the -location automatically (from e.g. GPS) and Geoclue seemed like a good -idea, but upon closer investigation it turned out to be horribly -unstable. At this time GNOME had a clock applet which was present by -default (at least in Ubuntu) that allowed the user to set a home town. -This setting was registered in the gconf key -/apps/panel/applets/clock_screen*/prefs/cities. -The idea was to use this information until Geoclue had become more -stable. To me, it always was a hack. Now that the Clock applet has -gone (at least in Ubuntu) the "gnome-clock" makes little sense and -causes a lot of trouble, so I really want to get rid of it as soon as -possible. The problem is that Geoclue is still problematic for some -people. - -Lastly, there's the support for configuration files for which there's -no real documentation, but all the options that can be set on the -command line can also be set in the config file. diff --git a/HACKING b/HACKING deleted file mode 120000 index 36b0b3a..0000000 --- a/HACKING +++ /dev/null @@ -1 +0,0 @@ -HACKING.md
\ No newline at end of file diff --git a/HACKING.md b/HACKING.md deleted file mode 100644 index 34c0909..0000000 --- a/HACKING.md +++ /dev/null @@ -1,169 +0,0 @@ - -Build from repository ---------------------- - -``` shell -$ ./bootstrap -$ ./configure -``` - -The bootstrap script will use autotools to set up the build environment -and create the `configure` script. - -Use `./configure --help` for options. Use `--prefix` to make an install in -your home directory. This is necessary to test python scripts. The systemd -user unit directory should be set to avoid writing to the system location. - -Systemd will look for the unit files in `~/.config/systemd/user` so this -directory can be used as a target if the unit files will be used. Otherwise -the location can be set to `no` to disable the systemd files. - -Example: - -``` shell -$ ./configure --prefix=$HOME/redshift/root \ - --with-systemduserunitdir=$HOME/.config/systemd/user -``` - -Now, build the files: - -``` shell -$ make -``` - -The main redshift program can be run at this point. To install to the -prefix directory run: - -``` shell -$ make install -``` - -You can now run the python script. Example: - -``` shell -$ $HOME/redshift/root/bin/redshift-gtk -``` - -Dependencies ------------- - -* autotools, gettext -* intltool, libtool -* libdrm (Optional, for DRM support) -* libxcb, libxcb-randr (Optional, for RandR support) -* libX11, libXxf86vm (Optional, for VidMode support) -* geoclue (Optional, for geoclue support) - -* python3, pygobject, pyxdg (Optional, for GUI support) -* appindicator (Optional, for Ubuntu-style GUI status icon) - -Ubuntu users will find all these dependencies in the packages listed in ``.travis.yml``. - -Coding style ------------- - -Redshift follows roughly the Linux coding style -<http://www.kernel.org/doc/Documentation/CodingStyle>. Some specific rules to -note are: - -* Lines should not be much longer than 80 chars but this is not strictly - enforced. If lines are much longer than this the code could likely be improved - by moving some parts to a smaller function. -* All structures are typedef'ed. -* Avoid Yoda conditions; they make the logic unnecessarily hard to comprehend. -* Avoid multiline if-statements without braces; either use a single line or add - the braces. -* Use only C-style comments (`/* */`). - - -Creating a pull request ------------------------ - -1. Create a topic branch for your specific changes. You can base this off the - master branch or a specific version tag if you prefer (`git co -b topic master`). -2. Create a commit for each logical change on the topic branch. The commit log - must contain a one line description (max 80 chars). If you cannot describe - the commit in 80 characters you should probably split it up into multiple - commits. The first line can be followed by a blank line and a longer - description (split lines at 80 chars) for more complex commits. If the commit - fixes a known issue, mention the issue number in the first line (`Fix #11: - ...`). -3. The topic branch itself should tackle one problem. Feel free to create many - topic branches and pull requests if you have many different patches. Putting - them into one branch makes it harder to review the code. -4. Push the topic branch to Github, find it on github.com and create a pull - request to the master branch. If you are making a bug fix for a specific - release you can create a pull request to the release branch instead - (e.g. `release-1.9`). -5. Discussion will ensue. If you are not prepared to partake in the discussion - or further improve your patch for inclusion, please say so and someone else - may be able to take on responsibility for your patch. Otherwise we will - assume that you will be open to critisism and suggestions for improvements - and that you will take responsibility for further improving the patch. You - can add further commits to your topic branch and they will automatically be - added to the pull request when you push them to Github. -6. You may be asked to rebase the patch on the master branch if your patch - conflicts with recent changes to the master branch. However, if there is no - conflict, there is no reason to rebase. Please do not merge the master back - into your topic branch as that will convolute the history unnecessarily. -7. Finally, when your patch has been refined, you may be asked to squash small - commits into larger commits. This is simply so that the project history is - clean and easy to follow. Remember that each commit should be able to stand - on its own, be able to compile and function normally. Commits that fix a - small error or adds a few comments to a previous commit should normally just - be squashed into that larger commit. - -If you want to learn more about the Git branching model that we use please see -<http://nvie.com/posts/a-successful-git-branching-model/> but note that we use -the `master` branch as `develop`. - - -Creating a new release ----------------------- - -1. Select a commit in master to branch from, or if making a bugfix release - use previous release tag as base (e.g. for 1.9.1 use 1.9 as base) -2. Create release branch `release-X.Y` -3. Apply any bugfixes for release -4. Import updated translations from launchpad and commit. Remember to update - `po/LINGUAS` if new languages were added -5. Update version in `configure.ac` and create entry in NEWS -6. Run `make distcheck` -7. Commit and tag release (`vX.Y` or `vX.Y.Z`) -8. Push tag to Github and also upload source dist file to Github - -Also remember to check before release that - -* Windows build is ok -* Build files for distributions are updated - - -Build Fedora RPMs ------------------ - -Run `make dist-xz` and copy the `.tar.xz` file to `~/rpmbuild/SOURCES`. Then run - -``` shell -$ rpmbuild -ba contrib/redshift.spec -``` - -If successful this will place RPMs in `~/rpmbuild/RPMS`. - - -Cross-compile for Windows -------------------------- - -Install MinGW and run `configure` using the following command line. Use -`i686-w64-migw32` as host for 32-bit builds. - -``` shell -$ ./configure --disable-drm --disable-randr --disable-vidmode --enable-wingdi \ - --disable-geoclue --disable-gui --disable-ubuntu \ - --host=x86_64-w64-mingw32 -``` - - -Notes ------ -* verbose flag is (currently) only held in redshift.c; thus, write all - verbose messages there. diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 0137635..0000000 --- a/Makefile.am +++ /dev/null @@ -1,123 +0,0 @@ - -SUBDIRS = src po -ACLOCAL_AMFLAGS = -I m4 - -# Install systemd user unit files locally for distcheck -DISTCHECK_CONFIGURE_FLAGS = \ - --with-systemduserunitdir=$$dc_install_base/$(systemduserunitdir) - -UPDATE_ICON_CACHE = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor || : - -EXTRA_ROOTDOC_FILES = \ - HACKING \ - DESIGN \ - README \ - README-colorramp - -_HICOLOR_FILES = \ - data/icons/hicolor/scalable/apps/redshift.svg \ - data/icons/hicolor/scalable/apps/redshift-status-on.svg \ - data/icons/hicolor/scalable/apps/redshift-status-off.svg - -_UBUNTU_MONO_DARK_FILES = \ - data/icons/ubuntu-mono-dark/scalable/apps/redshift-status-on.svg \ - data/icons/ubuntu-mono-dark/scalable/apps/redshift-status-off.svg - -_UBUNTU_MONO_LIGHT_FILES = \ - data/icons/ubuntu-mono-light/scalable/apps/redshift-status-on.svg \ - data/icons/ubuntu-mono-light/scalable/apps/redshift-status-off.svg - -DESKTOP_IN_FILES = \ - data/applications/redshift-gtk.desktop.in - -SYSTEMD_USER_UNIT_IN_FILES = \ - data/systemd/redshift.service.in \ - data/systemd/redshift-gtk.service.in - -APPDATA_IN_FILES = \ - data/appdata/redshift-gtk.appdata.xml.in - - -# Icons -if ENABLE_GUI -hicolor_icondir = @datadir@/icons/hicolor/scalable/apps -hicolor_icon_DATA = $(_HICOLOR_FILES) - -if ENABLE_UBUNTU -ubuntu_mono_dark_icondir = @datadir@/icons/ubuntu-mono-dark/scalable/apps -ubuntu_mono_dark_icon_DATA = $(_UBUNTU_MONO_DARK_FILES) - -ubuntu_mono_light_icondir = @datadir@/icons/ubuntu-mono-light/scalable/apps -ubuntu_mono_light_icon_DATA = $(_UBUNTU_MONO_LIGHT_FILES) -endif -endif - - -# Desktop file -if ENABLE_GUI -desktopdir = @datadir@/applications -desktop_DATA = $(DESKTOP_IN_FILES:.desktop.in=.desktop) -endif - -if ENABLE_GUI -install-data-hook: - $(UPDATE_ICON_CACHE); - -uninstall-hook: - $(UPDATE_ICON_CACHE); - -# We would preferable use @INTLTOOL_DESKTOP_RULE@ here but -# sadly it is broken for out-of-tree builds. -%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) - $(AM_V_GEN)$(MKDIR_P) $(@D); - $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@ -endif - - -# man page -dist_man1_MANS = redshift.1 - - -# Systemd service files -if ENABLE_SYSTEMD -systemduserunit_DATA = $(SYSTEMD_USER_UNIT_IN_FILES:.service.in=.service) -endif - -$(systemduserunit_DATA): $(SYSTEMD_USER_UNIT_IN_FILES) Makefile - $(AM_V_GEN)$(MKDIR_P) $(@D) && \ - sed -e "s|\@bindir\@|$(bindir)|g" "$(srcdir)/$(@:.service=.service.in)" > $@ - - -# Appdata file -if ENABLE_GUI -appdatadir = @datadir@/appdata -appdata_DATA = $(APPDATA_IN_FILES:.xml.in=.xml) - -# We would preferable use @INTLTOOL_XML_RULE@ here but -# sadly it is broken for out-of-tree builds. -%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) - $(AM_V_GEN)$(MKDIR_P) $(@D); - $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@ -endif - - - -EXTRA_DIST = \ - $(EXTRA_ROOTDOC_FILES) \ - $(_HICOLOR_FILES) \ - $(_UBUNTU_MONO_DARK_FILES) \ - $(_UBUNTU_MONO_LIGHT_FILES) \ - $(DESKTOP_IN_FILES) \ - $(SYSTEMD_USER_UNIT_IN_FILES) \ - $(APPDATA_IN_FILES) - -CLEANFILES = \ - $(desktop_DATA) \ - $(systemduserunit_DATA) \ - $(appdata_DATA) - - -# Update PO translations -.PHONY: update-po -update-po: - cd po && $(MAKE) POTFILES redshift.pot update-po @@ -1 +0,0 @@ -NEWS.md
\ No newline at end of file diff --git a/NEWS.md b/NEWS.md deleted file mode 100644 index 6908e95..0000000 --- a/NEWS.md +++ /dev/null @@ -1,172 +0,0 @@ -News -==== - -v1.10 (2015-01-04) ------------------- -* Fix #80: Add Geoclue2 location provider. -* Add CoreLocation (OSX) location provider and Quartz (OSX) gamma - adjustment method. -* Add hooks for user actions on period switch. -* Be less verbose when color values/period did not change. -* Add config setting to set gamma separately for day/night. -* Add support for custom transition start and end elevation (Mattias - Andrée). -* redshift-gtk: Show errors from child process in a dialog. -* Fix #95: Add AppData file for package managers. -* Use gettimeofday if POSIX timers not available (add support for - OSX). -* Fix #41: Do not jump to 0 % or 100 % when changing direction of - transition (Mattias Andrée). -* redshift-gtk: Relay USR1 signal to redshift process. -* redshift-gtk: Notify desktop about startup completion. -* Fix: systemd unit files were built from the wrong source. -* Fix #90: Print N/S and E/W in the location (Mattias Andrée). -* Fix #112: redshift-gtk: Do not buffer lines from child indefinitely. -* Fix #105: Limit decimals in displayed location to two. -* Update dependencies listed in HACKING.md (emilf, Kees Hink). -* Fix: Make desktop file translatable. -* Add Travis CI build script. - -v1.9.1 (2014-04-20) -------------------- -* Fix: Do not distribute redshift-gtk, only redshift-gtk.in. -* Fix: Geoclue support should pull in Glib as dependency. -* geoclue: Fix segfault when error is NULL (Mattias Andrée). -* geoclue: Set DISPLAY=:0 to work around issue when outside X - (Mattias Andrée). -* redshift-gtk: Fix crash when toggling state using the status icon. -* redshift-gtk: Fix line splitting logic (Maks Verver). - -v1.9 (2014-04-06) ------------------ -* Use improved color scheme provided by Ingo Thies. -* Add drm driver which will apply adjustments on linux consoles - (Mattias Andrée). -* Remove deprecated GNOME clock location provider. -* Set proc title for redshift-gtk (Linux/BSD) (Philipp Hagemeister). -* Show current temperature, location and status in GUI. -* Add systemd user unit files so that redshift can be used with - systemd as a session manager (Henry de Valence). -* Use checkbox to toggle Redshift in GUI (Mattias Andrée). -* Gamma correction is applied after brightness and temperature - (Mattias Andrée). -* Use XDG Base Directory Specification when looking for configuration - file (Mattias Andrée). -* Load config from %LOCALAPPDATA%\redshift.conf on Windows (TingPing). -* Add RPM spec for Fedora in contrib. -* redshift-gtk has been ported to Python3 and new PyGObject bindings - for Python. - -v1.8 (2013-10-21) ------------------ -* IMPORTANT: gtk-redshift has changed name to redshift-gtk. -* Fix crash when starting geoclue provider. (Thanks to Maks Verver) -* Fix slight flicker int gamme ramp values (Sean Hildebrand) -* Add redshift-gtk option to suspend for a short time period (Jendrik Seipp). -* Add print mode (prints parameters and exits) by Vincent Breitmoser. -* Set buffering on stdout and stderr to line-buffered. -* Allow separate brightness for day and night (Olivier Fabre and Jeremy Erickson). -* Fix various crashes/bugs/typos (Benjamin Kerensa and others) - -v1.7 (2011-07-04) ------------------ -* Add Geoclue location provider by Mathieu Trudel-Lapierre. -* Allow brightness to be adjusted (-b). -* Provide option to set color temperature directly (Joe Hillenbrand). -* Add option to show program version (-V). -* Add configure.ac option to install ubuntu icons. They will no longer be - installed by default (Francesco Marella). -* config: Look in %userprofile%/.config/redshift.conf on windows platform. -* Fix: w32gdi: Obtain a new DC handle on every adjustment. This fixes a bug - where redshift stops updating the screen. - -v1.6 (2010-10-18) ------------------ -* Support for optional configuration file (fixes #590722). -* Add man page for redshift written by Andrew Starr-Bochicchio (fixes #582196). -* Explain in help output that 6500K is the neutral color temperature - (fixes #627113). -* Fix: Handle multiple instances of the GNOME clock applet; contributed by - Francesco Marella (fixes #610860). -* Fix: Redshift crashes when VidMode fails (fixes #657451). -* Fix: Toggle menu item should not be of class gtk.ImageMenuItem - (fixes #620355). -* New translations and translation updates: Lithuanian (Aurimas Fišeras); - Brazilian Portuguese (Matteus Sthefano Leite da Silva); - Finnish (Jani Välimaa); Italian (Simone Sandri); French (Emilien Klein); - Russian (Anton Chernyshov). - -v1.5 (2010-08-18) ------------------ -* New ubuntu-mono-dark icons that fit better with the color guidelines. - Contributed by aleth. -* Improve GNOME location provider (patch by Gabriel de Perthuis). -* Application launcher and autostart feature contributed by Francesco Marella. -* Translation updates: Basque (Ibai Oihanguren); Chinese (Jonathan Lumb); - French (Hangman, XioNoX); German (Jan-Christoph Borchardt); Hebrew - (dotancohen); Spanish (Fernando Ossandon). - -v1.4.1 (2010-06-15) -------------------- -* Include Ubuntu Mono icons by Joern Konopka. -* Fix: Toggle icon in statusicon.py like appindicator already does. -* Tranlation updates: Spanish (Fernando Ossandon), Russian (Чистый) - -v1.4 (2010-06-13) ------------------ -* Command line options for color adjustment methods changed. Procedure for - setting specific screen (-s) or CRTC (-c) changed. See `redshift -h` for - more information. -* Automatically obtain the location from the GNOME Clock applet if possible. -* Add application indicator GUI (by Francesco Marella) (fixes #588086). -* Add reset option (-x) that removes any color adjustment applied. Based on - patch by Dan Helfman (fixes #590777). -* `configure` options for GUI changed; see `configure --help` for more - information. -* New translations: - - German (Jan-Christoph Borchardt) - - Italian (Andrea Amoroso) - - Czech (clever_fox) - - Spanish (Fernando Ossandon) - - Finnish (Ilari Oras) - -v1.3 (2010-05-12) ------------------ -* Allow adjusting individual CRTCs when using RANDR. Contributed by - Alexandros Frantzis. -* Add WinGDI method for gamma adjustments on Windows platform. -* Compile with mingw (tested with cross compiler on ubuntu build system). - -v1.2 (2010-02-12) ------------------ -* Native language support: Danish and russian translations included in - this release. Thanks goes to Gregory Petrosyan for the russian - translation. - -v1.1 (2010-01-14) ------------------ -* Provide a GTK status icon (tray icon) for redshift with the - gtk-redshift program. - -v1.0 (2010-01-09) ------------------ -* Temporarily disable/enable when USR1 signal is received. - -v0.4 (2010-01-07) ------------------ -* Restore gamma ramps on program exit. - -v0.3 (2009-12-28) ------------------ -* Continuously adjust color temperature. One shot mode can be selected - with a command line switch. -* Allow selection of X screen to apply adjustments to. - -v0.2 (2009-12-23) ------------------ -* Add a different method for setting the gamma ramps. It uses the - VidMode extension. - -v0.1 (2009-11-04) ------------------ -* Initial release. diff --git a/README-colorramp b/README-colorramp deleted file mode 100644 index 9743c35..0000000 --- a/README-colorramp +++ /dev/null @@ -1,296 +0,0 @@ -Updated color ramp calculation in Redshift 1.9 -============================================== - -Ingo Thies, 2013 - - -The original version of Redshift uses an RGB table from - -http://www.vendian.org/mncharity/dir3/blackbody/UnstableURLs/bbr_color.html - -which contains x,y chromaticities as well as decimal and integer/hex RGB data. -Unfortunately, the decimal values used for Redshift are not gamma-corrected -while the others are. The gamma correction is part of the sRGB specifications -and is described in detail at http://en.wikipedia.org/wiki/SRGB. It can roughly -be approximated by a power law with an exponent gamma about 2.2. Omitting this -correction results in exaggerated color values. A minor issue concerns the -standard whitepoints which are slightly off the Planckian locus. In particular, -D65 (which corresponds to maximized RGB=1,1,1 in sRGB) contains slightly more -green than 6500 K blackbody color. The developers of Redshift solved this by -rescaling the RGB values to match 1,1,1 at 6500 K. This, however, leads to -slightly incorrect colors. - -The corrected color ramp is calculated by the actual Planckian locus below 5000 -kelvins and CIE daylight standard above with an interpolation between these -limits. The x,y chromaticities are calculated by using the method described -in - -http://en.wikipedia.org/wiki/Standard_illuminant#Illuminant_series_D - -for daylight and by integrating the CIE 1931 color-matching functions for the -blackbody spectrum to obtain the Planckian locus. The advantage of using the -D-type whitepoint is that D65 is already at RGB=1,1,1, so in principle no -adjustment is required. In practice, minor deviations remain, mainly due to the -fact that D65 is actually at 6504 K (a consequence of different values for the -physical constants being used in the 1960's when D65 was defined) and also due -to rounding issues. This is fixed by a slight adjustment of RGB which is -negligible in practice. - -Below are the RGB, x,y and u,v values of the hybrid color ramp used here. -Plots of x,y and u,v can be found in xy1931chart.png and uv1960chart.png. The -Planckian locus is the smooth curve in the middle of the kelvin tics. The -colorramp used in modified Redshift is the one shifting upwards above 5000 K. -The official definition of the daylight locus extends down to 4000 K, including -D55 and D50 standard illuminants. However, to my eyes the color tone looks more -natural for color temperatures below 6500 K if switched back to Planckian. For -this mere reason the curve shifts to Planckian already between 6500 and and -5000 K rather than below 5000 K. - -Note that the color ramp ends at 25100 K instead of the intended maximum of -25000 K. This is to avoid an array overflow in the interpolation procedure. In -the original Redshift the max. value of 10000 K could never be used for this -reason. - - kelvins mireds RGB x,y u,v - 1000.00 1000.000 1.00000000 0.18172716 0.00000000 0.65273323 0.34447987 0.44797565 0.35462863 - 1100.00 909.091 1.00000000 0.25503671 0.00000000 0.63873894 0.35651626 0.42577506 0.35647365 - 1200.00 833.333 1.00000000 0.30942099 0.00000000 0.62502772 0.36747333 0.40588690 0.35795039 - 1300.00 769.231 1.00000000 0.35357379 0.00000000 0.61161486 0.37725198 0.38809317 0.35907136 - 1400.00 714.286 1.00000000 0.39091524 0.00000000 0.59850510 0.38580851 0.37216463 0.35985729 - 1500.00 666.667 1.00000000 0.42322816 0.00000000 0.58570272 0.39314233 0.35788307 0.36033379 - 1600.00 625.000 1.00000000 0.45159884 0.00000000 0.57321532 0.39928597 0.34505055 0.36052904 - 1700.00 588.235 1.00000000 0.47675916 0.00000000 0.56105421 0.40429655 0.33349186 0.36047214 - 1800.00 555.556 1.00000000 0.49923747 0.00000000 0.54923312 0.40824837 0.32305388 0.36019191 - 1900.00 526.316 1.00000000 0.51943421 0.00000000 0.53776653 0.41122667 0.31360366 0.35971610 - 2000.00 500.000 1.00000000 0.54360078 0.08679949 0.52666805 0.41332243 0.30502601 0.35907083 - 2100.00 476.190 1.00000000 0.56618736 0.14065513 0.51594919 0.41462823 0.29722115 0.35828027 - 2200.00 454.545 1.00000000 0.58734976 0.18362641 0.50561853 0.41523508 0.29010253 0.35736649 - 2300.00 434.783 1.00000000 0.60724493 0.22137978 0.49568136 0.41523016 0.28359494 0.35634941 - 2400.00 416.667 1.00000000 0.62600248 0.25591950 0.48613958 0.41469527 0.27763286 0.35524684 - 2500.00 400.000 1.00000000 0.64373109 0.28819679 0.47699184 0.41370588 0.27215903 0.35407459 - 2600.00 384.615 1.00000000 0.66052319 0.31873863 0.46823386 0.41233069 0.26712334 0.35284660 - 2700.00 370.370 1.00000000 0.67645822 0.34786758 0.45985885 0.41063151 0.26248174 0.35157507 - 2800.00 357.143 1.00000000 0.69160518 0.37579588 0.45185787 0.40866340 0.25819546 0.35027065 - 2900.00 344.828 1.00000000 0.70602449 0.40267128 0.44422033 0.40647504 0.25423026 0.34894256 - 3000.00 333.333 1.00000000 0.71976951 0.42860152 0.43693431 0.40410911 0.25055582 0.34759878 - 3100.00 322.581 1.00000000 0.73288760 0.45366838 0.42998698 0.40160280 0.24714525 0.34624614 - 3200.00 312.500 1.00000000 0.74542112 0.47793608 0.42336490 0.39898835 0.24397461 0.34489052 - 3300.00 303.030 1.00000000 0.75740814 0.50145662 0.41705424 0.39629352 0.24102257 0.34353691 - 3400.00 294.118 1.00000000 0.76888303 0.52427322 0.41104108 0.39354213 0.23827007 0.34218955 - 3500.00 285.714 1.00000000 0.77987699 0.54642268 0.40531154 0.39075447 0.23570001 0.34085200 - 3600.00 277.778 1.00000000 0.79041843 0.56793692 0.39985192 0.38794778 0.23329708 0.33952726 - 3700.00 270.270 1.00000000 0.80053332 0.58884417 0.39464885 0.38513659 0.23104750 0.33821781 - 3800.00 263.158 1.00000000 0.81024551 0.60916971 0.38968931 0.38233313 0.22893883 0.33692571 - 3900.00 256.410 1.00000000 0.81957693 0.62893653 0.38496077 0.37954757 0.22695986 0.33565263 - 4000.00 250.000 1.00000000 0.82854786 0.64816570 0.38045117 0.37678834 0.22510046 0.33439993 - 4100.00 243.902 1.00000000 0.83717703 0.66687674 0.37614896 0.37406236 0.22335143 0.33316866 - 4200.00 238.095 1.00000000 0.84548188 0.68508786 0.37204315 0.37137528 0.22170443 0.33195966 - 4300.00 232.558 1.00000000 0.85347859 0.70281616 0.36812324 0.36873160 0.22015187 0.33077353 - 4400.00 227.273 1.00000000 0.86118227 0.72007777 0.36437931 0.36613489 0.21868685 0.32961072 - 4500.00 222.222 1.00000000 0.86860704 0.73688797 0.36080191 0.36358791 0.21730306 0.32847151 - 4600.00 217.391 1.00000000 0.87576611 0.75326132 0.35738213 0.36109274 0.21599475 0.32735605 - 4700.00 212.766 1.00000000 0.88267187 0.76921169 0.35411155 0.35865086 0.21475665 0.32626438 - 4800.00 208.333 1.00000000 0.88933596 0.78475236 0.35098221 0.35626326 0.21358394 0.32519645 - 4900.00 204.082 1.00000000 0.89576933 0.79989606 0.34798660 0.35393053 0.21247220 0.32415212 - 5000.00 200.000 1.00000000 0.90198230 0.81465502 0.34511765 0.35165288 0.21141735 0.32313121 - 5100.00 196.078 1.00000000 0.90963069 0.82838210 0.34241203 0.35001272 0.21021935 0.32232854 - 5200.00 192.308 1.00000000 0.91710889 0.84190889 0.33979886 0.34839077 0.20907188 0.32153748 - 5300.00 188.679 1.00000000 0.92441842 0.85523742 0.33727444 0.34678727 0.20797270 0.32075786 - 5400.00 185.185 1.00000000 0.93156127 0.86836903 0.33483529 0.34520270 0.20691958 0.31998956 - 5500.00 181.818 1.00000000 0.93853986 0.88130458 0.33247815 0.34363762 0.20591041 0.31923255 - 5600.00 178.571 1.00000000 0.94535695 0.89404470 0.33019990 0.34209270 0.20494313 0.31848685 - 5700.00 175.439 1.00000000 0.95201559 0.90658983 0.32799758 0.34056863 0.20401576 0.31775250 - 5800.00 172.414 1.00000000 0.95851906 0.91894041 0.32586836 0.33906607 0.20312639 0.31702955 - 5900.00 169.492 1.00000000 0.96487079 0.93109690 0.32380952 0.33758570 0.20227319 0.31631809 - 6000.00 166.667 1.00000000 0.97107439 0.94305985 0.32181844 0.33612812 0.20145443 0.31561817 - 6100.00 163.934 1.00000000 0.97713351 0.95482993 0.31989262 0.33469388 0.20066842 0.31492986 - 6200.00 161.290 1.00000000 0.98305189 0.96640795 0.31802964 0.33328348 0.19991358 0.31425322 - 6300.00 158.730 1.00000000 0.98883326 0.97779486 0.31622718 0.33189733 0.19918839 0.31358829 - 6400.00 156.250 1.00000000 0.99448139 0.98899179 0.31448300 0.33053578 0.19849141 0.31293509 - 6500.00 153.846 1.00000000 1.00000000 1.00000000 0.31279496 0.32919912 0.19782126 0.31229365 - 6600.00 151.515 0.98947904 0.99348723 1.00000000 0.31120243 0.32761002 0.19730962 0.31156863 - 6700.00 149.254 0.97940448 0.98722715 1.00000000 0.30966650 0.32606300 0.19681912 0.31086072 - 6800.00 147.059 0.96975025 0.98120637 1.00000000 0.30818460 0.32455698 0.19634862 0.31016953 - 6900.00 144.928 0.96049223 0.97541240 1.00000000 0.30675427 0.32309087 0.19589702 0.30949467 - 7000.00 142.857 0.95160805 0.96983355 1.00000000 0.30537319 0.32166361 0.19546333 0.30883576 - 7100.00 140.845 0.94303638 0.96443333 1.00000000 0.30403281 0.32026747 0.19504461 0.30818933 - 7200.00 138.889 0.93480451 0.95923080 1.00000000 0.30273830 0.31890887 0.19464226 0.30755844 - 7300.00 136.986 0.92689056 0.95421394 1.00000000 0.30148708 0.31758616 0.19425527 0.30694243 - 7400.00 135.135 0.91927697 0.94937330 1.00000000 0.30027715 0.31629817 0.19388281 0.30634088 - 7500.00 133.333 0.91194747 0.94470005 1.00000000 0.29910666 0.31504380 0.19352414 0.30575337 - 7600.00 131.579 0.90488690 0.94018594 1.00000000 0.29797383 0.31382196 0.19317853 0.30517949 - 7700.00 129.870 0.89808115 0.93582323 1.00000000 0.29687698 0.31263161 0.19284534 0.30461885 - 7800.00 128.205 0.89151710 0.93160469 1.00000000 0.29581456 0.31147172 0.19252394 0.30407106 - 7900.00 126.582 0.88518247 0.92752354 1.00000000 0.29478506 0.31034133 0.19221375 0.30353576 - 8000.00 125.000 0.87906581 0.92357340 1.00000000 0.29378708 0.30923947 0.19191423 0.30301259 - 8100.00 123.457 0.87315640 0.91974827 1.00000000 0.29281928 0.30816524 0.19162486 0.30250119 - 8200.00 121.951 0.86744421 0.91604254 1.00000000 0.29188041 0.30711774 0.19134517 0.30200123 - 8300.00 120.482 0.86191983 0.91245088 1.00000000 0.29096927 0.30609613 0.19107470 0.30151239 - 8400.00 119.048 0.85657444 0.90896831 1.00000000 0.29008472 0.30509957 0.19081303 0.30103433 - 8500.00 117.647 0.85139976 0.90559011 1.00000000 0.28922569 0.30412727 0.19055976 0.30056676 - 8600.00 116.279 0.84638799 0.90231183 1.00000000 0.28839116 0.30317845 0.19031452 0.30010938 - 8700.00 114.943 0.84153180 0.89912926 1.00000000 0.28758016 0.30225239 0.19007694 0.29966190 - 8800.00 113.636 0.83682430 0.89603843 1.00000000 0.28679177 0.30134837 0.18984670 0.29922403 - 8900.00 112.360 0.83225897 0.89303558 1.00000000 0.28602511 0.30046569 0.18962347 0.29879552 - 9000.00 111.111 0.82782969 0.89011714 1.00000000 0.28527935 0.29960369 0.18940696 0.29837609 - 9100.00 109.890 0.82353066 0.88727974 1.00000000 0.28455370 0.29876173 0.18919689 0.29796550 - 9200.00 108.696 0.81935641 0.88452017 1.00000000 0.28384740 0.29793919 0.18899298 0.29756349 - 9300.00 107.527 0.81530175 0.88183541 1.00000000 0.28315974 0.29713548 0.18879499 0.29716984 - 9400.00 106.383 0.81136180 0.87922257 1.00000000 0.28249004 0.29635003 0.18860267 0.29678431 - 9500.00 105.263 0.80753191 0.87667891 1.00000000 0.28183762 0.29558228 0.18841579 0.29640668 - 9600.00 104.167 0.80380769 0.87420182 1.00000000 0.28120189 0.29483169 0.18823415 0.29603673 - 9700.00 103.093 0.80018497 0.87178882 1.00000000 0.28058223 0.29409775 0.18805752 0.29567426 - 9800.00 102.041 0.79665980 0.86943756 1.00000000 0.27997808 0.29337997 0.18788573 0.29531906 - 9900.00 101.010 0.79322843 0.86714579 1.00000000 0.27938891 0.29267787 0.18771858 0.29497094 -10000.00 100.000 0.78988728 0.86491137 1.00000000 0.27881418 0.29199098 0.18755589 0.29462971 -10100.00 99.010 0.78663296 0.86273225 1.00000000 0.27825341 0.29131886 0.18739750 0.29429519 -10200.00 98.039 0.78346225 0.86060650 1.00000000 0.27770613 0.29066108 0.18724326 0.29396720 -10300.00 97.087 0.78037207 0.85853224 1.00000000 0.27717187 0.29001723 0.18709300 0.29364556 -10400.00 96.154 0.77735950 0.85650771 1.00000000 0.27665020 0.28938690 0.18694658 0.29333012 -10500.00 95.238 0.77442176 0.85453121 1.00000000 0.27614071 0.28876971 0.18680386 0.29302070 -10600.00 94.340 0.77155617 0.85260112 1.00000000 0.27564300 0.28816528 0.18666472 0.29271716 -10700.00 93.458 0.76876022 0.85071588 1.00000000 0.27515669 0.28757326 0.18652902 0.29241934 -10800.00 92.593 0.76603147 0.84887402 1.00000000 0.27468141 0.28699330 0.18639665 0.29212710 -10900.00 91.743 0.76336762 0.84707411 1.00000000 0.27421680 0.28642506 0.18626749 0.29184030 -11000.00 90.909 0.76076645 0.84531479 1.00000000 0.27376254 0.28586822 0.18614142 0.29155879 -11100.00 90.090 0.75822586 0.84359476 1.00000000 0.27331830 0.28532246 0.18601836 0.29128244 -11200.00 89.286 0.75574383 0.84191277 1.00000000 0.27288377 0.28478748 0.18589819 0.29101113 -11300.00 88.496 0.75331843 0.84026762 1.00000000 0.27245865 0.28426300 0.18578081 0.29074473 -11400.00 87.719 0.75094780 0.83865816 1.00000000 0.27204265 0.28374872 0.18566615 0.29048312 -11500.00 86.957 0.74863017 0.83708329 1.00000000 0.27163550 0.28324437 0.18555410 0.29022618 -11600.00 86.207 0.74636386 0.83554194 1.00000000 0.27123693 0.28274970 0.18544459 0.28997379 -11700.00 85.470 0.74414722 0.83403311 1.00000000 0.27084669 0.28226443 0.18533753 0.28972585 -11800.00 84.746 0.74197871 0.83255582 1.00000000 0.27046454 0.28178833 0.18523284 0.28948224 -11900.00 84.034 0.73985682 0.83110912 1.00000000 0.27009023 0.28132116 0.18513046 0.28924287 -12000.00 83.333 0.73778012 0.82969211 1.00000000 0.26972354 0.28086268 0.18503030 0.28900764 -12100.00 82.645 0.73574723 0.82830393 1.00000000 0.26936425 0.28041268 0.18493231 0.28877643 -12200.00 81.967 0.73375683 0.82694373 1.00000000 0.26901215 0.27997093 0.18483641 0.28854917 -12300.00 81.301 0.73180765 0.82561071 1.00000000 0.26866703 0.27953722 0.18474254 0.28832575 -12400.00 80.645 0.72989845 0.82430410 1.00000000 0.26832871 0.27911135 0.18465064 0.28810608 -12500.00 80.000 0.72802807 0.82302316 1.00000000 0.26799699 0.27869313 0.18456065 0.28789009 -12600.00 79.365 0.72619537 0.82176715 1.00000000 0.26767169 0.27828236 0.18447252 0.28767768 -12700.00 78.740 0.72439927 0.82053539 1.00000000 0.26735264 0.27787886 0.18438618 0.28746877 -12800.00 78.125 0.72263872 0.81932722 1.00000000 0.26703966 0.27748244 0.18430160 0.28726328 -12900.00 77.519 0.72091270 0.81814197 1.00000000 0.26673259 0.27709295 0.18421871 0.28706114 -13000.00 76.923 0.71922025 0.81697905 1.00000000 0.26643127 0.27671020 0.18413748 0.28686226 -13100.00 76.336 0.71756043 0.81583783 1.00000000 0.26613555 0.27633403 0.18405784 0.28666658 -13200.00 75.758 0.71593234 0.81471775 1.00000000 0.26584529 0.27596430 0.18397977 0.28647403 -13300.00 75.188 0.71433510 0.81361825 1.00000000 0.26556034 0.27560083 0.18390321 0.28628453 -13400.00 74.627 0.71276788 0.81253878 1.00000000 0.26528056 0.27524349 0.18382812 0.28609801 -13500.00 74.074 0.71122987 0.81147883 1.00000000 0.26500582 0.27489213 0.18375447 0.28591442 -13600.00 73.529 0.70972029 0.81043789 1.00000000 0.26473599 0.27454660 0.18368221 0.28573368 -13700.00 72.993 0.70823838 0.80941546 1.00000000 0.26447094 0.27420679 0.18361130 0.28555574 -13800.00 72.464 0.70678342 0.80841109 1.00000000 0.26421057 0.27387254 0.18354172 0.28538054 -13900.00 71.942 0.70535469 0.80742432 1.00000000 0.26395474 0.27354374 0.18347342 0.28520801 -14000.00 71.429 0.70395153 0.80645469 1.00000000 0.26370334 0.27322025 0.18340637 0.28503811 -14100.00 70.922 0.70257327 0.80550180 1.00000000 0.26345628 0.27290197 0.18334054 0.28487076 -14200.00 70.423 0.70121928 0.80456522 1.00000000 0.26321343 0.27258876 0.18327590 0.28470593 -14300.00 69.930 0.69988894 0.80364455 1.00000000 0.26297471 0.27228052 0.18321241 0.28454355 -14400.00 69.444 0.69858167 0.80273941 1.00000000 0.26274000 0.27197714 0.18315005 0.28438358 -14500.00 68.966 0.69729688 0.80184943 1.00000000 0.26250922 0.27167851 0.18308879 0.28422596 -14600.00 68.493 0.69603402 0.80097423 1.00000000 0.26228226 0.27138452 0.18302860 0.28407066 -14700.00 68.027 0.69479255 0.80011347 1.00000000 0.26205905 0.27109507 0.18296946 0.28391761 -14800.00 67.568 0.69357196 0.79926681 1.00000000 0.26183948 0.27081007 0.18291133 0.28376677 -14900.00 67.114 0.69237173 0.79843391 1.00000000 0.26162348 0.27052941 0.18285419 0.28361811 -15000.00 66.667 0.69119138 0.79761446 1.00000000 0.26141097 0.27025301 0.18279803 0.28347157 -15100.00 66.225 0.69003044 0.79680814 1.00000000 0.26120186 0.26998077 0.18274281 0.28332711 -15200.00 65.789 0.68888844 0.79601466 1.00000000 0.26099608 0.26971261 0.18268851 0.28318469 -15300.00 65.359 0.68776494 0.79523371 1.00000000 0.26079354 0.26944843 0.18263512 0.28304427 -15400.00 64.935 0.68665951 0.79446502 1.00000000 0.26059419 0.26918816 0.18258260 0.28290581 -15500.00 64.516 0.68557173 0.79370830 1.00000000 0.26039794 0.26893170 0.18253094 0.28276927 -15600.00 64.103 0.68450119 0.79296330 1.00000000 0.26020473 0.26867900 0.18248012 0.28263462 -15700.00 63.694 0.68344751 0.79222975 1.00000000 0.26001448 0.26842995 0.18243012 0.28250182 -15800.00 63.291 0.68241029 0.79150740 1.00000000 0.25982715 0.26818450 0.18238092 0.28237083 -15900.00 62.893 0.68138918 0.79079600 1.00000000 0.25964265 0.26794257 0.18233250 0.28224161 -16000.00 62.500 0.68038380 0.79009531 1.00000000 0.25946093 0.26770408 0.18228485 0.28211414 -16100.00 62.112 0.67939381 0.78940511 1.00000000 0.25928194 0.26746897 0.18223794 0.28198837 -16200.00 61.728 0.67841888 0.78872517 1.00000000 0.25910561 0.26723717 0.18219177 0.28186429 -16300.00 61.350 0.67745866 0.78805526 1.00000000 0.25893188 0.26700861 0.18214630 0.28174185 -16400.00 60.976 0.67651284 0.78739518 1.00000000 0.25876070 0.26678322 0.18210154 0.28162102 -16500.00 60.606 0.67558112 0.78674472 1.00000000 0.25859202 0.26656096 0.18205746 0.28150178 -16600.00 60.241 0.67466317 0.78610368 1.00000000 0.25842578 0.26634174 0.18201404 0.28138410 -16700.00 59.880 0.67375872 0.78547186 1.00000000 0.25826194 0.26612553 0.18197128 0.28126794 -16800.00 59.524 0.67286748 0.78484907 1.00000000 0.25810044 0.26591224 0.18192916 0.28115328 -16900.00 59.172 0.67198916 0.78423512 1.00000000 0.25794124 0.26570184 0.18188766 0.28104009 -17000.00 58.824 0.67112350 0.78362984 1.00000000 0.25778429 0.26549426 0.18184677 0.28092835 -17100.00 58.480 0.67027024 0.78303305 1.00000000 0.25762954 0.26528946 0.18180649 0.28081802 -17200.00 58.140 0.66942911 0.78244457 1.00000000 0.25747695 0.26508737 0.18176679 0.28070909 -17300.00 57.803 0.66859988 0.78186425 1.00000000 0.25732648 0.26488795 0.18172766 0.28060152 -17400.00 57.471 0.66778228 0.78129191 1.00000000 0.25717808 0.26469114 0.18168910 0.28049530 -17500.00 57.143 0.66697610 0.78072740 1.00000000 0.25703172 0.26449690 0.18165109 0.28039039 -17600.00 56.818 0.66618110 0.78017057 1.00000000 0.25688735 0.26430518 0.18161362 0.28028679 -17700.00 56.497 0.66539706 0.77962127 1.00000000 0.25674494 0.26411594 0.18157667 0.28018445 -17800.00 56.180 0.66462376 0.77907934 1.00000000 0.25660444 0.26392912 0.18154025 0.28008337 -17900.00 55.866 0.66386098 0.77854465 1.00000000 0.25646582 0.26374469 0.18150433 0.27998352 -18000.00 55.556 0.66310852 0.77801705 1.00000000 0.25632905 0.26356259 0.18146890 0.27988487 -18100.00 55.249 0.66236618 0.77749642 1.00000000 0.25619408 0.26338280 0.18143397 0.27978741 -18200.00 54.945 0.66163375 0.77698261 1.00000000 0.25606089 0.26320525 0.18139951 0.27969112 -18300.00 54.645 0.66091106 0.77647551 1.00000000 0.25592944 0.26302993 0.18136552 0.27959598 -18400.00 54.348 0.66019791 0.77597498 1.00000000 0.25579969 0.26285678 0.18133199 0.27950196 -18500.00 54.054 0.65949412 0.77548090 1.00000000 0.25567162 0.26268577 0.18129891 0.27940905 -18600.00 53.763 0.65879952 0.77499315 1.00000000 0.25554520 0.26251686 0.18126627 0.27931724 -18700.00 53.476 0.65811392 0.77451161 1.00000000 0.25542039 0.26235001 0.18123407 0.27922649 -18800.00 53.191 0.65743716 0.77403618 1.00000000 0.25529717 0.26218519 0.18120229 0.27913680 -18900.00 52.910 0.65676908 0.77356673 1.00000000 0.25517550 0.26202236 0.18117092 0.27904814 -19000.00 52.632 0.65610952 0.77310316 1.00000000 0.25505536 0.26186149 0.18113997 0.27896051 -19100.00 52.356 0.65545831 0.77264537 1.00000000 0.25493672 0.26170254 0.18110941 0.27887387 -19200.00 52.083 0.65481530 0.77219324 1.00000000 0.25481955 0.26154548 0.18107925 0.27878822 -19300.00 51.813 0.65418036 0.77174669 1.00000000 0.25470383 0.26139028 0.18104948 0.27870355 -19400.00 51.546 0.65355332 0.77130560 1.00000000 0.25458953 0.26123691 0.18102008 0.27861982 -19500.00 51.282 0.65293404 0.77086988 1.00000000 0.25447663 0.26108533 0.18099106 0.27853704 -19600.00 51.020 0.65232240 0.77043944 1.00000000 0.25436510 0.26093552 0.18096240 0.27845518 -19700.00 50.761 0.65171824 0.77001419 1.00000000 0.25425491 0.26078745 0.18093410 0.27837423 -19800.00 50.505 0.65112144 0.76959404 1.00000000 0.25414605 0.26064108 0.18090615 0.27829417 -19900.00 50.251 0.65053187 0.76917889 1.00000000 0.25403849 0.26049640 0.18087855 0.27821499 -20000.00 50.000 0.64994941 0.76876866 1.00000000 0.25393221 0.26035336 0.18085129 0.27813668 -20100.00 49.751 0.64937392 0.76836326 1.00000000 0.25382719 0.26021195 0.18082436 0.27805923 -20200.00 49.505 0.64880528 0.76796263 1.00000000 0.25372340 0.26007214 0.18079776 0.27798261 -20300.00 49.261 0.64824339 0.76756666 1.00000000 0.25362082 0.25993390 0.18077149 0.27790682 -20400.00 49.020 0.64768812 0.76717529 1.00000000 0.25351944 0.25979721 0.18074552 0.27783185 -20500.00 48.780 0.64713935 0.76678844 1.00000000 0.25341923 0.25966204 0.18071987 0.27775767 -20600.00 48.544 0.64659699 0.76640603 1.00000000 0.25332018 0.25952837 0.18069453 0.27768429 -20700.00 48.309 0.64606092 0.76602798 1.00000000 0.25322226 0.25939617 0.18066949 0.27761168 -20800.00 48.077 0.64553103 0.76565424 1.00000000 0.25312546 0.25926542 0.18064474 0.27753984 -20900.00 47.847 0.64500722 0.76528472 1.00000000 0.25302975 0.25913610 0.18062028 0.27746875 -21000.00 47.619 0.64448939 0.76491935 1.00000000 0.25293513 0.25900818 0.18059610 0.27739840 -21100.00 47.393 0.64397745 0.76455808 1.00000000 0.25284157 0.25888165 0.18057221 0.27732879 -21200.00 47.170 0.64347129 0.76420082 1.00000000 0.25274905 0.25875648 0.18054859 0.27725989 -21300.00 46.948 0.64297081 0.76384753 1.00000000 0.25265756 0.25863264 0.18052524 0.27719171 -21400.00 46.729 0.64247594 0.76349813 1.00000000 0.25256708 0.25851013 0.18050216 0.27712422 -21500.00 46.512 0.64198657 0.76315256 1.00000000 0.25247760 0.25838892 0.18047934 0.27705743 -21600.00 46.296 0.64150261 0.76281076 1.00000000 0.25238910 0.25826899 0.18045678 0.27699131 -21700.00 46.083 0.64102399 0.76247267 1.00000000 0.25230156 0.25815032 0.18043448 0.27692586 -21800.00 45.872 0.64055061 0.76213824 1.00000000 0.25221497 0.25803289 0.18041242 0.27686107 -21900.00 45.662 0.64008239 0.76180740 1.00000000 0.25212932 0.25791668 0.18039061 0.27679693 -22000.00 45.455 0.63961926 0.76148010 1.00000000 0.25204458 0.25780168 0.18036904 0.27673343 -22100.00 45.249 0.63916112 0.76115628 1.00000000 0.25196075 0.25768786 0.18034771 0.27667056 -22200.00 45.045 0.63870790 0.76083590 1.00000000 0.25187781 0.25757522 0.18032661 0.27660831 -22300.00 44.843 0.63825953 0.76051890 1.00000000 0.25179575 0.25746372 0.18030574 0.27654668 -22400.00 44.643 0.63781592 0.76020522 1.00000000 0.25171456 0.25735336 0.18028510 0.27648565 -22500.00 44.444 0.63737701 0.75989482 1.00000000 0.25163421 0.25724411 0.18026468 0.27642521 -22600.00 44.248 0.63694273 0.75958764 1.00000000 0.25155470 0.25713597 0.18024448 0.27636537 -22700.00 44.053 0.63651299 0.75928365 1.00000000 0.25147602 0.25702891 0.18022450 0.27630610 -22800.00 43.860 0.63608774 0.75898278 1.00000000 0.25139815 0.25692292 0.18020472 0.27624740 -22900.00 43.668 0.63566691 0.75868499 1.00000000 0.25132108 0.25681798 0.18018516 0.27618927 -23000.00 43.478 0.63525042 0.75839025 1.00000000 0.25124480 0.25671409 0.18016581 0.27613169 -23100.00 43.290 0.63483822 0.75809849 1.00000000 0.25116929 0.25661122 0.18014666 0.27607466 -23200.00 43.103 0.63443023 0.75780969 1.00000000 0.25109456 0.25650936 0.18012770 0.27601818 -23300.00 42.918 0.63402641 0.75752379 1.00000000 0.25102057 0.25640849 0.18010895 0.27596222 -23400.00 42.735 0.63362667 0.75724075 1.00000000 0.25094733 0.25630860 0.18009039 0.27590679 -23500.00 42.553 0.63323097 0.75696053 1.00000000 0.25087483 0.25620968 0.18007202 0.27585188 -23600.00 42.373 0.63283925 0.75668310 1.00000000 0.25080304 0.25611172 0.18005383 0.27579747 -23700.00 42.194 0.63245144 0.75640840 1.00000000 0.25073197 0.25601470 0.18003584 0.27574358 -23800.00 42.017 0.63206749 0.75613641 1.00000000 0.25066160 0.25591860 0.18001802 0.27569018 -23900.00 41.841 0.63168735 0.75586707 1.00000000 0.25059192 0.25582342 0.18000039 0.27563727 -24000.00 41.667 0.63131096 0.75560036 1.00000000 0.25052292 0.25572914 0.17998293 0.27558485 -24100.00 41.494 0.63093826 0.75533624 1.00000000 0.25045459 0.25563575 0.17996565 0.27553291 -24200.00 41.322 0.63056920 0.75507467 1.00000000 0.25038692 0.25554324 0.17994854 0.27548144 -24300.00 41.152 0.63020374 0.75481562 1.00000000 0.25031991 0.25545159 0.17993160 0.27543043 -24400.00 40.984 0.62984181 0.75455904 1.00000000 0.25025354 0.25536080 0.17991483 0.27537988 -24500.00 40.816 0.62948337 0.75430491 1.00000000 0.25018781 0.25527085 0.17989822 0.27532979 -24600.00 40.650 0.62912838 0.75405319 1.00000000 0.25012270 0.25518173 0.17988177 0.27528015 -24700.00 40.486 0.62877678 0.75380385 1.00000000 0.25005821 0.25509343 0.17986549 0.27523094 -24800.00 40.323 0.62842852 0.75355685 1.00000000 0.24999433 0.25500594 0.17984936 0.27518218 -24900.00 40.161 0.62808356 0.75331217 1.00000000 0.24993104 0.25491925 0.17983339 0.27513384 -25000.00 40.000 0.62774186 0.75306977 1.00000000 0.24986835 0.25483334 0.17981757 0.27508593 -25100.00 39.841 0.62740336 0.75282962 1.00000000 0.24980625 0.25474821 0.17980190 0.27503844 @@ -6,25 +6,142 @@ Redshift adjusts the color temperature of your screen according to your surroundings. This may help your eyes hurt less if you are working in front of the screen at night. +README versions: [latest](https://github.com/jonls/redshift/blob/master/README.md) | [1.12](https://github.com/jonls/redshift/blob/v1.12/README.md) | [1.11](https://github.com/jonls/redshift/blob/v1.11/README.md) +  Run `redshift -h` for help on command line options. You can run the program as `redshift-gtk` instead of `redshift` for a graphical status icon. -* Website: http://jonls.dk/redshift/ * Project page: https://github.com/jonls/redshift Build status ------------ [](https://travis-ci.org/jonls/redshift) +[](https://ci.appveyor.com/project/jonls/redshift) + +Technical Details (Gamma Ramps) +------------------------------- + +Redshift applies a redness effect to the graphical display. The intensity of the redness can be customized and +scheduled to only be applied at night or to be applied with more intensity at night. + +Redshift uses the gamma correction ramps to apply this effect which has traditionally been the only +way of applying a color effect to the display. Note that this is really a hack to work around the absense of a +standardized way of applying color effects, and it is resulting in several issues some of which are explained in +the _FAQ_ section below. As long as Redshift is using gamma ramps, many of these issues are impossible to solve properly +in Redshift. + +Since Redshift was first created, many desktop environments have adopted similar functionality as an integrated +component: + +- GNOME: [Night Light](https://www.gnome.org/news/2017/03/gnome-3-24-released/attachment/night-light/) +- Plasma: Night Color +- Windows: [Night Light](https://support.microsoft.com/en-us/help/4027563/windows-10-set-your-display-for-night-time) +- macOS: Night Shift + +Using the features integrated into the desktop environments avoids many of the issues with gamma ramps which is why +these implementations should generally be favored over Redshift. On the other hand, Redshift may offer some additional +flexibility that is not available in the integrated features. + +FAQ +--- + +### How do I install Redshift? + +Use the packages provided by your distribution, e.g. for Ubuntu: +`apt-get install redshift` or `apt-get install redshift-gtk`. For developers, +please see _Building from source_ and _Latest builds from master branch_ below. + +### How do I setup a configuration file? + +A configuration file is not required but is useful for saving custom +configurations and manually defining the location in case of issues with the +automatic location provider. An example configuration can be found in +[redshift.conf.sample](redshift.conf.sample). + +The configuration file should be saved in the following location depending on +the platform: + +- Linux/macOS: `~/.config/redshift/redshift.conf` (if the environment variable `XDG_CONFIG_HOME` is undefined) or `${XDG_CONFIG_HOME}/redshift/redshift.conf` (if `XDG_CONFIG_HOME` is defined). +- Windows: Put `redshift.conf` in `%USERPROFILE%\AppData\Local\` + (aka `%localappdata%`). + +### Where can I find my coordinates to put in the configuration file? + +There are multiple web sites that provide coordinates for map locations, for +example clicking anywhere on Google Maps will bring up a box with the +coordinates. Remember that longitudes in the western hemisphere (e.g. the +Americas) must be provided to Redshift as negative numbers. + +### Why does GeoClue fail with access denied error? + +It is possible that the location services have been disabled completely. The +check for this case varies by desktop environment. For example, in GNOME the +location services can be toggled in Settings > Privacy > Location Services. + +If this is not the case, it is possible that Redshift has been improperly +installed or not been given the required permissions to obtain location +updates from a system administrator. See +https://github.com/jonls/redshift/issues/318 for further discussion on this +issue. + +### Why doesn't Redshift work on my Chromebook/Raspberry Pi? + +Certain video drivers do not support adjustable gamma ramps. In some cases +Redshift will fail with an error message, but other drivers silently ignore +adjustments to the gamma ramp. + +### Why doesn't Redshift change the backlight when I use the brightness option? + +Redshift has a brightness adjustment setting but it does not work the way most +people might expect. In fact it is a fake brightness adjustment obtained by +manipulating the gamma ramps which means that it does not reduce the backlight +of the screen. Preferably only use it if your normal backlight adjustment is +too coarse-grained. + +### When running as a systemd service, redshift fails to connect to the graphical environment + +You need to export your environment variables when your window manager or +compositor start up. Typically, you want to run this as part of its startup: + + systemctl --user import-environment; systemctl --user start graphical-session.target + +See your compositor's (or window manager's) documentation for further details +of setting up the systemd user session. + +Related issues: [#753](https://github.com/jonls/redshift/pull/753). + +### The redness effect is applied during the day instead of at night. Why? + +This usually happens to users in America when the longitude has been set in the +configuration file to a positive number. Longitudes in the western hemisphere +should be provided as negative numbers (e.g. New York City is at approximately +latitude/longitude 41, -74). + +### Why does the redness effect occasionally switch off for a few seconds? + +Redshift uses the gamma ramps of the graphics driver to apply the redness +effect but Redshift cannot block other applications from also changing the +gamma ramps. Some applications (particularly games and video players) will +reset the gamma ramps. After a few seconds Redshift will kick in again. There +is no way for Redshift to prevent this from happening. + +### Why does the redness effect continuously flicker? + +You may have multiple instances of Redshift running simultaneously. Make sure +that only one instance is running for the display where you are seeing the +flicker. -Building from source --------------------- +### Why doesn't Redshift change the color of the mouse cursor? -See the file [HACKING](HACKING.md) for more details on building from source. +Mouse cursors are usually handled separately by the graphics hardware and is +not affected by gamma ramps. Some graphics drivers can be configured to use +software cursors instead. -Donations ---------- +### I have an issue with Redshift but it was not mentioned in this FAQ. What do I do? -[](https://flattr.com/thing/57936/Redshift) +Please go to [the issue tracker](https://github.com/jonls/redshift/issues) and +check if your issue has already been reported. If not, please open a new issue +describing you problem. @@ -0,0 +1,218 @@ +https://github.com/jonls/redshift/pull/54 D-Bus service +https://github.com/jonls/redshift/pull/73 Support unexpected events when trying to get the user's home directory +https://github.com/jonls/redshift/pull/96 Reloading of settings +https://github.com/jonls/redshift/pull/98 Display sunrise/sunset information in redshift-gtk +https://github.com/jonls/redshift/pull/568 Wayland support PR (updated Lourens rich master) +https://github.com/jonls/redshift/pull/613 Show color temperature and period in status icon menu if AppIndicator… +https://github.com/jonls/redshift/pull/614 Implement GTK+ GUI config tool +https://github.com/jonls/redshift/pull/656 Make GeoClue2 optional at runtime +https://github.com/jonls/redshift/pull/674 Added Gui slider and Mouse scroll events for changing temperature +https://github.com/jonls/redshift/pull/705 apparmor: allow old config file location +https://github.com/jonls/redshift/pull/714 prevent desktop file from being written in .config/autostart [Fixes #686] +https://github.com/jonls/redshift/pull/719 fix disable resetting color+temp continuously +https://github.com/jonls/redshift/pull/743 Allow user to specify any duration for suspension +https://github.com/jonls/redshift/pull/757 redshift-gtk: use Ayatana AppIndicator3 instead of App Indicator3 +https://github.com/jonls/redshift/pull/782 Update AppStream metadata for redshift-gtk +https://github.com/jonls/redshift/pull/788 redshift-gtk-desktop.in: Remove StartupNotify. +https://github.com/jonls/redshift/pull/808 Add fullscreen bypass support +https://github.com/jonls/redshift/pull/837 Refactor to use Elektra +https://github.com/jonls/redshift/pull/840 Add feature to adjust fade duration (without Elektra) +https://github.com/jonls/redshift/pull/844 Increase restart delay for systemd service +https://github.com/jonls/redshift/pull/860 Fix segfault for LDAP-authenticated users +https://github.com/jonls/redshift/pull/864 Fix apparmor config. +https://github.com/jonls/redshift/pull/902 Add info about path bug in README + +https://github.com/jonls/redshift/issues/31 Change temperature from the icon +https://github.com/jonls/redshift/issues/36 Fallback location provider +https://github.com/jonls/redshift/issues/51 Add support for "bedtime" mode +https://github.com/jonls/redshift/issues/125 brightness setting should affect backlight if available +https://github.com/jonls/redshift/issues/129 Feature: Adjust brightness on the fly using shortcuts or gui +https://github.com/jonls/redshift/issues/135 New (very useful) feature for Redshift +https://github.com/jonls/redshift/issues/138 Run as system service +https://github.com/jonls/redshift/issues/150 Startup crash if no working DNS +https://github.com/jonls/redshift/issues/154 Configurable duration between gamma adjustments +https://github.com/jonls/redshift/issues/155 Redshift 1.10 - Clicking Icon Off - Screen Doesn't Return Full Brightness +https://github.com/jonls/redshift/issues/160 Ability to configure different screens separately +https://github.com/jonls/redshift/issues/170 Can't see right icons in Linux Mint 17 Cinnamon +https://github.com/jonls/redshift/issues/182 Status icon not visible on Ubuntu without Appindicator package +https://github.com/jonls/redshift/issues/183 Best way to run on two separate X screens? +https://github.com/jonls/redshift/issues/194 Redshift-gtk doesn't recognize changes to conf +https://github.com/jonls/redshift/issues/199 Setting neutral color temperature? +https://github.com/jonls/redshift/issues/217 redshift appears to stop working after resume from suspend +https://github.com/jonls/redshift/issues/218 multiple redshift-gtk and redshift processes can run at once +https://github.com/jonls/redshift/issues/219 Linux Mint Xfce 17.1: redshift-gtk does not show in panel +https://github.com/jonls/redshift/issues/222 redshift fails to run on startup or launch from script +https://github.com/jonls/redshift/issues/223 add name of program to info window +https://github.com/jonls/redshift/issues/226 Redshift exits if no provider is found (no internet connection) +https://github.com/jonls/redshift/issues/232 Windows 7 - redshift.exe doesn't close +https://github.com/jonls/redshift/issues/235 The print option does not tell if redshift is active or not. +https://github.com/jonls/redshift/issues/242 Is it possible to redshift 2 out of 3 CRTCs? +https://github.com/jonls/redshift/issues/248 changing temperature in manual mode not working? +https://github.com/jonls/redshift/issues/251 Suggestion: configurable fallbacks +https://github.com/jonls/redshift/issues/253 It doesn't kill the process after I logout. +https://github.com/jonls/redshift/issues/254 Weird unstability issue +https://github.com/jonls/redshift/issues/259 Redshift can be executed and run twice +https://github.com/jonls/redshift/issues/265 redshift-gtk segfault when using systemd enabled +https://github.com/jonls/redshift/issues/269 Ubuntu version consumes too much cpu +https://github.com/jonls/redshift/issues/270 Disable smooth day and night transition in the config file not working +https://github.com/jonls/redshift/issues/273 Unable to autostart redshift via services (Arch Linux) +https://github.com/jonls/redshift/issues/286 Tray icon and checkmarks missing +https://github.com/jonls/redshift/issues/291 Proposal: remove gamma option +https://github.com/jonls/redshift/issues/302 Redshift closes when connecting a monitor +https://github.com/jonls/redshift/issues/303 No GLSL Back-end +https://github.com/jonls/redshift/issues/306 Redshift does not adjust the display if a negative longitude and a "-t DAY:NIGHT" argument are given. +https://github.com/jonls/redshift/issues/309 Allow ICC profile as parameter +https://github.com/jonls/redshift/issues/310 Option to preserve gamma corrections is not properly documented +https://github.com/jonls/redshift/issues/316 kde + 32gb ram + haswell igpu = flicker +https://github.com/jonls/redshift/issues/318 Unable to connect to GeoClue. Unable to get location from provider. +https://github.com/jonls/redshift/issues/323 Using DRM, console goes black after redshift exits +https://github.com/jonls/redshift/issues/324 Add settings window and open it on redshift-gtk first start +https://github.com/jonls/redshift/issues/333 Redshift fails on startup +https://github.com/jonls/redshift/issues/336 redshift-gtk won't open; redshift won't adjust color temperature throughout the day +https://github.com/jonls/redshift/issues/337 No support for multiple monitors on OS X +https://github.com/jonls/redshift/issues/347 Support Wingpanel API +https://github.com/jonls/redshift/issues/348 Add fallback location to redshift.conf +https://github.com/jonls/redshift/issues/360 Redshift seems to make other apps unclickable in Ubuntu 16.04 Unity 7 +https://github.com/jonls/redshift/issues/372 Show the hours Redshift changes the temperature change +https://github.com/jonls/redshift/issues/385 Patch: fix broken temperature setting on Quartz +https://github.com/jonls/redshift/issues/389 Preserve option not working properly on Gnome 3.22 +https://github.com/jonls/redshift/issues/393 cache location information so redshift-gtk can be comfortably used with unstable internet connections +https://github.com/jonls/redshift/issues/395 redshift-gtk: add an option to set color temperature manually +https://github.com/jonls/redshift/issues/396 redshift-gtk: add an option to set default location (lat, lng) to use if no internet connection is available +https://github.com/jonls/redshift/issues/408 gtk-redshift autostart works, but with error prompt +https://github.com/jonls/redshift/issues/416 allow updating location from redshift-gtk +https://github.com/jonls/redshift/issues/424 Invoking redshift-gtk from terminal triggers an error message when terminal window is closed +https://github.com/jonls/redshift/issues/436 Adjust backlight of external monitors +https://github.com/jonls/redshift/issues/437 How to autostart redshift-gtk in a disabled state? +https://github.com/jonls/redshift/issues/444 Redshift prevents computer from suspending automatically +https://github.com/jonls/redshift/issues/472 Configure: syntax error near unexpected token `DRM' +https://github.com/jonls/redshift/issues/473 Can't configure Redshift with terminal +https://github.com/jonls/redshift/issues/495 Why are screens dimmed incrementally then enlightend back to initial brightness? +https://github.com/jonls/redshift/issues/496 redshift=gtk coredump on logout +https://github.com/jonls/redshift/issues/501 Icons Not Appearing On XFCE +https://github.com/jonls/redshift/issues/516 redshift-gtk consumes 100% CPU if denied geoclue (or cannot find geoclue?) +https://github.com/jonls/redshift/issues/519 f.lux style presets +https://github.com/jonls/redshift/issues/521 Disable for fullscreen apps +https://github.com/jonls/redshift/issues/525 UI to configure time +https://github.com/jonls/redshift/issues/526 Screen temperature doesn't adjust until suspend-resume cycle +https://github.com/jonls/redshift/issues/548 Pause when fullscreen +https://github.com/jonls/redshift/issues/551 [Feature request] Add control of keyboard backlight +https://github.com/jonls/redshift/issues/552 [GUI][Feature request] Multiple modes/times for intensity +https://github.com/jonls/redshift/issues/561 Not open with this error +https://github.com/jonls/redshift/issues/569 Redshift 1.10/nightly broken with Windows 10 Creators Update +https://github.com/jonls/redshift/issues/577 Failed to run Redshift due to geoclue2 on boot but works otherwise +https://github.com/jonls/redshift/issues/591 Redshift GNOME location services +https://github.com/jonls/redshift/issues/597 Show default values in help output +https://github.com/jonls/redshift/issues/604 add cli option to enable/disable redshift +https://github.com/jonls/redshift/issues/624 Advance/Override +https://github.com/jonls/redshift/issues/629 add option to switch between profiles +https://github.com/jonls/redshift/issues/667 Create a GUI Slider for the brightness and gamma controls +https://github.com/jonls/redshift/issues/671 Default color temperature changed - Project description on website should be updated. +https://github.com/jonls/redshift/issues/676 Detect X2Go sessions to prevent displaying error +https://github.com/jonls/redshift/issues/685 allow redshift to continue even after geoclue failure +https://github.com/jonls/redshift/issues/686 Can we somehow prevent redshift-gtk.desktop from being added to ~/.config/autostart ? +https://github.com/jonls/redshift/issues/690 "stdin" manual provider +https://github.com/jonls/redshift/issues/694 Can't set up manual location, it says there's a malformed argument +https://github.com/jonls/redshift/issues/696 Redshift does not autostart via applet +https://github.com/jonls/redshift/issues/698 Failing on startup (Interrupted system call) +https://github.com/jonls/redshift/issues/703 allow to set brightness as default tray action +https://github.com/jonls/redshift/issues/706 Autostart: Redshift runs twice +https://github.com/jonls/redshift/issues/707 Add hook for color temperature changes +https://github.com/jonls/redshift/issues/708 Apparmor profile blocks config file if XDG_CONFIG_HOME is set +https://github.com/jonls/redshift/issues/712 it doesn't work in dell optiplex 3060m(only has intel gpu) +https://github.com/jonls/redshift/issues/713 Not working on 3rd plug n play screen in Linux Mint 19.1 +https://github.com/jonls/redshift/issues/715 Prefix messages with "redshift:" +https://github.com/jonls/redshift/issues/716 GeoClue2 needs a fallback +https://github.com/jonls/redshift/issues/721 Compilation in MSYS2 / MinGW32 fails: undefined reference to `localtime_r' +https://github.com/jonls/redshift/issues/722 Start redshift(-gtk) disabled +https://github.com/jonls/redshift/issues/723 Tray icon disappeared [still unsolved, please look – new information!] +https://github.com/jonls/redshift/issues/725 Mouse cursor busy ~ 25 seg (Linux Mint 19.1 Tessa Xfce) +https://github.com/jonls/redshift/issues/727 redshift autostarts without known cause and keeps respawning when killed +https://github.com/jonls/redshift/issues/733 json output? +https://github.com/jonls/redshift/issues/735 redshift black screens Ubuntu 18.04.3 on startup +https://github.com/jonls/redshift/issues/737 Not working on external monitors (ubuntu 18.04 with i3wm) +https://github.com/jonls/redshift/issues/741 WINGDI not working with extend screen settings in win 10 version 1903 os build 18362.418 +https://github.com/jonls/redshift/issues/745 Unknown location provider `geoclue' +https://github.com/jonls/redshift/issues/746 Redshift restarts when switching to an i3 workspace with a java application +https://github.com/jonls/redshift/issues/747 How do i remove the day/time period colors and enable/disable redshift manual? +https://github.com/jonls/redshift/issues/750 Supporting multiple time periods +https://github.com/jonls/redshift/issues/756 Add a way to check whether redshift is currently enabled and add a way to disable/enable +https://github.com/jonls/redshift/issues/758 failed (Result: start-limit-hit) +https://github.com/jonls/redshift/issues/759 Enabling monitor requires loading its gamma ramps, but Redshift resets them +https://github.com/jonls/redshift/issues/764 Memory Leak detected on Linux, both with version 1.10 and latest version 1.12 +https://github.com/jonls/redshift/issues/767 per output settings +https://github.com/jonls/redshift/issues/768 Add application whitelisting. +https://github.com/jonls/redshift/issues/771 Remove before midnight restriction on custom dusk-time +https://github.com/jonls/redshift/issues/773 [Feature Request] +https://github.com/jonls/redshift/issues/774 Changing brightness of a running instance +https://github.com/jonls/redshift/issues/779 Redshift Refuses to Change From Default +https://github.com/jonls/redshift/issues/783 Allow icon click to toggle redshift when AppIndicator3 is used +https://github.com/jonls/redshift/issues/784 Redshift-gtk icon is blank +https://github.com/jonls/redshift/issues/785 request: a cheap way to check if redshift is active +https://github.com/jonls/redshift/issues/789 Redshift uses the deleted file /memfd:pulseaudio +https://github.com/jonls/redshift/issues/790 Unable to install +https://github.com/jonls/redshift/issues/792 [Feature Request] Additional tray menu options for custom colors and suspend/disable +https://github.com/jonls/redshift/issues/793 running redshift on dedian returns a “Segmentation fault” +https://github.com/jonls/redshift/issues/794 Redshift Behaves like a Virus. +https://github.com/jonls/redshift/issues/795 explain default options and provide more details +https://github.com/jonls/redshift/issues/798 Fail to make install on Debian +https://github.com/jonls/redshift/issues/804 [Question] win 10 autostart server +https://github.com/jonls/redshift/issues/805 On a wired connection geoclue is unable to determine current location +https://github.com/jonls/redshift/issues/807 hooks are not executed on return from screen lock +https://github.com/jonls/redshift/issues/809 Allow to run without geoservices +https://github.com/jonls/redshift/issues/810 With manually specified lat/long redshift toggles between day and night +https://github.com/jonls/redshift/issues/813 Start Redshift on ubuntu HIRSUTE +https://github.com/jonls/redshift/issues/814 Improving configuration management (bachelor thesis) +https://github.com/jonls/redshift/issues/815 Robustness improvement suggestion +https://github.com/jonls/redshift/issues/816 Allow forcing of night mode or night color temperature +https://github.com/jonls/redshift/issues/818 Multiple processes for Redshift are running in the background +https://github.com/jonls/redshift/issues/820 Redshift not reading the config file +https://github.com/jonls/redshift/issues/822 redshift-gtk: tray icon/widget menu option: Reset, Force Day, Force Night +https://github.com/jonls/redshift/issues/826 info window crash if closed by "x" or [Esc] +https://github.com/jonls/redshift/issues/827 Three Stage shift +https://github.com/jonls/redshift/issues/830 redshift Unable to start GeoClue client +https://github.com/jonls/redshift/issues/831 Redshift doesn't close +https://github.com/jonls/redshift/issues/834 2 Redshift icons in the notification bar +https://github.com/jonls/redshift/issues/839 Allow hooks to transition smoothly +https://github.com/jonls/redshift/issues/841 Add intermediate temperature mode / value +https://github.com/jonls/redshift/issues/842 Cannot import _gi [circular dependency error when running redshift gt ] +https://github.com/jonls/redshift/issues/845 wrong path for .conf in README +https://github.com/jonls/redshift/issues/846 "Partitial time-configuration not supported". But I'd like that! +https://github.com/jonls/redshift/issues/848 installed from brew, does not work +https://github.com/jonls/redshift/issues/849 Windows blinking / flickering of "classic" Windows menus +https://github.com/jonls/redshift/issues/852 Redshift crashes when toggling inhibit while receiving the initial location +https://github.com/jonls/redshift/issues/853 Add a status icon that signals that redshift-gtk is currently waiting for the initial location +https://github.com/jonls/redshift/issues/856 Please, add a slider +https://github.com/jonls/redshift/issues/857 xbacklight: unrecognized argument '-list' +https://github.com/jonls/redshift/issues/859 Make Redshift ignore temp-day and preserve monitor settings during the day +https://github.com/jonls/redshift/issues/862 (redshift-gtk:6420): Gdk-CRITICAL +https://github.com/jonls/redshift/issues/863 randr value -1 error +https://github.com/jonls/redshift/issues/867 Make Redshift remember the last discovered location at startup +https://github.com/jonls/redshift/issues/868 [Feature Request] Separate Monitor Control +https://github.com/jonls/redshift/issues/869 clarify documentation/configuration/sample to configure times better? +https://github.com/jonls/redshift/issues/870 redshift-gtk doesn't read conf files at log-in +https://github.com/jonls/redshift/issues/877 symbolic link problem with configuration file +https://github.com/jonls/redshift/issues/878 erroneous documentation about configuration file +https://github.com/jonls/redshift/issues/880 "Unable to set gamma ramps. Temperature adjustment failed." in win10 +https://github.com/jonls/redshift/issues/882 It is too easy to end up with multiple, and indeed conflicting, instances. (A documentation problem?) +https://github.com/jonls/redshift/issues/885 Toggle day and night modes in redshift +https://github.com/jonls/redshift/issues/887 Error!!!, no more methods to try +https://github.com/jonls/redshift/issues/891 Is it working ? I can't tell. +https://github.com/jonls/redshift/issues/892 Show dusk/dawn times when hovering mouse over icon +https://github.com/jonls/redshift/issues/894 os_create_anonymous_file: Invalid argument (on Raspberry Pi OS Lite) +https://github.com/jonls/redshift/issues/895 Redshift GTK no longer connecting to location provider +https://github.com/jonls/redshift/issues/898 Apparmor denies access to amdgpu binaries in default profile under Linux Mint 21.3 +https://github.com/jonls/redshift/issues/899 Its possible to set the day and night based on time instead geoloc.? like setting: day-time: 6:00 or 6:00AM +https://github.com/jonls/redshift/issues/903 Proposal for location detection using speedtest-cli method + +https://bugs.launchpad.net/redshift + + +CONFIRMED ISSUES +[BUG] https://github.com/jonls/redshift/issues/854 Version 1.11 works, 1.12 broken +[GTK] https://github.com/jonls/redshift/issues/256 Redshift with Bumblebee? + +FEATURE REQUESTIONS +https://github.com/jonls/redshift/issues/249 Feature request: intensity + +Document signals in man page diff --git a/bootstrap b/bootstrap deleted file mode 100755 index 0599cf5..0000000 --- a/bootstrap +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -# change to root directory -cd $(dirname "$0") - -autopoint --force && \ - AUTOPOINT="intltoolize --automake --copy" autoreconf --force --install --verbose diff --git a/configure.ac b/configure.ac deleted file mode 100644 index 5659776..0000000 --- a/configure.ac +++ /dev/null @@ -1,381 +0,0 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. - -AC_PREREQ([2.69]) -AC_INIT([redshift], [1.10], [https://github.com/jonls/redshift/issues]) -AC_CONFIG_SRCDIR([src/redshift.c]) -AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz]) - -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) - -# Checks for programs. -AC_PROG_CC_C99 -AC_PROG_LIBTOOL -AC_PROG_OBJC # For OSX support modules -AC_LANG([C]) - -AC_PROG_INTLTOOL([0.50]) - -# Test whether Objective C compiler works -AC_MSG_CHECKING([whether Objective C compiler works]) -AC_LANG_PUSH([Objective C]) -AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [ - AC_MSG_RESULT([yes]) - have_objc_compiler=yes -], [ - AC_MSG_RESULT([no]) - have_objc_compiler=no -]) -AC_LANG_POP([Objective C]) - -# Checks for libraries. -AM_GNU_GETTEXT_VERSION([0.17]) -AM_GNU_GETTEXT([external]) - -GETTEXT_PACKAGE=redshift -AC_SUBST(GETTEXT_PACKAGE) -AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Package name for gettext]) - - -PKG_CHECK_MODULES([DRM], [libdrm], [have_drm=yes], [have_drm=no]) - -PKG_CHECK_MODULES([X11], [x11], [have_x11=yes], [have_x11=no]) -PKG_CHECK_MODULES([XF86VM], [xxf86vm], [have_xf86vm=yes], [have_xf86vm=no]) -PKG_CHECK_MODULES([XCB], [xcb], [have_xcb=yes], [have_xcb=no]) -PKG_CHECK_MODULES([XCB_RANDR], [xcb-randr], - [have_xcb_randr=yes], [have_xcb_randr=no]) - -PKG_CHECK_MODULES([GLIB], [glib-2.0 gobject-2.0], [have_glib=yes], [have_glib=no]) -PKG_CHECK_MODULES([GEOCLUE], [geoclue], [have_geoclue=yes], [have_geoclue=no]) -PKG_CHECK_MODULES([GEOCLUE2], [glib-2.0 gio-2.0 >= 2.26], [have_geoclue2=yes], [have_geoclue2=no]) - -# OSX headers -AC_CHECK_HEADER([ApplicationServices/ApplicationServices.h], [have_appserv_h=yes], [have_appserv_h=no]) - -# CoreLocation.h is an Objective C header. Only test if -# Objective C compiler works. AC_CHECK_HEADER does not -# appear to work if the Ojective C compiler is not -# available so we need a custom test. -AC_MSG_CHECKING([whether CoreLocation/CoreLocation.h is usable]) -AS_IF([test "x$have_objc_compiler" = xyes], [ - AC_LANG_PUSH([Objective C]) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#import <CoreLocation/CoreLocation.h>]],[[]])], [ - AC_MSG_RESULT([yes]) - have_corelocation_h=yes - ], [ - AC_MSG_RESULT([no]) - have_corelocation_h=no - ]) - AC_LANG_POP([Objective C]) -], [ - AC_MSG_RESULT([no Objective C compiler available]) - have_corelocation_h=no -]) - -# Windows header -AC_CHECK_HEADER([windows.h], [have_windows_h=yes], [have_windows_h=no]) - -# Check for Python -AM_PATH_PYTHON([3.2], [have_python=yes], [have_python=no]) - -# Check DRM method -AC_MSG_CHECKING([whether to enable DRM method]) -AC_ARG_ENABLE([drm], [AC_HELP_STRING([--enable-drm], - [enable DRM method])], - [enable_drm=$enableval],[enable_drm=maybe]) -AS_IF([test "x$enable_drm" != xno], [ - AS_IF([test $have_drm = yes], [ - AC_DEFINE([ENABLE_DRM], 1, - [Define to 1 to enable DRM method]) - AC_MSG_RESULT([yes]) - enable_drm=yes - ], [ - AC_MSG_RESULT([missing dependencies]) - AS_IF([test "x$enable_drm" = xyes], [ - AC_MSG_ERROR([missing dependencies for DRM method]) - ]) - enable_drm=no - ]) -], [ - AC_MSG_RESULT([no]) - enable_drm=no -]) -AM_CONDITIONAL([ENABLE_DRM], [test "x$enable_drm" = xyes]) - -# Check RANDR method -AC_MSG_CHECKING([whether to enable RANDR method]) -AC_ARG_ENABLE([randr], [AC_HELP_STRING([--enable-randr], - [enable RANDR method])], - [enable_randr=$enableval],[enable_randr=maybe]) -AS_IF([test "x$enable_randr" != xno], [ - AS_IF([test $have_xcb = yes -a $have_xcb_randr = yes], [ - AC_DEFINE([ENABLE_RANDR], 1, - [Define to 1 to enable RANDR method]) - AC_MSG_RESULT([yes]) - enable_randr=yes - ], [ - AC_MSG_RESULT([missing dependencies]) - AS_IF([test "x$enable_randr" = xyes], [ - AC_MSG_ERROR([missing dependencies for RANDR method]) - ]) - enable_randr=no - ]) -], [ - AC_MSG_RESULT([no]) - enable_randr=no -]) -AM_CONDITIONAL([ENABLE_RANDR], [test "x$enable_randr" = xyes]) - -# Check VidMode method -AC_MSG_CHECKING([whether to enable VidMode method]) -AC_ARG_ENABLE([vidmode], [AC_HELP_STRING([--enable-vidmode], - [enable VidMode method])], - [enable_vidmode=$enableval],[enable_vidmode=maybe]) -AS_IF([test "x$enable_vidmode" != xno], [ - AS_IF([test $have_x11 = yes -a $have_xf86vm = yes], [ - AC_DEFINE([ENABLE_VIDMODE], 1, - [Define to 1 to enable VidMode method]) - AC_MSG_RESULT([yes]) - enable_vidmode=yes - ], [ - AC_MSG_RESULT([missing dependencies]) - AS_IF([test "x$enable_vidmode" = xyes], [ - AC_MSG_ERROR([missing dependencies for VidMode method]) - ]) - enable_vidmode=no - ]) -], [ - AC_MSG_RESULT([no]) - enable_vidmode=no -]) -AM_CONDITIONAL([ENABLE_VIDMODE], [test "x$enable_vidmode" = xyes]) - -# Check Quartz (OSX) method -AC_MSG_CHECKING([whether to enable Quartz method]) -AC_ARG_ENABLE([quartz], [AC_HELP_STRING([--enable-quartz], - [enable Quartz (OSX) method])], - [enable_quartz=$enableval],[enable_quartz=maybe]) -AS_IF([test "x$enable_quartz" != xno], [ - AS_IF([test $have_appserv_h = yes], [ - QUARTZ_CFLAGS="" - QUARTZ_LIBS="-framework ApplicationServices" - AC_DEFINE([ENABLE_QUARTZ], 1, - [Define to 1 to enable Quartz method]) - AC_MSG_RESULT([yes]) - enable_quartz=yes - ], [ - AC_MSG_RESULT([missing dependencies]) - AS_IF([test "x$enable_quartz" = xyes], [ - AC_MSG_ERROR([missing Quartz headers]) - ]) - enable_quartz=no - ]) -], [ - AC_MSG_RESULT([no]) - enable_quartz=no -]) -AM_CONDITIONAL([ENABLE_QUARTZ], [test "x$enable_quartz" = xyes]) -AC_SUBST([QUARTZ_CFLAGS]) -AC_SUBST([QUARTZ_LIBS]) - -# Check Windows GDI method -AC_MSG_CHECKING([whether to enable WinGDI method]) -AC_ARG_ENABLE([wingdi], [AC_HELP_STRING([--enable-wingdi], - [enable WinGDI method])], - [enable_wingdi=$enableval],[enable_wingdi=maybe]) -AS_IF([test "x$enable_wingdi" != xno], [ - AS_IF([test $have_windows_h = yes], [ - AC_DEFINE([ENABLE_WINGDI], 1, - [Define to 1 to enable WinGDI method]) - AC_MSG_RESULT([yes]) - enable_wingdi=yes - ], [ - AC_MSG_RESULT([missing dependencies]) - AS_IF([test "x$enable_wingdi" = xyes], [ - AC_MSG_ERROR([missing Windows API headers for WinGDI method]) - ]) - enable_wingdi=no - ]) -], [ - AC_MSG_RESULT([no]) - enable_wingdi=no -]) -AM_CONDITIONAL([ENABLE_WINGDI], [test "x$enable_wingdi" = xyes]) - - -# Check Geoclue location provider -AC_MSG_CHECKING([whether to enable Geoclue location provider]) -AC_ARG_ENABLE([geoclue], [AC_HELP_STRING([--enable-geoclue], - [enable Geoclue location provider])], - [enable_geoclue=$enableval],[enable_geoclue=maybe]) -AS_IF([test "x$enable_geoclue" != xno], [ - AS_IF([test "x$have_geoclue" = xyes -a "x$have_glib" = xyes], [ - AC_DEFINE([ENABLE_GEOCLUE], 1, - [Define to 1 to enable Geoclue location provider]) - AC_MSG_RESULT([yes]) - enable_geoclue=yes - ], [ - AC_MSG_RESULT([missing dependencies]) - AS_IF([test "x$enable_geoclue" = xyes], [ - AC_MSG_ERROR([missing dependencies for Geoclue location provider]) - ]) - enable_geoclue=no - ]) -], [ - AC_MSG_RESULT([no]) - enable_geoclue=no -]) -AM_CONDITIONAL([ENABLE_GEOCLUE], [test "x$enable_geoclue" = xyes]) - -# Check Geoclue2 location provider -AC_MSG_CHECKING([whether to enable Geoclue2 location provider]) -AC_ARG_ENABLE([geoclue2], [AC_HELP_STRING([--enable-geoclue2], - [enable Geoclue2 location provider])], - [enable_geoclue2=$enableval],[enable_geoclue2=maybe]) -AS_IF([test "x$enable_geoclue2" != xno], [ - AS_IF([test "x$have_geoclue2" = xyes], [ - AC_DEFINE([ENABLE_GEOCLUE2], 1, - [Define to 1 to enable Geoclue2 location provider]) - AC_MSG_RESULT([yes]) - enable_geoclue2=yes - ], [ - AC_MSG_RESULT([missing dependencies]) - AS_IF([test "x$enable_geoclue2" = xyes], [ - AC_MSG_ERROR([missing dependencies for Geoclue2 location provider]) - ]) - enable_geoclue2=no - ]) -], [ - AC_MSG_RESULT([no]) - enable_geoclue2=no -]) -AM_CONDITIONAL([ENABLE_GEOCLUE2], [test "x$enable_geoclue2" = xyes]) - -# Check CoreLocation (OSX) provider -AC_MSG_CHECKING([whether to enable CoreLocation method]) -AC_ARG_ENABLE([corelocation], [AC_HELP_STRING([--enable-corelocation], - [enable CoreLocation (OSX) provider])], - [enable_corelocation=$enableval],[enable_corelocation=maybe]) -AS_IF([test "x$enable_corelocation" != xno], [ - AS_IF([test "x$have_corelocation_h" = xyes], [ - CORELOCATION_CFLAGS="" - CORELOCATION_LIBS="-framework Foundation -framework CoreLocation" - AC_DEFINE([ENABLE_CORELOCATION], 1, - [Define to 1 to enable CoreLocation provider]) - AC_MSG_RESULT([yes]) - enable_corelocation=yes - ], [ - AC_MSG_RESULT([missing dependencies]) - AS_IF([test "x$enable_corelocation" = xyes], [ - AC_MSG_ERROR([missing CoreLocation headers]) - ]) - enable_corelocation=no - ]) -], [ - AC_MSG_RESULT([no]) - enable_corelocation=no -]) -AM_CONDITIONAL([ENABLE_CORELOCATION], [test "x$enable_corelocation" = xyes]) -AC_SUBST([CORELOCATION_CFLAGS]) -AC_SUBST([CORELOCATION_LIBS]) - - -# Check for GUI status icon -AC_MSG_CHECKING([whether to enable GUI status icon]) -AC_ARG_ENABLE([gui], [AC_HELP_STRING([--enable-gui], - [enable GUI status icon])], - [enable_gui=$enableval],[enable_gui=maybe]) -AS_IF([test "x$enable_gui" != xno], [ - AS_IF([test $have_python = yes], [ - AC_MSG_RESULT([yes]) - enable_gui=yes - ], [ - AC_MSG_RESULT([missing dependencies]) - AS_IF([test "x$enable_gui" = xyes], [ - AC_MSG_ERROR([GUI status icon script requires Python]) - ]) - enable_gui=no - ]) -], [ - AC_MSG_RESULT([no]) - enable_gui=no -]) -AM_CONDITIONAL([ENABLE_GUI], [test "x$enable_gui" != xno]) - -# Check for Ubuntu icons -AC_MSG_CHECKING([whether to enable Ubuntu icons]) -AC_ARG_ENABLE([ubuntu], [AC_HELP_STRING([--enable-ubuntu], - [enable Ubuntu icons])], - [enable_ubuntu=$enableval],[enable_ubuntu=no]) -AS_IF([test "x$enable_ubuntu" != xno], [ - AC_MSG_RESULT([yes]) -], [ - AC_MSG_RESULT([no]) -]) -AM_CONDITIONAL([ENABLE_UBUNTU], [test "x$enable_ubuntu" != xno]) - - -# Check for systemd -PKG_PROG_PKG_CONFIG -AC_MSG_CHECKING([Directory to install systemd user unit files]) -AC_ARG_WITH([systemduserunitdir], - [AS_HELP_STRING([--with-systemduserunitdir=<dir>], - [Directory for systemd user unit files])], - [], [with_systemduserunitdir=$($PKG_CONFIG --variable=systemduserunitdir systemd)]) -AS_IF([test -n "$with_systemduserunitdir" -a "x$with_systemduserunitdir" != xno], [ - AC_SUBST([systemduserunitdir], [$with_systemduserunitdir]) - AC_MSG_RESULT([$systemduserunitdir]) - enable_systemd=yes -], [ - AC_MSG_RESULT([not enabled]) - enable_systemd=no -]) -AM_CONDITIONAL([ENABLE_SYSTEMD], [test "x$enable_systemd" != xno]) - - -# Checks for header files. -AC_CHECK_HEADERS([locale.h stdint.h stdlib.h string.h unistd.h signal.h]) - -# Checks for typedefs, structures, and compiler characteristics. -AC_TYPE_UINT16_T - -# Checks for library functions. -AC_SEARCH_LIBS([clock_gettime], [rt]) -AC_SEARCH_LIBS([floor], [m]) -AC_CHECK_FUNCS([setlocale strchr floor pow]) - -AC_CONFIG_FILES([ - Makefile - po/Makefile.in - src/Makefile - src/redshift-gtk/Makefile -]) -AC_OUTPUT - - -echo " - $PACKAGE_NAME $VERSION - - prefix: ${prefix} - compiler: ${CC} - cflags: ${CFLAGS} - ldflags: ${LDFLAGS} - - Adjustment methods: - DRM: ${enable_drm} - RANDR: ${enable_randr} - VidMode: ${enable_vidmode} - Quartz (OSX): ${enable_quartz} - WinGDI (Windows): ${enable_wingdi} - - Location providers: - Geoclue: ${enable_geoclue} - Geoclue2: ${enable_geoclue2} - CoreLocation (OSX) ${enable_corelocation} - - GUI: ${enable_gui} - Ubuntu icons: ${enable_ubuntu} - systemd units: ${enable_systemd} ${systemduserunitdir} -" diff --git a/contrib/macos/launchd/dk.jonls.redshift.plist b/contrib/macos/launchd/dk.jonls.redshift.plist new file mode 100644 index 0000000..1e0562b --- /dev/null +++ b/contrib/macos/launchd/dk.jonls.redshift.plist @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>Label</key> + <string>dk.jonls.redshift</string> + + <key>ProgramArguments</key> + <array> + <string>/usr/local/bin/redshift</string> + </array> + + <key>Nice</key> + <integer>20</integer> + + <key>RunAtLoad</key> + <true/> + + <key>KeepAlive</key> + <true/> +</dict> +</plist> diff --git a/contrib/redshift.spec b/contrib/redshift.spec deleted file mode 100644 index cfed640..0000000 --- a/contrib/redshift.spec +++ /dev/null @@ -1,139 +0,0 @@ -Name: redshift -Version: 1.10 -Release: 1%{dist} -Summary: Adjusts the color temperature of your screen according to time of day -Group: Applications/System -License: GPLv3+ -URL: http://jonls.dk/redshift/ -Source0: http://launchpad.net/redshift/trunk/%{version}/+download/%{name}-%{version}.tar.xz -BuildRequires: gettext-devel -BuildRequires: libX11-devel -BuildRequires: libXxf86vm-devel -BuildRequires: libxcb-devel -BuildRequires: glib2-devel -BuildRequires: systemd - -%description -Redshift adjusts the color temperature of your screen according to your -surroundings. This may help your eyes hurt less if you are working in -front of the screen at night. - -The color temperature is set according to the position of the sun. A -different color temperature is set during night and daytime. During -twilight and early morning, the color temperature transitions smoothly -from night to daytime temperature to allow your eyes to slowly -adapt. - -This package provides the base program. - -%package -n %{name}-gtk -Summary: GTK integration for Redshift -Group: Applications/System -BuildRequires: python3-devel >= 3.2 -BuildRequires: desktop-file-utils -Requires: python3-gobject -Requires: python3-pyxdg -Requires: %{name} = %{version}-%{release} -Obsoletes: gtk-redshift < %{version}-%{release} - -%description -n %{name}-gtk -This package provides GTK integration for Redshift, a screen color -temperature adjustment program. - -%prep -%setup -q - -%build -%configure --enable-gui --disable-geoclue --enable-geoclue2 --enable-randr --enable-vidmode --with-systemduserunitdir=%{_userunitdir} -make %{?_smp_mflags} V=1 - -%install -rm -rf %{buildroot} -make DESTDIR=%{buildroot} install INSTALL="install -p" -%find_lang %{name} -desktop-file-validate %{buildroot}%{_datadir}/applications/redshift-gtk.desktop - -%post -n %{name}-gtk -touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : - -%postun -n %{name}-gtk -if [ $1 -eq 0 ] ; then - touch --no-create %{_datadir}/icons/hicolor &>/dev/null - gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : -fi - -%posttrans -n %{name}-gtk -gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - -%files -f %{name}.lang -%defattr(-,root,root,-) -%doc COPYING NEWS README README-colorramp -%{_bindir}/redshift -%{_mandir}/man1/* -%{_userunitdir}/* - -%files -n %{name}-gtk -%defattr(-,root,root,-) -%{_bindir}/redshift-gtk -%{python3_sitelib}/redshift_gtk/ -%{_datadir}/icons/hicolor/scalable/apps/redshift*.svg -%{_datadir}/applications/redshift-gtk.desktop -%{_datadir}/appdata/redshift-gtk.appdata.xml - -%changelog -* Sun Jan 4 2015 Jon Lund Steffensen <jonlst@gmail.com> - 1.10-1 -- Update to 1.10 - -* Sun Apr 6 2014 Jon Lund Steffensen <jonlst@gmail.com> - 1.9-1 -- Update to 1.9 - -* Wed Dec 11 2013 Jon Lund Steffensen <jonlst@gmail.com> - 1.8-1 -- Update to 1.8 - -* Sun May 12 2013 Milos Komarcevic <kmilos@gmail.com> - 1.7-5 -- Run autoreconf to support aarch64 (#926436) -- Backport fix for geoclue client check (#954014) - -* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Sat Jul 9 2011 Milos Komarcevic <kmilos@gmail.com> - 1.7-1 -- Update to 1.7 -- Add geoclue BuildRequires -- Change default geoclue provider from Ubuntu GeoIP to Hostip -- Remove manual Ubuntu icons uninstall - -* Mon Feb 28 2011 Milos Komarcevic <kmilos@gmail.com> - 1.6-3 -- Fix for clock applet detection (#661145) -- Require pyxdg explicitly (#675804) - -* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sat Nov 13 2010 Milos Komarcevic <kmilos@gmail.com> - 1.6-1 -- Update to 1.6 -- Remove BuildRoot tag and clean section - -* Thu Aug 26 2010 Milos Komarcevic <kmilos@gmail.com> - 1.5-1 -- Update to 1.5 -- Install desktop file - -* Mon Jul 26 2010 Milos Komarcevic <kmilos@gmail.com> - 1.4.1-2 -- License updated to GPLv3+ -- Added python macros to enable building on F12 and EPEL5 -- Specific python version BR -- Subpackage requires full base package version -- Increased build log verbosity -- Preserve timestamps on install - -* Thu Jun 17 2010 Milos Komarcevic <kmilos@gmail.com> - 1.4.1-1 -- Update to 1.4.1 - -* Thu Jun 10 2010 Milos Komarcevic <kmilos@gmail.com> - 1.3-1 -- Initial packaging diff --git a/data/apparmor/usr.bin.redshift.in b/data/apparmor/usr.bin.redshift.in new file mode 100644 index 0000000..dd9d9ae --- /dev/null +++ b/data/apparmor/usr.bin.redshift.in @@ -0,0 +1,42 @@ +# ------------------------------------------------------------------ +# +# Copyright (C) 2015 Cameron Norman <camerontnorman@gmail.com> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ------------------------------------------------------------------ + +#include <tunables/global> +@bindir@/redshift { + #include <abstractions/base> + #include <abstractions/nameservice> + #include <abstractions/dbus-strict> + #include <abstractions/X> + + dbus send + bus=system + path=/org/freedesktop/GeoClue2/Client/[0-9]*, + + dbus receive + bus=system + path=/org/freedesktop/GeoClue2/Manager, + + # Allow but log any other dbus activity + audit dbus bus=system, + + owner @{HOME}/.config/redshift/redshift.conf r, + + # Site-specific additions and overrides. See local/README for details. + #include <local/usr.bin.redshift> +} diff --git a/data/appdata/redshift-gtk.appdata.xml.in b/data/appdata/redshift-gtk.appdata.xml.in index f2f3eae..3639984 100644 --- a/data/appdata/redshift-gtk.appdata.xml.in +++ b/data/appdata/redshift-gtk.appdata.xml.in @@ -11,7 +11,7 @@ </description> <screenshots> <screenshot type="default"> - <image>http://jonls.dk/wp-content/uploads/screenshot1.png</image> + <image>http://jonls.dk/assets/screenshot1.png</image> <_caption>The Redshift information window overlaid with an example of the redness effect</_caption> </screenshot> </screenshots> diff --git a/data/applications/redshift.desktop.in b/data/applications/redshift.desktop.in new file mode 100755 index 0000000..74ca416 --- /dev/null +++ b/data/applications/redshift.desktop.in @@ -0,0 +1,11 @@ +[Desktop Entry] +Version=1.0 +_Name=Redshift +_GenericName=Color temperature adjustment +_Comment=Color temperature adjustment tool +Exec=redshift +Icon=redshift +Terminal=true +Type=Application +Categories=Utility; +NoDisplay=true diff --git a/data/systemd/redshift-gtk.service.in b/data/systemd/redshift-gtk.service.in index 4675ccf..79e6165 100644 --- a/data/systemd/redshift-gtk.service.in +++ b/data/systemd/redshift-gtk.service.in @@ -1,11 +1,11 @@ [Unit] Description=Redshift display colour temperature adjustment (GUI) Documentation=http://jonls.dk/redshift/ -After=display-manager.service +After=graphical-session.target [Service] ExecStart=@bindir@/redshift-gtk Restart=always [Install] -WantedBy=default.target +WantedBy=graphical-session.target diff --git a/data/systemd/redshift.service.in b/data/systemd/redshift.service.in index bc51514..aad31ca 100644 --- a/data/systemd/redshift.service.in +++ b/data/systemd/redshift.service.in @@ -1,11 +1,11 @@ [Unit] Description=Redshift display colour temperature adjustment Documentation=http://jonls.dk/redshift/ -After=display-manager.service +After=graphical-session.target [Service] ExecStart=@bindir@/redshift Restart=always [Install] -WantedBy=default.target +WantedBy=graphical-session.target @@ -1,11 +1,13 @@ # List of available languages ar +be bg ca cs da de el +en_GB es et eu @@ -23,8 +25,13 @@ lt nb nl pl -pt_BR pt +pt_BR +ro ru +sr sv +tr +uk zh_CN +zh_TW diff --git a/po/POTFILES.in b/po/POTFILES.in index ffaddb2..eb8b89c 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,10 +1,11 @@ # List of source files containing translatable strings data/appdata/redshift-gtk.appdata.xml.in +data/applications/redshift.desktop.in data/applications/redshift-gtk.desktop.in src/redshift.c - +src/options.c src/config-ini.c src/gamma-drm.c @@ -12,9 +13,9 @@ src/gamma-randr.c src/gamma-vidmode.c src/gamma-quartz.c src/gamma-w32gdi.c +src/gamma-coopgamma.c src/gamma-dummy.c -src/location-geoclue.c src/location-geoclue2.c src/location-corelocation.m src/location-manual.c @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" "PO-Revision-Date: 2013-11-10 10:27+0000\n" "Last-Translator: ســند <Unknown>\n" "Language-Team: Arabic <ar@li.org>\n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: ar\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -44,179 +44,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "ضبط درجة حرارة اللون بما يناسب مستوى الإضاءة في وقت محدد من اليوم\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "طرق التعديل المتاحة:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "" @@ -224,205 +128,339 @@ msgstr "" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" +msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" msgstr "" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" msgstr "" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "ضبط درجة حرارة اللون بما يناسب مستوى الإضاءة في وقت محدد من اليوم\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "طرق التعديل المتاحة:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "" @@ -435,380 +473,335 @@ msgstr "" msgid "Assignment outside section in config file.\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "" -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" diff --git a/po/be.po b/po/be.po new file mode 100644 index 0000000..82c5083 --- /dev/null +++ b/po/be.po @@ -0,0 +1,875 @@ +# Belarusian translation for redshift +# Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 +# This file is distributed under the same license as the redshift package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: redshift\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-04-05 13:24+0000\n" +"Last-Translator: Zmicer Turok <Unknown>\n" +"Language-Team: Belarusian <be@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: be\n" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 +msgid "" +"Redshift adjusts the color temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." +msgstr "" +"Redshift рэгулюе каляровую тэмпературу экрана ў адпаведнасці з асяроддзем. " +"Гэта можа дапамагчы вашым вачам, калі вы працуеце ноччу." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 +msgid "" +"The color temperature is set according to the position of the sun. A " +"different color temperature is set during night and daytime. During twilight " +"and early morning, the color temperature transitions smoothly from night to " +"daytime temperature to allow your eyes to slowly adapt." +msgstr "" +"Каляровая тэмпература прызначаецца ў адпаведнасці са становішчам сонца. " +"Розная каляровая тэмпература прызначаецца ў начны час і днём. Падчас " +"змяркання і на золку, каляровая тэмпература паступова пераходзіць ад " +"тэмпературы ночы да тэмпературы ў дзённы час, каб вашыя вочы паступова " +"прызвычаіліся." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 +msgid "" +"This program provides a status icon that allows the user to control Redshift." +msgstr "" +"У праграмы ёсць значок на прасторы апавяшчэнняў, праз які можна кіраваць " +"Redshift." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 +msgid "" +"The Redshift information window overlaid with an example of the redness " +"effect" +msgstr "Інфармацыйнае акно Redshift пакажа прыклад эфекту пачырванення" + +#: ../data/applications/redshift.desktop.in.h:1 +#: ../data/applications/redshift-gtk.desktop.in.h:1 +msgid "Redshift" +msgstr "Redshift" + +#: ../data/applications/redshift.desktop.in.h:2 +#: ../data/applications/redshift-gtk.desktop.in.h:2 +msgid "Color temperature adjustment" +msgstr "Рэгуляванне каляровай тэмпературы" + +#: ../data/applications/redshift.desktop.in.h:3 +#: ../data/applications/redshift-gtk.desktop.in.h:3 +msgid "Color temperature adjustment tool" +msgstr "Інструмент рэгулявання каляровай тэмпературы" + +#. TRANSLATORS: Name printed when period of day is unknown +#: ../src/redshift.c:135 +msgid "None" +msgstr "Няма" + +#: ../src/redshift.c:136 ../src/redshift.c:1107 +msgid "Daytime" +msgstr "Дзённы час" + +#: ../src/redshift.c:137 ../src/redshift.c:1111 +msgid "Night" +msgstr "Начны час" + +#: ../src/redshift.c:138 +msgid "Transition" +msgstr "Пераход" + +#: ../src/redshift.c:225 +#, c-format +msgid "Period: %s\n" +msgstr "Перыяд : %s\n" + +#: ../src/redshift.c:228 +#, c-format +msgid "Period: %s (%.2f%% day)\n" +msgstr "Перыяд: %s (%.2f%% дзень)\n" + +#. TRANSLATORS: Abbreviation for `north' +#: ../src/redshift.c:240 +msgid "N" +msgstr "Пнч" + +#. TRANSLATORS: Abbreviation for `south' +#: ../src/redshift.c:242 +msgid "S" +msgstr "Пдз" + +#. TRANSLATORS: Abbreviation for `east' +#: ../src/redshift.c:244 +msgid "E" +msgstr "У" + +#. TRANSLATORS: Abbreviation for `west' +#: ../src/redshift.c:246 +msgid "W" +msgstr "З" + +#. TRANSLATORS: Append degree symbols after %f if possible. +#. The string following each number is an abreviation for +#. north, source, east or west (N, S, E, W). +#: ../src/redshift.c:251 +#, c-format +msgid "Location: %.2f %s, %.2f %s\n" +msgstr "Мясцовасць: %.2f %s, %.2f %s\n" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "Памылка падчас ініцыялізацыі %s .\n" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "Не атрымалася задаць параметр %s .\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "" +"Паспрабуйце `-l %s:help' , каб атрымаць больш дакладную інфармацыю.\n" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "Не атрымалася разабраць параметр `%s'.\n" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "Не атрымалася запусціць пастаўшчыка %s.\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "Паспрабуйце `-m %s:help' каб атрымаць больш дакладную інфармацыю.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "" +"Паспрабуйце `-m %s:help' , каб атрымаць больш дакладную інфармацыю.\n" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "Не атрымалася запусціць метад рэгулявання %s.\n" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Шырата мусіць быць паміж %.1f і %.1f.\n" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Даўгата мусіць быць паміж %.1f і %.1f.\n" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "Не атрымалася прачытаць сістэмны час\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Чаканне даступнасці першапачатковага месцазнаходжання...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Не атрымалася вызначыць мясцовасць ў пастаўшчыка.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Ад пастаўшчыка атрымана хібнае месцазнахожданне.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "Каляровая тэмпература: %uK\n" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "Яркасць: %.2f\n" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Стан: %s\n" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Адключана" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Уключана" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Не атрымалася наладзіць тэмпературу\n" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"Месцазнаходжанне часова недаступна; Выкарыстоўваецца папярэдняе, пакуль " +"гэтае не стане даступна...\n" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Частковая наладка часу не падтрымліваецца!\n" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Хібная канфігурацыя часу світанку/змяркання!\n" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "Паспрабаваць пастаўшчыка мясцовасці `%s'...\n" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "Паспрабаваць наступнага пастаўшчыка...\n" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "Выкарыстоўваць пастаўшчыка `%s'.\n" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "Больш няма пастаўшчыкоў.\n" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "Высокі пераход не можа быць ніжэй, чым вышыня нізкага пераходу.\n" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "Вышыня сонца : днём вышэй %.1f, ноччу ніжэй за %.1f\n" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Тэмпература : %dK днём, %dK уначы\n" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "Тэмпература павінна быць паміж %uK і %uK.\n" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "Яркасць мусіць быць паміж %.1f і %.1f.\n" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "Яркасць: %.2f:%.2f\n" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "Значэнне гамы мусіць быць паміж %.1f і %.1f.\n" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "Гама (%s): %.3f, %.3f, %.3f\n" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "Паспрабаваць наступны рэжым...\n" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "Выкарыстоўваемы рэжым `%s'.\n" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "Больш няма рэжымаў.\n" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "Чаканне даступнасці бягучага месцазнаходжання...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "Вышыня сонца : %f\n" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "Націсніце ctrl-c, каб спыніцца...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Выкарыстоўваецца: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" +"Прызначыць каляровую тэмпературу дысплея ў залежнасці ад часу сутак.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tПаказвае гэтае паведамленне даведкі\n" +" -v\t\tПоўны вывад\n" +" -V\t\tПаказвае версію праграмы\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b DAY:NIGHT\tЯркасць экрана (ад 0,1 да 1,0)\n" +" -c FILE\tАтрымаць налады з абранага файла канфігурацыі\n" +" -g R:G:B\tДадатковая карэкцыя гамы \n" +" -l LAT:LON\tВашая дзейная мясовасць\n" +" -l PROVIDER\tАбярыце пастаўшчыка для аўтаматычнага абнаўлення мясцовасці\n" +" \t\t(Увядзіце `спіс', каб убачыць даступных пастаўшчыкоў)\n" +" -m METHOD\tМетад ужывання каляровай тэмпературы\n" +" \t\t(Увядзіце `спіс', каб убачыць даступныя метады)\n" +" -o\t\tРэжым аднаго стрэлу (карэктаваць каляровую тэмпературу аднойчы)\n" +" -O TEMP\tСамастойнае выкарыстанне рэжыму аднаго стрэлу (прызначыць " +"каляровую тэмпературу)\n" +" -p\t\tРэжым вываду (толькі параметры вываду і выхад)\n" +" -x\t\tРэжым \"скінуць\" (выдаліць карэкцыю з экрана)\n" +" -r\t\tАдключыць пераходы тэмпературы\n" +" -t DAY:NIGHT\tКаляровая тэмпературы для прызначэння днём/уначы\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"Нейтральная тэмпература %uK. Ужыванне гэтага значэння не будзе\n" +"ўплываць на каляровую тэмпературу дысплея.\n" +"Каляровая тэмпература вышэй за гэтую дае\n" +"больш сіняе святло, ніжэй за гэтую дае\n" +"больш чырвонае святло.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Прадвызначаныя значэнні:\n" +"\n" +"Тэмпература днём: %uK\n" +"Тэмпература ноччу: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Даступныя метады рэгулявання:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Прызначыць налады для раздзяляемых двукроп'ем `-m METHOD:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Паспрабуйце для дапамогі `-m METHOD:help'.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Даступныя пастаўшчыкі мясцовасці:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Прызначыць налады для раздзяляемых двукроп'ем `-l PROVIDER:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Паспрабуйце для дапамогі `-l PROVIDER:help'.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Недакладны аргумент гамы.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Паспрабуйце ключ `-h' для вываду больш дакладнай інфармацыі\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Невядомы пастаўшчык мясцовасці `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Невядомы метад рэгулявання `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Недакладны аргумент тэмпературы.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Недакладныя налады гамы.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Недакладныя налады часу світанку `%s'.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Недакладныя налады часу змяркання `%s'.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Невядомая канфігурацыя налад `%s'.\n" + +#: ../src/config-ini.c:167 +msgid "Malformed section header in config file.\n" +msgstr "Недакладны загаловак раздзела ў файле канфігурацыі\n" + +#: ../src/config-ini.c:203 +msgid "Malformed assignment in config file.\n" +msgstr "Недакладнае прызначэнне ў файле канфігурацыі.\n" + +#: ../src/config-ini.c:214 +msgid "Assignment outside section in config file.\n" +msgstr "Прызначэнне па-за раздзелам файла канфігурацыі.\n" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Не атрымалася адкрыць DRM прылады: %s\n" + +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "Не атрымалася вызначыць рэсурсы рэжыму DRM\n" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 +#, c-format +msgid "CRTC %d does not exist. " +msgstr "CRTC %d не існуе. " + +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 +#, c-format +msgid "Valid CRTCs are [0-%d].\n" +msgstr "Дзейны CRTCs - гэта [0-%d].\n" + +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 +#, c-format +msgid "Only CRTC 0 exists.\n" +msgstr "Існуе толькі CRTC 0 .\n" + +#: ../src/gamma-drm.c:159 +#, c-format +msgid "CRTC %i lost, skipping\n" +msgstr "CRTC %i не знойдзены , прамінута\n" + +#: ../src/gamma-drm.c:165 +#, c-format +msgid "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" +msgstr "" +"Немагчыма атрымаць значэнне гамы CRTC %i\n" +"відэакарты %i, не зважаючы на прыладу.\n" + +#: ../src/gamma-drm.c:178 +#, c-format +msgid "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" +msgstr "" +"У DRM не атрымалася прачытаць значэнне гамы CRTC %i\n" +"відэакарты %i, не зважаючы на прыладу.\n" + +#: ../src/gamma-drm.c:242 +msgid "Adjust gamma ramps with Direct Rendering Manager.\n" +msgstr "Наладзіць гаму з дапамогай Direct Rendering Manager\n" + +#. TRANSLATORS: DRM help output +#. left column must not be translated +#: ../src/gamma-drm.c:247 +msgid "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" +msgstr "" +" card=N\tГрафічная карта для ўжытых змен\n" +" crtc=N\tCRTC для ўжытых змен для\n" + +#: ../src/gamma-drm.c:260 +#, c-format +msgid "CRTC must be a non-negative integer\n" +msgstr "CRTC мусіць быць станоўчым цэлым лікам\n" + +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 +#, c-format +msgid "Unknown method parameter: `%s'.\n" +msgstr "Невядомы параметр метаду `%s'.\n" + +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 +#, c-format +msgid "`%s' returned error %d\n" +msgstr "`%s' вярнуўся з памылкай %d\n" + +#: ../src/gamma-randr.c:103 +#, c-format +msgid "Unsupported RANDR version (%u.%u)\n" +msgstr "Непадтрымліваемая версія RANDR (%u.%u)\n" + +#: ../src/gamma-randr.c:138 +#, c-format +msgid "Screen %i could not be found.\n" +msgstr "Хібны экран %i .\n" + +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 +#, c-format +msgid "Gamma ramp size too small: %i\n" +msgstr "Значэнне гамы занадта малое : %i\n" + +#: ../src/gamma-randr.c:277 +#, c-format +msgid "Unable to restore CRTC %i\n" +msgstr "Немагчыма аднавіць CRTC %i\n" + +#: ../src/gamma-randr.c:301 +msgid "Adjust gamma ramps with the X RANDR extension.\n" +msgstr "Наладзіць гаму з пашырэннем X RANDR.\n" + +#. TRANSLATORS: RANDR help output +#. left column must not be translated +#: ../src/gamma-randr.c:306 +msgid "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" screen=N\t\tX экран для ўжывання змен для\n" +" preserve={0,1}\tЦі мусіць быць захавана існуючая гама\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Не атрымалася прачытаць нумар экрана: `%s'.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" +"Параметр `%s` зараз уключаны; Увядзіце у тэрмінале загад `%s` для " +"выключэння.\n" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 +#, c-format +msgid "X request failed: %s\n" +msgstr "Памылка падчас запыту да X : %s\n" + +#: ../src/gamma-vidmode.c:140 +msgid "Adjust gamma ramps with the X VidMode extension.\n" +msgstr "Наладзіць гаму з пашырэннем X VidMode.\n" + +#. TRANSLATORS: VidMode help output +#. left column must not be translated +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr "" +" screen=N\t\tX экран для ўжывання змен для\n" +" crtc=N\t\tCRTC для ўжывання змен\n" +" preserve={0,1}\tЦі мусіць быць захавана існуючая гама\n" + +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 +msgid "Unable to save current gamma ramp.\n" +msgstr "Немагчыма захаваць дзейную гаму.\n" + +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Наладзіць гаму для OSX ужываючы Quartz.\n" + +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 +msgid "Unable to open device context.\n" +msgstr "Немагчыма праглядзець кантэкст прылады.\n" + +#: ../src/gamma-w32gdi.c:75 +msgid "Display device does not support gamma ramps.\n" +msgstr "Экран прылады не падтрымлівае гаму.\n" + +#: ../src/gamma-w32gdi.c:115 +msgid "Adjust gamma ramps with the Windows GDI.\n" +msgstr "Наладзіць гаму з Windows GDI.\n" + +#: ../src/gamma-w32gdi.c:153 +msgid "Unable to restore gamma ramps.\n" +msgstr "Немагчыма аднавіць гаму.\n" + +#: ../src/gamma-w32gdi.c:211 +msgid "Unable to set gamma ramps.\n" +msgstr "Немагчыма прызначыць гаму.\n" + +#: ../src/gamma-dummy.c:43 +msgid "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" +msgstr "" +"УВАГА: Ужываецца фіктыўны метад гамы! Дысплей не будзе залежаць ад гэтага " +"метаду.\n" + +#: ../src/gamma-dummy.c:60 +msgid "" +"Does not affect the display but prints the color temperature to the " +"terminal.\n" +msgstr "" +"Не ўплывае на дысплей, але ўжывае каляровую тэмпературу ў тэрмінале.\n" + +#: ../src/gamma-dummy.c:75 +#, c-format +msgid "Temperature: %i\n" +msgstr "Тэмпература: %i\n" + +#: ../src/location-geoclue2.c:59 +#, c-format +msgid "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" +msgstr "" +"GeoClue адмоўлена ў доступ да бягучага месцазнаходжання!\n" +"Пераканайцеся ў тым, што сэрвісы вызначэння месцазнаходжання ўключаны і што " +"Redshift дазволена\n" +"выкарыстоўваць іх. Наведайце https://github.com/jonls/redshift#faq для\n" +"атрымання больш дакладнай інфармацыі.\n" + +#: ../src/location-geoclue2.c:107 +#, c-format +msgid "Unable to obtain location: %s.\n" +msgstr "Не атрымалася вызначыць мясцовасць: %s.\n" + +#: ../src/location-geoclue2.c:150 +#, c-format +msgid "Unable to obtain GeoClue Manager: %s.\n" +msgstr "Немагчыма злучыцца з кіраўніком GeoClue: %s.\n" + +#: ../src/location-geoclue2.c:166 +#, c-format +msgid "Unable to obtain GeoClue client path: %s.\n" +msgstr "Немагчыма знайсці шлях да кліента GeoClue: %s.\n" + +#: ../src/location-geoclue2.c:188 +#, c-format +msgid "Unable to obtain GeoClue Client: %s.\n" +msgstr "Немагчыма злучыцца з кліентам GeoClue: %s.\n" + +#: ../src/location-geoclue2.c:229 +#, c-format +msgid "Unable to set distance threshold: %s.\n" +msgstr "Немагчыма прызначыць парог адлегласці: %s.\n" + +#: ../src/location-geoclue2.c:253 +#, c-format +msgid "Unable to start GeoClue client: %s.\n" +msgstr "Немагчыма запусціць кліент GeoClue: %s.\n" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "Не атрымалася запусціць пастаўшчыка GeoClue2!\n" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Выкарыстоўвайце мясцовасць, выяўленую пастаўшчыком GeoClue2.\n" + +#: ../src/location-corelocation.m:73 +msgid "Not authorized to obtain location from CoreLocation.\n" +msgstr "" +"Патрэбна аўтарызавацца падчас вызначэння мясцовасці ў CoreLocation.\n" + +#: ../src/location-corelocation.m:111 +#, c-format +msgid "Error obtaining location from CoreLocation: %s\n" +msgstr "Памылка падчас вызначэння мясцовасці ў CoreLocation: %s\n" + +#: ../src/location-corelocation.m:120 +msgid "Waiting for authorization to obtain location...\n" +msgstr "Чакаецца аўтарызацыя для выяўлення мясцовасці...\n" + +#: ../src/location-corelocation.m:122 +msgid "Request for location was not authorized!\n" +msgstr "Запыт на выяўленне мясцовасці не аўтарызаваны!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Не атрымалася запусціць пастаўшчыка CoreLocation!\n" + +#: ../src/location-corelocation.m:235 +msgid "Use the location as discovered by the Corelocation provider.\n" +msgstr "Выкарыстоўвайце мясцовасць, выяўленую пастаўшчыком CoreLocation.\n" + +#: ../src/location-manual.c:59 +msgid "Latitude and longitude must be set.\n" +msgstr "Мусяць быць вызначаны шырата і даўгата.\n" + +#: ../src/location-manual.c:75 +msgid "Specify location manually.\n" +msgstr "Пазначце мясцовасць самастойна.\n" + +#. TRANSLATORS: Manual location help output +#. left column must not be translated +#: ../src/location-manual.c:80 +msgid "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" +msgstr "" +" lat=N\t\tШырата\n" +" lon=N\t\tДаўгата\n" + +#: ../src/location-manual.c:83 +msgid "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" +msgstr "" +"Абодва значэння будуць лікам з коскай, якая плавае,\n" +"адмоўныя значэнні адпавядаюць захаду / поўдню, адпаведна.\n" + +#: ../src/location-manual.c:97 +msgid "Malformed argument.\n" +msgstr "Недакладны аргумент.\n" + +#: ../src/redshift-gtk/statusicon.py:78 +msgid "Suspend for" +msgstr "Прыпыніць на" + +#: ../src/redshift-gtk/statusicon.py:80 +msgid "30 minutes" +msgstr "30 хвілін" + +#: ../src/redshift-gtk/statusicon.py:81 +msgid "1 hour" +msgstr "1 гадзіну" + +#: ../src/redshift-gtk/statusicon.py:82 +msgid "2 hours" +msgstr "2 гадзіны" + +#: ../src/redshift-gtk/statusicon.py:91 +msgid "Autostart" +msgstr "Аўтазапуск" + +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 +msgid "Info" +msgstr "Інфармацыя" + +#: ../src/redshift-gtk/statusicon.py:108 +msgid "Quit" +msgstr "Выйсці" + +#: ../src/redshift-gtk/statusicon.py:146 +msgid "Close" +msgstr "Закрыць" + +#: ../src/redshift-gtk/statusicon.py:300 +msgid "<b>Status:</b> {}" +msgstr "<b>Стан:</b> {}" + +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 +msgid "Color temperature" +msgstr "Каляровая тэмпература" + +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 +msgid "Period" +msgstr "Перыяд" + +#: ../src/redshift-gtk/statusicon.py:318 +msgid "Location" +msgstr "Мясцовасць" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Для вываду дапаможніка, калі ласка, увядзіце `redshift -h`." @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" "PO-Revision-Date: 2011-10-30 07:39+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Bulgarian <bg@li.org>\n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: bg\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -44,179 +44,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "" @@ -224,205 +128,339 @@ msgstr "" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" +msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" msgstr "" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" msgstr "" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "" @@ -435,380 +473,335 @@ msgstr "" msgid "Assignment outside section in config file.\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "" -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -1,22 +1,22 @@ # Catalan translation for redshift -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2011. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. # msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:53+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-05-20 13:39+0000\n" +"Last-Translator: toniem <toni.estevez@gmail.com>\n" "Language-Team: Catalan <ca@li.org>\n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: ca\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"El Redshift ajusta la temperatura de color de la pantalla d'acord amb " +"l'entorn. Aquest ajust pot ajudar a reduir el dolor d'ulls si treballeu " +"davant una pantalla a la nit." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,744 +35,778 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"La temperatura de color s'estableix segons la posició del sol. S'estableix " +"una temperatura diferent durant el dia i durant la nit. Durant el capvespre " +"i l'alba, la temperatura de color canvia suaument, de temperatura diürna a " +"temperatura nocturna o viceversa, per permetre que els ulls s'adaptin " +"lentament." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Aquest programa proporciona una icona de notificació que permet a l'usuari " +"controlar el Redshift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"La finestra d'informació del Redshift es superposa amb un exemple de " +"l'efecte d'envermelliment" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Ajust de la temperatura de color" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Eina per a l'ajust de la temperatura de color" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Desconegut" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Dia" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Nit" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Transició" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Període: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Període: %s (%.2f%% dia)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "E" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "O" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Ús: %s -l LAT:LON -t DIA:NIT [OPCIONS...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Fixa la temperatura de color a mostrar segons l'hora del dia.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tMostra aquest missatge d'ajuda\n" -" -v\t\tSortida detallada\n" -" -V\t\tMostra la versió del programa\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"La temperatura neutra és %uK. Fer servir aquest valor no\n" -"canviarà la temperatura de color del monitor. Establir la\n" -"temperatura de color a un valor més alt que aquest tindrà\n" -"com a resultat més llum blava, i establint-la a un valor més\n" -"baix tindrà com a resultat més llum vermella.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Valors per defecte:\n" -"\n" -" Temperatura diurna: %uK\n" -" Temperatura nocturna: %uK\n" +msgstr "Ubicació: %.2f° %s, %.2f° %s\n" -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Si us plau, informeu dels errors a <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Métodes d'ajust disponibles:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Especifiqueu opcions separades per dos punts amb '-m MÈTODE:OPCIONS'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Proveu '-m MÈTODE:help' per obtenir ajuda.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Proveïdors d'ubicació disponibles:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Especifiqueu opcions separades per dos punts amb '-l PROVEÏDOR:OPCIONS'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Proveu '-l PROVEÏDOR:help' per obtenir ajuda.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "Ha fallat la inicialització de %s.\n" +msgstr "La inicialització de %s ha fallat.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "L'establiment de la opció %s ha fallat.\n" +msgstr "No s'ha pogut establir l'opció %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "Proveu '-l %s:help' per obtenir més informació.\n" +msgstr "Proveu «-l %s:help» per obtenir més informació.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "No s'ha pogut analitzar l'opció «%s».\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "No s'ha pogut iniciar el proveïdor %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "Proveu '-m %s:help' per obtenir més informació.\n" +msgstr "Proveu «-m %s:help» per obtenir més informació.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" -msgstr "Proveu '-m %s:help' per obtenir més informació.\n" +msgstr "Proveu «-m %s:help» per obtenir més informació.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "No s'ha pogut iniciar el mètode d'ajust %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "La latitud ha d'estar entre %.1f i %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "La longitud ha d'estar entre %.1f i %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "No s'ha pogut llegir l'hora del sistema.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "S'està esperant que la ubicació inicial estigui disponible...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "No s'ha pogut obtenir una ubicació del proveïdor.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "La ubicació proporcionada pel proveïdor no és vàlida.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "Temperatura de color: %uK\n" +msgstr "Temperatura de color: %u K\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Brillantor: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "No s'ha pogut ajustar la temperatura.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Argument de gamma mal format.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Estat: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Proveu '-h' per obtenir més informació.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Desactivat" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Proveïdor d'ubicació '%s' desconegut.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Activat" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Mètode d'ajust '%s' desconegut.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "No s'ha pogut ajustar la temperatura.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Argument de temperatura mal format.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"La ubicació no està disponible temporalment. S'utilitzarà la ubicació " +"anterior fins que estigui disponible...\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Paràmetre de gamma mal format.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "No s'admet la configuració parcial de l'hora!\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Paràmetre de configuració '%s' desconegut.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "La configuració de l'hora de l'alba o el capvespre no és vàlida!\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "S'està provant el proveïdor d'ubicació «%s»...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "S'està provant el següent proveïdor...\n" +msgstr "S'està provant el proveïdor següent...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "S'està fent servir el proveïdor '%s'.\n" +msgstr "S'està utilitzant el proveïdor «%s».\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "No queden més proveïdors d'ubicació per provar.\n" +msgstr "No hi ha més proveïdors d'ubicació per provar.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "No s'ha pogut obtenir la ubicació des del proveïdor.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "La transició superior no pot ser menor que la transició inferior.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" - -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "La latitud ha d'estar entre %.1f i %.1f.\n" +msgstr "Elevacions solars: dia per sobre de %.1f °, nit per sota de %.1f °\n" -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "La longitud ha d'estar entre %.1f i %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperatures: %d K de dia, %d K de nit\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" -msgstr "La temperatura ha d'estar entre %uK i %uK.\n" +msgstr "La temperatura ha d'estar entre %u K y %u K.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "Els valors de la brillantor han d'estar entre %.1f y %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "Brillantor : %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" -msgstr "El valor de la gamma ha d'estar entre %.1f i %.1f.\n" +msgstr "El valor gamma ha d'estar entre %.1f y %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "S'està provant el mètode següent...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" -msgstr "S'està fent servir el mètode '%s'.\n" +msgstr "S'està utilitzant el mètode «%s».\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" -msgstr "No queden més mètodes per provar.\n" +msgstr "No hi ha més mètodes per provar.\n" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "S'està esperant que la ubicació actual estigui disponible...\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "Elevació solar: %f\n" +msgstr "Elevació solar: %fº\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Premeu Ctrl-C per aturar...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Ús: %s -l LAT:LON -t DIA:NIT [OPCIONS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" msgstr "" +"Estableix la temperatura de color de la pantalla segons l'hora del dia.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tMostra aquest missatge d'ajuda\n" +" -v\t\tSortida detallada\n" +" -V\t\tMostra la versió del programa\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b DIA:NIT\tBrillantor de la pantalla per aplicar (entre 0.1 i 1.0)\n" +" -c FITXER\tCarrega els paràmetres del fitxer de configuració especificat\n" +" -g R:G:B\tCorrecció gamma addicional per aplicar\n" +" -l LAT:LON\tLa ubicació actual\n" +" -l PROVEÏDOR\tSelecciona el proveïdor per a les actualitzacions " +"automàtiques de la ubicació\n" +" \t\t(Escriviu «list» per veure els proveïdors disponibles)\n" +" -m MÈTODE\tMètode utilitzat per establir la temperatura de color\n" +" \t\t(Escriviu «list» per veure els mètodes disponibles)\n" +" -o\t\tMode d'ajust únic (no ajusta contínuament la temperatura de color))\n" +" -O TEMP\tMode d'ajust únic manual (fixa la temperatura de color)\n" +" -p\t\tMode d'impressió (només imprimeix els paràmetres i surt)\n" +" -P\t\tRestableix els valors de gamma existents abans d'aplicar un nou " +"efecte de color\n" +" -x\t\tMode de reinici (elimina l'ajust de la pantalla)\n" +" -r\t\tDesactiva les transicions entre les temperatures de color\n" +" -t DIA:NIT\tTemperatura de color per establir de dia i de nit\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"La temperatura neutra és %u K. L'ús d'aquest valor no canviarà la\n" +"temperatura de color de la pantalla. Establir un valor més alt\n" +"donarà com a resultat un to més blavós i establir un valor més\n" +"baix donarà com a resultat un to més vermellós.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Valors per defecte:\n" +"\n" +" Temperatura de dia: %u K\n" +" Temperatura de nit: %u K\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Mètodes d'ajust disponibles:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Especifiqueu les opcions separades per dos punts amb «-m MÈTODE:OPCIONS».\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Proveu «-m MÈTODE:help» per obtenir ajuda.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Proveïdors d'ubicació disponibles:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Especifiqueu les opcions separades per dos punts amb «-l " +"PROVEÏDOR:OPCIONS».\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Proveu «-l PROVEÏDOR:help» per obtenir ajuda.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "El paràmetre gamma no és correcte.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Proveu «-h» per obtenir més informació.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "El proveïdor d'ubicació «%s» és desconegut.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "El mètode d'ajust «%s» és desconegut.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "El paràmetre de la temperatura no és correcte.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "El paràmetre gamma no és correcte.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "El paràmetre de l'hora de l'alba «%s» no és correcte.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "El paràmetre de l'hora del capvespre «%s» no és correcte.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "El paràmetre de configuració «%s» és desconegut.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "Capçalera mal formada al fitxer de configuració.\n" +msgstr "" +"Un encapçalament de secció al fitxer de configuració no és correcte.\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "Assignació mal formada en el fitxer de configuració.\n" +msgstr "L'assignació de dades al fitxer de configuració no és correcta.\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" -msgstr "Assignació fora de secció al fitxer de configuració.\n" +msgstr "" +"L'assignació de dades al fitxer de configuració estan fora d'una secció.\n" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "No s'ha pogut obrir el dispositiu DRM: %s\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "No s'han pogut obtenir els recursos del mode DRM\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "El CRTC %d no existeix. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" -msgstr "Els CRTCs vàlids són [0-%d].\n" +msgstr "Els CRTC vàlids són [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Només existeix el CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "El CRTC %i s'ha perdut, s'ometrà\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" +"No s'ha pogut obtenir la mida del valor gamma per al CRTC %i\n" +"en la targeta de vídeo %i. S'ignorarà el dispositiu.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" +"El DRM no pot llegir els valors gamma en el CRTC %i\n" +"en la targeta de vídeo %i. S'ignorarà el dispositiu.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "" +msgstr "Ajusta els valors gamma amb el DRM.\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\tTargeta gràfica per aplicar els ajusts\n" +" crtc=N\tCRTC per aplicar els ajusts\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "" +msgstr "El CRTC ha de ser un nombre enter no negatiu\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "Paràmetre de mètode desconegut: '%s'.\n" +msgstr "El paràmetre del mètode és desconegut: «%s».\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" -msgstr "'%s' ha retornat l'error %d\n" +msgstr "«%s» ha retornat l'error %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" -msgstr "Versió RANDR no compatible (%u.%u)\n" +msgstr "La versió de RANDR no és compatible (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" -msgstr "No s'ha pogut trobar la pantalla %i.\n" +msgstr "No s'ha trobat la pantalla %i.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" -msgstr "La mida de la rampa de gamma és massa petita: %i\n" +msgstr "El valor gamma és massa petit: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" -msgstr "No s'ha pogut restablir el CRTC %i\n" +msgstr "No es pot restablir el CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" -msgstr "Ajusta les rampes de gamma amb l'extensió X RANDR.\n" +msgstr "Ajustar los valores gamma con la extensión X RANDR\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" screen=N\t\tPantalla X per aplicar els ajustos\n" +" crtc=N\\Llista dels CRTC, separats per comes, per aplicar els ajustos\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "No es pot llegir el número de pantalla: «%s».\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -" screen=N\tPantalla X a la qual aplicar els ajustos\n" -" crtc=N\tCRTC al qual aplicar els ajustos\n" +"El paràmetre «%s» ara està sempre activat. Utilitzeu l'opció de línia " +"d'ordres «%s» per desactivar-lo.\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "Ha fallat la petició X: %s\n" +msgstr "La sol·licitud X ha fallat: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" -msgstr "Ajusta les rampes de gamma amb l'extensió X VidMode.\n" +msgstr "Ajusta els valors gamma amb l'extensió X VidMode\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" -" screen=N\tPantalla X a la qual aplicar els ajustos\n" -" crtc=N\tCRTC al qual aplicar els ajustos\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tPantalla X per aplicar els ajustos\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "No s'ha pogut desar la rampa de gamma actual.\n" +msgstr "No es pot desar el valor gamma actual.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Ajusta els valors gamma en macOS utilitzant Quartz.\n" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "No s'ha pogut obrir el context del dispositiu.\n" +msgstr "No es pot obrir el context del dispositiu.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" -msgstr "El monitor no permet rampes de gamma.\n" +msgstr "El dispositiu de visualització no admet els valors gamma.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" -msgstr "Ajusta les rampes de gamma amb el GDI de Windows.\n" +msgstr "Ajusta els valors gamma amb el GDI de Windows.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "No s'han pogut restablir les rampes de gamma.\n" +msgstr "No es poden restaurar els valors gamma.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "No s'han pogut establir les rampes de gamma.\n" +msgstr "No es poden establir els valors gamma.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"AVÍS: S'està fent servir un mètode gamma fictici! La pantalla no es veurà " +"afectada per aquest mètode gamma.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"No afecta a la pantalla, però imprimeix la temperatura de color al " +"terminal.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" +msgstr "Temperatura: %i\n" -#: ../src/location-geoclue.c:111 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" +"El GeoClue ha denegat l'accés a la ubicació actual!\n" +"Assegureu-vos que els serveis d'ubicació estiguin habilitats i que el " +"Redshif\n" +"té permís per utilitzar-los. Consulteu " +"https://github.com/jonls/redshift#faq\n" +"per obtenir més informació.\n" -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "No es pot obtenir la ubicació: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "No es pot obtenir el GeoClue Manager: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "No es pot obtenir el camí del client GeoClue: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "No es pot obtenir el client GeoClue: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "No es pot establir el llindar de distància: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "No es pot iniciar el client GeoClue: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "No s'ha pogut iniciar el proveïdor GeoClue2!\n" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Utilitzeu la ubicació trobada per un proveïdor GeoClue2.\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "No teniu autorització per obtenir la ubicació del CoreLocation.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "S'ha produït un error en obtenir la ubicació del CoreLocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "S'està esperant l'autorització per obtenir la ubicació...\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "No s'ha autoritzat la sol·licitud d'ubicació!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "No s'ha pogut iniciar el proveïdor CoreLocation!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Utilitzeu la ubicació trobada pel proveïdor CoreLocation.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "S'han d'establir la latitud i la longitud.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" -msgstr "Especificar la ubicació manualment.\n" +msgstr "Especifiqueu la ubicació manualment.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -777,63 +814,66 @@ msgstr "" " lat=N\t\tLatitud\n" " lon=N\t\tLongitud\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" +"S'espera que tots dos valors siguin nombres de coma flotant,\n" +"els valors negatius representen l'oest i el sud, respectivament.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" -msgstr "Argument mal format.\n" +msgstr "El paràmetre no és correcte.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Suspèn durant" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 minuts" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 hora" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 hores" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Inici automàtic" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "Informació" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Surt" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Tanca" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Estat:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Temperatura de color" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Període" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "Ubicació" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tPantalla X a la qual aplicar els ajustos\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Executeu «redshift -h» per obtenir ajuda." @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:54+0000\n" -"Last-Translator: Jakub Vaněk <vanek.jakub4@seznam.cz>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-11-16 20:39+0000\n" +"Last-Translator: Pavel Borecki <Unknown>\n" "Language-Team: Czech <cs@li.org>\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: cs\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Aplikace Redshift přizpůsobuje barevnou teplotu obrazovky v závislosti na " +"okolních podmínkách. To může pomoci od únavy očí při práci s počítačem v " +"noci." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,106 +35,330 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"Barevná teplota je nastavována dle pozice Slunce na obloze. Jiná barevná " +"teplota je nastavena během noci a jiná během dne. Při stmívání a " +"rozednívání, barevná teplota pozvolna přejde z jednoho režimu do druhého, " +"aby se oči stačily přizpůsobit." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Tato aplikace poskytuje stavovou ikonu, pomocí níž je možné Redshift ovládat." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"Informační okno aplikace Redshift, překryté ukázkou efektu zabarvení do " +"červena" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Nastavení teploty barev" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Nástroj pro přizpůsobení barevné teploty" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Neznámo" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Přes den" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "V noci" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Přechod" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Období: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Období: %s (%.2f%% den)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "J" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "V" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "Z" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" +msgstr "Poloha %.2f° %s, %.2f° %s\n" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "Inicializace %s se nezdařila.\n" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "Nezdařilo se nastavit volbu %s.\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "Zkuste `-l %s:help' pro více informací.\n" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "Nezdařilo se analyzovat zadání volby %s.\n" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "Nezdařilo se spustit poskytovatele %s.\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "Zkuste `-m %s:help' pro více informací.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "Více informací získáte zadáním „-m %s:help“.\n" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "Nezdařilo se spustit metodu přizpůsobení %s.\n" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Je třeba, aby zeměpisná šířka byla z rozsahu %.1f až %.1f.\n" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Je třeba, aby zeměpisná délka byla z rozsahu %.1f až %.1f.\n" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "Nebylo možné načíst systémový čas.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Čekání na dostupnost úvodního umístění…\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Nebylo možné získat polohu od poskytovatele.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Poskytovatel vrátil neplatnou polohu.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "Barevná teplota: %uK\n" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "Jas: %.2f\n" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Stav: %s\n" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Vypnuto" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Zapnuto" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Přizpůsobení barevné teploty se nezdařilo.\n" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" +"Poloha je dočasně nedostupná; Než bude k dispozici, bude použita ta " +"předchozí…\n" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Částečné nastavení času není podporováno!\n" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Neplatné nastavení času úsvitu/setmění!\n" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "Zkouší se poskytovatel polohy %s…\n" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "Zkouší se další poskytovatel…\n" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "Nyní je používán poskytovatel %s.\n" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "Nezbývají žádní další poskytovatelé polohy k vyzkoušení.\n" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" +"Výška ve vyšší z hodnot přechodu nemůže být nižší než výška v nižší z hodnot " +"přechodu.\n" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "Výšky (úhly) Slunce: den nad %.1f°, noc pod %.1f°\n" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Barevné teploty: %dK ve dne, %dK v noci\n" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "Je třeba, aby teplota byla z rozsahu %uK až %uK.\n" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "Je třeba, aby hodnota jasu byla z rozsahu %.1f až %.1f.\n" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "Jas: %.2f:%.2f\n" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "Je třeba, aby hodnota gama byla z rozsahu %.1f až %.1f.\n" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "Gama (%s): %.3f, %.3f, %.3f\n" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "Zkouší se další metoda…\n" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "S použitím metody %s.\n" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "Byly již vyzkoušeny veškeré dostupné metody.\n" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "Čekání na dostupnost aktuální polohy…\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "Výška (úhel) Slunce: %f°\n" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "Zastavte stisknutím Ctrl-C…\n" #. TRANSLATORS: help output 1 #. LAT is latitude, LON is longitude, #. DAY is temperature at daytime, #. NIGHT is temperature at night #. no-wrap -#: ../src/redshift.c:452 +#: ../src/options.c:159 #, c-format msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" msgstr "" -"Použití: %s -l <zeměpisná šířka>:<zeměpisná délka> -t <teplota ve dne>:" -"<teplota v noci> [VOLBY...]\n" +"Použití: %s -l <zeměpisná šířka>:<délka> -t <bar. teplota ve dne>:<v noci> " +"[VOLBY…]\n" #. TRANSLATORS: help output 2 #. no-wrap -#: ../src/redshift.c:458 +#: ../src/options.c:165 msgid "Set color temperature of display according to time of day.\n" -msgstr "Nastavení teploty barev podle denní doby.\n" +msgstr "Nastavení barevné teploty obrazovky dle denní doby.\n" #. TRANSLATORS: help output 3 #. no-wrap -#: ../src/redshift.c:464 +#: ../src/options.c:171 msgid "" " -h\t\tDisplay this help message\n" " -v\t\tVerbose output\n" @@ -144,7 +371,7 @@ msgstr "" #. TRANSLATORS: help output 4 #. `list' must not be translated #. no-wrap -#: ../src/redshift.c:472 +#: ../src/options.c:179 msgid "" " -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" " -c FILE\tLoad settings from specified configuration file\n" @@ -157,43 +384,43 @@ msgid "" " -o\t\tOne shot mode (do not continuously adjust color temperature)\n" " -O TEMP\tOne shot manual mode (set color temperature)\n" " -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" " -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" +" -r\t\tDisable fading between color temperatures\n" " -t DAY:NIGHT\tColor temperature to set at daytime/night\n" msgstr "" -" -b DEN:NOC\tJas obrazovky (mezi 0.1 a 1.0)\n" -" -c SOUBOR\tNačíst nastavení z vybraného konfiguračního souboru\n" -" -g R:G:B\tPřídavná gamma korekce\n" -" -l ŠÍŘKA:DÉLKA\tSoučasná zeměpisná poloha\n" -" -l POSKYTOVATEL\tVybrat poskytovatele automatické aktualizace místa\n" -" \t\t(Napište `list' k zobrazení dostupných poskytovatelů)\n" -" -m METODA\tMetoda použitá k nastavení teploty barev\n" -" \t\t(Napište `list' k zobrazení dostupných metod)\n" -" -o\t\tJednorázový režim (neaktualizuje průběžně teplotu barev)\n" -" -O TEPLOTA\tJednorázový manuální režim (nastaví teplotu barev)\n" -" -p\t\tVýpisový režim (pouze vypíše parametry a ukončí se)\n" -" -x\t\tResetovací režim (odstraní úpravy z obrazovky)\n" -" -r\t\tZakáže přechod teploty\n" -" -t DEN:NOC\tTeplota barev k nastavení ve dne/v noci\n" +" -b DEN:NOC\tJas pro obrazovku (z rozmezí 0.1 až1.0)\n" +" -c SOUBOR\tNačíst nastavení ze zadaného souboru s nastaveními\n" +" -g C:Z:M\tDodatečná korekce gama\n" +" -l Z_SIRKA:Z_SIRKA\tAktuální pozice\n" +" -l POSKYTOVATEL\tVybrat poskytovatele automatických aktualizací pozice\n" +" \t\t(dostupné poskytovatele získáte zadáním „list“)\n" +" -m METODA\tMetoda kterou nastavovat teplotu barev\n" +" \t\t(dostupné metody získáte zadáním „list“)\n" +" -o\t\tJednorázový režim (neupravovat teplotu barev průběžně)\n" +" -O TEPL\tJednorázový ruční režim (nastavit teplotu barev)\n" +" -p\t\tRežim výpisu (pouze vypsat parametry a skončit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" #. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 +#: ../src/options.c:201 #, c-format msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" "more red light.\n" msgstr "" -"Neutrální teplota je %uK. Použitím této hodnoty nedojde\n" -"ke změně barevné teploty na displeji. Nastavte barevnou\n" -"teplotu na hodnotu vyšší pro více namodralého studeného\n" -"světla, nebo nastavte hodnotu nižší pro více teplého\n" -"červeného světla.\n" +"Neutrální teplota barev je %uK. Použití této hodnoty nezmění teplotu barev\n" +"displeje. Nastavení teploty barev na hodnotu vyšší než tato vyústí ve více\n" +"modrého světla a nastavení na nižší hodnotu ve více červeného světla.\n" #. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 +#: ../src/options.c:210 #, c-format msgid "" "Default values:\n" @@ -206,653 +433,445 @@ msgstr "" " Teplota ve dne: %uK\n" " Teplota v noci: %uK\n" -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Chyby prosím hlaste na <%s>\n" - -#: ../src/redshift.c:516 +#: ../src/options.c:225 msgid "Available adjustment methods:\n" msgstr "Dostupné metody přizpůsobení:\n" -#: ../src/redshift.c:522 +#: ../src/options.c:231 msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "Specifikujte dvojtečkou oddělené volby za použití `-m METODA:VOLBY'.\n" +msgstr "" +"Volby pro danou metodu zadejte oddělené dvojtečkou za její název: „-m " +"METODA:VOLBY“.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 +#: ../src/options.c:234 msgid "Try `-m METHOD:help' for help.\n" msgstr "Zkuste `-m METODA:help' pro nápovědu.\n" -#: ../src/redshift.c:531 +#: ../src/options.c:241 msgid "Available location providers:\n" -msgstr "Dostupní poskytovatelé polohy:\n" +msgstr "Dostupní poskytovatelé určení polohy:\n" -#: ../src/redshift.c:537 +#: ../src/options.c:247 msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" msgstr "" -"Specifikujte dvojtečkou oddělené volby za použití `-l POSKYTOVATEL:VOLBY'.\n" +"Volby pro daného poskytovatele zadejte oddělené dvojtečkou za jeho název: „-" +"l POSKYTOVATEL:VOLBY“.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 +#: ../src/options.c:250 msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Zkuste `-l POSKYTOVATEL:help' pro nápovědu.\n" +msgstr "Nápovědu získáte zadáním „-l <název poskytovatele>:help“.\n" -#: ../src/redshift.c:553 ../src/redshift.c:645 -#, c-format -msgid "Initialization of %s failed.\n" -msgstr "Inicializace %s selhala.\n" - -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 -#, c-format -msgid "Failed to set %s option.\n" -msgstr "Chyba v nastavení volby %s.\n" - -#. TRANSLATORS: `help' must not be -#. translated. -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 -#, c-format -msgid "Try `-l %s:help' for more information.\n" -msgstr "Zkuste `-l %s:help' pro více informací.\n" - -#: ../src/redshift.c:601 ../src/redshift.c:682 -#, c-format -msgid "Failed to parse option `%s'.\n" -msgstr "Nepodařilo se parsování volby `%s'.\n" - -#: ../src/redshift.c:628 -#, c-format -msgid "Failed to start provider %s.\n" -msgstr "Nepodařilo se spustit poskytovatele %s.\n" - -#. TRANSLATORS: `help' must not be -#. translated. -#: ../src/redshift.c:665 -#, c-format -msgid "Try `-m %s:help' for more information.\n" -msgstr "Zkuste `-m %s:help' pro více informací.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 -#, c-format -msgid "Try -m %s:help' for more information.\n" -msgstr "Zkuste -m %s:help' pro více informací.\n" - -#: ../src/redshift.c:707 -#, c-format -msgid "Failed to start adjustment method %s.\n" -msgstr "Nepodařilo se spustit metodu přizpůsobení %s.\n" - -#: ../src/redshift.c:870 ../src/redshift.c:898 -#, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "Povoleno" - -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "Zakázáno" - -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" -msgstr "Nebylo možné načíst systémový čas.\n" - -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 -#, c-format -msgid "Color temperature: %uK\n" -msgstr "Teplota barev: %uK\n" - -#: ../src/redshift.c:1004 ../src/redshift.c:1625 -#, c-format -msgid "Brightness: %.2f\n" -msgstr "Jas: %.2f\n" - -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Přizpůsobení barev selhalo.\n" - -#: ../src/redshift.c:1105 +#: ../src/options.c:356 msgid "Malformed gamma argument.\n" -msgstr "Neplatný argument gamma.\n" +msgstr "Neplatný argument gama.\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 msgid "Try `-h' for more information.\n" -msgstr "Zkuste `-h' pro více informací.\n" +msgstr "Více informací získáte zadáním „-h“.\n" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 +#: ../src/options.c:407 ../src/options.c:610 #, c-format msgid "Unknown location provider `%s'.\n" -msgstr "Neznámý poskytovatel polohy `%s'.\n" +msgstr "Neznámý poskytovatel polohy %s.\n" #. TRANSLATORS: This refers to the method #. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 +#: ../src/options.c:439 ../src/options.c:597 #, c-format msgid "Unknown adjustment method `%s'.\n" -msgstr "Neznámá metoda přizpůsobení `%s'.\n" +msgstr "Neznámá metoda přizpůsobení %s.\n" -#: ../src/redshift.c:1213 +#: ../src/options.c:470 msgid "Malformed temperature argument.\n" msgstr "Neplatný argument teploty.\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 msgid "Malformed gamma setting.\n" -msgstr "Neplatné nastavení gamma.\n" - -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Neznámá konfigurace nastavení `%s'.\n" - -#: ../src/redshift.c:1422 -#, c-format -msgid "Trying location provider `%s'...\n" -msgstr "Zkouší se poskytovatel polohy `%s'...\n" - -#: ../src/redshift.c:1427 -msgid "Trying next provider...\n" -msgstr "Zkouší se další poskytovatel...\n" - -#: ../src/redshift.c:1433 -#, c-format -msgid "Using provider `%s'.\n" -msgstr "Používám poskytovatele `%s'.\n" - -#: ../src/redshift.c:1441 -msgid "No more location providers to try.\n" -msgstr "Nejsou žádní další poskytovatelé polohy k vyzkoušení.\n" - -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Nebylo možné získat polohu od poskytovatele.\n" - -#: ../src/redshift.c:1460 -#, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "Teploty: %dK ve dne, %dK v noci\n" - -#. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 -#, c-format -msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" - -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Zeměpisná šířka musí být mezi %.1f a %.1f.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Zeměpisná délka musí být mezi %.1f a %.1f.\n" - -#: ../src/redshift.c:1493 ../src/redshift.c:1511 -#, c-format -msgid "Temperature must be between %uK and %uK.\n" -msgstr "Teplota musí být mezi %uK a %uK.\n" - -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 -#, c-format -msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "Hodnota jasu musí být mezi %.1f a %.1f.\n" - -#: ../src/redshift.c:1529 -#, c-format -msgid "Brightness: %.2f:%.2f\n" -msgstr "Jas: %.2f:%.2f\n" - -#: ../src/redshift.c:1537 -#, c-format -msgid "Gamma value must be between %.1f and %.1f.\n" -msgstr "Hodnota gamma musí být v rozmezí %.1f až %.1f.\n" +msgstr "Neplatné nastavení gama.\n" -#. TRANSLATORS: The string in parenthesis is either -#. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/options.c:621 #, c-format -msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Chybně formulované nastavení času úsvitu „%s“.\n" -#: ../src/redshift.c:1572 -msgid "Trying next method...\n" -msgstr "Zkouším další metodu...\n" - -#: ../src/redshift.c:1577 +#: ../src/options.c:632 #, c-format -msgid "Using method `%s'.\n" -msgstr "Používám metodu `%s'.\n" - -#: ../src/redshift.c:1584 -msgid "No more methods to try.\n" -msgstr "Nejsou další metody k vyzkoušení.\n" +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Chybně formulované nastavení času soumraku „%s“.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/options.c:639 #, c-format -msgid "Solar elevation: %f\n" -msgstr "Solarní elevace: %f\n" - -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 -msgid "Press ctrl-c to stop...\n" -msgstr "" +msgid "Unknown configuration setting `%s'.\n" +msgstr "Neznámá položka nastavení %s.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "Neplatné záhlaví sekce v konfiguračním souboru.\n" +msgstr "Neplatné záhlaví sekce v souboru s nastaveními.\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "Neplatné přiřazení v konfiguračním souboru.\n" +msgstr "Neplatné přiřazení v souboru s nastaveními.\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" -msgstr "Přiřazení mimo sekci v konfiguračním souboru.\n" +msgstr "Přiřazení mimo sekci v souboru s nastaveními.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Nepodařilo se otevřít DRM zařízení: %s\n" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "Nezdařilo se získat zdroje DRM režimu\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d neexistuje. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" -msgstr "Platné CRTCs jsou [0-%d].\n" +msgstr "Platná označení CRTC jsou [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Existuje pouze CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "CRTC %i bylo ztraceno - pokračuje se dalším\n" +msgstr "CRTC %i bylo ztraceno – pokračuje se dalším\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" +"Nelze získat velikost gama křivky pro CRTC %i\n" +"on grafické kartě %i, zařízení bude ignorováno.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" +"Rozhraní DRM nemůže načíst hodnotu gama korekce na CRTC %i na grafické kartě " +"%i – zařízení bude ignorováno.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" +"Přizpůsobit gamma korekci pomocí rozhraní podsystému Direct Rendering " +"Manager.\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\tGrafická karta, na které provést přizpůsobení\n" +" crtc=N\tCRTC, na kterém provést přizpůsobení\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "CRTC musí být kladné celé číslo\n" +msgstr "Je třeba, aby položka CRTC byla celé kladné číslo\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "Neznámý parametr metody: `%s'.\n" +msgstr "Neznámý parametr metody: %s.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" -msgstr "`%s' vrátila chybu %d\n" +msgstr "%s vrátilo chybu %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" -msgstr "Nepodporovaná verze RANDR (%u.%u)\n" +msgstr "Nepodporovaná verze protokolu RANDR (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" -msgstr "Obrazovka %i nebyla nalezena.\n" +msgstr "Obrazovku %i nelze nalézt.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" -msgstr "Velikost gamma ramp je příliš malá: %i\n" +msgstr "Rozsah gama křivky není dostačující: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Nebylo možné obnovit CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" -msgstr "Seřídit hodnoty gamma pomocí rozšíření X RANDR.\n" +msgstr "" +"Přizpůsobit hodnoty gama korekce pomocí rozšíření RANDR graf. serveru X.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" screen=N\t\tobrazovka graf. serveru X na kterou úpravu použít\n" +" crtc=N\tSeznam čárkou oddělených obrazových výstupů na který úpravu " +"použít\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Nepodařilo se načíst číslo obrazovky: „%s“.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -" screen=N\tX obrazovka použitá pro úpravy\n" -" crtc=N\tCRTC použité pro úpravy\n" +"Parametr „%s“ je nyní vždy zapnutý. Pro vypnutí použijte volbu příkazového " +"řádku „%s“.\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "Požadavek na X selhal: %s\n" +msgstr "Požadavek na graf. server X nebyl v pořádku vyřízen: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" -msgstr "Seřídit hodnoty gamma pomocí rozšíření X VidMode.\n" +msgstr "Přizpůsobit gama korekci pomocí rozšíření VidMode graf. serveru X.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" -" screen=N\tX obrazovka použitá pro úpravy\n" -" crtc=N\tCRTC použité pro úpravy\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tobrazovka graf. serveru X na který úpravu použít\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "Není možné uložit současnou gamma ramp.\n" - -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" +msgstr "Stávající gama křivku nebylo možné uložit.\n" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Přizpůsobit gama křivky na macOS pomocí Quartz.\n" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "Není možné otevřít kontext zařízení.\n" +msgstr "Nebylo možné otevřít kontext zařízení.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" -msgstr "Zobrazovací zařízení nepodporuje gamma ramp.\n" +msgstr "Toto zobrazovací zařízení nepodporuje gama korekci.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" -msgstr "Seřídit hodnoty gamma pomocí Windows GDI.\n" +msgstr "Přizpůsobit gama korekci pomocí rozhraní Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "Není možné obnovit gamma ramp.\n" +msgstr "Nebylo možné obnovit původní gama korekci.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "Není možné nastavit gamma ramp.\n" +msgstr "Není možné nastavit gama korekci.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"Varování: je používána fiktivní metoda nastavení gama! Nastavení obrazovky " +"proto nebude tímto způsobem nijak dotčeno.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"Nezpůsobí změnu zobrazení, ale vypíše barevnou teplotu na terminál.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "Nepodařilo se získat hlavního klienta: %s\n" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "Spuštěn Geoclue poskytovatel `%s'.\n" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "Nemohu najít použitelného Geoclue poskytovatele.\n" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "Zkuste nastavit jméno a cestu k určení, kterého mám použít.\n" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "Použít umístění získáno od poskytovatele Geoclue.\n" +msgstr "Teplota: %i\n" -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" -" name=N\tJméno Geoclue poskytovatele (nebo `default')\n" -" path=N\tCesta Geoclue poskytovatele (nebo `default')\n" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "Nelze zjisti umístění: %s.\n" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "Podle poskytovatele Geoclue jsme na: %.2f, %.2f\n" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "Poskytovatel namá dostupnou platnou polohu." - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" +"Přístup k poloze byl GeoClue odepřen!\n" +"Ověřte že je služba zjišťování polohy zapnutá a Redshift může používat\n" +"služby zjišťování polohy. Více informací naleznete na\n" +"https://github.com/jonls/redshift#faq.\n" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Nedaří se zjistit polohu: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Nebylo možné získat správu systémové služby Geoclue: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "Nepodařilo se zjistit umístění klienta GeoClue: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "Nedaří se použít klienta GeoClue: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Nelze nastavit práh vzdálenosti: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "Nedaří se spustit klienta GeoClue: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "Nepodařilo se spustit poskytovatele GeoClue2!\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Použít polohu zjištěnou z poskytovatele Geoclue2.\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "Nepodařilo se získat pověření pro získání polohy z CoreLocation.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "Chyba při získávání polohy ze systémové služby CoreLocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "Čekání na pověření k získání polohy…\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "Požadavek na zjištění polohy byl zamítnut!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Nepodařilo se spustit poskytovatele CoreLocation!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Použít polohu zjištěnou poskytovatelem Corelocation.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" -msgstr "Zeměpisná šířka a délka musí být nastavena.\n" +msgstr "Zeměpisnou šířku a délku je třeba nastavit.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" -msgstr "Určete ručně umístění.\n" +msgstr "Určete umístění ručně.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -" lat=N\t\tšířka\n" -" lon=N\t\tdélka\n" +" lat=N\t\tzeměpisná šířka\n" +" lon=N\t\tzeměpisná délka\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" "Obě hodnoty mají být desetinná čísla,\n" -"záporné hodnoty reprezentují západ, resp. jih.\n" +"záporné hodnoty představují západ, resp. jih.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" -msgstr "Nevhodný argument.\n" +msgstr "Neplatný argument.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "Uspat po" +msgstr "Odstavit po dobu" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "30 minutách" +msgstr "30 minut" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "1 hodině" +msgstr "1 hodiny" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "2 hodinách" +msgstr "2 hodin" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" -msgstr "Automatické spuštění" +msgstr "Spouštět automaticky" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "Info" +msgstr "Podrobnosti" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "Ukončit" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "Zavřít" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Stav:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "Teplota barvy" +msgstr "Barevná teplota" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "Období" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "Umístění" +msgstr "Poloha" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tX obrazovka použitá pro úpravy\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Nápovědu získáte spuštěním „redshift -h“" @@ -1,22 +1,21 @@ # Danish translation for redshift # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# +# scootergrisen, 2018. msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:55+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" -"Language-Team: Danish <da@li.org>\n" -"Language: da\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-05-07 01:48+0000\n" +"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n" +"Language-Team: Danish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: da\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -55,187 +54,83 @@ msgstr "" "Informationsvinduet i Redshift med en effekt lagt over som viser et eksempel " "på den rødlige effekt" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "Justering af farvetemperatur" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "Justeringsværktøj for farvetemperatur" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "Ingen" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "Dag" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "Nat" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "Overgang" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "Periode: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "Periode: %s (%.2f%% dag)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "Ø" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "V" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "Placering: %.2f° %s, %.2f° %s\n" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Brug: %s -l BRED:LÆNG -t DAG:NAT [TILVALG...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Indstil skærmens farvetemperatur ud fra klokkeslæt.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"Den neutrale temperatur er %uK. Når denne værde benyttes vil\n" -"der ikke ske nogen farveændringer. En højere værdi vil\n" -"resultere i mere blåt lås, mens en lavere værdi vil resultere\n" -"i mere rødt lys.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Standardværdier:\n" -"\n" -" Dagtemperatur: %uK\n" -" Nattemperatur: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Rapporter venligst fejl til <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Tilgængelige justeringsmetoder:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "Specificer indstillinger separeret med kolon: `-m METODE:VALG'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Prøv `-m METODE:help' for at få hjælp.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Tilgængelige metoder til placeringsopdatering:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "Specificer indstillinger separeret med kolon: `-l METODE:VALG'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Prøv `-l METODE:help' for at få hjælp.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "Fejl under klargøring af %s.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Kunne ikke sætte indstilling %s.\n" @@ -243,206 +138,368 @@ msgstr "Kunne ikke sætte indstilling %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Prøv `-l %s:help' for mere information.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "Kunne ikke læse indstilling `%s'.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" -msgstr "Kunne ikke starte placeringsmetode %s.\n" +msgstr "Kunne ikke starte placeringsudbyder %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Prøv `-m %s:help' for mere information.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Prøv `-m %s:help' for mere information.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Kunne ikke starte justeringsmetode %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "Aktiv" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Breddegrad skal være mellem %.1f° og %.1f°.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "Deaktiveret" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Længdegrad skal være mellem %.1f° og %.1f°.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Kan ikke læse systemtid.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Venter på at indledende placering bliver tilgængelig...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Kan ikke modtage placeringsopdatering.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Ugyldig placering returneret fra udbyder.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Farvetemperatur: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Lysstyrke: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Fejl ved justering af temperatur.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Fejl i gamma-argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Status: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Prøv `-h' for mere information.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Deaktiveret" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Ukendt metode til placeringsopdatering `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Aktiv" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Ukendt justeringsmetode: `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Fejl ved justering af temperatur.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Fejl i temperaturargument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"Placering er midlertidig utilgængelig. Bruger forrige placering indtil den " +"bliver tilgængelig...\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Fejl i gamma indstilling.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Delvis tidskonfiguration understøttet ikke!\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Ukendt konfigurationsindstilling `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Ugyldig tidskonfiguration for solopgang/solnedgang!\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "Prøver placeringsmetoden `%s'...\n" +msgstr "Prøver placeringsudbyder `%s'...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "Prøver næste placeringsmetode...\n" +msgstr "Prøver næste udbyder...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "Bruger placeringsmetoden `%s'.\n" +msgstr "Bruger udbyderen `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "Ikke flere metoder til placeringsopdateringer kan prøves.\n" +msgstr "Ikke flere placeringsudbydere som kan prøves.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Kan ikke modtage placeringsopdatering.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "Temperaturer: %dK om dagen, %dK om natten\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" +"Den høje tærskel for solhøjde kan ikke være lavere end den lave tærskel for " +"solhøjde.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "Solhøjde: dag over %.1f°, nat under %.1f°\n" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Breddegrad skal være mellem %.1f° og %.1f°.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Længdegrad skal være mellem %.1f° og %.1f°.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperaturer: %dK om dagen, %dK om natten\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Temperatur skal være mellem %uK og %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" -"Den høje tærskel for solhøjde kan ikke være lavere end den lave tærskel for " -"solhøjde.\n" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "Værdi for lysstyrke skal være mellem %.1f og %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "Lysstyrke: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Gamma-værdi skal være mellem %.1f og %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" -msgstr "Prøver næste farvejusteringsmetode...\n" +msgstr "Prøver næste metode...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" -msgstr "Bruger farvejusteringsmetoden `%s'.\n" +msgstr "Bruger metoden `%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" -msgstr "Der er ikke flere justeringsmetoder som kan prøves.\n" +msgstr "Der er ikke flere metoder som kan prøves.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "Venter på at nuværende placering bliver tilgængelig...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Solhøjde: %f°\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Tryk på ctrl-c for at stoppe...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Anvendelse: %s -l BRE:LÆN -t DAG:NAT [TILVALG...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Indstil skærmens farvetemperatur ud fra klokkeslæt.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tViser denne hjælpemeddelelse\n" +" -v\t\tUddybende output\n" +" -V\t\tVis programversion\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b DAG:NAT\tSkærmlysstyrke som skal anvendes (mellem 0.1 og 1.0)\n" +" -c FIL\tIndlæs indstillinger fra angivne konfigurationsfil\n" +" -g R:G:B\tYderligere gammakorrektion som skal anvendes\n" +" -l BRE:LÆN\tDin nuværende placering\n" +" -l UDBYDER\tVælg udbyder til automatisk opdateringer af placering\n" +" \t\t(skriv `list' for at se tilgængelige udbydere)\n" +" -m METODE\tMetode som skal bruges til at sætte farvetemperatur\n" +" \t\t(skriv `list' for at se tilgængelige metoder)\n" +" -o\t\tÉt skud-tilstand (juster ikke farvetemperaturen løbende)\n" +" -O TEMP\tManuel ét skud-tilstand (sæt farvetemperatur)\n" +" -p\t\tUdskriv tilstand (vis kun parametre og afslut)\n" +" -P\t\tNulstil eksisterende gammatabeller inden nye farveeffekter anvendes\n" +" -x\t\tNulstil tilstand (fjern justering fra skærm)\n" +" -r\t\tDeaktivér fading mellem farvetemperaturer\n" +" -t DAG:NAT\tFarvetemperatur som skal sættes ved dag/nat\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" msgstr "" +"Den neutrale temperatur er %uK. Når denne værdi benyttes vil der\n" +"ikke ske nogen ændringer af farvetemperaturen. En højere værdi vil\n" +"resultere i mere blåt lås, mens en lavere værdi vil resultere\n" +"i mere rødt lys.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Standardværdier:\n" +"\n" +" Dagtemperatur: %uK\n" +" Nattemperatur: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Tilgængelige justeringsmetoder:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Specificer indstillinger separeret med kolon: `-m METODE:VALG'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Prøv `-m METODE:help' for at få hjælp.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Tilgængelige placeringsudbydere:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "Specificer indstillinger separeret med kolon: `-l UDBYDER:VALG'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Prøv `-l UDBYDER:help' for at få hjælp.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Fejl i gamma-argument.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Prøv `-h' for mere information.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Ukendt placeringsudbyder `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Ukendt justeringsmetode: `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Fejl i temperaturargument.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Fejl i gamma indstilling.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Forkert udformet indstilling for solnedgang `%s'.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Forkert udformet indstilling for solopgang `%s'.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Ukendt konfigurationsindstilling `%s'.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" @@ -456,56 +513,61 @@ msgstr "Fejl ved variabeltildeling i konfigurationsfil.\n" msgid "Assignment outside section in config file.\n" msgstr "Variabeltildeling udenfor sektion i konfigurationsfil.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Kunne ikke åbne DRM-enhed: %s\n" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "Kunne ikke få fat i DRM tilstandsresourcer\n" +msgstr "Kunne ikke få fat i DRM tilstandsressourcer\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d eksisterer ikke. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Gyldige CRTCer er [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Kun CRTC 0 eksisterer.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "CRTC %i er forsvundet, springer over\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -"Kunne ikke få fat i størrelsen på gammatabelen for CRTC %i\n" +"Kunne ikke få fat i størrelsen på gammatabellen for CRTC %i\n" "på grafikkort %i, ignorerer enheden.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -"DRM kunne ikke læse gammatabelen for CRTC %i på\n" +"DRM kunne ikke læse gammatabellen for CRTC %i på\n" "grafikkort %i, ignorerer enheden.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "Juster gammatabelerne med Direct Rendering Manager\n" +msgstr "Juster gammatabellerne med Direct Rendering Manager.\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" @@ -513,279 +575,228 @@ msgstr "" " card=N\tGrafikkort som skal justeres\n" " crtc=N\tCRTC som skal justeres\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "CRTC skal være et ikke-negativt heltal\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "Ukendt parameter til justeringsmetode: `%s'.\n" +msgstr "Ukendt metodeparameter: `%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "`%s' returnerede fejlen %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Ikke-understøttet RANDR version (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Skærm %i kunne ikke findes.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Størrelsen på gammatabellen er for lille: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Kan ikke genskabe CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Juster gammatabellerne med X RANDR udvidelsen.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" msgstr "" -" screen=N\tX sckærm som skal justeres\n" -" crtc=N\tCRTC som skal justeres\n" +" screen=N\t\tX-skærm som skal justeres\n" +" crtc=N\tListe over kommasepareret CRTC'er som skal justeres\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Kan ikke læse skærmnummer: `%s'.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" +"Parameteren `%s` er nu altid til. Brug kommandolinjetilvalget `%s` for at " +"deaktivere.\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "Fejl ved X forespørgsel: %s\n" +msgstr "X-anmodning mislykkede: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Juster gammatabellerne med X VidMode udvidelsen.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" -" screen=N\tX sckærm som skal justeres\n" -" crtc=N\tCRTC som skal justeres\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tX-skærm som skal justeres\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Kan ikke gemme nuværende gammatabeller.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "Juster gammatabellerne i OSX med Quartz\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Juster gammatabellerne i macOS med Quartz.\n" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Fejl ved åbning af enhedskontekst.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Skærmenhed understøtter ikke gammatabeller.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Juster gammatabeller med Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Kan ikke genskabe gammatabeller.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Kan ikke sætte gammatabeller.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"ADVARSEL: Bruger dummy-gammametode! Skærmen påvirkes ikke af denne " +"gammametode.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -"Har ingen effect på skærmen men udskriver farvetemperaturen til terminalen.\n" +"Påvirker ikke skærmen men udskriver farvetemperaturen til terminalen.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "Temperatur: %i\n" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "Brug placeringen som Geoclue placeringsmetoden bidrager.\n" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -"BEMÆRK: På nuværende tidspunkt bliver %s kun checket ved opstart \n" -"hvilket betyder at Redshift skal genstartes for at opdatere placeringen.\n" +"Adgang til den nuværende placering blev nægtet af GeoClue!\n" +"Sørg for at placeringstjenesten er aktiveret og at Redshift har tilladelse\n" +"til at bruge placeringstjenesterne. Se https://github.com/jonls/redshift#faq " +"for mere\n" +"information.\n" -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "Kunne ikke hente placeringen: %s.\n" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "Brug placeringen som GeoClue2 pleceringmetoden bidrager.\n" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "Kunne ikke få fat i placeringen: %s.\n" +msgstr "Kan ikke indhente placeringen: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Kan ikke indhente GeoClue-håndtering: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "Kan ikke indhente GeoClue-klientsti: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "Kan ikke indhente GeoClue-klient: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Kan ikke sætte distancetærskel: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "Kan ikke starte GeoClue-klient: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "Kunne ikke starte GeoClue2-udbyder!\n" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Brug placeringen som opdaget af en GeoClue2-udbyder.\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "Ikke autentificeret til at indhente placering fra CoreLocation.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "Fejl ved indhentning af placering fra CoreLocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "Venter på autentificering til indhentelse af placering...\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "Anmodning for placering blev ikke autentificeret!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Kunne ikke starte CoreLocation-udbyder!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Brug placeringen som opdaget af Corelocation-udbyderen.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Breddegrad og længdegrad skal angives.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Specificer placering manuelt.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -793,65 +804,66 @@ msgstr "" " lat=N\t\tBreddegrad\n" " lon=N\t\tLængdegrad\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" "Begge værdier skal angives som decimaltal,\n" -"negative værdier representerer respektivt vest og syd.\n" +"negative værdier repræsenterer henholdsvis vest og syd.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Fejl i parameteren.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "Deaktiver i" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "30 minutter" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "1 time" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "2 timer" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Automatisk opstart" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "Information" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "Afslut" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "Luk" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "<b>Status:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "Farvetemperatur" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "Periode" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "Placering" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tX skærm som skal justeres\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Kør venligst `redshift -h` for at få hjælp." @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:53+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-10-30 16:39+0000\n" +"Last-Translator: Tobias Bannert <tobannert@gmail.com>\n" "Language-Team: German <de@li.org>\n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: de\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,8 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift passt die Farbtemperator des Bildschirms an die Umgebung an. Somit " +"werden die Augen geschont wenn man nachts am Bildschirm arbeitet." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,741 +34,774 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"Die Farbtemperatur wird entsprechend zum Stand der Sonne eingestellt. In der " +"Nacht und am Tag werden verschiedene Farbtemperaturen verwendet. Während der " +"Dämmerung und am frühen Morgen wird die Farbtemperatur weich von Nacht auf " +"Tag umgestellt, damit sich Ihre Augen langsam anpassen können." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Dieses Programm bietet ein Statussymbol, das es dem Benutzer ermöglicht, " +"Redshift zu steuern." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"Das Redshift-Informationsfenster mit einem Beispiel des Rötungseffektes " +"überlagert" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Farbtemperaturanpassung" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Farbtemperaturanpassungswerkzeug" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Unbekannt" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Tagsüber" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Nachts" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Übergang" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Zeitraum: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Zeitraum: %s (%.2f%% Tag)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "O" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "W" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Benutzung: %s -l BREITE:LÄNGE -t TAG:NACHT [OPTIONEN …]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Farbtemperatur des Bildschirms je nach Tageszeit ändern.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tDiese Hilfe-Nachricht anzeigen\n" -" -v\t\tAusführliche Ausgabe\n" -" -V\t\tProgrammversion anzeigen\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"Die neutrale Temperatur ist %u K. Dieser Wert wird\n" -"die Farbtemperatur des Bildschirms nicht verändern.\n" -"Eine höhere Farbtemperatur ergibt blaueres Licht,\n" -"eine niedrige ergibt roteres Licht.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Vorgabewerte:\n" -"\n" -" Temperatur tagsüber: %uK\n" -" Temperatur nachts: %uK\n" +msgstr "Standort: %.2f° %s, %.2f° %s\n" -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Bitte melden Sie Fehler auf <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Verfügbare Änderungsmethoden:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "Geben Sie kommaseparierte Optionen an: »-m METHODE:OPTIONEN«.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Benutzen Sie »-m METHODE:help« für Hilfe.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Verfügbare Standortbestimmungs-Dienste:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "Geben Sie kommaseparierte Optionen an: »-l DIENST:OPTIONEN«.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Benutzen Sie »-l DIENST:help« für Hilfe.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "Starten von %s fehlgeschlagen.\n" +msgstr "Starten von %s ist fehlgeschlagen.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "Setzen der Option %s fehlgeschlagen.\n" +msgstr "Festlegen der Option %s ist fehlgeschlagen.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "Benutzen Sie »-l %s:help« für weitere Informationen.\n" +msgstr "Bitte »-l %s:help« für weitere Informationen versuchen.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Analysieren von Option »%s« ist fehlgeschlagen.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" -msgstr "Starten des Dienstes %s fehlgeschlagen.\n" +msgstr "Starten des Anbieters »%s« ist fehlgeschlagen.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "Probieren Sie '-m%s:hilfe' für mehr Information.\n" +msgstr "Bitte »-m%s:help« für weitere Informationen versuchen.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" -msgstr "Benutzen Sie »-m %s:help« für weitere Informationen.\n" +msgstr "Bitte »-m%s:help« für weitere Informationen versuchen.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" -msgstr "Starten der Änderungsmethode %s fehlgeschlagen.\n" +msgstr "Starten der Änderungsmethode %s ist fehlgeschlagen.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Der Breitengrad muss sich zwischen %.1f und %.1f befinden.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Der Längengrad muss sich zwischen %.1f und %.1f befinden.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" -msgstr "Konnte Systemzeit nicht auslesen.\n" +msgstr "Systemzeit konnte nicht ausgelesen werden.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Es wird gewartet, bis der anfängliche Standort verfügbar ist …\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Standort konnte nicht vom Anbieter erhalten werden.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Es ist ein ungültiger Standort vom Anbieter geliefert worden.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Farbtemperatur: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Helligkeit: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Temperaturänderung fehlgeschlagen.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Status: %s\n" -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Fehlerhaftes Kommando für Gamma-Wert.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Deaktiviert" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Benutzen Sie »-h« für mehr Informationen.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Aktiviert" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Unbekannter Dienst »%s«.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Temperaturänderung ist fehlgeschlagen.\n" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Unbekanntes Anpassungsverfahren »%s«\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"Standort kann derzeit nicht ermittelt werden, stattdessen wird der vorherige " +"Standort verwendet.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Fehlerhaftes Kommando für Temperatur.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Teilzeitkonfiguration wird nicht unterstützt!\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Verkehrte Gamma-Einstellung.\n" - -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Unbekannte Konfigurationseinstellung »%s«\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" +"Ungültige Einstellung der Zeiten für Morgengrauen und Abenddämmerung!\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "Standortanbieter »%s« wird versucht …\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "Nächster Dienst wird getestet …\n" +msgstr "Nächster Anbieter wird versucht …\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "Dienst »%s« wird benutzt.\n" +msgstr "Anbieter »%s« wird verwendet.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "Keine weiteren Dienste verfügbar.\n" +msgstr "Keine weiteren Standortanbieter verfügbar.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Konnte Standort nicht vom Dienst erhalten.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" +"Eine hohe Übergangshöhe kann nicht kleiner sein, als die niedrige " +"Übergangshöhe.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" - -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Der Breitengrad muss sich zwischen %.1f und %.1f befinden.\n" +msgstr "Sonnenstand: Tag oben %.1f, Nacht unten %.1f\n" -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Der Längengrad muss sich zwischen %.1f und %.1f befinden.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Farbtemperatur: %dK tagsüber, %dK nachts\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Die Temperatur muss sich zwischen %uK und %uK befinden.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "Der Helligkeitswert muss zwischen %.1f und %.1f liegen.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "Helligkeit: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Der Gamma-Wert muss sich zwischen %.1f und %.1f befinden.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Nächste Methode wird getestet …\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "Methode »%s« wird benutzt.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Keine weiteren Methoden verfügbar.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "Es wird gewartet, bis der derzeitige Standort verfügbar ist …\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Sonnenstand: %f°\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Strg-c drücken, um anzuhalten …\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Benutzung: %s -l BREITE:LÄNGE -t TAG:NACHT [OPTIONEN …]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Farbtemperatur des Bildschirms je nach Tageszeit ändern.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tDiese Hilfenachricht anzeigen\n" +" -v\t\tAusführliche Ausgabe\n" +" -V\t\tProgrammversion anzeigen\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b TAG:NACHT\tBildschirmhelligkeit zum Anwenden (zwischen 0.1 und 1.0)\n" +" -c DATEI\tEinstellungen aus der angegebenen Konfigurationsdatei laden\n" +" -g R:G:B\tZusätzliche Gamma-Korrektur zum Anwenden\n" +" -l BREIT:LÄNG\tIhr aktueller Standort in Breiten- und Längengrad\n" +" -l ANBIETER\tAnbieter für automatische Standortaktualisierungen auswählen\n" +" \t\t(»list« für verfügbare Anbieter eingeben)\n" +" -m METHODE\tMethode zum Einstellen der Farbtemperatur\n" +" \t\t(»list« für verfügbare Methoden eingeben)\n" +" -o\t\tEinmaliger-Modus (Farbtemperatur nicht kontinuierlich anpassen)\n" +" -O TEMP\tEinmaliger-Manueller-Modus (Farbtemperatur einstellen)\n" +" -p\t\tAusgabemodus (nur die Werte ausgeben und beenden)\n" +" -P\t\tGammaanstieg zurücksetzen, vor Anwenden des neuen Farbeffektes\n" +" -x\t\tZurücksetzmodus (Anpassung vom Bildschirm entfernen)\n" +" -r\t\tAusblenden zwischen Farbtemperaturen deaktivieren\n" +" -t TAG:NACHT\tFarbtemperatur zur Anwendung bei Tag/Nacht\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"Die neutrale Temperatur ist %uK. Benutzung dieses Wertes ändert nicht\n" +"die Farbtemperatur des Bildschirms. Das Einstellen der Farbtemperatur\n" +"auf einen höheren Wert als diesen führt zu mehr blauem Licht,\n" +"und ein kleinerer führt zu röterem Licht.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" msgstr "" +"Vorgabewerte:\n" +"\n" +" Temperatur tagsüber: %uK\n" +" Temperatur nachts: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Verfügbare Änderungsmethoden:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Bitte durch Komma getrente Optionen angeben: »-m METHODE:OPTIONEN«.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "»-m METHODE:help« für Hilfe versuchen.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Verfügbare Standortanbieter:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Bitte durch Komma getrente Optionen angeben: »-l ANBIETER:OPTIONEN«.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "»-l ANBIETER:help« für Hilfe versuchen.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Fehlerhafter Gammawert.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Bitte »-h« für weitere Informationen versuchen.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Unbekannter Standortanbieter »%s«.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Unbekanntes Anpassungsverfahren »%s«\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Fehlerhafter Temperaturwert.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Fehlerhafte Gammaeinstellung.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Fehlerhafte Morgendämmerungszeiteinstellung »%s«.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Fehlerhafte Abenddämmerungszeiteinstellung »%s«.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Unbekannte Konfigurationseinstellung »%s«\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "Verunstaltete Header-Sektion in der Konfigurationsdatei.\n" +msgstr "Fehlerhafte Abschnittsüberschrift in der Konfigurationsdatei.\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "Verunstaltete Abgrenzung in der Konfigurationsdatei.\n" +msgstr "Fehlerhafte Zuordnung in der Konfigurationsdatei.\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" -msgstr "Zuweisung außerhalb von Sektion in Konfigurationsdatei.\n" +msgstr "Zuordnung außerhalb des Teils in der Konfigurationsdatei.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Öffnen des DRM-Gerätes ist fehlgeschlagen: %s\n" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "Erhalt der DRM-Modus-Quellen ist fehlgeschlagen\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " -msgstr "CRTC %d gibt es nicht. " +msgstr "CRTC %d ist nicht vorhanden. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Gültige CRTCs sind [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Es gibt nur CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "CRTC %i verloren, es wird übersprungen\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" +"Gamma-Anstieg kann nicht für CRTC %i\n" +"auf Grafikkarten %i erhalten werden.\n" +"Gerät wird ausgeschlossen\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" +"DRM kann den Gamma-Anstieg von CRTC %i an\n" +"Grafikkarten %i nicht lesen. Gerät wird ausgeschlossen.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "" +msgstr "Gamma-Anstiege mit Direct-Rendering-Manager (DRM) einstellen.\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\tGrafikkarte zum Anpassen\n" +" crtc=N\tCRTC zum Anpassen\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "" +msgstr "CRTC muss eine nicht-negative Ganzzahl sein\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "Unbekanntes Kommando für Methode: »%s«.\n" +msgstr "Unbekannter Methodenwert: »%s«.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "»%s« gab einen Fehler zurück %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Nicht unterstützte RANDR-Version (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" -msgstr "Konnte Bildschirm %i nicht finden.\n" +msgstr "Bildschirm %i konnte nicht gefunden werden.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Gamma-Anstiegswert zu klein: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" -msgstr "Konnte CRTC nicht wiederherstellen %i\n" +msgstr "CRTC %i konnte nicht wiederhergestellt werden\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Gamma-Anstieg mit der X-RANDR-Erweiterung ändern.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" screen=N\t\tX-Bildschirm zum Anpassen\n" +" crtc=N\tListe von durch Komma getrennter CRTCs zum Anpassen\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Bildschirmnummer kann nicht gelesen werden: »%s«.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -" screen=N\tX-Bildschirm, auf den die Veränderungen angewandt werden\n" -" crtc=N\tCRTC, auf den die Veränderungen angewandt werden\n" +"Wert »%s« ist jetzt immer an; zum deaktivieren bitte die Befehlszeilenoption " +"»%s« benutzen.\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "X-Anfrage fehlgeschlagen: %s\n" +msgstr "X-Anfrage ist fehlgeschlagen: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Gamma-Änstiegswerte mit der X-VidMode-Erweiterung ändern.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" -" screen=N\tX-Bildschirm, auf den die Veränderungen angewandt werden\n" -" crtc=N\tCRTC, auf den die Veränderungen angewandt werden\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tX-Bildschirm zum Anpassen\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "Konnte aktuellen Gamma-Anstiegswert nicht speichern.\n" - -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" +msgstr "Aktueller Gamma-Anstieg konnte nicht gespeichert werden.\n" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Gamma-Anstiege auf MacOS mit Quarz anpassen.\n" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "Konnte Gerätekontext nicht öffnen.\n" +msgstr "Gerätekontext konnte nicht geöffnet werden.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Anzeigegerät unterstützt Gamma-Anstieg nicht.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" -msgstr "Gamma-Anstieg mit der Windows GDI ändern.\n" +msgstr "Gamma-Anstieg mit der Windows-GDI ändern.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "Konnte Gamma-Anstieg nicht wiederherstellen.\n" +msgstr "Gamma-Anstiege konnten nicht wiederhergestellt werden.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "Konnte Gamma-Anstieg nicht festlegen.\n" +msgstr "Gamma-Anstiege konnten nicht festgelegt werden.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"ACHTUUNG: es wird eine Pseudo-Gamma-Methode verwendet! Der Bildschirm wird " +"von dieser Methode nicht beeinflusst.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"Beeinflusst nicht den Bildschirm aber gibt die Farbtemperatur im Terminal " +"aus.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" +msgstr "Temperatur: %i\n" -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" +"Zugriff auf den aktuellen Standort wurde von GeoClue verweigert!\n" +"Stellen Sie sicher, dass die Standortdienste aktiviert sind und dass\n" +"Redshift Standortdienste verwenden darf.\n" +"Weitere Infos unter: https://github.com/jonls/redshift#faq\n" -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Standort konnte nicht erhalten werden: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "GeoClue-Verwalter konnte nicht erhalten werden: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "GeoClue-Programmpfad konnte nicht erhalten werden: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "GeoClue-Programm konnte nicht erhalten werden: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Distanzgrenzwert konnte nicht festgelegt werden: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "GeoClue-Programm konnte nicht gestartet werden: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "Starten des GeoClue2-Anbieters ist fehlgeschlagen!\n" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Die vom GeoClue2-Anbieter erkannten Standort verwenden.\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "Keine Legitimation den Standort von CoreLocation zu erhalten.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "Fehler beim Erhalt des Standortes von CoreLocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "Auf die Legitimation zum Erhalt des Standortes wird gewartet …\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "Anfrage des Standortes wurde nicht genehmigt!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Starten des CoreLocation-Anbieters ist fehlgeschlagen!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" +"Den Standortes die vom Corelocation-Anbieter erkannt wurde verwenden.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Breiten- und Längengrad müssen festgelegt sein.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Standort manuell festlegen.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -774,63 +809,66 @@ msgstr "" " lat=N\t\tBreitengrad\n" " lon=N\t\tLängengrad\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" +"Beide Werte werden erwartet Gleitkommazahlen zu sein,\n" +"negative Werte stehen für Westen oder Süden.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" -msgstr "Fehlerhaftes Kommando.\n" +msgstr "Fehlerhafter Wert.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Unterbrechen für" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 Minuten" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 Stunde" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 Stunden" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Automatischer Start" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "Information" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Beenden" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Schließen" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Status:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Farbtemperatur" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Zeitraum" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "Standort" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tX-Bildschirm, auf den die Änderungen angewandt werden\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Bitte »redshift -h« für Hilfe ausführen." @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" "PO-Revision-Date: 2014-12-03 08:49+0000\n" "Last-Translator: Efstathios Iosifidis <Unknown>\n" "Language-Team: Greek <el@li.org>\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: el\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -44,179 +44,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Για βοήθεια, δοκιμάστε `-m METHOD:help'\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Για βοήθεια, δοκιμάστε `-l PROVIDER:help'\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "Αποτυχία αρχικοποίησης του %s.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Αποτυχία ορισμού της επιλογής %s.\n" @@ -224,205 +128,339 @@ msgstr "Αποτυχία ορισμού της επιλογής %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Για περισσότερες πληροφορίες, δοκιμάστε `-l %s:help'.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Για περισσότερες πληροφορίες, δοκιμάστε `-m %s:help'.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" +msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" msgstr "" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" msgstr "" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Για βοήθεια, δοκιμάστε `-m METHOD:help'\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Για βοήθεια, δοκιμάστε `-l PROVIDER:help'\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "" @@ -435,380 +473,335 @@ msgstr "" msgid "Assignment outside section in config file.\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "" -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po new file mode 100644 index 0000000..6149279 --- /dev/null +++ b/po/en_GB.po @@ -0,0 +1,871 @@ +# English (United Kingdom) translation for redshift +# Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 +# This file is distributed under the same license as the redshift package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: redshift\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-01-01 12:55+0000\n" +"Last-Translator: Andi Chandler <Unknown>\n" +"Language-Team: English (United Kingdom) <en_GB@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 +msgid "" +"Redshift adjusts the color temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." +msgstr "" +"Redshift adjusts the colour temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 +msgid "" +"The color temperature is set according to the position of the sun. A " +"different color temperature is set during night and daytime. During twilight " +"and early morning, the color temperature transitions smoothly from night to " +"daytime temperature to allow your eyes to slowly adapt." +msgstr "" +"The colour temperature is set according to the position of the Sun. A " +"different colour temperature is set during night and daytime. During " +"twilight and early morning, the colour temperature transitions smoothly from " +"night to daytime temperature to allow your eyes to slowly adapt." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 +msgid "" +"This program provides a status icon that allows the user to control Redshift." +msgstr "" +"This program provides a status icon that allows the user to control Redshift." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 +msgid "" +"The Redshift information window overlaid with an example of the redness " +"effect" +msgstr "" +"The Redshift information window overlaid with an example of the redness " +"effect" + +#: ../data/applications/redshift.desktop.in.h:1 +#: ../data/applications/redshift-gtk.desktop.in.h:1 +msgid "Redshift" +msgstr "Redshift" + +#: ../data/applications/redshift.desktop.in.h:2 +#: ../data/applications/redshift-gtk.desktop.in.h:2 +msgid "Color temperature adjustment" +msgstr "Colour temperature adjustment" + +#: ../data/applications/redshift.desktop.in.h:3 +#: ../data/applications/redshift-gtk.desktop.in.h:3 +msgid "Color temperature adjustment tool" +msgstr "Colour temperature adjustment tool" + +#. TRANSLATORS: Name printed when period of day is unknown +#: ../src/redshift.c:135 +msgid "None" +msgstr "None" + +#: ../src/redshift.c:136 ../src/redshift.c:1107 +msgid "Daytime" +msgstr "Daytime" + +#: ../src/redshift.c:137 ../src/redshift.c:1111 +msgid "Night" +msgstr "Night" + +#: ../src/redshift.c:138 +msgid "Transition" +msgstr "Transition" + +#: ../src/redshift.c:225 +#, c-format +msgid "Period: %s\n" +msgstr "Period: %s\n" + +#: ../src/redshift.c:228 +#, c-format +msgid "Period: %s (%.2f%% day)\n" +msgstr "Period: %s (%.2f%% day)\n" + +#. TRANSLATORS: Abbreviation for `north' +#: ../src/redshift.c:240 +msgid "N" +msgstr "N" + +#. TRANSLATORS: Abbreviation for `south' +#: ../src/redshift.c:242 +msgid "S" +msgstr "S" + +#. TRANSLATORS: Abbreviation for `east' +#: ../src/redshift.c:244 +msgid "E" +msgstr "E" + +#. TRANSLATORS: Abbreviation for `west' +#: ../src/redshift.c:246 +msgid "W" +msgstr "W" + +#. TRANSLATORS: Append degree symbols after %f if possible. +#. The string following each number is an abreviation for +#. north, source, east or west (N, S, E, W). +#: ../src/redshift.c:251 +#, c-format +msgid "Location: %.2f %s, %.2f %s\n" +msgstr "Location: %.2f %s, %.2f %s\n" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "Initialisation of %s failed.\n" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "Failed to set %s option.\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "Try `-l %s:help' for more information.\n" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "Failed to parse option `%s'.\n" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "Failed to start provider %s.\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "Try `-m %s:help' for more information.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "Try -m %s:help' for more information.\n" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "Failed to start adjustment method %s.\n" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Latitude must be between %.1f and %.1f.\n" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Longitude must be between %.1f and %.1f.\n" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "Unable to read system time.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Waiting for initial location to become available...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Unable to get location from provider.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Invalid location returned from provider.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "Colour temperature: %uK\n" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "Brightness: %.2f\n" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Status: %s\n" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Disabled" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Enabled" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Temperature adjustment failed.\n" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Partial time-configuration not supported!\n" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Invalid dawn/dusk time configuration!\n" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "Trying location provider `%s'...\n" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "Trying next provider...\n" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "Using provider `%s'.\n" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "No more location providers to try.\n" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "Solar elevations: day above %.1f, night below %.1f\n" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperatures: %dK at day, %dK at night\n" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "Temperature must be between %uK and %uK.\n" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "Brightness values must be between %.1f and %.1f.\n" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "Brightness: %.2f:%.2f\n" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "Gamma value must be between %.1f and %.1f.\n" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "Trying next method...\n" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "Using method `%s'.\n" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "No more methods to try.\n" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "Waiting for current location to become available...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "Solar elevation: %f\n" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "Press ctrl-c to stop...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Set colour temperature of display according to time of day.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set colour temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust colour temperature)\n" +" -O TEMP\tOne shot manual mode (set colour temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new colour effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between colour temperatures\n" +" -t DAY:NIGHT\tColour temperature to set at daytime/night\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"The neutral temperature is %uK. Using this value will not change the colour\n" +"temperature of the display. Setting the colour temperature to a value " +"higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Available adjustment methods:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Try `-m METHOD:help' for help.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Available location providers:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Try `-l PROVIDER:help' for help.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Malformed gamma argument.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Try `-h' for more information.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Unknown location provider `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Unknown adjustment method `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Malformed temperature argument.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Malformed gamma setting.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Malformed dawn-time setting `%s'.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Malformed dusk-time setting `%s'.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Unknown configuration setting `%s'.\n" + +#: ../src/config-ini.c:167 +msgid "Malformed section header in config file.\n" +msgstr "Malformed section header in config file.\n" + +#: ../src/config-ini.c:203 +msgid "Malformed assignment in config file.\n" +msgstr "Malformed assignment in config file.\n" + +#: ../src/config-ini.c:214 +msgid "Assignment outside section in config file.\n" +msgstr "Assignment outside section in config file.\n" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Failed to open DRM device: %s\n" + +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "Failed to get DRM mode resources\n" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 +#, c-format +msgid "CRTC %d does not exist. " +msgstr "CRTC %d does not exist. " + +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 +#, c-format +msgid "Valid CRTCs are [0-%d].\n" +msgstr "Valid CRTCs are [0-%d].\n" + +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 +#, c-format +msgid "Only CRTC 0 exists.\n" +msgstr "Only CRTC 0 exists.\n" + +#: ../src/gamma-drm.c:159 +#, c-format +msgid "CRTC %i lost, skipping\n" +msgstr "CRTC %i lost, skipping\n" + +#: ../src/gamma-drm.c:165 +#, c-format +msgid "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" +msgstr "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" + +#: ../src/gamma-drm.c:178 +#, c-format +msgid "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" +msgstr "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" + +#: ../src/gamma-drm.c:242 +msgid "Adjust gamma ramps with Direct Rendering Manager.\n" +msgstr "Adjust gamma ramps with Direct Rendering Manager.\n" + +#. TRANSLATORS: DRM help output +#. left column must not be translated +#: ../src/gamma-drm.c:247 +msgid "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" +msgstr "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" + +#: ../src/gamma-drm.c:260 +#, c-format +msgid "CRTC must be a non-negative integer\n" +msgstr "CRTC must be a non-negative integer\n" + +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 +#, c-format +msgid "Unknown method parameter: `%s'.\n" +msgstr "Unknown method parameter: `%s'.\n" + +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 +#, c-format +msgid "`%s' returned error %d\n" +msgstr "`%s' returned error %d\n" + +#: ../src/gamma-randr.c:103 +#, c-format +msgid "Unsupported RANDR version (%u.%u)\n" +msgstr "Unsupported RANDR version (%u.%u)\n" + +#: ../src/gamma-randr.c:138 +#, c-format +msgid "Screen %i could not be found.\n" +msgstr "Screen %i could not be found.\n" + +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 +#, c-format +msgid "Gamma ramp size too small: %i\n" +msgstr "Gamma ramp size too small: %i\n" + +#: ../src/gamma-randr.c:277 +#, c-format +msgid "Unable to restore CRTC %i\n" +msgstr "Unable to restore CRTC %i\n" + +#: ../src/gamma-randr.c:301 +msgid "Adjust gamma ramps with the X RANDR extension.\n" +msgstr "Adjust gamma ramps with the X RANDR extension.\n" + +#. TRANSLATORS: RANDR help output +#. left column must not be translated +#: ../src/gamma-randr.c:306 +msgid "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Unable to read screen number: `%s'.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 +#, c-format +msgid "X request failed: %s\n" +msgstr "X request failed: %s\n" + +#: ../src/gamma-vidmode.c:140 +msgid "Adjust gamma ramps with the X VidMode extension.\n" +msgstr "Adjust gamma ramps with the X VidMode extension.\n" + +#. TRANSLATORS: VidMode help output +#. left column must not be translated +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tX screen to apply adjustments to\n" + +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 +msgid "Unable to save current gamma ramp.\n" +msgstr "Unable to save current gamma ramp.\n" + +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Adjust gamma ramps on macOS using Quartz.\n" + +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 +msgid "Unable to open device context.\n" +msgstr "Unable to open device context.\n" + +#: ../src/gamma-w32gdi.c:75 +msgid "Display device does not support gamma ramps.\n" +msgstr "Display device does not support gamma ramps.\n" + +#: ../src/gamma-w32gdi.c:115 +msgid "Adjust gamma ramps with the Windows GDI.\n" +msgstr "Adjust gamma ramps with the Windows GDI.\n" + +#: ../src/gamma-w32gdi.c:153 +msgid "Unable to restore gamma ramps.\n" +msgstr "Unable to restore gamma ramps.\n" + +#: ../src/gamma-w32gdi.c:211 +msgid "Unable to set gamma ramps.\n" +msgstr "Unable to set gamma ramps.\n" + +#: ../src/gamma-dummy.c:43 +msgid "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" +msgstr "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" + +#: ../src/gamma-dummy.c:60 +msgid "" +"Does not affect the display but prints the color temperature to the " +"terminal.\n" +msgstr "" +"Does not affect the display but prints the colour temperature to the " +"terminal.\n" + +#: ../src/gamma-dummy.c:75 +#, c-format +msgid "Temperature: %i\n" +msgstr "Temperature: %i\n" + +#: ../src/location-geoclue2.c:59 +#, c-format +msgid "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" +msgstr "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" + +#: ../src/location-geoclue2.c:107 +#, c-format +msgid "Unable to obtain location: %s.\n" +msgstr "Unable to obtain location: %s.\n" + +#: ../src/location-geoclue2.c:150 +#, c-format +msgid "Unable to obtain GeoClue Manager: %s.\n" +msgstr "Unable to obtain GeoClue Manager: %s.\n" + +#: ../src/location-geoclue2.c:166 +#, c-format +msgid "Unable to obtain GeoClue client path: %s.\n" +msgstr "Unable to obtain GeoClue client path: %s.\n" + +#: ../src/location-geoclue2.c:188 +#, c-format +msgid "Unable to obtain GeoClue Client: %s.\n" +msgstr "Unable to obtain GeoClue Client: %s.\n" + +#: ../src/location-geoclue2.c:229 +#, c-format +msgid "Unable to set distance threshold: %s.\n" +msgstr "Unable to set distance threshold: %s.\n" + +#: ../src/location-geoclue2.c:253 +#, c-format +msgid "Unable to start GeoClue client: %s.\n" +msgstr "Unable to start GeoClue client: %s.\n" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "Failed to start GeoClue2 provider!\n" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Use the location as discovered by a GeoClue2 provider.\n" + +#: ../src/location-corelocation.m:73 +msgid "Not authorized to obtain location from CoreLocation.\n" +msgstr "Not authorised to obtain location from CoreLocation.\n" + +#: ../src/location-corelocation.m:111 +#, c-format +msgid "Error obtaining location from CoreLocation: %s\n" +msgstr "Error obtaining location from CoreLocation: %s\n" + +#: ../src/location-corelocation.m:120 +msgid "Waiting for authorization to obtain location...\n" +msgstr "Waiting for authorisation to obtain location...\n" + +#: ../src/location-corelocation.m:122 +msgid "Request for location was not authorized!\n" +msgstr "Request for location was not authorised!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Failed to start CoreLocation provider!\n" + +#: ../src/location-corelocation.m:235 +msgid "Use the location as discovered by the Corelocation provider.\n" +msgstr "Use the location as discovered by the Corelocation provider.\n" + +#: ../src/location-manual.c:59 +msgid "Latitude and longitude must be set.\n" +msgstr "Latitude and Longitude must be set.\n" + +#: ../src/location-manual.c:75 +msgid "Specify location manually.\n" +msgstr "Specify location manually.\n" + +#. TRANSLATORS: Manual location help output +#. left column must not be translated +#: ../src/location-manual.c:80 +msgid "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" +msgstr "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" + +#: ../src/location-manual.c:83 +msgid "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" +msgstr "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" + +#: ../src/location-manual.c:97 +msgid "Malformed argument.\n" +msgstr "Malformed argument.\n" + +#: ../src/redshift-gtk/statusicon.py:78 +msgid "Suspend for" +msgstr "Suspend for" + +#: ../src/redshift-gtk/statusicon.py:80 +msgid "30 minutes" +msgstr "30 minutes" + +#: ../src/redshift-gtk/statusicon.py:81 +msgid "1 hour" +msgstr "1 hour" + +#: ../src/redshift-gtk/statusicon.py:82 +msgid "2 hours" +msgstr "2 hours" + +#: ../src/redshift-gtk/statusicon.py:91 +msgid "Autostart" +msgstr "Autostart" + +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 +msgid "Info" +msgstr "Info" + +#: ../src/redshift-gtk/statusicon.py:108 +msgid "Quit" +msgstr "Quit" + +#: ../src/redshift-gtk/statusicon.py:146 +msgid "Close" +msgstr "Close" + +#: ../src/redshift-gtk/statusicon.py:300 +msgid "<b>Status:</b> {}" +msgstr "<b>Status:</b> {}" + +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 +msgid "Color temperature" +msgstr "Colour temperature" + +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 +msgid "Period" +msgstr "Period" + +#: ../src/redshift-gtk/statusicon.py:318 +msgid "Location" +msgstr "Location" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Please run `redshift -h` for help output." diff --git a/po/eo.po b/po/eo.po new file mode 100644 index 0000000..a2a097d --- /dev/null +++ b/po/eo.po @@ -0,0 +1,816 @@ +# English (United Kingdom) translation for redshift +# Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 +# This file is distributed under the same license as the redshift package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: redshift\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2019-12-27 20:36+0100\n" +"Last-Translator: Jorge Maldonado Ventura <jorgesumle@freakspot.net>\n" +"Language-Team: English (United Kingdom) <en_GB@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Poedit 1.8.7.1\n" +"Language: eo\n" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 +msgid "" +"Redshift adjusts the color temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 +msgid "" +"The color temperature is set according to the position of the sun. A " +"different color temperature is set during night and daytime. During twilight " +"and early morning, the color temperature transitions smoothly from night to " +"daytime temperature to allow your eyes to slowly adapt." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 +msgid "" +"This program provides a status icon that allows the user to control Redshift." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 +msgid "" +"The Redshift information window overlaid with an example of the redness " +"effect" +msgstr "" + +#: ../data/applications/redshift.desktop.in.h:1 +#: ../data/applications/redshift-gtk.desktop.in.h:1 +msgid "Redshift" +msgstr "Redshift" + +#: ../data/applications/redshift.desktop.in.h:2 +#: ../data/applications/redshift-gtk.desktop.in.h:2 +msgid "Color temperature adjustment" +msgstr "" + +#: ../data/applications/redshift.desktop.in.h:3 +#: ../data/applications/redshift-gtk.desktop.in.h:3 +msgid "Color temperature adjustment tool" +msgstr "" + +#. TRANSLATORS: Name printed when period of day is unknown +#: ../src/redshift.c:135 +#, fuzzy +msgid "None" +msgstr "Nenio" + +#: ../src/redshift.c:136 ../src/redshift.c:1107 +msgid "Daytime" +msgstr "Tagtempo" + +#: ../src/redshift.c:137 ../src/redshift.c:1111 +msgid "Night" +msgstr "Nokto" + +#: ../src/redshift.c:138 +msgid "Transition" +msgstr "Transiro" + +#: ../src/redshift.c:225 +#, c-format +msgid "Period: %s\n" +msgstr "Period: %s\n" + +#: ../src/redshift.c:228 +#, c-format +msgid "Period: %s (%.2f%% day)\n" +msgstr "Periodo: %s (%.2f%% day)\n" + +#. TRANSLATORS: Abbreviation for `north' +#: ../src/redshift.c:240 +msgid "N" +msgstr "N" + +#. TRANSLATORS: Abbreviation for `south' +#: ../src/redshift.c:242 +msgid "S" +msgstr "S" + +#. TRANSLATORS: Abbreviation for `east' +#: ../src/redshift.c:244 +msgid "E" +msgstr "" + +#. TRANSLATORS: Abbreviation for `west' +#: ../src/redshift.c:246 +msgid "W" +msgstr "" + +#. TRANSLATORS: Append degree symbols after %f if possible. +#. The string following each number is an abreviation for +#. north, source, east or west (N, S, E, W). +#: ../src/redshift.c:251 +#, c-format +msgid "Location: %.2f %s, %.2f %s\n" +msgstr "Loko: %.2fº %s, %.2fº %s\n" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Stato: %s\n" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "Suna alteco: %f\n" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#. TRANSLATORS: help output 7 +#: ../src/options.c:218 +#, c-format +msgid "Please report bugs to <%s>\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Provu `-h' por pli da informo.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + +#: ../src/config-ini.c:167 +msgid "Malformed section header in config file.\n" +msgstr "" + +#: ../src/config-ini.c:203 +msgid "Malformed assignment in config file.\n" +msgstr "" + +#: ../src/config-ini.c:214 +msgid "Assignment outside section in config file.\n" +msgstr "" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 +#, c-format +msgid "CRTC %d does not exist. " +msgstr "" + +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 +#, c-format +msgid "Valid CRTCs are [0-%d].\n" +msgstr "" + +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 +#, c-format +msgid "Only CRTC 0 exists.\n" +msgstr "" + +#: ../src/gamma-drm.c:159 +#, c-format +msgid "CRTC %i lost, skipping\n" +msgstr "" + +#: ../src/gamma-drm.c:165 +#, c-format +msgid "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:178 +#, c-format +msgid "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:242 +msgid "Adjust gamma ramps with Direct Rendering Manager.\n" +msgstr "" + +#. TRANSLATORS: DRM help output +#. left column must not be translated +#: ../src/gamma-drm.c:247 +msgid "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-drm.c:260 +#, c-format +msgid "CRTC must be a non-negative integer\n" +msgstr "" + +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 +#, c-format +msgid "Unknown method parameter: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 +#, c-format +msgid "`%s' returned error %d\n" +msgstr "" + +#: ../src/gamma-randr.c:103 +#, c-format +msgid "Unsupported RANDR version (%u.%u)\n" +msgstr "" + +#: ../src/gamma-randr.c:138 +#, c-format +msgid "Screen %i could not be found.\n" +msgstr "" + +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 +#, c-format +msgid "Gamma ramp size too small: %i\n" +msgstr "" + +#: ../src/gamma-randr.c:277 +#, c-format +msgid "Unable to restore CRTC %i\n" +msgstr "" + +#: ../src/gamma-randr.c:301 +msgid "Adjust gamma ramps with the X RANDR extension.\n" +msgstr "" + +#. TRANSLATORS: RANDR help output +#. left column must not be translated +#: ../src/gamma-randr.c:306 +msgid "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 +#, c-format +msgid "X request failed: %s\n" +msgstr "" + +#: ../src/gamma-vidmode.c:140 +msgid "Adjust gamma ramps with the X VidMode extension.\n" +msgstr "" + +#. TRANSLATORS: VidMode help output +#. left column must not be translated +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 +msgid "Unable to save current gamma ramp.\n" +msgstr "" + +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 +msgid "Unable to open device context.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:75 +msgid "Display device does not support gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:115 +msgid "Adjust gamma ramps with the Windows GDI.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:153 +msgid "Unable to restore gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:211 +msgid "Unable to set gamma ramps.\n" +msgstr "" + +#: ../src/gamma-dummy.c:43 +msgid "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" +msgstr "" + +#: ../src/gamma-dummy.c:60 +msgid "" +"Does not affect the display but prints the color temperature to the " +"terminal.\n" +msgstr "" + +#: ../src/gamma-dummy.c:75 +#, c-format +msgid "Temperature: %i\n" +msgstr "Temperaturo: %i\n" + +#: ../src/location-geoclue2.c:59 +#, c-format +msgid "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" +msgstr "" + +#: ../src/location-geoclue2.c:107 +#, c-format +msgid "Unable to obtain location: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:150 +#, c-format +msgid "Unable to obtain GeoClue Manager: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:166 +#, c-format +msgid "Unable to obtain GeoClue client path: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:188 +#, c-format +msgid "Unable to obtain GeoClue Client: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:229 +#, c-format +msgid "Unable to set distance threshold: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:253 +#, c-format +msgid "Unable to start GeoClue client: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 +msgid "Not authorized to obtain location from CoreLocation.\n" +msgstr "" + +#: ../src/location-corelocation.m:111 +#, c-format +msgid "Error obtaining location from CoreLocation: %s\n" +msgstr "" + +#: ../src/location-corelocation.m:120 +msgid "Waiting for authorization to obtain location...\n" +msgstr "" + +#: ../src/location-corelocation.m:122 +msgid "Request for location was not authorized!\n" +msgstr "" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Fiaskis eki CoreLocation-provizanto!\n" + +#: ../src/location-corelocation.m:235 +msgid "Use the location as discovered by the Corelocation provider.\n" +msgstr "Uzi lokojn kiel malkovritaj de la Corelocation-provizanto.\n" + +#: ../src/location-manual.c:59 +msgid "Latitude and longitude must be set.\n" +msgstr "Latitudo kaj longitudo devas esti agordita.\n" + +#: ../src/location-manual.c:75 +msgid "Specify location manually.\n" +msgstr "Permane specifi lokon.\n" + +#. TRANSLATORS: Manual location help output +#. left column must not be translated +#: ../src/location-manual.c:80 +msgid "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" +msgstr "" +"lat=N\t\tLatitudo\n" +"lon=N\t\tLongitudo\n" + +#: ../src/location-manual.c:83 +msgid "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" +msgstr "" + +#: ../src/location-manual.c:97 +msgid "Malformed argument.\n" +msgstr "Misformita argumento.\n" + +#: ../src/redshift-gtk/statusicon.py:78 +msgid "Suspend for" +msgstr "Prokrasti dum" + +#: ../src/redshift-gtk/statusicon.py:80 +msgid "30 minutes" +msgstr "30 minutoj" + +#: ../src/redshift-gtk/statusicon.py:81 +msgid "1 hour" +msgstr "1 horo" + +#: ../src/redshift-gtk/statusicon.py:82 +msgid "2 hours" +msgstr "2 horoj" + +#: ../src/redshift-gtk/statusicon.py:91 +msgid "Autostart" +msgstr "Aŭtolanĉo" + +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 +msgid "Info" +msgstr "Pri" + +#: ../src/redshift-gtk/statusicon.py:108 +msgid "Quit" +msgstr "Fini" + +#: ../src/redshift-gtk/statusicon.py:146 +msgid "Close" +msgstr "Malfemi" + +#: ../src/redshift-gtk/statusicon.py:300 +msgid "<b>Status:</b> {}" +msgstr "<b>Stato:</b> {}" + +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 +msgid "Color temperature" +msgstr "Kolora temperaturo" + +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 +msgid "Period" +msgstr "Periodo" + +#: ../src/redshift-gtk/statusicon.py:318 +msgid "Location" +msgstr "Loko" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Bonvolu plenumi `redshift -h` por helpa eligo." @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:55+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-05-20 13:39+0000\n" +"Last-Translator: toniem <toni.estevez@gmail.com>\n" "Language-Team: Spanish <es@li.org>\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: es\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift ajusta la temperatura de color de la pantalla de acuerdo con el " +"entorno. Este ajuste puede ayudar a reducir el dolor de ojos si trabaja " +"frente una pantalla por la noche." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,752 +35,784 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"La temperatura de color se establece según la posición del sol. Se establece " +"una temperatura distinta para el día y para la noche. Durante el atardecer y " +"el amanecer, la temperatura de color cambia suavemente, de temperatura " +"diurna a temperatura nocturna o viceversa, para permitir que los ojos se " +"adapten lentamente." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Este programa proporciona un ícono de notificación que permite al usuario " +"controlar Redshift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"La ventana de información de Redshift se superpone con un ejemplo del efecto " +"de enrojecimiento" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Ajuste de la temperatura de color" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Herramienta para el ajuste de la temperatura de color" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Desconocido" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Día" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Noche" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Transición" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Período: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Período: %s (%.2f%% día)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "E" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "O" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Uso: %s -l LAT:LON -t DÍA:NOCHE [OPCIONES...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "La temperatura del color es mostrada de acuerdo a la hora del día.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tMostrar este mensaje de ayuda\n" -" -v\t\tSalida detallada\n" -" -V\t\tMostrar la versión del programa\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"La temperatura neutral es %uK. Usando este valor no\n" -"cambiará el color del monitor. Cambiando el valor de\n" -"la temperatura del color a un valor más alto, dará como\n" -"resultado un tono más azulado, cambiándolo a un valor\n" -"más bajo, el tono será más rojo.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Valores por defecto:\n" -"\n" -" Temperatura del día: %uK\n" -" Temperatura de la noche: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Por favor reporta fallos a <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Métodos de ajuste disponibles:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Señalar opciones separadas con \"dos puntos\" mediante `-m MÉTODO:" -"OPCIONES'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Prueba `-m MÉTODO:help' para ayuda.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Proveedores de localización disponibles:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Señalar opciones separadas con \"dos puntos\" mediante `-l PROVEEDOR:" -"OPCIONES'.\n" +msgstr "Ubicación: %.2f° %s, %.2f° %s\n" -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Prueba `-l PROVEEDOR:help' para ayuda.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "Iniciación de %s falló.\n" +msgstr "La inicialización de %s ha fallado.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "Falló establecer la opción %s\n" +msgstr "No se ha podido establecer la opción %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "Prueba `-l %s:help' para más información.\n" +msgstr "Pruebe «-l %s:help» para obtener más información.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "Falló el análisis de la opción «%s».\n" +msgstr "No se ha podido analizar la opción «%s».\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" -msgstr "Falló iniciar el proveedor %s.\n" +msgstr "No se ha podido iniciar el proveedor %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "Prueba `-m %s:help' para más información.\n" +msgstr "Pruebe «-m %s:help» para obtener más información.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" -msgstr "Prueba -m %s:help' para más información.\n" +msgstr "Pruebe «-m %s:help» para obtener más información.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" -msgstr "Falló el inicio del método de ajuste %s.\n" +msgstr "No se ha podido iniciar el método de ajuste %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "Activado" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "La latitud debe estar entre %.1f y %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "Desactivadas" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "La longitud debe estar entre %.1f y %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" -msgstr "Imposible leer la hora del sistema.\n" +msgstr "No se ha podido leer la hora del sistema.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "A la espera de que la ubicación inicial esté disponible...\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "No se ha podido obtener la ubicación del proveedor.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "La ubicación proporcionada por el proveedor no es válida.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "Temperatura del color: %uK\n" +msgstr "Temperatura de color: %u K\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Brillo: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "El ajuste de la temperatura falló.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Parámetro gamma no válido.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Estado: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Tipee `-h' para más información.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Desactivado" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Proveedor de localización `%s' desconocido.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Activado" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Método de ajuste desconocido `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "No se ha podido ajustar la temperatura.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Parámetro de temperatura no válido.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"La ubicación no está disponible temporalmente. Se usará la ubicación " +"anterior hasta que esté disponible...\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Ajuste gamma incorrecto.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "¡No se admite la configuración parcial de la hora!\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Ajuste de configuración desconocido `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" +"¡La configuración de la hora del amanecer o el anochecer no es válida!\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "Tratando proveedor ubicación `%s'...\n" +msgstr "Probando el proveedor de ubicación «%s»...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "Probando el siguiente proveedor...\n" +msgstr "Probando el proveedor siguiente...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "Usando el proveedor `%s'.\n" +msgstr "Usando el proveedor «%s».\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "No hay más proveedores de localización para probar.\n" +msgstr "No hay más proveedores de ubicación para probar.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Incapaz de obtener localización desde el proveedor.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "Temperaturas: % dK de día, dK% de noche\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" +"La transición superior no puede ser menor que la transición inferior.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -"Elevaciones solares: días anteriores %.1f, noche que figuran abajo %.1f\n" - -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "La latitud debe estar entre %.1f y %.1f.\n" +"Elevaciones solares: día por encima de %.1f °, noche por debajo de %.1f °\n" -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "La longitud debe estar entre %.1f y %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperaturas: %d K de día, %d K de noche\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" -msgstr "La temperatura debe estar entre %uK y %uK.\n" - -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" -"Elevación alta de transición no puede ser inferior a elevación baja de " -"transición.\n" +msgstr "La temperatura debe estar entre %u K y %u K.\n" -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "Valores de brillo deben estar entre %.1f y %.1f.\n" +msgstr "Los valores del brillo deben estar entre %.1f y %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "Brillo : %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "El valor gamma debe estar entre %.1f y %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" -msgstr "Probando el siguiente método...\n" +msgstr "Probando el método siguiente...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" -msgstr "Usando el método `%s'.\n" +msgstr "Usando el método «%s».\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "No hay más métodos para probar.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "A la espera de que la ubicación actual esté disponible...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "Elevación solar: %f\n" +msgstr "Elevación solar: %fº\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Presione Ctrl-C para detener...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Uso: %s -l LAT:LON -t DÍA:NOCHE [OPCIONES...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Establecer la temperatura de color según la hora del día.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tMuestra este mensaje de ayuda\n" +" -v\t\tSalida detallada\n" +" -V\t\tMuestra la versión del programa\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b DÍA:NOCHE\tBrillo de la pantalla para aplicar (entre 0.1 y 1.0)\n" +" -c ARCHIVO\tCarga los parámetros del archivo de configuración " +"especificado\n" +" -g R:G:B\tCorrección gamma adicional para aplicar\n" +" -l LAT:LON\tLa ubicación actual\n" +" -l PROVEEDOR\tSelecciona el proveedor para las actualizaciones automáticas " +"de la ubicación\n" +" \t\t(Escriba «list» para ver los proveedores disponibles)\n" +" -m MÉTODO\tMétodo usado para establecer la temperatura de color\n" +" \t\t(Escriba «list» para ver los métodos disponibles)\n" +" -o\t\tModo de ajuste único (no ajusta continuamente la temperatura de " +"color)\n" +" -O TEMP\tModo de ajuste único manual (fija la temperatura de color)\n" +" -p\t\tModo de impresión (solo imprime los parámetros y sale)\n" +" -P\t\tRestablece los valores de gama existentes antes de aplicar un nuevo " +"efecto de color\n" +" -x\t\tModo de reinicio (elimina el ajuste de la pantalla)\n" +" -r\t\tDesactiva las transiciones entre las temperaturas de color\n" +" -t DÍA:NOCHE\tTemperatura de color para establecer de día y de noche\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" msgstr "" +"La temperatura neutra es %u K. El uso de este valor no cambiará la\n" +"temperatura de color de la pantalla. Establecer un valor más alto\n" +"dará como resultado un tono más azulado y establecer un valor más\n" +"bajo dará como resultado un tono más rojizo.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Valores por defecto:\n" +"\n" +" Temperatura de día: %u K\n" +" Temperatura de noche: %u K\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Métodos de ajuste disponibles:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Especifique las opciones separadas por dos puntos mediante «-m " +"MÉTODO:OPCIONES».\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Pruebe «-m MÉTODO:help» para obtener ayuda.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Proveedores de ubicación disponibles:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Especifique las opciones separadas por dos puntos mediante «-l " +"PROVEEDOR:OPCIONES».\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Pruebe «-l PROVEEDOR:help» para obtener ayuda.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "El parámetro gamma no es correcto.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Pruebe «-h» para obtener más información.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "El proveedor de ubicación «%s» es desconocido.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "El método de ajuste «%s» es desconocido.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "El parámetro de temperatura no es correcto.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "El parámetro gamma no es correcto.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "El parámetro de la hora del amanecer «%s» no es correcto.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "El parámetro de la hora del anochecer «%s» no es correcto.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "El parámetro de configuración «%s» es desconocido.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "El encabezado del archivo de configuración es incorrecto.\n" +msgstr "" +"Un encabezado de sección en el archivo de configuración no es correcto.\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "Los datos asignados en el archivo de configuración son incorrectos.\n" +msgstr "" +"La asignación de datos en el archivo de configuración no es correcta.\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" msgstr "" -"Los datos asignados en archivo de configuración están fuera de sección.\n" +"La asignación de datos en el archivo de configuración está fuera de una " +"sección.\n" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "No se ha podido abrir el dispositivo DRM: %s\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "No se han podido obtener los recursos del modo DRM\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " -msgstr "CRTC %d no existe. " +msgstr "El CRTC %d no existe. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" -msgstr "CRTCs válidos son [0-%d].\n" +msgstr "Los CRTC válidos son [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" -msgstr "Sólo existe CRTC 0.\n" +msgstr "Solo existe el CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "CRTC %i perdidos, saltar\n" +msgstr "El CRTC %i se ha perdido, se omitirá\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" +"No se ha podido obtener el tamaño del valor gamma para el CRTC %i\n" +"en la tarjeta de video %i. Se ignorará el dispositivo.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -"DRM no puede leer las rampas gamma en CRTC %i\n" -"tarjeta gráfica %i, ignorando dispositivo.\n" +"El DRM no puede leer los valores gamma en el CRTC %i\n" +"en la tarjeta gráfica %i. Se ignorará el dispositivo.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "" +msgstr "Ajustar los valores gamma con el DRM\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N \t Tarjeta gráfica para aplicar los ajustes\n" +" crtc=N \t CRTC para aplicar los ajustes\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "CRTC debe ser un número entero no negativo\n" +msgstr "El CRTC debe ser un número entero no negativo\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "Parámetro del método desconocido: `%s'.\n" +msgstr "El parámetro del método es desconocido: «%s».\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" -msgstr "«%s» devolvió el error %d\n" +msgstr "«%s» ha devuelto el error %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" -msgstr "No se admite la versión de RANDR (%u.%u)\n" +msgstr "La versión de RANDR no es compatible (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" -msgstr "No se encontró la pantalla %i.\n" +msgstr "No se ha encontrado la pantalla %i.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" -msgstr "El tamaño del valor gamma es demasiado pequeño: %i\n" +msgstr "El valor gamma es demasiado pequeño: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" -msgstr "Incapaz de restituir CRTC %i\n" +msgstr "No se puede restablecer el CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" -msgstr "Ajustar el valor gamma con la extensión X RANDR\n" +msgstr "Ajustar los valores gamma con la extensión X RANDR\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" screen=N\t\tPantalla X para aplicar los ajustes\n" +" crtc=N\tLista de los CRTC, separados por comas, para aplicar los ajustes\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "No se puede leer el número de pantalla: «%s».\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -" screen=N\tpantalla X a aplicar los ajustes\n" -" crtc=N\tCRTC a aplicar los ajustes\n" +"El parámetro «%s» ahora está siempre activado. Use la opción de línea de " +"órdenes «%s» para desactivarlo.\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "Requerimiento de X falló: %s\n" +msgstr "La solicitud X ha fallado: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" -msgstr "Ajustar los valores gamma con la extensión X VidMode\n" +msgstr "Ajustar los valores gamma con la extensión X VidMode.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" -" screen=N\tpantalla X a aplicar los ajustes\n" -" crtc=N\tCRTC a aplicar los ajustes\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tPantalla X para aplicar los ajustes\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "Incapaz de guardar el rango gamma actual.\n" - -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" +msgstr "No se puede guardar el valor gamma actual.\n" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Ajustar los valores gamma en macOS usando Quartz.\n" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "Incapaz de abrir del dispositivo de contexto.\n" +msgstr "No se puede abrir el contexto del dispositivo.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" -msgstr "El dispositivo de imagen no soporta rangos gamma.\n" +msgstr "El dispositivo de visualización no admite los valores gamma.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" -msgstr "Ajustar los valores gamma con Windows GDI.\n" +msgstr "Ajustar los valores gamma con el GDI de Windows.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "Incapaz de restaurar el rango gamma.\n" +msgstr "No se pueden restaurar los valores gamma.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "Incapaz de establecer rangos gamma.\n" +msgstr "No se pueden establecer los valores gamma.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"ADVERTENCIA: ¡Se está usando un método gamma ficticio! La pantalla no se " +"verá afectada por este método gamma.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"No afecta a la pantalla, pero imprime la temperatura de color en la " +"terminal.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "No se puede obtener el cliente principal: %s\n" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "No se puede obtener el cliente principal\n" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" +msgstr "Temperatura: %i\n" -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "No se puede establecer requisitos para maestro\n" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "Se inició el proveedor de Geoclue «%s».\n" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "Pruebe colocar nombre y ruta para especificar qué usar\n" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "No se pudo obtener la ubicación: %s.\n" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "Proveedor no tiene una ubicación válida disponible." - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" +"¡GeoClue ha denegado el acceso a la ubicación actual!\n" +"Asegúrese de que los servicios de ubicación estén habilitados y de que " +"Redshif\n" +"tiene permiso para usarlos. Consulte https://github.com/jonls/redshift#faq\n" +"para obtener más información.\n" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "No se puede obtener la ubicación: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "No se puede obtener GeoClue Manager: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "No se puede obtener la ruta del cliente GeoClue: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "No se puede obtener el cliente GeoClue: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "No se puede establecer el umbral de distancia: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "No se puede iniciar el cliente GeoClue: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "¡No se ha podido iniciar el proveedor GeoClue2!\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Use la ubicación encontrada por un proveedor GeoClue2.\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "No tiene autorización para obtener la ubicación de CoreLocation.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "Error al obtener la ubicación de CoreLocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "A la espera de la autorización para obtener la ubicación...\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "¡La solicitud de ubicación no ha sido autorizada!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "¡No se ha podido iniciar el proveedor CoreLocation!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Use la ubicación encontrada por el proveedor CoreLocation.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" -msgstr "Latitud y longitud deben ser definidos.\n" +msgstr "Se deben establecer la latitud y la longitud.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" -msgstr "Especificar la localización manualmente.\n" +msgstr "Especifique la ubicación manualmente.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -785,65 +820,66 @@ msgstr "" " lat=N\t\tLatitud\n" " lon=N\t\tLongitud\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -"Se espera que ambos valores sean números de punto flotante,\n" -"los valores negativos representan oeste / sur, respectivamente.\n" +"Se espera que ambos valores sean números de coma flotante,\n" +"los valores negativos representan el oeste y el sur, respectivamente.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" -msgstr "El formato del argumento es incorrecto.\n" +msgstr "El parámetro no es correcto.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "Suspender para" +msgstr "Suspender durante" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "30 minutos" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "1 hora" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "2 horas" +msgstr "2 horas" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Inicio automático" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "informacion" +msgstr "Información" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "Salir" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "Cerrar" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Estado:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "Temperatura de color" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "Período" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "Ubicación" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tpantalla X a aplicar los ajustes\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Ejecute «redshift -h» para obtener ayuda." @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" "PO-Revision-Date: 2013-12-05 10:02+0000\n" "Last-Translator: Jalakas <Unknown>\n" "Language-Team: Estonian <et@li.org>\n" -"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: et\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -44,179 +44,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Palun teata vigadest <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "" @@ -224,205 +128,339 @@ msgstr "" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" +msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" msgstr "" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" msgstr "" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "" @@ -435,380 +473,335 @@ msgstr "" msgid "Assignment outside section in config file.\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "" -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:53+0000\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2015-02-23 06:54+0000\n" "Last-Translator: Jon Lund Steffensen <Unknown>\n" "Language-Team: Basque <eu@li.org>\n" -"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: eu\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,8 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift-ek zure pantailaren kolorearen tenperatura zure ingurunera egokitzen du" +"Honek begien nekea aritzen laguntzen du pantailaren aurrean gauez aritzen bazara." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,204 +34,102 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"Kolorearen tenperatura eguzkiaren kokapenaren arabera ezartzen da. Egunerako " +"tenperatura bat eta gauerako beste bat. Bai iluntzean zein egunsentian kolorearen " +"tenperatura poliki aldatzen da egunekitik gauekora eta alderantziz, zure begiek " +"progresiboki adapta daitezen." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Programa honi lotuta egoera-ikono bat duzu panelean. Haren bidez kontrola dezakezu " +"Redshift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"Redshift-en informazio leihoak gorritze efektuaren adibideak eskaintzen dizkizu." +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Kolore-tenperaturaren doitzea" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Kolore-tenperatura doitzeko tresna" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Ezezaguna" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Eguna" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Gaua" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Trantsizioa" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Tartea: %s (%.2f%% eguna)\n " #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "I" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "H" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "E" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "M" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Erabilera: %s -l LAT:LON -t EGUNEZ:GAUEZ [AUKERAK...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Aldatu pantailaren kolore-tenperatura eguneko unearen arabera.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tBistaratu laguntza-mezu hau\n" -" -v\t\tIrteera berritsua\n" -" -V\t\tErakutsi programaren bertsioa\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"Tenperatura neutroa %uK da. Balio hau erabiltzen baduzu\n" -"pantailaren kolore-tenperatura ez da aldatuko.\n" -"Balio altuago bat ezartzen baduzu pantailaren tonua\n" -"urdinduko da eta balio baxuago bat ezartzen\n" -"baduzu berriz pantailaren tonua gorriagotuko da.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Balio lehenetsiak:\n" -"\n" -" Eguneko tenperatura: %uK\n" -" Gaueko tenperatura: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Mesedez, eman arazoen berri <%s> helbidean\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Eskuragarri dauden doikuntza metodoak:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "Zehaztu aukerak kakotxez bereizita honela: `-m METODOA:AUKERAK'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Idatzi `-m METODOA:help' laguntza lortzeko.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Eskuragarri dauden kokapen-hornitzaileak:\n" +msgstr "Kokapena: %.2f %s, %.2f %s\n" -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Zehaztu aukerak kakotxez bereizita honela: `-l HORNITZAILEA:AUKERAK'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Idatzi `-l HORNITZAILEA:help' laguntza lortzeko.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "%s abiarazteak huts egin du.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Ezin izan da %s aukera ezarri.\n" @@ -237,204 +137,367 @@ msgstr "Ezin izan da %s aukera ezarri.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Idatzi `-l %s:help' informazio gehiagorako.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Ezin izan da `%s' aukera aztertu.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Ezin izan da %s hornitzailea abiarazi.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Idatzi `-m %s:help' informazio gehiagorako.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Idatzi -m %s:help' informazio gehiagorako.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Ezin izan da %s doikuntza metodoa abiarazi.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Latitudea muga hauen barruan egon behar da: %.1f eta %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Longitudea muga hauen barruan egon behar da: %.1f eta %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Ezin izan da sistemaren ordua irakurri.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Hasierako kokapenaren zain...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Ezin izan da hornitzailearengandik kokapenik lortu.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Hornitzaileak emandako kokapena ez da baliozkoa.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Kolore-tenperatura: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Distira: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Tenperatura doitzeak huts egin du.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Gaizki eratutako gamma argumentua.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Egoera: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Idatzi `-h' informazio gehiagorako.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Desgaituta" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Kokapen-hornitzaile ezezaguna: `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Gaituta" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Doikuntza metodo ezezaguna: `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Tenperatura doitzeak huts egin du.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Gaizki eratutako tenperatura argumentua.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "Kokapena momentuz ez dago erabilgarri; erabili aurreko kokapena " +"berria erabilgarri egon arte...\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Gaizki eratutako gamma ezarpena.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Orduaren konfigurazio partziala ez da onartzen!\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Konfigurazio ezarpen ezezaguna: `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Egunsenti/ilunabarreko ordu-ezarpenak ez dira baliozkoak!\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "`%s' kokapen-hornitzailea probatzen...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Hurrengo hornitzailearekin saiatzen...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "`%s' hornitzailea erabiltzen.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Ez dago beste kokapen-hornitzailerik probatzeko.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Ezin izan da hornitzailearengandik kokapenik lortu.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" +"Goiko trantsizioaren goratzea ezin da izan beheko trantsizioaren " +"goratzea baino txikiagoa.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" +msgstr "Eguzkiaren goratzeak: egunez %.1f-ren gainea, gauez %.1f-ren azpian.\n" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Latitudea muga hauen barruan egon behar da: %.1f eta %.1f.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Longitudea muga hauen barruan egon behar da: %.1f eta %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Tenperaturak: %dK egunez, %dK gauez\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Tenperatura muga hauen barruan egon behar da: %uK eta %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "Distira-balioak hauek barruan egun behar dute: %.1f eta %.1f.\n " -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "Distira: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Gamma balioa muga hauen barruan egon behar da: %.1f eta %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Hurrengo metodoarekin saiatzen...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "`%s' metodoa erabiltzen.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Ez dago beste metodorik probatzeko.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "Uneko kokapenaren zain...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "Eguzkiaren gorapen-angelua: %fº\n" +msgstr "Eguzkiaren goratzea: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Sakatu ctrl-c gelditzeko...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Erabilera: %s -l LAT:LON -t EGUNEZ:GAUEZ [AUKERAK...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Aldatu pantailaren kolore-tenperatura eguneko unearen arabera.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tBistaratu laguntza-mezu hau\n" +" -v\t\tIrteera berritsua\n" +" -V\t\tErakutsi programaren bertsioa\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b EGUNA:GAUA Aplikatuko den pantaila-distira (0.1 eta 1.0 bitartekoa)\n" +" -c FITXATEGIA\tKargatu zehaztutako ezarpen-fitxategiaren parametroak\n" +" -g R:G:B\tAplikatuko den gamma zuzenketa gehigarria\n" +" -l LAT:LON\tZure uneko kokapena\n" +" -l HORNITZAILEA\tHautatu kokapenen eguneraketa automatikoetarako hornitzailea\n" +" \t\t(Idatzi `list' ikusteko hornitzaile erabilgarriak)\n" +" -m METODOA\tKolore-tenperatura ezartzeko erabiliko den metodoa\n" +" \t\t(Idatzi `list' erabiltzeko dauden metodoak ikusteko)\n" +" -o\t\tDoitze metodo bakarra (ez du kolore-tenperatura etengabe doitzen)\n" +" -O TEMP\tEskuzko doitze metodo bakarra (kolore-tenperatura ezartzen du)\n" +" -p\t\tInprimitzeko modua (parametroak inprimatu eta ateratzen da)\n" +" -P\t\tLeheneratu gamma balioak kolore-efektu berria aplikatu aurretik\n" +" -x\t\tLeheneratze modua (pantailako ezarpenak kentzen ditu)\n" +" -r\t\tDesgaitu kolore-tenperaturen arteko trantsizioak\n" +" -t EGUNA:GAUA\tEgunez zein gauez ezarri behar den kolore-tenperatua\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"Tenperatura neutrala %uK da. Balio hori erabiliz gero pantailaren kolore-\n" +"tenperatura ez da aldatuko. Kolore-tenperatura altuagoa ezarriz gero, tonoa " +"urdinagoa izango da eta baxuagoa ezarriz gero gorriagoa.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" msgstr "" +"Balio lehenetsiak:\n" +"\n" +" Eguneko tenperatura: %uK\n" +" Gaueko tenperatura: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Eskuragarri dauden doikuntza metodoak:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Zehaztu aukerak kakotxez bereizita honela: `-m METODOA:AUKERAK'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Idatzi `-m METODOA:help' laguntza lortzeko.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Eskuragarri dauden kokapen-hornitzaileak:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Zehaztu aukerak kakotxez bereizita honela: `-l HORNITZAILEA:AUKERAK'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Idatzi `-l HORNITZAILEA:help' laguntza lortzeko.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Gaizki eratutako gamma argumentua.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Idatzi `-h' informazio gehiagorako.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Kokapen-hornitzaile ezezaguna: `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Doikuntza metodo ezezaguna: `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Gaizki eratutako tenperatura argumentua.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Gaizki eratutako gamma ezarpena.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Egunsentiko `%s' paremetroa ez da baliozkoa.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Ilunabarreko `%s' paremetroa ez da baliozkoa.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Konfigurazio ezarpen ezezaguna: `%s'.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" @@ -448,327 +511,290 @@ msgstr "Gaizki eratutako esleipena konfigurazio fitxategian.\n" msgid "Assignment outside section in config file.\n" msgstr "Gaizki eratutako esleipena konfigurazio fitxategian.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "DRM zerbitzuak huts egin du: %s\n" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "DRM moduko baliabideen eskuratzeak huts egin du\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "%d CRTCa ez da existitzen. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Onartutako CRTCak honakoak dira [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "0 CRTCa baino ez da existitzen.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "CRTC %i galdu da, ezikusi\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" +"Ezin izan da CRTC %i bideo txartelarako gamma-balioa " +"ezarri. Gailuari ez zaio jaramonik egingo.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" +"Ezin izan da CRTC %i bideo txartelaren gamma-balioa " +"ezarri. Gailuari ez zaio jaramonik egingo.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "" +msgstr "Doitu gamma balioak Direct Rendering Managerraren bidez." #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\tDoitzeak aplikatzeko txartel grafikoa\n" +" crtc=N\tDoitzeak aplikatzeko CRTCa\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "" +msgstr "CRTC zenbaki oso ez negatiboa izan behar du" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Metodoaren parametro ezezaguna: `%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "`%s'(k) akats hau itzuli du: %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Onartu gabeko RANDR bertsioa (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "%i pantaila ez da aurkitu.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Gamma ramp tamaina txikiegia: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Ezin izan da CRTCa berrezarri %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Doitu gammaren ramp-ak X RANDR hedapenarekin.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" screen=N\t\tdoitzeak aplikatzeko X pantaila\n" +" crtc=N\tdoitzeak aplikatzeko koma bidez bereizitako CRTCen zerrenda\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Ezin izan da pantailaren zenbakia irakurri: `%s'.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -" screen=N\tDoikuntzak aplikatzeko X pantaila\n" -" crtc=N\tDoikuntzak aplikatzeko CRTCa\n" +"`%s` parametroa orain beti dago aktibatuta; Erabili `%s` lerroko komandoaren " +"aukera desgaitzeko.\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "X eskaerak huts egin du: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Doitu gammaren ramp-ak X VidMode hedapenarekin.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" -" screen=N\tDoikuntzak aplikatzeko X pantaila\n" -" crtc=N\tDoikuntzak aplikatzeko CRTCa\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tdoikuntzak aplikatzeko X pantaila " -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Ezin izan da uneko gammaren ramp-a gorde.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" - -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Doitu gamma balioak macOSen Quartz-en bidez" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Ezin izan da gailuaren testuingurua ireki.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Pantailak ez ditu gammaren ramp-ak onartzen.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Doitu gammaren ramp-ak Windowsen GDIarekin.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Ezin izan dira gammaren ramp-ak berrezarri.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Ezin izan dira gammaren ramp-ak ezarri.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" -"WARNING: Using dummy gamma method! Display will not be affected by this " +"WARNING: Gamma mUsing dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"ABISUA: Fikziozko gamma metodoa erabiltzen ari da! Pantailak ez du metodoaren " +"ondorioak izango.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"Ez du pantailan eragiten baina inprimatzen du kolore-tenperatura " +"terminalean.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" +msgstr "Tenperatura: %i\n" -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" +"Uneko kokapenerako sarbidea ukatu egin zuen GeoClue-k!\n" +"Ziurtatu kokapen zerbitzuak gaituta daudela eta Redshift-ek kokapen-zerbitzuak\n" +"erabiltzen ahal dituela. Informazio gehiago hemen: https://github.com/jonls/redshift#faq" -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Ezin izan da kokapena eskuratu: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Ezin izan da eskuratu GeoClue Manager: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "Ezin izan da eskuratu GeoClue bezeroaren bidea: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "Ezin izan da eskuratu GeoClue bezeroa: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Ezin izan da ezarri distantzia atalasea: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "Ezin izan da abiarazi GeoClue bezeroa: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "GeoClue2 hornitzaileak huts egin du!\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Erabili GeoClue2 hornitzaileak bilatutako kokapena.\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "CoreLocation-en bidezko kokapena eskuratzeko baimenik ez.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "CoreLocation-en bidez kokapena eskuratzeak huts egin du: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "Kokapena eskuratzeko baimenaren zain...\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "Kokapen eskaerak ez du baimenik lortu!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "CoreLocation hornitzaileak huts egin du!\n" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Erabili CoreLocation hornitzaileak bilatutako kokapena.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Latitudea eta longitudea zehaztu behar dira.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Kokapena eskuz zehaztu.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -776,63 +802,66 @@ msgstr "" " lat=N\t\tLatitudea\n" " lon=N\t\tLongitudea\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" +"Espero diren zenbaki bien balioak koma flotagarriko zenbakiak dira,\n" +"zenbaki negatiboek mendebala / hegoa adierazten dute, hurrenez hurren.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Gaizki eratutako argumentua.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Pausatu" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 minutuz" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "ordu 1" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 ordu" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Autoabiarazi" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "Informazioa" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Irten" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Itxi" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Egoera:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Kolore-tenperatura" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Tartea" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "Kokapena" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tDoikuntzak aplikatzeko X pantaila\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Erabili `redshift -h` laguntza ikusteko." @@ -8,16 +8,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:56+0000\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2015-02-23 06:54+0000\n" "Last-Translator: Jon Lund Steffensen <Unknown>\n" "Language-Team: Finnish <fi@li.org>\n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: fi\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -45,195 +45,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Käyttö: %s -l LAT:LON -t PÄIVÄ:YÖ [VALINNAT...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Säädä näytön värilämpötila vuorokaudenajan mukaan.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tNäytä tämä ohje\n" -" -v\t\tNäytä yksityskohtainen tuloste\n" -" -V\t\tNäytä ohjelman versio\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"Neutraali värilämpötila on %uK. Käytettäessä neutraalia\n" -"arvoa, ei näytön värilämpötila muutu. Käytettäessä\n" -"neutraalia värilämpötilaa korkeampaa arvoa, muuttuu\n" -"näytön valo sinisemmäksi ja käytettäessä alhaisempaa\n" -"arvoa, muuttuu valo punaisemmaksi.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Oletusvalinnat:\n" -"\n" -" Päiväsajan värilämpötila: %uK\n" -" Yöajan värilämpötila: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Raportoi bugeista osoitteeseen <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Käytettävissä olevat säätömenetelmät:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Luettele kaksoispisteellä erotellut asetukset valitsimella\n" -"'-m MENETELMÄ:ASETUKSET'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Valitsin '-m MENETELMÄ:help' antaa lisätietoja.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Käytettävissä olevat sijainnintarjoajat:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Luettele kaksoispisteellä erotellut asetukset valitsimella\n" -"'-l TARJOAJA:ASETUKSET'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Valitsin '-l TARJOAJA:help' antaa lisätietoja.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "%s:n käyttöönotto epäonnistui.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Asetuksen %s asettaminen epäonnistui.\n" @@ -241,205 +129,350 @@ msgstr "Asetuksen %s asettaminen epäonnistui.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Valitsin '-l %s:help' antaa lisätietoja.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Tarjoajan %s käynnistäminen epäonnistui.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Valitsin '-m %s:help' antaa lisätietoja.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Valitsin -m %s:help' antaa lisätietoja.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Säätömenetelmän %s käynnistäminen epäonnistui.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Leveyspiirin on oltava väliltä %.1f - %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Pituuspiirin on oltava väliltä %.1f - %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Ei voida lukea järjestelmän aikaa.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Sijaintia ei saatu toimittajalta.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Värilämpötila: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Kirkkaus: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Värilämpötilan säätö epäonnistui.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Vääränlainen gamman parametri.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Valitsin '-h' antaa lisätietoja.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Tuntematon sijainnin toimittaja '%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Tuntematon säätömenetelmä '%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Värilämpötilan säätö epäonnistui.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Vääränmuotoinen värilämpötilan parametri.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Vääränmuotoinen gamma-asetus.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Tuntematon asetus '%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Kokeillaan seuraavaa toimittajaa...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Käytetään toimittajaa '%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Ei enää kokeiltavia toimittajia.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Sijaintia ei saatu toimittajalta.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Leveyspiirin on oltava väliltä %.1f - %.1f.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Pituuspiirin on oltava väliltä %.1f - %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Värilämpötilan on oltava väliltä %uK - %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Gamman arvon on oltava väliltä %.1f - %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Kokeillaan seuraavaa menetelmää...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "Käytetään menetelmää '%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Ei enää kokeiltavia menetelmiä.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Auringon korkeuskulma: %f°\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Käyttö: %s -l LAT:LON -t PÄIVÄ:YÖ [VALINNAT...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Säädä näytön värilämpötila vuorokaudenajan mukaan.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tNäytä tämä ohje\n" +" -v\t\tNäytä yksityskohtainen tuloste\n" +" -V\t\tNäytä ohjelman versio\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Oletusvalinnat:\n" +"\n" +" Päiväsajan värilämpötila: %uK\n" +" Yöajan värilämpötila: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Käytettävissä olevat säätömenetelmät:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Luettele kaksoispisteellä erotellut asetukset valitsimella\n" +"'-m MENETELMÄ:ASETUKSET'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Valitsin '-m MENETELMÄ:help' antaa lisätietoja.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Käytettävissä olevat sijainnintarjoajat:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Luettele kaksoispisteellä erotellut asetukset valitsimella\n" +"'-l TARJOAJA:ASETUKSET'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Valitsin '-l TARJOAJA:help' antaa lisätietoja.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Vääränlainen gamman parametri.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Valitsin '-h' antaa lisätietoja.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Tuntematon sijainnin toimittaja '%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Tuntematon säätömenetelmä '%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Vääränmuotoinen värilämpötilan parametri.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Vääränmuotoinen gamma-asetus.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Tuntematon asetus '%s'.\n" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "Konfiguraatiotiedostossa virheellisesti muotoiltu osion otsikko.\n" @@ -452,327 +485,272 @@ msgstr "Konfiguraatiotiedostossa virheellinen arvomääritelmä.\n" msgid "Assignment outside section in config file.\n" msgstr "Konfiguraatiotiedoston arvomääritelmä on otsikon ulkopuolella.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d ei ole olemassa. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Kelvot CRTC:t ovat [o-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Vain CRTC 0 on olemassa.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Tuntematon menetelmäparametri '%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "'%s' palautti virheen %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "RANDR versio %u.%u ei ole tuettu\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Näyttöä %i ei löytynyt.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Gamman askellus liian pieni: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Ei kyetä palauttamaan CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Säädä gamman askellusta X RANDR laajennusta käyttäen.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" msgstr "" -" screen=N\tX kohdenäyttö jota muutetaan\n" -"crtc=N\tCRTC jota muutetaan\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "X-kutsu epäonnistui: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Säädä gamman askellusta X VidMode laajennuksella.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" screen=N\tX kohdenäyttö jota muutetaan\n" -"crtc=N\tCRTC jota muutetaan\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Laitetta ei saada avattua käsittelyyn.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Näyttö ei tue gamman askellusta.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Leveys- ja pituupiiri on asetettava.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Määritä sijainti manuaalisesti.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -780,63 +758,64 @@ msgstr "" " lat=N\t\tLeveyspiiri\n" " lon=N\t\tPituuspiiri\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Vääränmuotoinen parametri.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Automaattikäynnistys" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tX kohdenäyttö jota muutetaan\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:54+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-01-21 20:33+0000\n" +"Last-Translator: Saumon <maximelouet14@gmail.com>\n" "Language-Team: French <fr@li.org>\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: fr\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift adapte la température de couleur de votre écran en fonction de " +"l'environnement. Cela peut aider à diminuer les douleurs oculaires si vous " +"travaillez sur un écran de nuit." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,227 +35,103 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"La température de couleur est définie en fonction de la position du soleil. " +"Une température de couleur différente est appliquée durant le jour ou la " +"nuit. Lors du lever ou du coucher du soleil, la température de couleur " +"change doucement pour permettre à vos yeux de s'adapter." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Ce programme fournit une icône de notification permettant à l'utilisateur de " +"contrôler Redshift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"La fenêtre d'information de Redshift superpose un exemple de l'effet de " +"rougeur." +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "Ajustement de la température de couleur" +msgstr "Réglage de la température de couleur" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Outil de réglage de la température de couleur" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Inconnue" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Journée" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Nuit" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Transition" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Période : %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Période : %s (%.2f%% jour)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "E" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "O" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Utilisation : %s -l LAT:LON -t JOUR:NUIT [OPTIONS...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" -"Régler la température de couleur de l'affichage selon le moment de la " -"journée.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tAffiche cet aide\n" -" -v\t\tMode verbeux\n" -" -V\t\tAffiche la version du programe\n" +msgstr "Localisation : %.2f°%s,%.2f°%s\n" -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" -" -b JOUR:NUIT \t Luminosité de l'écran à appliquer (entre 0.1 et 1.0)\n" -" -c FICHIER \t Charger des paramètres à partir d'un fichier de " -"configuration\n" -" -g R:G:B \t Corrections de couleurs supplémentaires à appliquer\n" -" -l LAT:LON \t Votre location actuelle\n" -" -l FOURNISSEUR \t Sélectionner le fournisseur pour les localisations " -"automatiques\n" -" \t \t (Taper \"list\" pour voir les fournisseurs disponibles)\n" -" -m MÉTHODE \t Méthode à utiliser pour régler la température des couleurs\n" -" \t \t (Taper \"list\" pour voir les méthodes disponibles)\n" -" -o \t \t Mode prise de vue (Sans réglage en continu la température des " -"couleurs)\n" -" -O TEMP. \t Mode prise de vue manuelle (Régler la température des " -"couleurs)\n" -" -p \t \t Mode d'impression (Impression des paramètres et fermeture)\n" -" -x \t \t Mode de réinitialisation (Supprimer les réglages de l'écran)\n" -" -r \t \t Désactiver les transitions de température\n" -" -t JOUR/NUIT \t Température des couleurs à appliquer le jour / la nuit\n" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"La température neutre est de %uK. L'utilisation de cette valeur ne\n" -"changera pas de la température de couleur de l'écran. Régler la\n" -"température de couleur à une valeur plus élevée entraînera plus \n" -"de lumière bleue, et régler une valeur inférieure se traduira par\n" -"plus de lumière rouge.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Valeurs par défaut :\n" -"\n" -" Température du jour : %uK\n" -" Température de la nuit : %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Rapporter les bugs à <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Méthodes d'ajustement disponibles :\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Spécifiez les options séparées par des deux-points en tant que '-m MÉTHODE:" -"OPTIONS'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Essayez '-m MÉTHODE:help' pour de l'aide.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Fournisseurs de localisation disponibles :\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Spécifiez les options séparées par des deux-points en tant que '-l " -"FOURNISSEUR:OPTIONS'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Essayez '-l FOURNISSEUR:help' pour de l'aide.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "L'initialisation de %s a échouée.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Impossible de spécifier l'option %s.\n" @@ -260,206 +139,381 @@ msgstr "Impossible de spécifier l'option %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "Essayez '-l %s:help' pour plus d'informations.\n" +msgstr "Essayez « -l %s:help » pour plus d'informations.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "Impossible d'analyser l'option '%s'.\n" +msgstr "Impossible d'analyser l'option « %s ».\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Impossible de démarrer le fournisseur %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "Essayez `-m %s:help' pour plus d'informations.\n" +msgstr "Essayez « -m %s:help » pour plus d'informations.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" -msgstr "Essayez '-m %s:help' pour plus d'informations.\n" +msgstr "Essayez « -m %s:help » pour plus d'informations.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Impossible de démarrer la méthode d'ajustement %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "Activé" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "La latitude doit être comprise entre %.1f et %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "Désactivé" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "La longitude doit être comprise entre %.1f et %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Impossible d'obtenir l'heure du système.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "En attente de localisation initiale...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Impossible d'obtenir une localisation du fournisseur.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Le fournisseur a renvoyé une localisation invalide.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "Température de couleur : %uK\n" +msgstr "Température de couleur : %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Luminosité : %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "L'ajustement de la température a échoué.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Argument gamma mal formé.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "État : %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Essayez '-h' pour plus de renseignements.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Désactivé" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Fournisseur de localisation « %s » inconnu.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Activé" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Méthode d'ajustement « %s » inconnue.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "L'ajustement de la température a échoué.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Argument de la température incorrect.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"La localisation est temporairement indisponible. Utilisation de la " +"localisation précédente jusqu'à résolution...\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Paramètre gamma mal formé.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Paramètre de configuration « %s » inconnu.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Configuration aube/crépuscule invalide !\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "Essai du fournisseur de localisation « %s »...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Essai du fournisseur suivant...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "Utilisation du fournisseur « %s ».\n" +msgstr "Utilisation du fournisseur « %s ».\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Il n'y a plus de fournisseur de localisation à essayer.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Impossible d'obtenir une localisation du fournisseur.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "Températures : %dK le jour, %dK la nuit\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" +"La transition supérieure ne peut être inférieure à la transition " +"inférieure.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "Élévations solaires: jour au-dessus de %.1f, nuit en-dessous de %.1f\n" - -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "La latitude doit être comprise entre %.1f et %.1f.\n" +msgstr "" +"Élévations solaires : jour au-dessus de %.1f, nuit en-dessous de %.1f\n" -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "La longitude doit être comprise entre %.1f et %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Températures : %dK le jour, %dK la nuit\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "La température doit être comprise entre %uK et %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" -"La transition supérieure ne peut être inférieure à la transition " -"inférieure.\n" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "Les indices de luminosité doivent être compris entre %.1f et %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "Luminosité: %.2f:%.2f\n" +msgstr "Luminosité : %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "La valeur gamma doit être comprise entre %.1f et %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s) : %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Essai de la méthode suivante...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" -msgstr "Utilisation de la méthode « %s ».\n" +msgstr "Utilisation de la méthode « %s ».\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Il n'y a plus de méthodes à essayer.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "En attente de localisation...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "Élévation solaire : %f\n" +msgstr "Élévation solaire : %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Taper Ctrl+C pour quitter...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Utilisation : %s -l LAT:LON -t JOUR:NUIT [OPTIONS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" +"Régler la température de couleur de l'affichage selon le moment de la " +"journée.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tAffiche cet aide\n" +" -v\t\tMode verbeux\n" +" -V\t\tAffiche la version du programe\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b JOUR:NUIT\tLuminosité à appliquer (entre 0.1 et 1.0)\n" +" -c FICHIER\tCharge les paramètres depuis le fichier de configuration " +"spécifié\n" +" -g R:V:B\tCorrection gamma additionnelle à appliquer\n" +" -l LAT:LON\tVotre localisation actuelle\n" +" -l FOURNISSEUR\tSélectionne le fournisseur pour les mises à jour " +"automatiques de localisation\n" +" \t\t(Tapez `list' pour voir les fournisseurs disponibles)\n" +" -m METHODE\tMéthode utilisée pour appliquer la température de couleur\n" +" \t\t(Tapez `list' pour voir les méthodes disponibles)\n" +" -o\t\tMode one-shot (ne pas ajuster continuellement la température de " +"couleur)\n" +" -O TEMP\tMode one-shot manuel (change la température de couleur)\n" +" -p\t\tMode affichage (affiche les paramètres et quitte)\n" +" -P\t\tRéinitialise la correction gamma avant d'appliquer un nouvel effet\n" +" -x\t\tRéinitialisation (désactive l'ajustement de l'écran)\n" +" -r\t\tDésative les transitions entre les températures de couleur\n" +" -t JOUR:NUIT\tTempérature de couleur à appliquer le jour/la nuit\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"La température neutre est %uK. L'utilisation de cette valeur ne changera " +"pas\n" +"la température de couleur de l'affichage. Une valeur plus élevée que celle-" +"ci\n" +"résultera en une lumière plus bleue, et une valeur plus faible résultera en " +"une\n" +"lumière plus rouge.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" msgstr "" +"Valeurs par défaut :\n" +"\n" +" Température du jour : %uK\n" +" Température de la nuit : %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Méthodes d'ajustement disponibles :\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Spécifiez les options séparées par des deux-points en tant que « -m " +"MÉTHODE:OPTIONS ».\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Essayez « -m MÉTHODE:help » pour obtenir de l'aide.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Fournisseurs de localisation disponibles :\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Spécifiez les options séparées par des deux-points en tant que « -l " +"FOURNISSEUR:OPTIONS ».\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Essayez « -l FOURNISSEUR:help » pour obtenir de l'aide.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Argument gamma mal formé.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Essayez « -h » pour plus de renseignements.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Fournisseur de localisation « %s » inconnu.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Méthode d'ajustement « %s » inconnue.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Argument de la température incorrect.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Paramètre gamma mal formé.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Paramètre d'aube `%s' mal formé.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Paramètre de crépuscule `%s' mal formé.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Paramètre de configuration « %s » inconnu.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" @@ -474,32 +528,37 @@ msgid "Assignment outside section in config file.\n" msgstr "" "Affectation en dehors d'une section dans le fichier de configuration.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Impossible d'ouvrir le DRM : %s\n" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "Impossible d'obtenir les ressources en mode DRM\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "Le CRTC %d n'existe pas. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Les CRTCs valides sont [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Le CRTC 0 est le seul à exister.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "CRTC %i perdu, abandon\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" @@ -508,7 +567,7 @@ msgstr "" "Impossible d'obtenir la taille de rampe de couleur pour le CRTC %i\n" "sur la carte graphique% i, dispositif ignoré.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" @@ -517,13 +576,13 @@ msgstr "" "DRM ne peut pas lire les rampes de couleurs sur CRTC %i sur\n" "les carte graphique %i, dispositif ignoré.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "Régler les rampes de couleurs avec Direct Rendering Manager.\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" @@ -531,279 +590,231 @@ msgstr "" " card=N \t Réglages à appliquer à la carte graphique\n" " crtc=N \t Réglages à appliquer au CRTC\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "Le CRTC doit être un nombre entier positif\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "Paramètre de la méthode inconnu: « %s ».\n" +msgstr "Paramètre de la méthode inconnu : « %s ».\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" -msgstr "« %s » a retourné l'erreur %d\n" +msgstr "« %s » a retourné l'erreur %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" -msgstr "Version de RANDR non supporté (%u.%u)\n" +msgstr "Version de RANDR non prise en charge (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Moniteur %i introuvable.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" -msgstr "La taille de la rampe gamma est trop petite: %i\n" +msgstr "La taille de la rampe gamma est trop petite : %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Impossible de rétablir CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Ajuster les rampes gamma avec l'extension X RANDR.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" msgstr "" -" screen=N\tL'écran X auquel appliquer les ajustements\n" -" crtc=N\tLe CRTC auquel appliquer les ajustements\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Impossible de lire le numéro d'écran : `%s'\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" +"Le paramètre `%s` est désormais tout le temps activé ; utilisez l'option " +"`%s` en ligne de commande pour le désactiver.\n" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "La requête X a échoué : %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Ajuster les rampes gamma avec l'extension X VidMode.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" screen=N\tL'écran X auquel appliquer les ajustements\n" -" crtc=N\tLe CRTC auquel appliquer les ajustements\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Impossible d'enregistrer la rampe gamma actuelle.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" - -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Impossible d'ouvrir le contexte du dispositif.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" -msgstr "Le périphérique d'affichage ne supporte pas les rampes gamma.\n" +msgstr "" +"Le périphérique d'affichage ne prend pas en charge les rampes gamma.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Ajuster la rampe gamma avec le GDI de Windows.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Impossible de restaurer les rampes gamma.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Impossible de spécifier les rampes gamma.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"ATTENTION : Utilisation d'une méthode d'ajustement du gamma fictive ! " +"L'affichage ne sera pas modifié par cette méthode.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"N'affecte pas l'affichage mais affiche les températures de couleur dans le " +"terminal.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "Température: %i\n" +msgstr "Température : %i\n" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "Impossible d'obtenir le client maître : %s\n" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "Impossible d'obtenir le client maître\n" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "Impossible de définir les besoins du maître : %s\n" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "Impossible de définir les besoins du maître\n" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "Le fournisseur Geoclue '%s' a démarré.\n" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "Impossible de trouver un fournisseur Geoclue utilisable.\n" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" -"Essayez de régler le nom et le chemin pour spécifier lequel utiliser.\n" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "Utilisez l'emplacement qu'un fournisseur Geoclue a découvert.\n" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" -" name=N\t Nom du fournisseur Geoclue (ou 'défault')\n" -" path=N\t Chemin du fournisseur Geoclue (ou 'default')\n" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" +"L'accès à la localisation a été refusé par GeoClue !\n" +"Vérifiez que les services de localisation sont activés et que Redshift est " +"autorisé\n" +"à utiliser ces services. Visitez https://github.com/jonls/redshift#faq pour " +"plus\n" +"d'informations.\n" -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "Impossible d'obtenir l'emplacement : %s.\n" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "Selon le fournisseur geoclue nous sommes à : %.2f, %.2f\n" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "Le fournisseur n'a pas d'emplacement valide disponible." - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Impossible d'obtenir la localisation : %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Impossible d'accéder au GeoClue Manager : %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "Impossible d'obtenir le chemin du client GeoClue : %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "Impossible d'obtenir le client GeoClue : %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Impossible de définir le seuil de distance : %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "Impossible de démarrer le client GeoClue : %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "Impossible de lancer le fournisser GeoClue2 !\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Utilise la localisation trouvée par un fournisseur GeoClue2.\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "Obtention de la localisation depuis CoreLocation refusée.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" +"Erreur lors de l'obtention de la localisation depuis CoreLocation : %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "En attente de l'autorisation pour obtenir la localisation…\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "La requête pour la localisation a été refusée !\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Impossible de lancer le fournisseur CoreLocation !\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" +"Utilise la localisation découverte par le fournisseur Corelocation.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "La latitude et longitude doivent être spécifiées.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Spécifier la localisation manuellement.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -811,7 +822,7 @@ msgstr "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" @@ -819,57 +830,58 @@ msgstr "" "Les deux valeurs devraient être des nombres à virgule flottants,\n" "des valeurs négatives représentant l'ouest / le sud, respectivement.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Paramètre incorrect.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "Suspendre pendant" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "30 minutes" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "1 heure" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "2 heures" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Lancement automatique" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "Info" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "Quitter" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "Fermer" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>État :</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "Température des couleurs" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "Période" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "Emplacement" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tEcran X auquel appliquer les ajustements\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Tapez `redshift -h` pour l'aide." @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" "PO-Revision-Date: 2014-12-31 23:56+0000\n" "Last-Translator: Jon Lund Steffensen <Unknown>\n" "Language-Team: Galician <gl@li.org>\n" -"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: gl\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -44,189 +44,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Uso: %s -l LAT:LON -t DÍA:NOITE [OPCIÓNS...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "A temperatura da cor móstrase dacordo á hora do día.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"A temperatura neutral é %uK. Usando este valor non\n" -"cambiará a cor do monitor. Cambiando o valor da temperatura \n" -"da cor a un valor máis alto, dará como resultado un ton\n" -"más azulado, cambiándoo a un valor máis baixo, el tono \n" -"será máis vermello.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Valores por defecto:\n" -"\n" -" Temperatura do día: %uK\n" -" Temperatura da noite: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Por favor reporta fallos a <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Métodos de axuste dispoñíbeis:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Sinalar opcións separadas con \"dos puntos\" mediante `-m MÉTODO:OPCIONES'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Proba `-m MÉTODO:help' para axuda.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Fornecedores de localización dispoñíbeis:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Prova `-l FORNECEDOR:help' para axuda.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "A inicialización de %s fallou.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Produciuse un fallo ao estabelecer a opción %s\n" @@ -234,205 +128,344 @@ msgstr "Produciuse un fallo ao estabelecer a opción %s\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Probe `-l %s:help' para máis información.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "A latitude debe estar entre %.1f e %.1f.\n" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "A longitude debe estar entre %.1f e %.1f.\n" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "Imposíbele ler a hora do sistema.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" msgstr "" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" -msgstr "Imposíbele ler a hora do sistema.\n" +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Temperatura da color: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "O axuste da temperatura fallou.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "O axuste da temperatura fallou.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Axuste de gamma incorrecto.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Axuste de configuración desconñecido `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Probando o seguinte fornecedor...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Usando o fornecedor `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "A latitude debe estar entre %.1f e %.1f.\n" - -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "A longitude debe estar entre %.1f e %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "A temperatura debe estar entre %uK e %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "Usando o método `%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Elevación solar: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Uso: %s -l LAT:LON -t DÍA:NOITE [OPCIÓNS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "A temperatura da cor móstrase dacordo á hora do día.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Valores por defecto:\n" +"\n" +" Temperatura do día: %uK\n" +" Temperatura da noite: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Métodos de axuste dispoñíbeis:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Sinalar opcións separadas con \"dos puntos\" mediante `-m MÉTODO:OPCIONES'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Proba `-m MÉTODO:help' para axuda.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Fornecedores de localización dispoñíbeis:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Prova `-l FORNECEDOR:help' para axuda.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Axuste de gamma incorrecto.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Axuste de configuración desconñecido `%s'.\n" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "" @@ -445,380 +478,335 @@ msgstr "Os datos asignados no ficheiro de configuración son incorrectos.\n" msgid "Assignment outside section in config file.\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "" -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "`%s' devolveu o erro %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Versión de RANDR non compatíbel (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "A pantalla %i podería non atoparse.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Non foi posíbel restituir CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" - -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Argumento formado incorrectamente.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Inicio automático" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2010-08-18 21:19+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2016-10-26 08:41+0000\n" +"Last-Translator: Niv Baehr <Unknown>\n" "Language-Team: Hebrew <he@li.org>\n" -"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: he\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,8 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift מתאימה את טמפרטורת הצבע של המסך בהתאם לסביבה. דבר שיכול לעזור " +"להפחית כאב בעיניים בעבודה מול המסך בלילה." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -44,385 +46,430 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "התאמת טמפרטורת צבע" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "כלי להתאמת טמפרטורת צבע" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "ללא" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Daytime" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Night" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Transition" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Period: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Period: %s (%.2f%% day)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "E" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "W" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" +msgstr "Location: %.2f %s, %.2f %s\n" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "שימוש: %s -l רוחב:אורך -t יום:לילה [אפהשרויות...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "הגדר את טמפרטורת צבעי המסך לפי שעת היום.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "ספקים מקומיים זמינים:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "" +msgstr "Initialization of %s failed.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "" +msgstr "Failed to set %s option.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "" +msgstr "Try `-l %s:help' for more information.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Failed to parse option `%s'.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" -msgstr "" +msgstr "Failed to start provider %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "" +msgstr "Try `-m %s:help' for more information.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" -msgstr "כשל בתחילת שיטת הזזה %s.\n" +msgstr "Failed to start adjustment method %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" +msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "Unable to read system time.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Unable to get location from provider.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" msgstr "" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "" +msgstr "Color temperature: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" -msgstr "" - -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" +msgstr "Brightness: %.2f\n" -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Status: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "תנסה \"-h\" לקבלת מידע נוסף.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "מושבת" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "ספק מיקום \"%s\" לא מוכר.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "פעיל" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Temperature adjustment failed.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "מנסה ספק הבא...\n" +msgstr "Trying next provider...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "משתמש בספק \"%s\".\n" +msgstr "Using provider `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "אין ספקי מיקום נוספים לנסות.\n" +msgstr "No more location providers to try.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "לא ניתן לקבל מיקום מהספק.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Set color temperature of display according to time of day.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Available adjustment methods:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Try `-m METHOD:help' for help.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Available location providers:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Try `-l PROVIDER:help' for help.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Malformed gamma argument.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Try `-h' for more information.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Unknown location provider `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Unknown adjustment method `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "" @@ -435,380 +482,335 @@ msgstr "" msgid "Assignment outside section in config file.\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "" -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" - -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" +msgstr "Temperature: %i\n" -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "השהיה" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 דקות" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "שעה" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "שעתיים" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" -msgstr "" +msgstr "הפעלה אוטומטית" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "מידע" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "יציאה" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "סגירה" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>מצב:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "טמפרטורת צבע" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "פרק זמן" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" +msgstr "מיקום" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" "PO-Revision-Date: 2013-05-04 08:35+0000\n" "Last-Translator: Ravi Kumar <Unknown>\n" "Language-Team: Hindi <hi@li.org>\n" -"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: hi\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -44,182 +44,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "दिन के समय के अनुसार डिस्प्ले का रंग सेट करे.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tयह सहायता संदेश प्रदर्शित करें\n" -"-v\t\tवाचाल आउटपुट\n" -"-V\t\tप्रोग्राम का संस्करण दिखाएँ\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "कृपया बग की रिपोर्ट <%s> काे करे\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "उपलब्ध समायोजन तरीके:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "मदद के लिए `-m METHOD:help' का प्रयास करें.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "मदद के लिए `-l PROVIDER:help' का प्रयास करें.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "%s के प्रारंभिकीकरण असफल.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "%s विकल्प सेट करने में विफल.\n" @@ -227,205 +128,342 @@ msgstr "%s विकल्प सेट करने में विफल.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "अधिक जानकारी के लिए `-l %s:help'.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "प्रदाता %s को आरंभ करने में विफल.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" +msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" msgstr "" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" msgstr "" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "दिन के समय के अनुसार डिस्प्ले का रंग सेट करे.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tयह सहायता संदेश प्रदर्शित करें\n" +"-v\t\tवाचाल आउटपुट\n" +"-V\t\tप्रोग्राम का संस्करण दिखाएँ\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "उपलब्ध समायोजन तरीके:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "मदद के लिए `-m METHOD:help' का प्रयास करें.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "मदद के लिए `-l PROVIDER:help' का प्रयास करें.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "" @@ -438,380 +476,335 @@ msgstr "" msgid "Assignment outside section in config file.\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "" -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:54+0000\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2015-02-23 06:54+0000\n" "Last-Translator: Mario Dautović <mario.dautovic@yahoo.com>\n" "Language-Team: Croatian <hr@li.org>\n" -"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: hr\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -44,194 +44,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Uporaba: %s -l DUŽ:ŠIR -t DNE:NOĆ [OPCIJE...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Postaviti temperaturu boje zaslona ovisno o razdoblju dana.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tPrikaži ovu pomoć\n" -" -v\t\tOpširan ispis\n" -" -V\t\tPrikaži inačicu programa\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"Neutralna temperatura je %uK. Korištenje ove vrijednosti neće\n" -"promijeniti temperaturu boje zaslona. Postavljanje temperature\n" -"boje na višu vrijednost će rezultirati većom količinom\n" -"plavog svijetla, a manja vrijednost većom količinom\n" -"crvenog svijetla.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Zadane vrijednosti:\n" -"\n" -" Dnevna temperatura: %uK\n" -" Noćna temperatura: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Molimo vas greške prijavite na <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Dostupni načini prilagodbe\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Zadajte opcije s vrijednostima odvojenim dvotočkom `-m NAČIN:OPCIJA'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Probajte `-m NAČIN:help' za pomoć.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Dostupni pružatelji lokacije\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Zadajte opcije s vrijednostima odvojenim dvotočkom `-l PRUŽATELJ_USLUGE:" -"OPCIJA'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Probajte `-l PRUŽATELJ_USLUGE:help' za pomoć.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "Učitavanje %s nije uspjelo.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Postavljanje %s opcije nije uspjelo.\n" @@ -239,205 +128,349 @@ msgstr "Postavljanje %s opcije nije uspjelo.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Upišite `-l %s:help' za pojedinosti.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Pogreška prilikom pokretanja pružatelja usluge %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Pokušajte `-m %s:help' za pojedinosti.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Pokušajte -m %s:help' za pojedinosti.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Način podešavanja %s nije uspio.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Zemljopisna širina mora biti između %.1f i %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Zemljopisna dužina mora biti između %.1f i %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Nije moguće pročitati vrijeme na sustavu.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Ne mogu dobiti lokaciju od pružatelja usluge.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Temperatura boje: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Jačina svjetla: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Podešavanje temperature nije uspjelo.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Netočan gama argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Pokušajte `-h' za pojedinosti.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Nepoznat pružatelj usluge lociranja `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Nepoznata način podešavanja `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Podešavanje temperature nije uspjelo.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Netočna postavka temperature.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Netočne gama postavke.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Nepoznate postavke `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Pokušavam kod sljedećeg pružatelja usluge...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Koristim pružatelja usluge `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Ne postoji više pružatelja usluge lociranja za probati.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Ne mogu dobiti lokaciju od pružatelja usluge.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Zemljopisna širina mora biti između %.1f i %.1f.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Zemljopisna dužina mora biti između %.1f i %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Temperatura mora biti između %uK i %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Gama vrijednost mora biti između %.1f i %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Pokušavam sljedeći način...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "Koristim način `%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Ne postoji više načina za probati.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Sunčeva visina: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Uporaba: %s -l DUŽ:ŠIR -t DNE:NOĆ [OPCIJE...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Postaviti temperaturu boje zaslona ovisno o razdoblju dana.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tPrikaži ovu pomoć\n" +" -v\t\tOpširan ispis\n" +" -V\t\tPrikaži inačicu programa\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Zadane vrijednosti:\n" +"\n" +" Dnevna temperatura: %uK\n" +" Noćna temperatura: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Dostupni načini prilagodbe\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Zadajte opcije s vrijednostima odvojenim dvotočkom `-m NAČIN:OPCIJA'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Probajte `-m NAČIN:help' za pomoć.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Dostupni pružatelji lokacije\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Zadajte opcije s vrijednostima odvojenim dvotočkom `-l " +"PRUŽATELJ_USLUGE:OPCIJA'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Probajte `-l PRUŽATELJ_USLUGE:help' za pomoć.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Netočan gama argument.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Pokušajte `-h' za pojedinosti.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Nepoznat pružatelj usluge lociranja `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Nepoznata način podešavanja `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Netočna postavka temperature.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Netočne gama postavke.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Nepoznate postavke `%s'.\n" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "Neispravno zaglavlje u datoteci s postavkama.\n" @@ -450,327 +483,272 @@ msgstr "Neispravna dodjela vrijednosti u datoteci s postaavkama.\n" msgid "Assignment outside section in config file.\n" msgstr "Dodjela vrijednosti izvan okvira u datoteci s postavkama.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d ne postoji. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Valjani CRTCs su [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Postoji samo CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Neispravan parametar `%s' za metodu.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "`%s' je vratio grešku %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Nepodržana RANDR inačica (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Zaslon %i nije moguće pronaći.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Veličina gama krivulje je premala: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Nije moguće povratiti CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Prilagodi gama krivulju sa X RANDR proširenjem.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" msgstr "" -" screen=N\tX zaslon na koji primjenjujete prilagodbe\n" -" crtc=N\tCRTC za koji primjenjujete prilagodbe\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "X zahtjev nije uspio: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Prilagodi gama krivulju sa X VidMode proširenjem.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" screen=N\tX zaslon na koji primjenjujete prilagodbe\n" -" crtc=N\tCRTC za koji primjenjujete prilagodbe\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Nije moguće spremiti trenutnu gama krivulju.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" - -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Nemoguće je otvoriti sadržaj uređaja.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Zaslon ne podržava gama krivulju.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Prilagodi gama krivulju s Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Nije moguće povratiti gama krivulju.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Nije moguće postaviti gama krivulju.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Zemljopisna širina i dužina moraju biti postavljene.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Ručno određivanje lokacije.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -778,63 +756,64 @@ msgstr "" " lat=N\t\tŠirina\n" " lon=N\t\tDužina\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Neispravan argument.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Automatsko pokretanje" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tX zaslon na koji primjenjujete prilagodbe\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-10-07 10:05+0000\n" -"Last-Translator: krnkris <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-04-07 16:04+0000\n" +"Last-Translator: Laci <Unknown>\n" "Language-Team: Hungarian <hu@li.org>\n" -"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: hu\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift beállítja a kijelzője színhőmérsékletét a környezetétől függően. Ez " +"segít, hogy kevésbé fájjon a szeme, ha képernyő előtt dolgozik az éjszaka " +"folyamán." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,223 +35,102 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"A színhőmérsékletet a nap helyzetéhez igazítja. Különböző színhőmérsékletet " +"állít be nappal és éjszaka. Szürkületben és kora reggel a színhőmérséklet " +"átmenete az éjszakiról a nappali hőmérsékletre lehetővé teszi, hogy a szem " +"lassan alkalmazkodhasson." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Ez a program elérhetővé tesz egy állapot ikont, melyen keresztül a " +"felhasználó beállíthatja a Redshift alkalmazást." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"A Redshift információs ablak egy példa vörös effektus átmenettel borított" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Színhőmérséklet beállítása" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Színhőmérséklet beállító eszköz" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Nincs információ" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Nappal" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Éjszaka" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Átmenet" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Periódus: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Periódus: %s (%.2f%% nap)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "É" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "D" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "K" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "NY" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Felhasználás: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "A képernyő színhőmérsékletének óra szerinti beállítása.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tEnnek a segítő üzenetnek a mutatása\n" -" -v\t\tRészletek mutatása\n" -" -V\t\tProgram verzió megmutatása\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" -" -b DAY:NIGHT\tKépernyőn használni kívánt fényerősség (0.1 és 1.0 közti " -"érték)\n" -" -c FILE\tBeállítások betöltése előre meghatározott beállítási fájlból\n" -" -g R:G:B\tTovábbi gamma korrekció alkalmazása\n" -" -l LAT:LON\tA jelenlegi helyzete\n" -" -l PROVIDER\tSzolgáltató kiválasztása az automatikus helyszín " -"frissítésekhez\n" -" \t\t(Írja be `list' az elérhető szolgáltatók listájához)\n" -" -m METHOD\tA szín hőmérséklet használatának módjai\n" -" \t\t(Írja be `list' a lehetséges módok megtekintéséhez)\n" -" -o\t\tEgyszeres beillesztési mód (nincs folyamatos szín hőmérséklet után " -"állítás)\n" -" -O TEMP\tEgyszeres kézi beillesztés mód (szín hőmérséklet beállítás)\n" -" -p\t\tNyomtatás mód (paraméterek kinyomtatása és kilépés)\n" -" -x\t\tVisszaállítás mód (kiiktatja a képernyő beállításait)\n" -" -r\t\tKiiktatja a hőmérséklet átmeneteket\n" -" -t DAY:NIGHT\tNappali/éjszakai szín hőmérséklet beállítása\n" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"A semleges hőmérséklet: %uK. Ennek az értéknek a használata \n" -"nem változtatja a képernyő hőmérsékletét. A szín\n" -"hőmérséklet ennél magasabbra állításával kékesebb,\n" -"alacsonyabbra állításával vörösebb színt kapunk.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"alapértelmezett értékek:\n" -"\n" -" Nappali hőmérséklet: %uK\n" -" Éjszakai hőmérséklet: %uK\n" +msgstr "Helyzet: %.2f %s, %.2f %s\n" -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Hibát kérjük jelentse ide <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Elérhető beállítási módok:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Határozzon meg kettősponttal elválasztott lehetőségeket így `-m METHOD:" -"OPTIONS'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Próbálja ezt `-m METHOD:help' segítséghez.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Elérhető helyzet szolgáltatók:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Határozzon meg kettősponttal elválasztott lehetőségeket így `-l PROVIDER:" -"OPTIONS'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Próbálja ezt `-l PROVIDER:help' segítséghez.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "Sikertelen %s betöltése.\n" +msgstr "%s betöltése sikertelen.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "A %s lehetőség beállítása sikertelen.\n" @@ -256,204 +138,353 @@ msgstr "A %s lehetőség beállítása sikertelen.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Próbálja ezt `-l %s:help' további információ eléréséhez.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "'%s' lehetőség elemzése sikertelen.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "%s szolgáltató elindítása sikertelen.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Próbálja ezt `-m %s:help' további információ eléréséhez.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Próbálja ezt -m %s:help' további információ eléréséhez.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "%s beállítási mód elindítása sikertelen.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "Engedélyezve" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Földrajzi szélesség %.1f és %.1f közt kellene lennie.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "Tiltva" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Hosszúsági körnek %.1f és %.1f közti értéknek kell lennie.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" -msgstr "Nem tudja olvasni a rendszeridőt.\n" +msgstr "Nem sikerült olvasni a rendszeridőt.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "A hely elsö keresése...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Nem tud helyzetet lekérdezni szolgáltatótól.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Érvénytelen helyet küldött a szolgáltató.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "Szín hőmérséklet: %uK\n" +msgstr "Színhőmérséklet: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Fényerő: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Hőmérséklet beállítás sikertelen.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Rosszul megadott gamma érték.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Állapot: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Próbálja ezt `-h' további információ eléréséhez.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Tiltva" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "%s ismeretlen helyzet szolgáltató.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Engedélyezve" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "`%s' ismeretlen beállítási mód.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Hőmérséklet beállítás sikertelen.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Rosszul megadott hőmérséklet érték.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"Helyadatok idéglenesen hozzáférhetetlenek, elözö adatok használása ameddig " +"nincs új adat...\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Rosszul megadott gamma beállítás.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Részleges időbeállítás nem támogatott!\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Ismeretlen beállítási érték `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Nem helyes hajnal/naplemente beállítások!\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "Kísérlet a helyzet szolgáltató elérésére `%s'...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Következő szolgáltató elérését kísérli meg...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Következő szolgáltatót használja `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Nincs több választható szolgáltató.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Nem tud helyzetet lekérdezni szolgáltatótól.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "Hőmérsékletek: %dK nappal, %dK éjszaka\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" +"A magas átmeneti emelkedés nem lehet alacsonyabb mint az alacsony átmeneti " +"emelkedés.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "Nap szögmagasságai: nappal %.1f felett, éjszaka %.1f alatt\n" -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Földrajzi szélesség %.1f és %.1f közt kellene lennie.\n" - -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Hosszúsági körnek %.1f és %.1f közti értéknek kell lennie.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Hőmérsékletek: %dK nappal, %dK éjszaka\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "A hőmérsékletnek %uK és %uK közti értéknek kell lennie.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "Fényerősség értékének %.1f és %.1f közt kell lennie.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "Fényerősség: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Gamma értéknek %.1f and %.1f közt kell lennie.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Következő módot próbálja...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "`%s' mód használata.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Nincs több kipróbálható mód.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "A hely keresése...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Nap emelkedési szög: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Nyomj Ctrl + C -t a leállításhoz\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Használat: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "A képernyő színhőmérsékletének óra szerinti beállítása.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tEnnek a súgó üzenetnek a megjelenítése\n" +" -v\t\tRészletek megjelenítése\n" +" -V\t\tProgram verzió megjelenítése\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Alapértelmezett értékek:\n" +"\n" +" Nappali hőmérséklet: %uK\n" +" Éjszakai hőmérséklet: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Elérhető beállítási módok:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" msgstr "" +"Határozzon meg kettősponttal elválasztott lehetőségeket így `-m " +"METHOD:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Próbálja ezt `-m METHOD:help' segítséghez.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Elérhető helyzet szolgáltatók:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Határozzon meg kettősponttal elválasztott lehetőségeket így `-l " +"PROVIDER:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Próbálja ezt `-l PROVIDER:help' segítséghez.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Rosszul megadott gamma érték.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Próbálja ezt `-h' további információ eléréséhez.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "%s ismeretlen helyzet szolgáltató.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "`%s' ismeretlen beállítási mód.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Rosszul megadott hőmérséklet érték.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Rosszul megadott gamma beállítás.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "A halynal-beállítás '%s' érvénytelen!\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "A naplemente-beállítás '%s' érvénytelen!\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Ismeretlen beállítási érték `%s'.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" @@ -467,32 +498,37 @@ msgstr "Nem megfelelő kijelölés a beállító fájlban.\n" msgid "Assignment outside section in config file.\n" msgstr "Külső szakasz kijelölés a beállító fájlban.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Nem lehetett a %s DRM-egséget kinyitni\n" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "Hibázott a DRM módú erőforrások meghívásánál\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d nem létezik. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Ezek érvényes CRTC-k [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Csak CRTC 0 létezik.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "CRTC %i elveszett, átugorja\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" @@ -501,7 +537,7 @@ msgstr "" "Nem tudja a CRTC %i gamma emelkedési szintet a\n" " %i grafikus kártyán, eszköz figyelmen kívül hagyása.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" @@ -510,13 +546,13 @@ msgstr "" "DRM nem tudja kiolvasni a CRTC %i gamma emelkedéseket a\n" "%i grafikus kártyán, eszköz figyelmen kívül hagyása.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "A gamma emelkedés beállítása a Közvetlen kiválasztó kezelővel.\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" @@ -524,280 +560,226 @@ msgstr "" " kártya=N\tGrafikus kártya amin beállítást végez\n" " crtc=N\tCRTC amin beállítást végez\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "CRTC nem lehet negatív változó\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Ismeretlen mód paraméter: `%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "`%s' visszatért hibával %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Nem támogatott RANDR verzió (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "%i képernyő nem található.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Gamma emelkedés mérete túl kicsi: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Nem tudja visszaállítani a CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Gamma emelkedés beállítása a X RANDR kiterjesztéssel.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" msgstr "" -" képernyő=N\tX képernyő amihez a beállítást végzi\n" -" crtc=N\tCRTC amihez a beállítást végzi\n" +" screen=N\t\tX képernyö, amire a beállítások érvényesek lesznek\n" +" crtc=N\tVesszőkkel elválasztott CRTC-lista, amire a beállítások érvényesek " +"lesznek\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "A képernyö '%s' nem olvasható.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "X igénylés hibás: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Gamma emelkedés beállításai az X VidMode kiterjesztéssel.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" képernyő=N\tX képernyő amihez a beállítást végzi\n" -" crtc=N\tCRTC amihez a beállítást végzi\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Nem tudja menteni a jelenlegi gamma emelkedést.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Nem tudja megnyitni a készülék függőségeit.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Kijelző készülék nem támogatja a gamma emelkedést.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Gamma emelkedés beállítása a Windows GDI eszközzel.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Nem tudja visszaállítani a gamma emelkedést.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Nem tudja beállítani a gamma emelkedést.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"VIGYÁZAT: Látszólagos gamma érték használata! A kijelzést nem befolyásolja " +"ez a gamma mód.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"Nem befolyásolja a kijelzőt, de kinyomtatja a szín hőmérsékletet a " +"terminálra.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" +msgstr "Hőmérséklet: %i\n" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "Nem tudja beszerezni a fő kiszolgálót: %s\n" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "Nem tudja beszerezni a fő kiszolgálót\n" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "Nem, tudja beállítani a követelményeket a fő kiszolgálóhoz: %s\n" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "Nem, tudja beállítani a követelményeket a fő kiszolgálóhoz\n" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "Geoclue szolgáltatás elindítva `%s'.\n" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "Nem talál használható Geoclue szolgáltatót.\n" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" -"Próbálja a beállítani a nevet és elérési utat ahhoz, hogy melyiket " -"használja.\n" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "Használja a Geoclue szolgáltatás által felfedezett helyszínt.\n" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" -" név=N\tGeoclue szolgáltató neve (vagy `alapértelmezett')\n" -" elérési út=N\tGeoclue szolgáltató elérési útja (vagy `alapértelmezett')\n" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "Nem talál helyszínt: %s.\n" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "A geoclue szolgáltató szerint mi itt vagyunk: %.2f, %.2f\n" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "A szolgáltató nem közöl érvényes helyszínt." - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Nem éri el a helyszín: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Nem éri el a GeoClue kezelőt: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "Nem éri el a GeoClue kliens szolgáltató elérési útját: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "Nem éri el a GeoClue kliens szolgáltatót: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Nem tudja beállítani a távolsági küszöbértéket: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "Nem tudja elindítani a GeoClue klienst: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "Nem lehetett indítani a GeoClue2 szolgáltatót!\n" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Használja a helyzetét melyet a GeoClue2 szolgáltatótól kapott.\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" +"Nincs felhatalmazása helyzet lekérésére a helyiség fő adatbázisából.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" +"Hiba a helyiség fő adatbázisából történő helyzet lekérése közben: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "Hozzáférési engedély kérése a helyzet eléréséhez...\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "A helyzet igénylése nem engedélyezett!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Nem lehetett indítani a CoreLocation szolgáltatót!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" +"A fő helyiség adatbázis szolgáltató által elővett helyzet használata.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Szélességi és hosszúsági köröket be kell állítani.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Határozzon meg egy helyszínt, kézzel.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -805,7 +787,7 @@ msgstr "" " hossz=N\t\tHosszúsági\n" " szél=N\t\tSzélességi\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" @@ -813,57 +795,58 @@ msgstr "" "Mindkét érték várhatóan lebegőpontos szám,\n" "negatív számok képviselik a nyugat / dél megfelelő irányokat.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Rosszul megadott érték.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "Felfüggesztési idő" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "30 perc" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "1 óra" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "2 óra" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Automatikus indítás" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "Információ" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "Kilépés" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "Bezárás" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Állapot:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "Színhőmérséklet" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "Időszak" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "Tartózkodási hely" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " képernyő=N\tX képernyő amihez a beállítást végzi\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Futtatsa 'redshift -h' a súgó megtekintésének." @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:57+0000\n" -"Last-Translator: Andrea Amoroso <andrea.amoroso@alice.it>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2015-03-25 11:58+0000\n" +"Last-Translator: Stefano Prenna <Unknown>\n" "Language-Team: Italian <it@li.org>\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: it\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Reshift regola la temperatura del colore dello schermo in base all'ambiente " +"circostante. Questo può aiutare a non affaticare la vista se si lavora " +"davanti allo schermo di notte." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,206 +35,104 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"La temperatura del colore è impostata in base alla posizione del sole. " +"Vengono impostate temperature di colore differenti per la notte e per il " +"giorno. Al crepuscolo e al mattino presto, la temperatura del colore passa " +"delicatamente da quella notturna a quella diurna per consentire alla vista " +"di abituarsi in modo graduale." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Questo programma fornisce un'icona di stato che consente all'utente di " +"controllare Redshift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"La finestra delle informazioni di Redshift mostra un esempio sovrapposto " +"dell'effetto rosso" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Regolazione della temperatura del colore" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Strumento per la regolazione della temperatura del colore" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Nessuno" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Giorno" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Notte" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Transizione" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Periodo: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Periodo: %s (%.2f%% giorno)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "E" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "O" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Utilizzo: %s -l LAT:LON -t GIORNO:NOTTE [OPZIONI...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" -"Imposta la temperatura di colore dello schermo a seconda dell'orario " -"attuale.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tMostra questo messaggio di aiuto\n" -" -v\t\tOutput dettagliato\n" -" -V\t\tMostra versione del programma\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"La temperatura neutra è %uK. Usando questo valore non\n" -"cambierà la temperatura di colore dello schermo. Impostando\n" -"la temperatura di colore ad un valore più alto di questo si ottiene\n" -"una luce più blu, mentre impostando un valore più basso si\n" -"ottiene una luce più rossa.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Valori predefiniti:\n" -"\n" -" Temperatura giornaliera: %uK\n" -" Temperatura notturna: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Per favore segnala gli errori a <%s>.\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Metodi di correzione disponibili:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "Specificare opzioni separate dai due punti con `-m METODO:OPZIONI'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Provare `-m METODO:help' per aiuto.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Provider posizionali disponibili:\n" +msgstr "Posizione: %.2f %s, %.2f %s\n" -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Specificare opzioni separate dai due punti con `-m PROVIDER:OPZIONI'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Provare `-m PROVIDER:help' per aiuto.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "Inizializzazione di %s non riuscita.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Impossibile impostare l'opzione %s.\n" @@ -239,539 +140,634 @@ msgstr "Impossibile impostare l'opzione %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "Provare `-l %s:help' per maggiori informazioni.\n" +msgstr "Provare \"-l %s:help\" per maggiori informazioni.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Impossibile analizzare l'opzione \"%s\".\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Impossibile avviare il provider %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "Prova `-m %s:help' per maggiori informazioni.\n" +msgstr "Provare \"-m %s:help\" per maggiori informazioni.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" -msgstr "Provare `-m %s:help' per maggiori informazioni.\n" +msgstr "Provare \"-m %s:help\" per maggiori informazioni.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Impossibile avviare il metodo di regolazione %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "La latitudine deve essere compresa tra %.1f e %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "La longitudine deve essere compresa tra %.1f e %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Impossibile leggere l'orario di sistema.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Impossibile ottenere la posizione dal provider.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "Temperatura di colore: %uK\n" +msgstr "Temperatura del colore: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Luminosità: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Impostazione della temperatura fallita.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Argomento del gamma in forma errata.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Stato: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Prova `-h' per ulteriori informazioni.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Disabilitato" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Provider posizionale sconosciuto `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Abilitato" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Metodo di aggiustamento sconosciuto `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Impostazione della temperatura non riuscita.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Argomento della temperatura in forma errata.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Impostazioni gamma errata.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Opzioni di configurazione sconosciute '%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "Tentativo con il provider della posizione \"%s\"...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "Provando il prossimo provider...\n" +msgstr "Tentativo con il provider successivo...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "Usando il provider `%s'\n" +msgstr "Provider in uso \"%s\"\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "Nessun altro provider posizionale da provare.\n" - -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Impossibile ottenere la posizione dal provider.\n" +msgstr "Nessun altro provider per la posizione da provare.\n" -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "La latitudine deve essere compresa tra %.1f e %.1f.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "La longitudine deve essere compresa tra %.1f e %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperature: %dK di giorno, %dK di notte\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "La temperatura deve essere compresa tra %uK e %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "I valori della luminosità devono essere tra %.1f e %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "Luminosità: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" -msgstr "Il valore gamma deve essere compreso tra %.1f e %.1f.\n" +msgstr "Il valore della gamma deve essere compreso tra %.1f e %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" -msgstr "Provando il prossimo metodo...\n" +msgstr "Tentativo con il metodo successivo...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" -msgstr "Usando il metodo `%s'.\n" +msgstr "Metodo in uso \"%s\".\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Nessun altro metodo da provare.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "Elevazione solare: %f °\n" +msgstr "Elevazione del sole: %f °\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Premere Ctrl-c per arrestare...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Uso: %s -l LAT:LON -t GIORNO:NOTTE [OPZIONI...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" +"Imposta la temperatura del colore dello schermo in base all'orario del " +"giorno.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tMostra questo messaggio di aiuto\n" +" -v\t\tOutput prolisso\n" +" -V\t\tMostra la versione del programma\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Valori predefiniti:\n" +"\n" +" Temperatura giornaliera: %uK\n" +" Temperatura notturna: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Metodi di regolazione disponibili:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Specificare opzioni separate da due punti con \"-m METODO:OPZIONI\".\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Provare \"-m METODO:help\" per informazioni aggiuntive.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Provider della posizione disponibili:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Specificare opzioni separate da due punti con \"-m PROVIDER:OPZIONI\".\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Provare \"-m PROVIDER:help\" per informazioni aggiuntive.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Argomento di gamma in forma errata.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Provare \"-h\" per maggiori informazioni.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Provider della posizione sconosciuto \"%s\".\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Metodo di regolazione \"%s\" sconosciuto.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Argomento della temperatura in forma errata.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Impostazioni gamma in forma errata.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" msgstr "" +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Impostazione di configurazione sconosciuta \"%s\".\n" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "Intestazione di sezione malformata nel file di configurazione.\n" +msgstr "" +"Intestazione di sezione in forma errata nel file di configurazione.\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "Assegnamento malformato nel file di configurazione.\n" +msgstr "Assegnamento in forma errata nel file di configurazione.\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" msgstr "Sezione esterna dell'assegnamento nel file di configurazione.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 #, c-format -msgid "Failed to get DRM mode resources\n" +msgid "Failed to open DRM device: %s\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "Impossibile ottenere le risorse per la modalità DRM\n" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d non esiste. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "I CRTC validi sono [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Esiste solo il CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "CRTC %i perso, salto\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "" +msgstr "CRCT deve essere un valore intero non negativo\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "Parametro del metodo non conosciuto: `%s'.\n" +msgstr "Parametro del metodo sconosciuto: \"%s\".\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" -msgstr "`%s' ha prodotto l'errore %d\n" +msgstr "\"%s\" ha prodotto l'errore %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Versione di RANDR non supportata (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Lo schermo %i non è stato trovato.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" -msgstr "Dimensione della scala gamma troppo piccola: %i\n" +msgstr "Dimensione della scala di gamma troppo piccola: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Impossibile ripristinare CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" -msgstr "Regolare la scala dei gamma con l'estensione di X RANDR.\n" +msgstr "Regolare la scala di gamma con l'estensione di X RANDR.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" msgstr "" -" schermo=N\tSchermo di X su cui applicare le regolazioni\n" -" crtc=N\tCRTC su cui applicare le regolazioni\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "Richiesta X fallita: %s\n" +msgstr "Richiesta X non riuscita: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" -msgstr "Regolare la scala dei gamma con l'estensione di X VidMode.\n" +msgstr "Regolare la scala di gamma con l'estensione di X VidMode.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" schermo=N\tSchermo di X su cui applicare le regolazioni\n" -" crtc=N\tCRTC su cui applicare le regolazioni\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "Impossibile salvare la scala dei gamma attuale.\n" - -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" +msgstr "Impossibile salvare la scala di gamma attuale.\n" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "Impossibile aprire il contesto della periferica.\n" +msgstr "Impossibile aprire il contesto del dispositivo.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" -msgstr "La periferica di visualizzazione non supporta la scala dei gamma.\n" +msgstr "La periferica di visualizzazione non supporta la scala di gamma.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" -msgstr "Regolare la scala dei gamma con il Windows GDI.\n" +msgstr "Regolare la scala di gamma con il Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "Impossibile ripristinare la scala dei gamma.\n" +msgstr "Impossibile ripristinare la scala di gamma.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "Impossibile impostare la scala dei gamma.\n" +msgstr "Impossibile impostare la scala di gamma.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"ATTENZIONE: si sta usando un metodo fittizio per la Gamma! Lo schermo non " +"sarà modificato.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"Non cambia la visualizzazione su schermo, ma mostra la temperatura del " +"colore nel terminale.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" +msgstr "Temperatura: %i\n" -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Impossibile ottenere la posizione: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Impossibile ottenere il gestore Geoclue: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "Impossibile ottenere il percorso del client Geoclue: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "Impossibile ottenere il client Geoclue: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Impossibile impostare la sogli di distanza: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "Impossibile avviare il client Geoclue: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Usa la localizzazione come indicato da un provider GeoClue2.\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "Non autorizzare a ottenere la posizione da CoreLocation.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "Errore nell'ottenere la posizione da CoreLocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "In attesa dell'autorizzazione ad ottenere la posizione...\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" +msgstr "La richiesta della posizione non è stata autorizzata.\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" "La latitudine e la longitudine devono essere impostate obbligatoriamente.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Specificare la posizione manualmente.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -779,63 +775,64 @@ msgstr "" " lat=N\t\tLatitudine\n" " lon=N\t\tLongitudine\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Argomento in forma errata.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Sospendi per" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 minuti" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 ora" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 ore" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Avvio automatico" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "Infomazioni" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Esci" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Chiudi" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Stato:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Temperatura del colore" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Periodo" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "Posizione" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " schermo=N\tSchermo di X su cui applicare le regolazioni\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:56+0000\n" -"Last-Translator: Nobuto MURATA <nobuto@nobuto-murata.org>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-03-15 15:36+0000\n" +"Last-Translator: kakurasan <Unknown>\n" "Language-Team: Japanese <ja@li.org>\n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: ja\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,8 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift " +"は環境に応じてお使いの画面の色温度を調整します。これは夜間に画面の前で作業している場合に目への悪影響を軽減させる助けになるかもしれません。" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,783 +34,819 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"色温度は太陽の位置に応じて設定されます。昼と夜とでは異なる色温度が設定されます。夕暮れ時や早朝の間は、 " +"色温度は滑らかに変化してゆっくり目を慣れさせることができます。" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." -msgstr "" +msgstr "このプログラムはユーザが Redshift を制御できるようにするためのステータス アイコンを提供します。" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" -msgstr "" +msgstr "赤み効果の例で覆われた Redshift 情報ウィンドウ" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "色温度の調整" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "色温度の調整ツール" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "不明" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "昼間" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "夜間" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "昼夜の変わり目" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "時間帯: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "時間帯: %s (昼間の割合 %.2f%%)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "北緯" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "南緯" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "東経" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "西経" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" +msgstr "位置: %2$s %1$.2f°, %4$s %3$.2f°\n" -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "" +msgstr "%s の初期化に失敗しました。\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "" +msgstr "%s のオプションの設定に失敗しました。\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "" +msgstr "`-l %s:help' で詳細情報が参照できます。\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "オプション `%s' の解析に失敗しました。\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" -msgstr "" +msgstr "プロバイダ %s の開始に失敗しました。\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "" +msgstr "`-m %s:help' で詳細情報が参照できます。\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" -msgstr "" +msgstr "`-m %s:help' で詳細情報が参照できます。\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" -msgstr "" +msgstr "調整方式 %s の開始に失敗しました。\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "緯度は %.1f と %.1f の間でなければなりません。\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "経度は %.1f と %.1f の間でなければなりません。\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" -msgstr "" +msgstr "システムの時刻を読み込めません。\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "初期位置が取得可能になるのを待機しています...\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "プロバイダから位置を取得できません。\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "プロバイダから無効な位置が返されました。\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "" +msgstr "色温度: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" -msgstr "" +msgstr "明るさ: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "状態: %s\n" -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "無効" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "有効" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "温度の調整に失敗しました。\n" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "位置情報は一時的に利用不能です; 利用可能になるまでは前回の位置を使用します...\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "部分的な時刻設定はサポートされていません!\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "無効な日の出/日の入り時刻の設定です!\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "" - -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "位置プロバイダ `%s' を試行しています...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "" +msgstr "次のプロバイダを試行しています...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "" +msgstr "プロバイダ `%s' を使用します。\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "" - -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" +msgstr "試行する位置プロバイダがもうありません。\n" -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "elevation-high の値は elevation-low の値より小さくできません。\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" - -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" +msgstr "太陽の高度範囲: 昼間は %.1f° より上, 夜間は %.1f° より下\n" -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "温度: 昼間 %dK, 夜間 %dK\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" -msgstr "" - -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" +msgstr "温度は %uK と %uK の間でなければなりません。\n" -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "明るさの値は %.1f と %.1f の間でなければなりません。\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "明るさ: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" -msgstr "" +msgstr "ガンマの値は %.1f と %.1f の間でなければなりません。\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "ガンマ (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" -msgstr "" +msgstr "次の方式を試行しています...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" -msgstr "" +msgstr "方式 `%s' を使用します。\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" -msgstr "" +msgstr "試行する方式がもうありません。\n" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "現在位置が取得可能になるのを待機しています...\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "" +msgstr "太陽の高度: %f°\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "ctrl-c を押すと停止します...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "使い方: %s -l 緯度:経度 -t 昼の色温度:夜の色温度 [オプション...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "時刻に従ってディスプレイの色温度を設定します。\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" msgstr "" +" -h\t\tこのヘルプ メッセージを表示\n" +" -v\t\t詳細な出力\n" +" -V\t\tプログラムのバージョンを表示\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b DAY:NIGHT\t画面に適用する明るさ (0.1 から 1.0 の間)\n" +" -c FILE\t指定した設定ファイルから設定を読み込む\n" +" -g R:G:B\t追加で適用するガンマ補正\n" +" -l LAT:LON\tあなたの現在位置\n" +" -l PROVIDER\t自動で位置情報を更新するプロバイダを選択\n" +" \t\t(`list' を指定すると利用可能なプロバイダの一覧が見られます)\n" +" -m METHOD\t色温度の設定方式\n" +" \t\t(`list' を指定すると利用可能な方式の一覧が見られます)\n" +" -o\t\tワン ショット モード (色温度の変更は継続して行いません)\n" +" -O TEMP\tワン ショット 手動モード (色温度を設定します)\n" +" -p\t\t表示モード (パラメータの出力のみを行って終了します)\n" +" -P\t\t新しい色効果の適用前に既存のガンマ ランプをリセット\n" +" -x\t\tリセット モード (画面の調整を解除します)\n" +" -r\t\t色温度の緩やかな変更を無効にする\n" +" -t DAY:NIGHT\t昼間/夜間に設定する色温度\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"ニュートラルな温度は %uK です。この値を用いると\n" +"ディスプレイの色温度は変更されません。これよりも高い値を設定すると\n" +"青い光が増え、低い値を設定すると赤い光が増えます。\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"既定値:\n" +"\n" +" 昼間の温度: %uK\n" +" 夜間の温度: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "利用可能な調整方式:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "`-m 方式名:オプション' でコロン区切りのオプションを指定します。\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "`-m 方式名:help' でヘルプが参照できます。\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "利用可能な位置プロバイダ:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "`-l プロバイダ名:オプション' でコロン区切りのオプションを指定します。\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "`-l プロバイダ名:help' でヘルプが参照できます。\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "不正なガンマ引数です。\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "`-h' で詳細情報が参照できます。\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "不明な位置プロバイダ `%s' です。\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "不明な調整方式 `%s' です。\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "不正な温度の引数です。\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "不正なガンマ設定です。\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "不正な日の出時刻の設定 `%s' です。\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "不正な日の入り時刻の設定 `%s' です。\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "不明な設定項目 `%s' です。\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "" +msgstr "設定ファイルに不正なセクション ヘッダがあります。\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "" +msgstr "設定ファイルに不正な代入があります。\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" -msgstr "" +msgstr "設定ファイルにセクション外の代入があります。\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "DRM デバイスを開くのに失敗しました: %s\n" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "DRM モード リソースの取得に失敗しました\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " -msgstr "" +msgstr "CRTC %d は存在しません。 " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" -msgstr "" +msgstr "有効な CRTC は [0-%d] です。\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" -msgstr "" +msgstr "CRTC 0 しか存在しません。\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "CRTC %i を見失いました、スキップします\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" +"グラフィックス カード %i 上の CRTC %i のガンマ ランプの\n" +"サイズが取得できませんでした、デバイスを無視します。\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" +"DRM は グラフィックス カード %i 上の CRTC %i のガンマ ランプを\n" +"読み込めませんでした、デバイスを無視します。\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "" +msgstr "Direct Rendering Manager を用いてガンマ ランプを調整します。\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\t調整を適用するグラフィックス カード\n" +" crtc=N\t調整を適用する CRTC\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "" +msgstr "CRTC は負でない整数でなければなりません\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "" +msgstr "方式のパラメータが不明です: `%s'\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" -msgstr "" +msgstr "`%s' はエラー %d を返しました\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" -msgstr "" +msgstr "サポートされていない RANDR のバージョンです (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" -msgstr "" +msgstr "スクリーン %i を見つけられませんでした。\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" -msgstr "" +msgstr "ガンマ ランプのサイズが小さすぎます: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" -msgstr "" +msgstr "CRTC %i を復元できません\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" -msgstr "" +msgstr "X RANDR 拡張を用いてガンマ ランプを調整します。\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" msgstr "" +" screen=N\t\t調整を適用する X のスクリーン\n" +" crtc=N\t\t調整を適用する CRTC のコンマ区切りの一覧\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "スクリーンの番号を読み込めません: `%s'\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "現在のバージョンではパラメータ `%s` は常に有効です; コマンド ライン オプション `%s` を用いると無効になります。\n" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "" +msgstr "X のリクエストに失敗しました: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" -msgstr "" +msgstr "X VidMode 拡張を用いてガンマ ランプを調整します。\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\t調整を適用する X のスクリーン\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "" - -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" +msgstr "現在のガンマ ランプを保存できません。\n" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Quartz を用いて macOS 上でガンマ ランプを調整します。\n" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "" +msgstr "デバイス コンテキストを開けません。\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" -msgstr "" +msgstr "ディスプレイ デバイスはガンマ ランプをサポートしていません。\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" -msgstr "" +msgstr "Windows GDI を用いてガンマ ランプを調整します。\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "" +msgstr "ガンマ ランプを復元できません。\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "" +msgstr "ガンマ ランプを設定できません。\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" -msgstr "" +msgstr "警告: ダミーのガンマ方式を使用しています! このガンマ方式ではディスプレイは影響を受けません。\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" -msgstr "" +msgstr "ディスプレイには影響を与えませんが、端末に色温度を表示します。\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" +msgstr "温度: %i\n" -#: ../src/location-geoclue.c:95 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" +"現在位置へのアクセスが GeoClue によって拒否されました!\n" +"位置情報サービスが有効であることおよび Redshift が位置情報サービスに\n" +"許可されていることを確認してください。詳しい情報は\n" +"https://github.com/jonls/redshift#faq を参照してください。\n" -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "位置を取得できません: %s\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "GeoClue マネージャを取得できません: %s\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "GeoClue クライアント パスを取得できません: %s\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "GeoClue クライアントを取得できません: %s\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "距離のしきい値を設定できません: %s\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "GeoClue クライアントを開始できません: %s\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "GeoClue2 プロバイダ の開始に失敗しました!\n" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "GeoClue2 プロバイダによって見つかった位置を使用します。\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "CoreLocation からの位置の取得は許可されていません。\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "CoreLocation から位置を取得する際にエラーが発生しました: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "位置を取得するための認証を待機しています...\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "位置の要求は許可されていませんでした!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "CoreLocation プロバイダ の開始に失敗しました!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Corelocation プロバイダによって見つかった位置を使用します。\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" -msgstr "" +msgstr "緯度と経度が設定されていなければなりません。\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" -msgstr "" +msgstr "位置を手動で指定します。\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" +" lat=N\t\t緯度\n" +" lon=N\t\t経度\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" +"いずれの値も浮動小数点数であることが期待され、\n" +"負の値は西 / 南をそれぞれ表します。\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" -msgstr "" +msgstr "不正な引数です。\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "一時休止" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 分" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 時間" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 時間" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" -msgstr "" +msgstr "自動起動" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "情報" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "終了" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "閉じる" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>状態:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "色温度" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "時間帯" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "位置" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "ヘルプを出力するには `redshift -h` を実行してください。" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" "PO-Revision-Date: 2010-10-18 01:52+0000\n" "Last-Translator: Jon Lund Steffensen <Unknown>\n" "Language-Team: Georgian <ka@li.org>\n" -"Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: ka\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -44,179 +44,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "" @@ -224,205 +128,339 @@ msgstr "" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" +msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" msgstr "" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" msgstr "" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "" @@ -435,380 +473,335 @@ msgstr "" msgid "Assignment outside section in config file.\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "" -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "ავტოგაშვება" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:52+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-08-08 15:09+0000\n" +"Last-Translator: Moo <hazap@hotmail.com>\n" "Language-Team: Lithuanian <lt@li.org>\n" -"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: lt\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift reguliuoja jūsų ekrano spalvos temperatūrą, priklausomai nuo jus " +"supančios aplinkos. Tai gali sumažinti akių skausmą tuo atveju, jei naktį " +"dirbate priešais kompiuterio ekraną." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,197 +35,100 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"Spalvos temperatūra nustatoma pagal Saulės vietą. Dienos metu ir nakties " +"metu yra nustatomos skirtingos spalvos temperatūros. Sutemus ir ankstų rytą, " +"spalvos temperatūra glotniai pereina iš nakties temperatūros į dienos " +"temperatūrą, taip leisdama jūsų akims po truputį prisitaikyti." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Ši programa pateikia būsenos piktogramą, kuri leidžia valdyti Redshift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" -msgstr "" +msgstr "Redshift informacinis langas, padengtas pavyzdiniu raudonumo efektu" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Spalvos temperatūros reguliavimas" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Spalvos temperatūros reguliavimo įrankis" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Nėra" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Dienos metas" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Naktis" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Perėjimas" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Laikotarpis: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "Š" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "P" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "R" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "V" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Naudojimas: %s -l PLA:ILG -t DIENA:NAKTIS [PARAMETRAI...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Monitoriaus spalvų temperatūros nustatymas pagal paros laiką.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Numatytosios reikšmės:\n" -"\n" -" Dienos temperatūra: %uK\n" -" Nakties temperatūra: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Apie klaidas praneškite <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Prieinami sureguliavimo metodai:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Nurodykite dvitaškiu atskirtus parametrus taip „-m METODAS:PARAMETRAI“.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Mėginkite „-m METODAS:help“ pagalbai gauti.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Prieinami vietos tiekėjai:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Nurodykite dvitaškiu atskirtus parametrus taip „-l TIEKĖJAS:PARAMETRAI“.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Mėginkite „-l TIEKĖJAS:help“ pagalbai gauti.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "Nepavyko inicijuoti %s.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Nepavyko nustatyti parametro %s.\n" @@ -230,538 +136,626 @@ msgstr "Nepavyko nustatyti parametro %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Norėdami gauti daugiau informacijos, mėginkite „-l %s:help“.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Nepavyko išanalizuoti parinkties \"%s\".\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Nepavyko paleisti tiekėjo %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "" +msgstr "Išsamesnei informacijai pabandykite `-m %s:help'.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Norėdami gauti daugiau informacijos, mėginkite „-m %s:help“.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Nepavyko paleisti sureguliavimo metodo %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Platuma turi būti tarp %.1f ir %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Ilguma turi būti tarp %.1f ir %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Nepavyko perskaityti sistemos laiko.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Nepavyko gauti vietos iš tiekėjo.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "Spalvų temperatūra: %uK\n" +msgstr "Spalvos temperatūra: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Nepavyko sureguliuoti temperatūros.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Būsena: %s\n" -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Blogai suformuotas gamos argumentas.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Išjungta" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Norėdami gauti daugiau informacijos, mėginkite „-h“.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Įjungta" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Nežinomas vietos tiekėjas „%s“.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Nepavyko sureguliuoti temperatūros.\n" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Blogai suformuotas temperatūros argumentas.\n" - -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "Bandoma vietos tiekėją `%s'...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Mėginamas kitas tiekėjas...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Naudojamas tiekėjas „%s“.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Daugiau nebeliko vietos tiekėjų mėginimui.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Nepavyko gauti vietos iš tiekėjo.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Platuma turi būti tarp %.1f ir %.1f.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Ilguma turi būti tarp %.1f ir %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperatūros: %dK dieną, %dK naktį\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Temperatūra turi būti tarp %uK ir %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Gamos reikšmė turi būti tarp %.1f ir %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gama (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Mėginamas kitas metodas...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "Naudojamas metodas „%s“.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Daugiau nebeliko metodų mėginimui.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Saulės aukštis virš horizonto: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Spauskite ctrl-c, kad sustabdytumėte...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Naudojimas: %s -l PLA:ILG -t DIENA:NAKTIS [PARAMETRAI...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Monitoriaus spalvų temperatūros nustatymas pagal paros laiką.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" msgstr "" +" -h\t\tRodyti šį pagalbos pranešimą\n" +" -v\t\tIšsamioji išvestis\n" +" -V\t\tRodyti programos versiją\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Numatytosios reikšmės:\n" +"\n" +" Dienos temperatūra: %uK\n" +" Nakties temperatūra: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Prieinami sureguliavimo metodai:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Nurodykite dvitaškiu atskirtus parametrus taip „-m METODAS:PARAMETRAI“.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Mėginkite „-m METODAS:help“ pagalbai gauti.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Prieinami vietos tiekėjai:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Nurodykite dvitaškiu atskirtus parametrus taip „-l TIEKĖJAS:PARAMETRAI“.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Mėginkite „-l TIEKĖJAS:help“ pagalbai gauti.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Blogai suformuotas gamos argumentas.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Norėdami gauti daugiau informacijos, mėginkite „-h“.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Nežinomas vietos tiekėjas „%s“.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Nežinomas reguliavimo metodas `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Blogai suformuotas temperatūros argumentas.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Netaisyklingas gamos nustatymas.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Nežinomas konfigūracijos nustatymas `%s'.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "" +msgstr "Netaisyklinga sekcijos antraštė konfigūracijos faile.\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "" +msgstr "Netaisyklingas paskirstymas konfigūracijos faile.\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" +msgstr "Konfigūracijos faile paskirstymas už sekcijos ribų.\n" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "Nepavyko gauti DRM veiksenos išteklius\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d neegzistuoja. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Galimi CRTC yra [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Egzistuoja tik CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Nežinomas metodo parametras: „%s“.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "„%s“ grąžino klaidą %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Nepalaikoma RANDR versija (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Nepavyko rasti ekrano %i.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Gamos lentelės dydis per mažas: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Nepavyko atkurti CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Gamos lentelių sureguliavimas naudojant X RANDR plėtinį.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -" ekranas=N\tX ekranas sureguliavimui taikyti\n" -" crtc=N\tCRTC sureguliavimui taikyti\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "X užklausa nepavyko: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Gamos lentelių sureguliavimas naudojant X VidMode plėtinį.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" ekranas=N\tX ekranas sureguliavimui taikyti\n" -" crtc=N\tCRTC sureguliavimui taikyti\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Nepavyko išsaugoti dabartinės gamos lentelės.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" - -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Nepavyko atverti įrenginio konteksto.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Ekrano įrenginys nepalaiko gamos lentelių.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Gamos lentelių sureguliavimas naudojant Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Nepavyko atkurti gamos lentelių.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Nepavyko nustatyti gamos lentelių.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" +msgstr "Temperatūra: %i\n" -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" +msgstr "Nepavyksta paleisti GeoClue kliento: %s.\n" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Platuma ir ilguma turi būti nustatytos.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Nurodyti vietą rankiniu būdu.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -769,63 +763,64 @@ msgstr "" " pla=N\t\tPlatuma\n" " ilg=N\t\tIlguma\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Blogai suformuotas argumentas.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Pristabdyti" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 minučių" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 valandai" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 valandoms" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Automatinis paleidimas" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "Informacija" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Išeiti" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Užverti" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Būsena:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Spalvos temperatūra" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Laikotarpis" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "Vieta" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " ekranas=N\tX ekranas sureguliavimui taikyti\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:54+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-01-27 07:01+0000\n" +"Last-Translator: Allan Nordhøy <comradekingu@gmail.com>\n" "Language-Team: Norwegian Bokmal <nb@li.org>\n" -"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: nb\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,8 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Rødskift justerer fargetemperaturen på skjermen din etter omgivelsene. Dette " +"bedrer øyenes arbeidsforhold hvis du sitter foran skjermen om natta." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,741 +34,729 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"Fargetermperaturen blir satt i henhold til solas posisjon. " +"Fargetermperaturen er forskjellig for natt og dagtid. I skumringen og tidlig " +"på morgenen toner fargetemperaturen mykt over i dagtermperatur for å la " +"øyene dine tilpasse seg." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Dette programmet har et statusikon som lar brukeren kontrollere Rødskift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"Rødskift sitt informasjonsvindu med et eksempel på rødhetseffekten lagt over " +"det" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Rødskift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Justering av fargetemperatur" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Justeringsverktøy for fargetemperatur" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Ingen" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Dagtid" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Natt" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Overgang" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Periode%s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Periode: %s (%.2f%% day)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "Ø" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "V" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Bruk: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Velg fargetemperatur på skjermen for ulike tider på døgnet.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tVis denne hjelpeteksten\n" -" -v\t\tVerbose output\n" -" -V\t\tVis programversjon\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"Den nøytrale temperaturen er %uK. Å bruke denne verdien vil\n" -"olle endre fargetemperaturen på skjermen. Skjermlyset blir\n" -"mer blålig om verdien settes høyere, og rødlig om verdien\n" -"settes lavere.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Standardverdier:\n" -"\n" -" Dagtemperatur: %uK\n" -" Natttemperatur: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Vennligst rapporter feil til <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Tilgjengelige justeringsmetoder:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "Angi kolonseparerte valg med `-m METODE:VALG'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Forsøk `-m METODE:help' for veiledning.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Tilgjengelige lokasjonstilbydere:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "Angi kolonseparerte valg med `-l METODE:VALG'.\n" +msgstr "Plassering: %.2f %s, %.2f° %s\n" -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Forsøk `-l TILBYDER:help' for veiledning.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "Initiering av %s feilet.\n" +msgstr "Igangsetting av %s mislyktes.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "Kunne ikke sette valget %s.\n" +msgstr "Klarte ikke å velge %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "Forsøk `-l %s:help' for mer informasjon.\n" +msgstr "Prøv «-l %s:help» for mer informasjon.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Klarte ikke å tolke valget «%s».\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" -msgstr "Kunne ikke starte tilbyder %s.\n" +msgstr "Klarte ikke å starte tilbyder %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Forsøk `-m %s:help' for mer informasjon.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Forsøk `-m %s:help' for mer informasjon.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" -msgstr "Kunne ikke starte justeringsmetode %s.\n" +msgstr "Klarte ikke å starte justeringsmetode %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Breddegrad må være mellom %.1f og %.1f.\n" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Lengdegrad må være mellom %.1f og %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "Klarte ikke å lese systemtid.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" -msgstr "Kunne ikke lese systemtiden.\n" +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Får ikke stedsinformasjon fra tilbyder.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Fargetemperatur: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Lysstyrke: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Kunne ikke justere temperaturen.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Argumentet for gamma er feilformatert.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Status: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Prøv `-h' for mer informasjon.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Slått av" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Ukjent stedstilbyder `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Slått på" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Ukjent justeringsmetode `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Klarte ikke å justere temperatur.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Argumentet for temperatur er feilformatert.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Gammavalget er feilformatert.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Ukjent konfigurasjonsvalg `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "Prøver å bestemme posisjon `%s'…\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Prøver den neste tilbyderen…\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Bruker tilbyder `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Ingen flere stedstilbydere å forsøke.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Får ikke stedsinformasjon fra tilbyder.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Breddegrad må være mellom %.1f og %.1f.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Lengdegrad må være mellom %.1f og %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperaturer: %dK på dagen, %dK om natta\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Temperatur må være mellom %uK og %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "Lydstyrkenivå må være mellom %.1f og %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "Lysstyrke: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Gamma må være mellom %.1f and %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Prøver neste metode…\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "Brukder metode `%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Ingen flere metoder å prøve.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Solhøyde: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Trykk Ctrl+c for å stoppe…\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Bruk: %s -l BRED:LENG -t DAG:NATT [VALG …]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Velg fargetemperatur på skjermen for ulike tider på døgnet.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tVis denne hjelpeteksten\n" +" -v\t\tSkriv ut detaljert info\n" +" -V\t\tVis programversjon\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Standardverdier:\n" +"\n" +" Dagtemperatur: %uK\n" +" Natttemperatur: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Tilgjengelige justeringsmetoder:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Ta kolonseparerte valg med «-m METODE:VALG».\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Prøv «-m METODE:help» hvis du trenger hjelp.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Tilgjengelige posisjonstilbydere:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "Ta kolonseparerte valg med «-l METODE:VALG».\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Prøv «-l TILBYDER:help» hvis du trenger hjelp.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Argumentet for gamma er feilformatert.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Prøv `-h' for mer informasjon.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Ukjent stedstilbyder `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Ukjent justeringsmetode `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Argumentet for temperatur er feilformatert.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Gammavalget er feilformatert.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" msgstr "" +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "«%s» er et ukjent oppsettsvalg.\n" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "Seksjonsoverskrift er feilformatert i konfigurasjonsfilen.\n" +msgstr "Seksjonsoverskrift er feilformatert i oppsettsfil.\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "En valgtildeling er feilformatert i konfigurasjonsfilen.\n" +msgstr "Feilformatert tildeling i oppsettsfil.\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" -msgstr "Tildeling utenfor en seksjon i konfigurasjonsfilen.\n" +msgstr "Tildeling utenfor seksjon i oppsettsfil.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d finnes ikke. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Gyldige CRTCs er [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Kun CRTC 0 finnes.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Ukjent metodeparameter: `%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "`%s' returnerte feilen %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "RANDR versjon (%u.%u) støttes ikke\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Skjerm %i ble ikke funnet.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "For lav verdi for gammarampen: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" -msgstr "Kan ikke gjenopprette CRTC %i\n" +msgstr "Klarte ikke å gjenopprette CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Still inn gammarampen med X RANDR-utvidelsen.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" msgstr "" -" screen=N\tX-skjermen innstillingen skal brukes på\n" -" crtc=N\tCRTC instillingen skal brukes på\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "X forespørsel feilet: %s\n" +msgstr "X-forespørsel mislyktes. %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Angi gammaramper med X VidMode-utvidelsen.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" screen=N\tX-skjermen innstillingen skal brukes på\n" -" crtc=N\tCRTC instillingen skal brukes på\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "Kunne ikke lagre gjeldende gammarampe.\n" +msgstr "Klarte ikke å lagre gjeldende gammarampe.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "Kunne ikke åpne enhetskontekst.\n" +msgstr "Klarte ikke å åpne enhetskontekst.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Visningsenhet støtter ikke gammaramper.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Angi gammaramper med Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "Kunne ikke gjenopprette gammaramper.\n" +msgstr "Klarte ikke å gjenopprette gammaramper.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "Kunne ikke sette gammaramper.\n" +msgstr "Klarte ikke å justere gammaramper.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"Har ingen innvirkning på skjermen, men skriver fargetemperaturen i " +"terminalen.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" +msgstr "Temperatur: %i\n" -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" +msgstr "Kunne ikke starte GeoClue-klient: %s.\n" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Lengde- og breddegrad må angis.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Velg sted manuelt.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -774,63 +764,64 @@ msgstr "" " lat=N\t\tBreddegrader\n" " lon=N\t\tHøydegrader\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Feilformatert argument.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Sett ut av drift i" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 minutter" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "Én time" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "To timer" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Start automatisk" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Avslutt" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Lukk" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Status:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Fargetemperatur" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Periode" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "Plassering" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tX-skjerm å bruke innstillingene på\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:56+0000\n" -"Last-Translator: xatr0z <xatr0z@users.sourceforge.net>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-11-28 11:25+0000\n" +"Last-Translator: Pjotr12345 <Unknown>\n" "Language-Team: Dutch <nl@li.org>\n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: nl\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift stelt de kleurtemperatuur bij van uw scherm aan de hand van uw " +"omgeving. Dit kan u helpen om oogpijn te verminderen als u 's avonds of 's " +"nachts achter een computerscherm werkt." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,759 +35,748 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"De kleurtemperatuur wordt ingesteld aan de hand van de positie van de zon. " +"Bij nacht wordt er een andere kleurtemperatuur ingesteld dan bij dag. Als " +"het schemert of vroeg in de ochtend is, wordt de kleurtemperatuur " +"geleidelijk en soepel van nacht naar dag gebracht, zodat uw ogen er langzaam " +"aan kunnen wennen." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Dit programma bevat een statuspictogram dat de gebruiker in staat stelt om " +"Redshift te bedienen." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"Het Redshift-informatievenster getoond met een voorbeeld van het rode effect" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Bijstelling van kleurtemperatuur" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Hulpmiddel voor het bijstellen van de kleurtemperatuur" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Geen" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Overdag" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "'s Nachts" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Overgang" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Periode: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Periode: %s (%.2f%% dag)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "Z" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "O" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "W" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Gebruik: %s -l LAT:LON -t DAG:NACHT [OPTIES...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" -"Stel de temperatuur van het scherm in afhankelijk van de tijd van de dag.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tToon dit helpbericht\n" -" -v\t\tGedetailleerde uitvoer\n" -" -V\t\tProgrammaversie weergeven\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" -" -b DAG:NACHT\tHelderheid van het scherm (tussen 0,1 en 1,0)\n" -" -c BESTAND\tLaadt instellingen van opgegeven configuratiebestand\n" -" -g R:G:B\tExtra gammacorrectie toepassen\n" -" -l LAT:LON\tUw huidige locatie (latitude:longitude)\n" -" -l AANBIEDER\tKies een aanbieder voor automatische locatie-updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHODE\t Gebruikte methode om de kleurtemperatuur in te stellen\n" -" \t\t(Typ `list' om beschikbare aanbieders te zien)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAG:NACHT\tColor temperature to set at daytime/night\n" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"De neutrale temperatuur is %uK. Deze waarde zal de \n" -"kleurtemperatuur van het scherm niet wijzigen. Het\n" -"instellen van een hogere waarde resulteert in een blauwe\n" -"tint, en het instellen van een lagere waarde resulteert\n" -"in een rode tint.\n" +msgstr "Locatie: %.2f %s, %.2f %s\n" -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Standaardwaardes:\n" -"\n" -" Temperatuur overdag: %uK\n" -" Temperatuur 's nachts: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Meld programmeerfouten aan <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Beschikbare aanpassingsmethoden:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Specificeer met dubbele punten gescheiden opties met `-m METHODE:OPTIES'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Probeer `-m METHODE:help' voor hulp\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Beschikbare locatieaanbieders:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Specificeer met dubbele punten gescheiden opties met `-l AANBIEDER:OPTIES'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Probeer '-l AANBIEDER:help' voor hulp.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "Initialisatie van %s mislukt.\n" +msgstr "Initialisatie van %s is mislukt.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "Kan %s niet als optie instellen.\n" +msgstr "Kan optie %s niet instellen.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Probeer '-l%s:help' voor meer informatie.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Kon optie '%s' niet lezen.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" -msgstr "Niet gelukt om aanbieder %s te starten.\n" +msgstr "Kon aanbieder %s niet starten.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Probeer '-m%s:help' voor meer informatie.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Probeer '-m%s:help' voor meer informatie.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" -msgstr "Starten van aanpassingsmethode %s is mislukt.\n" +msgstr "Kon bijstellingsmethode %s niet starten.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Breedtegraad moet tussen %.1f en %.1f zijn.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Lengtegraad moet tussen %.1f en %.1f zijn.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Kan systeemtijd niet lezen.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Aan het wachten op het beschikbaar komen van de aanvangslocatie...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Kon de locatie niet verkrijgen van de aanbieder.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Aanbieder gaf ongeldige locatie op.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Kleurtemperatuur: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Helderheid: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Kleuraanpassing mislukt.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Misvormd gamma argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Status: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Probeer '-h' voor meer informatie.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Uitgeschakeld" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Onbekende locatieaanbieder `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Ingeschakeld" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Onbekende aanpassingsmethode `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Bijstelling van kleurtemperatuur is mislukt.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Misvormd temperatuurargument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"Locatie is tijdelijk niet beschikbaar; de vorige locatie wordt gebruikt " +"totdat zij alsnog beschikbaar komt...\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Misvormde gamma instelling.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Gedeeltelijke tijdinstelling wordt niet ondersteund.\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Onbekende configuratie instelling `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Ongeldige instelling voor dageraad/schemering.\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "Probeert locatieaanbieder `%s'...\n" +msgstr "Locatie-aanbieder '%s' aan het proberen...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "Probeert volgende aanbieder...\n" +msgstr "Volgende aanbieder aan het proberen...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Gebruikt aanbieder '%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "Geen locatieaanbieders meer om uit te testen.\n" - -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Mislukt om de locatie te bemachtigen van de aanbieder.\n" +msgstr "Geen locatie-aanbieders meer over om te proberen.\n" -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "Temperaturen: %dK overdag, %dK 's nachts\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" +"Hoge overgangsstand kan niet lager zijn dan de lage overgangsstand.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" +msgstr "Zonnestanden: dag boven %.1f, nacht onder %.1f\n" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Breedtegraad moet tussen %.1f en %.1f zijn.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Lengtegraad moet tussen %.1f en %.1f zijn.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperaturen: %dK overdag, %dK 's nachts\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Temperatuur moet tussen %uK en %uK zijn.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "Helderheidwaarde moeten tussen %.1f en %.1f zijn.\n" +msgstr "Helderheidwaarden moeten tussen %.1f en %.1f zijn.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "Helderheid: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Gammawaarde moet tussen %.1f en %.1f liggen.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" -msgstr "Probeer volgende methode...\n" +msgstr "Volgende methode aan het proberen...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" -msgstr "Gebruik methode `%s'.\n" +msgstr "Gebruikt methode '%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" -msgstr "Geen methodes meer om te proberen.\n" +msgstr "Geen methoden meer over om te proberen.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" +"Aan het wachten op het ter beschikking komen van de huidige locatie...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "Zonshoogte: %f\n" +msgstr "Zonnestand: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Druk ctrl-c om af te breken...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Gebruik: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" +"Stel de kleurtemperatuur van het scherm in overeenkomstig de tijd van de " +"dag.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tToon dit hulpbericht\n" +" -v\t\tGedetailleerde uitvoer\n" +" -V\t\tProgrammaversie weergeven\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"De neutrale temperatuur is %uK. Het gebruik van deze waarde zal de\n" +"kleurtemperatuur van het scherm niet veranderen. Het instellen van de\n" +"kleurtemperatuur op een hogere waarde zal meer blauw licht geven,\n" +"en het instellen van een lagere waarde zal meer rood licht veroorzaken.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Standaardwaarden:\n" +"\n" +" Temperatuur overdag: %uK\n" +" Temperatuur 's nachts: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Beschikbare bijstellingsmethoden:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" msgstr "" +"Specificeer met dubbele punten gescheiden opties met `-m METHODE:OPTIES'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Probeer `-m METHODE:help' voor hulp\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Beschikbare locatie-aanbieders:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Specificeer met dubbele punten gescheiden opties met `-l AANBIEDER:OPTIES'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Probeer '-l AANBIEDER:help' voor hulp.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Misvormd gamma-argument.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Probeer '-h' voor meer informatie.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Onbekende locatie-aanbieder `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Onbekende bijstellingsmethode '%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Misvormd temperatuurargument.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Misvormde gamma-instelling.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Misvormde dageraadinstelling '%s'.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Misvormde schemeringinstelling '%s'.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Onbekende instelling '%s'.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "Misvormde sectiekop in configuratiebestand.\n" +msgstr "Misvormde sectiekop in instellingenbestand.\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "Misvormde toewijzing in configuratiebestand.\n" +msgstr "Misvormde toewijzing in instellingenbestand.\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" -msgstr "Toewijzing buiten sectie in configuratiebestand.\n" +msgstr "Toewijzing buiten sectie in instellingenbestand.\n" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Kon DRM-apparaat niet openen: %s\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "Kon hulpbronnen voor DRM-modus niet verkrijgen\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d bestaat niet. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" -msgstr "Juiste CRTCs zijn [0-%d].\n" +msgstr "Juiste CRTC's zijn [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Alleen CRTC 0 bestaat.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "CRTC %i verloren gegaan, wordt overgeslagen\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\tGrafische kaart om bijstellingen op toe te passen\n" +" crtc=N\tCRTC om bijstellingen op toe te passen\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "CRTC moet een niet-negatief geheel getal zijn\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Onbekende methodeparameter: `%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "'%s' gaf foutcode %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" -msgstr "RANDR versie wordt niet ondersteund (%u.%u)\n" +msgstr "RANDR-versie wordt niet ondersteund (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" -msgstr "Scherm %i kan niet worden gevonden.\n" +msgstr "Scherm %i kon niet worden gevonden.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Gamma ramp grootte te klein: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Kan CRTC %i niet herstellen\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Pas gamma ramps aan met de X RANDR extensie.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" screen=N\t\tX-scherm om bijstellingen op toe te passen\n" +" crtc=N\tLijst of kommagescheiden CRTC's om bijstellingen op toe te passen\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Kon schermnummer niet lezen: '%s'.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -" screen=N\tTe wijzigen X-scherm\n" -" crtc=N\tTe wijzigen CRTC\n" +"Parameter '%s' is nu altijd aan; gebruik de opdrachtregeloptie '%s' om hem " +"uit te schakelen.\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "X verzoek mislukt: %s\n" +msgstr "X-verzoek is mislukt: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Pas gamma ramps aan met de X VidMode extensie.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" -" screen=N\tTe wijzigen X-scherm\n" -" crtc=N\tTe wijzigen CRTC\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tX-scherm om bijstellingen op toe te passen\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Kan de huidige gamma ramps niet opslaan.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" - -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "Kon device context niet openen.\n" +msgstr "Kon apparaatcontext niet openen.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Weergave-apparaat ondersteund geen gamma ramps.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Stel gamma ramps in met de Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Kan gamma ramps niet herstellen.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Kan gamma ramps niet instellen.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"Verandert niets aan de weergave maar toont kleurtemperatuur in het " +"terminalvenster.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" +msgstr "Temperatuur: %i\n" -#: ../src/location-geoclue.c:76 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "Geoclue-aanbieder `%s' gestart.\n" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "Kon geen bruikbare Geoclue-aanbieder vinden.\n" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "Probeer de naam en het pad aan te geven welke te gebruiken.\n" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "Volgens de geoclue-aanbieder zijn we op: %.2f, %.2f\n" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "Aanbieder heeft geen geldige locatie beschikbaar." - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Kon deze locatie niet krijgen: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Kon GeoClue-beheerder niet ophalen: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Gebruik de locatie die ontdekt is door de GeoClue2 aanbieder.\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "Niet geautoriseerd om de locatie te verkrijgen van CoreLocation.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "Fout bij het ophalen van de locatie van CoreLocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "Wachten voor autorisatie om locatie op te halen...\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" +msgstr "Aanvraag voor locatie was niet geautoriseerd!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Gebruik de locatie die is ontdekt door de Corelocation-aanbieder.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Hoogte- en breedtegraad moeten nog ingesteld worden.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Geef locatie handmatig op.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -792,63 +784,64 @@ msgstr "" " lat=N\t\tBreedtegraad\n" " lon=N\t\tLengtegraad\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Misvormd argument.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "Onderbreken voor" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "30 minuten" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "1 uur" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "2 uren" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Start automatisch" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "Afsluiten" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "Sluiten" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "Kleurtemperatuur" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "Periode" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "Locatie" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tTe wijzigen X-scherm\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" diff --git a/po/oc.po b/po/oc.po new file mode 100644 index 0000000..fe7ad0e --- /dev/null +++ b/po/oc.po @@ -0,0 +1,808 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2021-12-06 12:31+0100\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Poedit 3.0\n" +"Last-Translator: Quentin PAGÈS\n" +"Language: oc\n" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 +msgid "" +"Redshift adjusts the color temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 +msgid "" +"The color temperature is set according to the position of the sun. A " +"different color temperature is set during night and daytime. During twilight " +"and early morning, the color temperature transitions smoothly from night to " +"daytime temperature to allow your eyes to slowly adapt." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 +msgid "" +"This program provides a status icon that allows the user to control Redshift." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 +msgid "" +"The Redshift information window overlaid with an example of the redness " +"effect" +msgstr "" + +#: ../data/applications/redshift.desktop.in.h:1 +#: ../data/applications/redshift-gtk.desktop.in.h:1 +msgid "Redshift" +msgstr "Redshift" + +#: ../data/applications/redshift.desktop.in.h:2 +#: ../data/applications/redshift-gtk.desktop.in.h:2 +msgid "Color temperature adjustment" +msgstr "Ajustament de la temperatura de las colors" + +#: ../data/applications/redshift.desktop.in.h:3 +#: ../data/applications/redshift-gtk.desktop.in.h:3 +msgid "Color temperature adjustment tool" +msgstr "Aisina de reglatge de la temperatura de color" + +#. TRANSLATORS: Name printed when period of day is unknown +#: ../src/redshift.c:135 +msgid "None" +msgstr "Cap" + +#: ../src/redshift.c:136 ../src/redshift.c:1107 +msgid "Daytime" +msgstr "Jornada" + +#: ../src/redshift.c:137 ../src/redshift.c:1111 +msgid "Night" +msgstr "Nuèch" + +#: ../src/redshift.c:138 +msgid "Transition" +msgstr "Transicion" + +#: ../src/redshift.c:225 +#, c-format +msgid "Period: %s\n" +msgstr "Periòde : %s\n" + +#: ../src/redshift.c:228 +#, c-format +msgid "Period: %s (%.2f%% day)\n" +msgstr "Periòde : %s (%.2f%% jorn)\n" + +#. TRANSLATORS: Abbreviation for `north' +#: ../src/redshift.c:240 +msgid "N" +msgstr "N" + +#. TRANSLATORS: Abbreviation for `south' +#: ../src/redshift.c:242 +msgid "S" +msgstr "S" + +#. TRANSLATORS: Abbreviation for `east' +#: ../src/redshift.c:244 +msgid "E" +msgstr "E" + +#. TRANSLATORS: Abbreviation for `west' +#: ../src/redshift.c:246 +msgid "W" +msgstr "O" + +#. TRANSLATORS: Append degree symbols after %f if possible. +#. The string following each number is an abreviation for +#. north, source, east or west (N, S, E, W). +#: ../src/redshift.c:251 +#, c-format +msgid "Location: %.2f %s, %.2f %s\n" +msgstr "Emplaçament : %.2f %s, %.2f %s\n" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "L'inicializacion de %s a fracassat.\n" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "Lectura impossibla de l'ora sistèma.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Impossible d'obténer l'emplaçament a partir del provesidor.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "Temperatura de color : %uK\n" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "Luminositat : %.2f\n" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Estat : %s\n" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Desactivat" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Activat" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Ajustament de la temperatura de las colors pas reüssit.\n" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "Ensag amb lo provesidor seguent...\n" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "Utilizacion del provesidor « %s ».\n" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperaturas : %dK lo jorn, %dK la nuèch\n" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#. TRANSLATORS: help output 7 +#: ../src/options.c:218 +#, c-format +msgid "Please report bugs to <%s>\n" +msgstr "Se vos plai senhalatz los bugs a <%s>\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + +#: ../src/config-ini.c:167 +msgid "Malformed section header in config file.\n" +msgstr "" + +#: ../src/config-ini.c:203 +msgid "Malformed assignment in config file.\n" +msgstr "" + +#: ../src/config-ini.c:214 +msgid "Assignment outside section in config file.\n" +msgstr "" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 +#, c-format +msgid "CRTC %d does not exist. " +msgstr "" + +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 +#, c-format +msgid "Valid CRTCs are [0-%d].\n" +msgstr "" + +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 +#, c-format +msgid "Only CRTC 0 exists.\n" +msgstr "" + +#: ../src/gamma-drm.c:159 +#, c-format +msgid "CRTC %i lost, skipping\n" +msgstr "" + +#: ../src/gamma-drm.c:165 +#, c-format +msgid "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:178 +#, c-format +msgid "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:242 +msgid "Adjust gamma ramps with Direct Rendering Manager.\n" +msgstr "" + +#. TRANSLATORS: DRM help output +#. left column must not be translated +#: ../src/gamma-drm.c:247 +msgid "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-drm.c:260 +#, c-format +msgid "CRTC must be a non-negative integer\n" +msgstr "" + +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 +#, c-format +msgid "Unknown method parameter: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 +#, c-format +msgid "`%s' returned error %d\n" +msgstr "" + +#: ../src/gamma-randr.c:103 +#, c-format +msgid "Unsupported RANDR version (%u.%u)\n" +msgstr "" + +#: ../src/gamma-randr.c:138 +#, c-format +msgid "Screen %i could not be found.\n" +msgstr "" + +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 +#, c-format +msgid "Gamma ramp size too small: %i\n" +msgstr "" + +#: ../src/gamma-randr.c:277 +#, c-format +msgid "Unable to restore CRTC %i\n" +msgstr "" + +#: ../src/gamma-randr.c:301 +msgid "Adjust gamma ramps with the X RANDR extension.\n" +msgstr "" + +#. TRANSLATORS: RANDR help output +#. left column must not be translated +#: ../src/gamma-randr.c:306 +msgid "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 +#, c-format +msgid "X request failed: %s\n" +msgstr "" + +#: ../src/gamma-vidmode.c:140 +msgid "Adjust gamma ramps with the X VidMode extension.\n" +msgstr "" + +#. TRANSLATORS: VidMode help output +#. left column must not be translated +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 +msgid "Unable to save current gamma ramp.\n" +msgstr "" + +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 +msgid "Unable to open device context.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:75 +msgid "Display device does not support gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:115 +msgid "Adjust gamma ramps with the Windows GDI.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:153 +msgid "Unable to restore gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:211 +msgid "Unable to set gamma ramps.\n" +msgstr "" + +#: ../src/gamma-dummy.c:43 +msgid "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" +msgstr "" + +#: ../src/gamma-dummy.c:60 +msgid "" +"Does not affect the display but prints the color temperature to the " +"terminal.\n" +msgstr "" + +#: ../src/gamma-dummy.c:75 +#, c-format +msgid "Temperature: %i\n" +msgstr "Temperatura : %i\n" + +#: ../src/location-geoclue2.c:59 +#, c-format +msgid "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" +msgstr "" + +#: ../src/location-geoclue2.c:107 +#, c-format +msgid "Unable to obtain location: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:150 +#, c-format +msgid "Unable to obtain GeoClue Manager: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:166 +#, c-format +msgid "Unable to obtain GeoClue client path: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:188 +#, c-format +msgid "Unable to obtain GeoClue Client: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:229 +#, c-format +msgid "Unable to set distance threshold: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:253 +#, c-format +msgid "Unable to start GeoClue client: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 +msgid "Not authorized to obtain location from CoreLocation.\n" +msgstr "" + +#: ../src/location-corelocation.m:111 +#, c-format +msgid "Error obtaining location from CoreLocation: %s\n" +msgstr "" + +#: ../src/location-corelocation.m:120 +msgid "Waiting for authorization to obtain location...\n" +msgstr "" + +#: ../src/location-corelocation.m:122 +msgid "Request for location was not authorized!\n" +msgstr "" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 +msgid "Use the location as discovered by the Corelocation provider.\n" +msgstr "" + +#: ../src/location-manual.c:59 +msgid "Latitude and longitude must be set.\n" +msgstr "" + +#: ../src/location-manual.c:75 +msgid "Specify location manually.\n" +msgstr "" + +#. TRANSLATORS: Manual location help output +#. left column must not be translated +#: ../src/location-manual.c:80 +msgid "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" +msgstr "" + +#: ../src/location-manual.c:83 +msgid "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" +msgstr "" + +#: ../src/location-manual.c:97 +msgid "Malformed argument.\n" +msgstr "Paramètre mal format.\n" + +#: ../src/redshift-gtk/statusicon.py:78 +msgid "Suspend for" +msgstr "Suspendre pendent" + +#: ../src/redshift-gtk/statusicon.py:80 +msgid "30 minutes" +msgstr "30 minutas" + +#: ../src/redshift-gtk/statusicon.py:81 +msgid "1 hour" +msgstr "1 ora" + +#: ../src/redshift-gtk/statusicon.py:82 +msgid "2 hours" +msgstr "2 oras" + +#: ../src/redshift-gtk/statusicon.py:91 +msgid "Autostart" +msgstr "Aviada automatica" + +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 +msgid "Info" +msgstr "Info" + +#: ../src/redshift-gtk/statusicon.py:108 +msgid "Quit" +msgstr "Quitar" + +#: ../src/redshift-gtk/statusicon.py:146 +msgid "Close" +msgstr "Tampar" + +#: ../src/redshift-gtk/statusicon.py:300 +msgid "<b>Status:</b> {}" +msgstr "<b>Estat :</b> {}" + +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 +msgid "Color temperature" +msgstr "Temperatura de las colors" + +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 +msgid "Period" +msgstr "Periòde" + +#: ../src/redshift-gtk/statusicon.py:318 +msgid "Location" +msgstr "Localizacion" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Executatz « redshift -h » per d’ajuda." @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:55+0000\n" -"Last-Translator: Michał Kułach <michalkulach@gmail.com>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-10-30 21:45+0000\n" +"Last-Translator: 5th <fifth@launchpad.leemail.me>\n" "Language-Team: Polish <pl@li.org>\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: pl\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,8 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift dostosowuje temperaturę barwową wyświetlacza do warunków " +"zewnętrznych. Pomaga w ten sposób uniknąć zmęczenia oczu przy pracy w nocy." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,203 +34,101 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"Temperatura barwowa jest ustawiana w zależności od pozycji słońca. Różni się " +"w dzień i w nocy. Podczas zmierzchania (i świtania), temperatura łagodnie " +"zmienia się z dziennej na nocną (i odwrotnie), pozwalając oczom na powolne " +"przyzwyczajanie się." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Program dostarcza ikonę, która pozwala użytkownikowi kontrolować Redshift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"Okno Redshift przedstawia przykład dostosowania przesunięcia ku czerwieni." +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Dostosowanie temperatury barwowej" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Narzędzie do dostosowywania temperatury barwowej" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Nie rozpoznano" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Dzień" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Noc" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Przejście" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Czas: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Czas: %s (%.2f%% dni(a))\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "Pn" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "Pd" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "Wsch." #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "Zach." #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Użycie: %s -l SZER:DŁ -t DZIEŃ:NOC [OPCJE...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Ustawia temperaturę barwową ekranu, w zależności od pory dnia.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tWyświetla tę pomoc\n" -" -v\t\tUszczegóławia wyjście programu\n" -" -V\t\tWypisuje wersję programu\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"Neutralną temperaturą jest %uK. Użycie tej wartości nie\n" -"zmieni temperatury barwowej ekranu. Ustawienie wyższej\n" -"wartości temperatury barwowej poskutkuje bardziej niebieskimi\n" -"barwami, natomiast ustawienie niższej wartości da kolory\n" -"bardziej czerwone.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Wartości domyślne:\n" -"\n" -" Temperatura dla dnia: %uK\n" -" Temperatura dla nocy: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Proszę zgłaszać błędy do <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Dostępne metody dostosowania:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "Podaj opcje oddzielone dwukropkiem z `-m METODA:OPCJE'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Spróbuj `-m METODA:help' aby uzyskać pomoc.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Dostępni dostawcy lokalizacji\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "Podaj opcje oddzielone dwukropkiem z `-l DOSTAWCA:OPCJE'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Spróbuj `-m DOSTAWCA:help' aby uzyskać pomoc.\n" +msgstr "Pozycja: %.2f %s, %.2f %s\n" -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "Inicjalizacja %s nie powiodła się.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Ustawienie opcji %s nie powiodło się.\n" @@ -236,204 +136,347 @@ msgstr "Ustawienie opcji %s nie powiodło się.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Spróbuj `-l %s:help' aby uzyskać więcej informacji.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Nieudane parsowanie opcji \"%s\".\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Uruchomienie dostawcy %s nie powiodło się.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Spróbuj `-m %s:help' aby uzyskać więcej informacji.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Spróbuj -m %s:help' aby uzyskać więcej informacji.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Uruchomienie metody dostosowania %s nie powiodło się.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Szerokość geograficzna musi być pomiędzy %.1f i %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Długość geograficzna musi być pomiędzy %.1f i %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Nie udało się odczytać czasu systemowego.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Czekanie, aż początkowa lokalizacja będzie dostępna\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Nie udało się uzyskać lokalizacji od dostawcy.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Dostawca zwrócił nieprawidłową lokalizację\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Temperatura barwowa: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Jasność: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Dostosowanie temperatury barwowej nie powiodło się.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Nieprawidłowy argument gammy.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Stan: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Spróbuj `-h' aby uzyskać więcej informacji.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Wyłączony" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Nieznany dostawca lokalizacji `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Włączony" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Nieznana metoda dostosowania `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Dostosowanie temperatury barwowej nie powiodło się.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Nieprawidłowy argument temperatury.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"Lokalizacja jest tymczasowo niedostępna; Używa poprzedniej lokalizacji, " +"aż ta będzie dostępna\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Nieprawidłowe ustawienie gammy.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Częściowa konfiguracja czasu nie jest wspierana!\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Nieznane ustawienie konfiguracji `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Nieprawidłowa konfiguracja czasu zmierzchu/świtu\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "Sprawdzanie dostawcy pozycji \"%s\"…\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Próba użycia następnego dostawcy...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Użycie dostawcy `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Nie ma więcej dostawców do wypróbowania.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Nie udało się uzyskać lokalizacji od dostawcy.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "Maksymalna wysokość nie może być mniejsza od minimalnej.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" - -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Szerokość geograficzna musi być pomiędzy %.1f i %.1f.\n" +msgstr "Wysokość słońca (°): w dzień powyżej %.1f, nocą poniżej %.1f\n" -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Długość geograficzna musi być pomiędzy %.1f i %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperatury: %d K w dzień, %d K w nocy\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Temperatura barwowa musi być pomiędzy %uK i %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "Jasność musi zawierać się w przedziale od %.1f do %.1f\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "Jasność: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Wartość gammy musi być pomiędzy %.1f i %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Próba użycia kolejnej metody...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "Użycie metody `%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Nie ma więcej metod do wypróbowania.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "Czekanie, aż obecna lokalizacja będzie dostępna...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Pozycja słońca: %f°\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Naciśnij ctrl+c aby zakończyć\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Użycie: %s -l SZER:DŁ -t DZIEŃ:NOC [OPCJE...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Ustawia temperaturę barwową ekranu, w zależności od pory dnia.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" msgstr "" +" -h\t\tWyświetla tę pomoc\n" +" -v\t\tUszczegóławia wyjście programu\n" +" -V\t\tWypisuje wersję programu\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Wartości domyślne:\n" +"\n" +" Temperatura dla dnia: %uK\n" +" Temperatura dla nocy: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Dostępne metody dostosowania:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Podaj opcje oddzielone dwukropkiem z `-m METODA:OPCJE'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Spróbuj `-m METODA:help' aby uzyskać pomoc.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Dostępni dostawcy lokalizacji\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "Podaj opcje oddzielone dwukropkiem z `-l DOSTAWCA:OPCJE'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Spróbuj `-m DOSTAWCA:help' aby uzyskać pomoc.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Nieprawidłowy argument gammy.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Spróbuj `-h' aby uzyskać więcej informacji.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Nieznany dostawca lokalizacji `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Nieznana metoda dostosowania `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Nieprawidłowy argument temperatury.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Nieprawidłowe ustawienie gammy.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Błędnie zapisany czas zmierzchu `%s`.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Błędnie zapisany czas świtu `%s`.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Nieznane ustawienie konfiguracji `%s'.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" @@ -447,327 +490,282 @@ msgstr "Nieprawidłowe przypisanie w pliku konfiguracyjnym.\n" msgid "Assignment outside section in config file.\n" msgstr "Przypisanie poza sekcją w pliku konfiguracyjnym.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Nie udało się otworzyć urządzenia DRM: %s\n" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "Nie powiodło się pobieranie zasobów DRM\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d nie istnieje. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Prawidłowymi CRTC są [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Istnieje tylko CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "Zgubiono CRTC %i, pomijanie\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" +"Nie udało się pobrać przedziału gamma dla CRTC %i\n" +"dla karty graficznej %i, urządzenie pominięto.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" +"DRM nie może odczytać zakresu gamma na CRTC %i na\n" +"karcie graficznej %i, urządzenie pominięto.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "" +msgstr "Dostosuj zakres gamma dzięki Direct Rendering Manager\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\t Karta, do której będą zastosowane parametry\n" +" crtc=N\t CRTC, do którego będą zastosowane parametry\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "" +msgstr "CRTC musi być dodatni\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Nieznany parametr metody :`%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "`%s' zwróciło błąd %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Nieobsługiwana wersja RANDR (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Ekran %i nie może być znaleziony.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Rozmiar gamma ramp jest zbyt mały: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Nie udało się przywrócić CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Dopasuj gamma ramp przy pomocy rozszerzenia X RANDR\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Nie udało się przeczytać numeru wyświetlacza: `%s`.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -" screen=N\tEkran X-ów, który ma być dostosowywany\n" -" crtc=N\tCRTC, które ma być dostosowywane\n" +"Parametr `%s` jest teraz zawsze aktywny; Użyj opcji `%s` w linii poleceń, " +"aby go wyłączyć.\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "Żądanie X-ów zawiodło: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Dopasuj gamma ramp przy pomocy rozszerzenia X VidMode\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" screen=N\tEkran X-ów, który ma być dostosowywany\n" -" crtc=N\tCRTC, które ma być dostosowywane\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Nie udało się zapisać aktualnego gamma ramp.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Nie udało się otworzyć device context.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Urządzenie ekranowe nie obsługuje gamma ramp.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Dopasuj gamma ramp przy pomocy Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Nie udało się przywrócić gamma ramp.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Nie udało się ustawić gamma ramp.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"UWAGA: użyto atrapy metody gamma, ta metoda nie wpłynie na wygląd obrazu.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"Nie zmienia wyglądu ekranu, ale wyświetla temperaturę barwową w terminalu.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" +msgstr "Temperatura: %i\n" -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Nie można pobrac lokalizacji: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Brak kontaktu z menadżerem GeoClue: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "Nie można czytać ścieżki klienta GeoClue: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "Brak kontaktu z klientem GeoClue: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Nie można ustawić interwału odległości: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "Nie udało się uruchomić klienta GeoClue\" %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "Nie udało się uruchomić dostawcy GeoClue2\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Użyj pozycji dostarczonej przez dostawcę GeoClue2.\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "Brak uprawnień do pobrania pozycji z CoreLocation.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "Błąd przy pobieraniu pozycji z CoreLocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "Czekanie na autoryzację przed pobraniem pozycji…\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "Pytanie o pozycje nie zostało autoryzowane!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Nie udało się uruchomić dostawcy CoreLocation\n" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Użyj pozycji podanej przez dostawcę Corelocation.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Szerokość i długość geograficzna muszą być ustawione.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Ustaw lokalizację ręcznie.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -775,63 +773,66 @@ msgstr "" " lat=N\t\tSzerokość geograficzna\n" " lon=N\t\tDługość geograficzna\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" +"Obie wartości powinny być liczbami zmiennoprzecinkowymi,\n" +"ujemne opisują zachód i południe.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Nieprawidłowy argument.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Zawieś na" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 minut" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 godzinę" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 godziny" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Uruchamiaj automatycznie" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "Informacje" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Zakończ" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Zamknij" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Status:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Temperatura barwowa" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Zakres" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "Pozycja" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tEkran X-ów, który ma być dostosowywany\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Uruchom `redshift -h` aby uzyskać pomoc" @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-08-12 23:50+0000\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2016-05-21 16:23+0000\n" "Last-Translator: Pedro Beja <althaser@gmail.com>\n" "Language-Team: Portuguese <pt@li.org>\n" -"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: pt\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -44,209 +44,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Nenhum" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Diurno" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Noite" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Transição" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Período: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Período: %s(%.2f%% dia)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "E" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "O" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Uso: %s -l LAT:LON -t DIA:NOITE [OPÇÕES...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Definir temperatura da cor do ecrã de acordo com a hora do dia.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tMostrar esta mensagem de ajuda\n" -" -v\t\tVista detalhada\n" -" -V\t\tMostrar versão do programa\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" -" -b DIA:NOITE\tBrilho do ecrã a aplicar (entre 0.1 e 1.0)\n" -" -c Ficheiro\tCarregar as configurações do ficheiro de configuração " -"especificado\n" -" -g R:G:B\tCorreção da gama adicional a aplicar\n" -" -l LAT:LON\tSua localização atual\n" -" -l FORNECEDOR\tSelecionar o fornecedor para atualizar automaticamente a " -"localização\n" -" \t\t(Escrever 'list' para ver os fornecedores disponíveis)\n" -" -m MÉTODO\tMétodo a usar para definir a temperatura da cor\n" -" \t\t(Escrever 'list' para ver os métodos disponíveis)\n" -" -o\t\tModo one shot (não ajusta continuamente a temperatura da cor)\n" -" -O TEMP\tModo one shot manual (define a temperatura da cor)\n" -" -p\t\tModo print (mostra apenas os parâmetros e sai)\n" -" -x[tab\tModo reset (remove o ajustamento do ecrã)\n" -" -r\t\tDesabilitar as transições da temperatura\n" -" -t DIA:NOITE\tA temperatura da cor a definir o dia/noite\n" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"A temperatura neutra é %uK. Usando este valor não vai\n" -"alterar a temperatura da cor do ecrã. Definindo a\n" -"temperatura da cor para um valor superior resulta em\n" -"mais luz azul, e definindo um valor inferior resultará em\n" -"mais luz vermelha.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Valores por omissão:\n" -"\n" -" Temperatura diurna: %uK\n" -" Temperatura noturna: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Por favor relate os erros para <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Métodos de ajuste disponíveis:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" -"Especifique as opções separadas por dois-pontos com `-m MÉTODO:OPÇÕES'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Tente `-m MÉTODO:help' para ajuda.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Fornecedores de localização disponíveis:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Especifique opções separadas por dois-pontos com`-l FORNECEDOR:OPÇÕES'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Tente `-l FORNECEDOR:help' para ajuda.\n" +msgstr "Localização: %.2fº%s,%.2fº%s\n" -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "O arranque de %s falhou.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Falhou a definir %s opção.\n" @@ -254,207 +128,350 @@ msgstr "Falhou a definir %s opção.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Tente `-l %s:help' para mais informação.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "Falhou a analisar a opção '%s'.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Falhou a iniciar o fornecedor %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Tente `-m %s:help' para mais informação.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Tente -m %s:help' para mais informação.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Falhou ao iniciar o método de ajuste %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "Ativado" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "A latitude deve estar entre %.1f e %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "Desativado" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "A longitude deve estar entre %.1f e %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Incapaz de ler as horas do sistema.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Incapaz de adquirir a localização do fornecedor.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Temperatura da cor: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Brilho: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "O ajustamento da temperatura falhou.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Argumento gama malformado.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Tente `-h' para mais informação.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Desativado" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Fornecedor de localização desconhecido `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Ativado" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Método de ajuste desconhecido `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "O ajustamento da temperatura falhou.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Argumento da temperatura malformado.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Configuração gama malformada.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Definições de configuração desconhecidas `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "A tentar a localização do fornecedor '%s'...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "A tentar o fornecedor seguinte...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "A utilizar o fornecedor `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Não existem mais fornecedores de localização para tentar.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Incapaz de adquirir a localização do fornecedor.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "Temperaturas: %dK de dia, %dK à noite\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" +"A elevação de alta transição não pode ser menor que a elevação de baixa " +"transição.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "Elevações solares: dia acima %.1f, noite abaixo %.1f\n" -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "A latitude deve estar entre %.1f e %.1f.\n" - -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "A longitude deve estar entre %.1f e %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperaturas: %dK de dia, %dK à noite\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "A temperatura deve estar entre %uK e %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" -"A elevação de alta transição não pode ser menor que a elevação de baixa " -"transição.\n" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "Valores de brilho devem estar entre %.1f e %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "Brilho: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "O valor gama deve estar entre %.1f e %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "A tentar o próximo método...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "A usar o método '%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Não há mais métodos para tentar.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Elevação solar: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Uso: %s -l LAT:LON -t DIA:NOITE [OPÇÕES...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Definir temperatura da cor do ecrã de acordo com a hora do dia.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tMostrar esta mensagem de ajuda\n" +" -v\t\tVista detalhada\n" +" -V\t\tMostrar versão do programa\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Valores por omissão:\n" +"\n" +" Temperatura diurna: %uK\n" +" Temperatura noturna: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Métodos de ajuste disponíveis:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Especifique as opções separadas por dois-pontos com `-m MÉTODO:OPÇÕES'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Tente `-m MÉTODO:help' para ajuda.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Fornecedores de localização disponíveis:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Especifique opções separadas por dois-pontos com`-l FORNECEDOR:OPÇÕES'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Tente `-l FORNECEDOR:help' para ajuda.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Argumento gama malformado.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Tente `-h' para mais informação.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Fornecedor de localização desconhecido `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Método de ajuste desconhecido `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Argumento da temperatura malformado.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Configuração gama malformada.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Definições de configuração desconhecidas `%s'.\n" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "Cabeçalho da secção malformado no ficheiro de configuração.\n" @@ -467,32 +484,37 @@ msgstr "Atribuição malformada no ficheiro de configuração.\n" msgid "Assignment outside section in config file.\n" msgstr "Atribuição fora da secção no ficheiro de configuração.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "Falhou a obter recursos do modo DRM\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d não existe. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "CRTCs válidos são [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Apenas existe CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "CRTC %i perdido, saltando\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" @@ -501,7 +523,7 @@ msgstr "" "Não consegue obter o tamanho do declive gama para CRTC %i\n" "na placa gráfica %i, ignorando o dispositivo.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" @@ -510,13 +532,13 @@ msgstr "" "DRM não consegue ler o declive gama no CRTC %i da\n" "placa gráfica %i, ignorando o dispositivo.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "Ajusta o declive gama com o Gestor de Rendering Direto.\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" @@ -524,278 +546,216 @@ msgstr "" " card=N\tPlaca gráfica a aplicar os ajuste a\n" " crtc=N\tCRTC a aplicar os ajustes a\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "CRTC deve ser um inteiro não negativo\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Parâmetro do método desconhecido: '%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "'%s' devolveu o erro %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Versão RANDR (%u.%u) não suportada.\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Ecrã %i não consegue ser encontrado.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Tamanho do declive gama demasiado pequeno: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Incapaz de restaurar CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Ajustar o declive gama com a extensão X RANDR.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" msgstr "" -" screen=N\tEcrã X a aplicar ajustes a\n" -" crtc=N\tCRTC a aplicar ajustes a\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "Pedido do X falhou: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Ajustar o declive gama com a extensão X VidMode.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" screen=N\tEcrã X a aplicar ajustes a\n" -" crtc=N\tCRTC a aplicar ajustes a\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Incapaz de guardar o declive gama atual.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Incapaz de abrir o contexto do dispositivo.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "O dispositivo de visualização não suporta os declives gama.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Ajustar os declives gama com o Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Incapaz de restaurar os declives gama.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Incapaz de definir os declives gama.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "Incapaz de obter o cliente mestre: %s\n" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "Incapaz de obter o cliente mestre\n" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "Não pode definir os requisitos para o mestre: %s\n" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "Não pode definir os requisitos para o mestre\n" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "Iniciou o fornecedor Geoclue '%s'.\n" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "Não consegue encontrar um fornecedor Geoclue utilizável.\n" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "Tentar definir o nome e o caminho para especificar qual utilizar.\n" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "Usar a localização descoberta pelo fornecedor Geoclue.\n" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" -" name=N\tNome do fornecedor Geoclue (ou 'default')\n" -" path=N\tCaminho do fornecedor Geoclue (ou 'default')\n" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "Não consegue obter a localização: %s.\n" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "De acordo com o fornecedor geoclue estamos em: %.2f, %.2f\n" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "Fornecedor não tem uma localização válida disponível." - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Latitude e longitude devem ser definidas.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Especifique a localização manualmente.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -803,7 +763,7 @@ msgstr "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" @@ -811,57 +771,58 @@ msgstr "" "Ambos os valores são esperados serem números de vírgula flutuante,\n" "valores negativos representam Oeste / Sul, respetivamente.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Argumento malformado.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "Suspender por" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "30 minutos" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "1 hora" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "2 horas" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Iniciar automaticamente" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "Informação" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "Sair" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "Fechar" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "Temperatura da cor" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "Período" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "Localização" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tEcrã X a aplicar ajustes a\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 9c5fd01..26053ef 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:53+0000\n" -"Last-Translator: Rodrigo Exterckötter Tjäder <rodrigo@tjader.com.br>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-11-21 20:51+0000\n" +"Last-Translator: Sitonir de Oliveira <sitonir@outlook.com>\n" "Language-Team: Brazilian Portuguese <pt_BR@li.org>\n" -"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: pt_BR\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +24,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift ajusta a temperatura da cor de sua tela de acordo com o que o " +"cerca. Isso ajuda a irritar menos os olhos se você está trabalhando em " +"frente a uma tela à noite." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,409 +35,454 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"A temperatura da cor é definida de acordo com a posição do Sol. Diferentes " +"temperaturas de cores são utilizadas durante a noite e o dia. Ao anoitecer e " +"ao amanhecer, ocorre uma transição suave entre a temperatura de cor da noite " +"para o dia para que seus olhos lentamente se adaptem." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Esse programa exibe um ícone de status para que seja possível controlar o " +"Redshift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"A janela de informação sobreposta do redshift exibe um exemplo do efeito " +"avermelhado" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Ajuste de temperatura de cor" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Ferramenta de ajuste de temperatura de cor" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Nenhum" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Manhã" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Noite" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Transição" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Período: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Período: %s (%.2f%% day)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "L" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "O" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" +msgstr "Localização: %.2f %s, %.2f %s\n" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Utilização: %s -l LAT:LON -t DIA:NOITE [OPÇÕES...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Regula a temperatura da cor do monitor de acordo com a hora do dia.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\t Mostra esta mensagem de ajuda\n" -" -v\t\t Mostra o log \n" -" -V\t\t Mostra versão do programa\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"A temperatura neutra é %uK. Usar esse valor não irá\n" -"mudar a temperatura do monitor. Definir a temperatura\n" -"de cor a um valor maior que esse resulta em mais luz\n" -"azul, e definir uma temperatura mais baixa resultará\n" -"em mais luz vermelha.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Valores padrão:\n" -"\n" -" Temperatura diurna: %uK\n" -" Temperatura noturna: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Por favor, reporte bugs para <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Métodos de ajuste disponíveis:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "Especifique opções separadas por dois pontos com `-m MÉTODO:OPÇÕES'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Tente `-m MÉTODO:help' para obter ajuda.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Fornecedores de localidade disponíveis:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" -"Especifique opções separadas por dois pontos com `-l PROVEDOR:OPÇÕES'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Tente `-l PROVEDOR:help' para obter ajuda.\n" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "Não foi possível inicializar %s.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "Não foi possível configurar a opção %s.\n" +msgstr "Não foi possível definir a opção %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Tente `-l %s:help' para maiores informações.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Falha ao analisar opção `%s'.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Não foi possível iniciar o provedor %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Tente `-m %s:help' para mais informações.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Tente -m %s:help' para maiores informações.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Não foi possível iniciar método de ajuste %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Latitude deve estar entre %.1f e %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Longitude deve estar entre %.1f e %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Não foi possível determinar a hora do sistema.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Esperando que a localização inicial esteja disponível...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Não foi possível determinar a localização pelo provedor.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Localização inválida retornado do provedor\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "Temperatura de cor: %uK\n" +msgstr "Temperatura da cor: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Brilho: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "O ajuste de temperatura falhou.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Argumento gama mal-formatado.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Estado: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Tente `-h' para mais informações.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Desativado" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Provedor de localização `%s' desconhecido.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Ativado" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Método de ajuste `%s' desconhecido.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "O ajuste de temperatura falhou.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Argumento de temperatura mal-formatado.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"A localização está temporariamente indisponível; Usando a localização " +"anterior até ficar disponível ...\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Definição de gama mal formada.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Configuração parcial de tempo não suportada!\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Definição de configuração `%s' desconhecida.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Configuração do amanhacer/anoitecer inválida!\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "Tentando provedor de localização `%s'...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Tentando próximo provedor...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Usando provedor `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Não há mais provedores de localização para contactar.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Não foi possível determinar a localização pelo provedor.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" +msgstr "Elevacao Solar: dia acima %.1f, noite abaixo %.1f\n" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Latitude deve estar entre %.1f e %.1f.\n" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Longitude deve estar entre %.1f and %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperaturas: %dK de dia, %dK de noite\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "A temperatura deve estar entre %uK e %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "Os valores do Brilho devem estar entre %.1f e %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "Brilho: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" -msgstr "Valor gama deve estar entre %.1f and %.1f.\n" +msgstr "Valor Gamma deve estar entre %.1f e %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Tentando próximo método...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "Usando o método `%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" -msgstr "Não há mais métodos a serem tentados.\n" +msgstr "Não há mais métodos a testar.\n" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "Elevação solar: %fº\n" +msgstr "Elevação solar: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Pressione Ctrl-c para parar...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Utilização: %s -l LAT:LON -t DIA:NOITE [OPÇÕES...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" msgstr "" +"Define a temperatura da cor do monitor de acordo com a hora do dia.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\t Exibe essa mensagem de ajuda\n" +" -v\t\t Mostra o log \n" +" -V\t\t Mostra versão do programa\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Valores padrão:\n" +"\n" +" Temperatura diurna: %uK\n" +" Temperatura noturna: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Métodos de ajuste disponíveis:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" +"Especifique opções separadas por dois pontos com `-m MÉTODO:OPÇÕES'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Tente `-m MÉTODO:help' para obter ajuda.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Fornecedores de localização disponíveis:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Especifique opções separadas por dois pontos com `-l PROVEDOR:OPÇÕES'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Tente `-l PROVEDOR:help' para obter ajuda.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Argumento gama mal-formatado.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Tente `-h' para mais informações.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Provedor de localização `%s' desconhecido.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Método de ajuste `%s' desconhecido.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Argumento de temperatura mal-formatado.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Definição de gama mal formada.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Definição de configuração `%s' desconhecida.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" @@ -448,327 +496,278 @@ msgstr "Atribuição mal formada no arquivo de configuração.\n" msgid "Assignment outside section in config file.\n" msgstr "Atribuição fora da seção no arquivo de configuração.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 #, c-format -msgid "Failed to get DRM mode resources\n" +msgid "Failed to open DRM device: %s\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "Não foi possível obter recursos do modo DRM\n" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d não existe. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "CRTCs válidos são [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Existe apenas CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "CTRC %i perdido, saltando\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" +"Não foi possivel obter a escala gamma para CTRC %i\n" +"na placa gráfica %i, ignorando dispositivo.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" +"DRM não consegue obter a escala gamma de CTRC %i em\n" +"placa gráfica %i, ignorando dispositivo.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "" +msgstr "Ajuste escala gamma com Direct Rendering Manager.\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\tPlaca gráfica para receber ajustes\n" +" crtc=N\tCRTC para receber ajustes\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "" +msgstr "CRTC deve ser um inteiro não negativo\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Parâmetro de método desconhecido: `%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "`%s' retornou erro %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" -msgstr "Não há suporte para a versão RANDR (%u.%u)\n" +msgstr "Versão RANDR não suportada (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Tela %i não foi encontrada.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" -msgstr "Tamanho da curva gama é pequeno demais: %i\n" +msgstr "Tamanho da escala gamma muito pequeno: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Não foi possível restaurar o CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" -msgstr "Ajuste as curvas gama com a extensão X RANDR.\n" +msgstr "Ajuste as escalas gamma com a extensão X RANDR.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" msgstr "" -" screen=N\tAplicar ajustes a tela X\n" -" crtc=N\tAplicar ajustes a CRTC\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "Requisição X falhou: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" -msgstr "Ajuste as curvas gama com a extensão X VidMode.\n" +msgstr "Ajuste as escalas gamma com a extensão X VidMode.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" screen=N\tAplicar ajustes a tela X\n" -" crtc=N\tAplicar ajustes a CRTC\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "Não foi possível salvar a curva gama atual.\n" - -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" +msgstr "Não foi possível salvar a escala gamma atual.\n" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Não é possível abrir contexto de dispositivo.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" -msgstr "O dispositivo de exibição não oferece suporte a curvas gama.\n" +msgstr "O dispositivo de exibição não oferece suporte a escalas gamma.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" -msgstr "Ajuste as curvas gama com o GDI do Windows.\n" +msgstr "Ajuste as escalas gamma com o GDI do Windows.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "Não foi possível restaurar as curvas gama.\n" +msgstr "Não foi possível restaurar as escalas gamma.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "Não foi possível configurar as curvas gama.\n" +msgstr "Não foi possível configurar as escalas gamma.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" +msgstr "Temperatura: %i\n" -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Não é possível obter sua localização: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Não é possível obter Gerenciador do GeoClue: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "Não é possível obter o caminho do cliente GeoClue: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "Não é possível obter Cliente GeoClue: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Não é possível definir limite de distância: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "Não foi possível iniciar o cliente GeoClue: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Usar a localização descoberta pelo provedor GeoClue2.\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "Não autorizado para obter localização de Corelocation.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "Erro ao obter localização de Corelocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "Aguardando autorização para obter localização...\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" +msgstr "Pedido de localização não foi autorizado!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Usar localização informada pelo provedor Corelocation.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" -msgstr "Latitude e longitude precisam ser configuradas.\n" +msgstr "Latitude e longitude precisam ser definidas.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Especificar localização manualmente.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -776,63 +775,66 @@ msgstr "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" +"Ambos os valores precisam ser de ponto flutuante,\n" +"valores negativos representam O / S, respectivamente.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Argumento mal-formatado.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Suspender por" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 minutos" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 hora" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 horas" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Iniciar automaticamente" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "Estatísticas" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Sair" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Fechar" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Estado:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Temperatura das Cores" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Período" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "Localização" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tAplicar ajustes a tela X\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" diff --git a/po/redshift.pot b/po/redshift.pot index d7bdb3a..1b4cd87 100644 --- a/po/redshift.pot +++ b/po/redshift.pot @@ -1,21 +1,18 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: \n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -43,179 +40,83 @@ msgid "" "effect" msgstr "" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" msgstr "" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" msgstr "" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" msgstr "" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" msgstr "" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" msgstr "" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" msgstr "" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" msgstr "" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" msgstr "" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" msgstr "" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" msgstr "" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" msgstr "" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" msgstr "" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" msgstr "" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" msgstr "" -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "" @@ -223,205 +124,339 @@ msgstr "" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" msgstr "" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" +msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" msgstr "" -#: ../src/redshift.c:927 ../src/redshift.c:1600 -msgid "Unable to read system time.\n" +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" msgstr "" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" msgstr "" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" msgstr "" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" msgstr "" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" msgstr "" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" msgstr "" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" msgstr "" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" msgstr "" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" msgstr "" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" msgstr "" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" msgstr "" +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" msgstr "" @@ -434,380 +469,335 @@ msgstr "" msgid "Assignment outside section in config file.\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "" -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" - -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" msgstr "" -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" msgstr "" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" msgstr "" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" msgstr "" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" msgstr "" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" msgstr "" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" msgstr "" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" msgstr "" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" msgstr "" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" msgstr "" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" msgstr "" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" msgstr "" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" diff --git a/po/ro.po b/po/ro.po new file mode 100644 index 0000000..a62b835 --- /dev/null +++ b/po/ro.po @@ -0,0 +1,806 @@ +# Romanian translation for redshift +# Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 +# This file is distributed under the same license as the redshift package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: redshift\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-04-03 17:16+0000\n" +"Last-Translator: Ciprian <c1pr1an_43v3r@yahoo.com>\n" +"Language-Team: Romanian <ro@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 +msgid "" +"Redshift adjusts the color temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 +msgid "" +"The color temperature is set according to the position of the sun. A " +"different color temperature is set during night and daytime. During twilight " +"and early morning, the color temperature transitions smoothly from night to " +"daytime temperature to allow your eyes to slowly adapt." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 +msgid "" +"This program provides a status icon that allows the user to control Redshift." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 +msgid "" +"The Redshift information window overlaid with an example of the redness " +"effect" +msgstr "" + +#: ../data/applications/redshift.desktop.in.h:1 +#: ../data/applications/redshift-gtk.desktop.in.h:1 +msgid "Redshift" +msgstr "Redshift" + +#: ../data/applications/redshift.desktop.in.h:2 +#: ../data/applications/redshift-gtk.desktop.in.h:2 +msgid "Color temperature adjustment" +msgstr "" + +#: ../data/applications/redshift.desktop.in.h:3 +#: ../data/applications/redshift-gtk.desktop.in.h:3 +msgid "Color temperature adjustment tool" +msgstr "" + +#. TRANSLATORS: Name printed when period of day is unknown +#: ../src/redshift.c:135 +msgid "None" +msgstr "" + +#: ../src/redshift.c:136 ../src/redshift.c:1107 +msgid "Daytime" +msgstr "" + +#: ../src/redshift.c:137 ../src/redshift.c:1111 +msgid "Night" +msgstr "" + +#: ../src/redshift.c:138 +msgid "Transition" +msgstr "" + +#: ../src/redshift.c:225 +#, c-format +msgid "Period: %s\n" +msgstr "" + +#: ../src/redshift.c:228 +#, c-format +msgid "Period: %s (%.2f%% day)\n" +msgstr "" + +#. TRANSLATORS: Abbreviation for `north' +#: ../src/redshift.c:240 +msgid "N" +msgstr "" + +#. TRANSLATORS: Abbreviation for `south' +#: ../src/redshift.c:242 +msgid "S" +msgstr "" + +#. TRANSLATORS: Abbreviation for `east' +#: ../src/redshift.c:244 +msgid "E" +msgstr "" + +#. TRANSLATORS: Abbreviation for `west' +#: ../src/redshift.c:246 +msgid "W" +msgstr "" + +#. TRANSLATORS: Append degree symbols after %f if possible. +#. The string following each number is an abreviation for +#. north, source, east or west (N, S, E, W). +#: ../src/redshift.c:251 +#, c-format +msgid "Location: %.2f %s, %.2f %s\n" +msgstr "" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "Strălucire: %.2f\n" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Dezactivat" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Activat" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + +#: ../src/config-ini.c:167 +msgid "Malformed section header in config file.\n" +msgstr "" + +#: ../src/config-ini.c:203 +msgid "Malformed assignment in config file.\n" +msgstr "" + +#: ../src/config-ini.c:214 +msgid "Assignment outside section in config file.\n" +msgstr "" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 +#, c-format +msgid "CRTC %d does not exist. " +msgstr "" + +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 +#, c-format +msgid "Valid CRTCs are [0-%d].\n" +msgstr "" + +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 +#, c-format +msgid "Only CRTC 0 exists.\n" +msgstr "" + +#: ../src/gamma-drm.c:159 +#, c-format +msgid "CRTC %i lost, skipping\n" +msgstr "" + +#: ../src/gamma-drm.c:165 +#, c-format +msgid "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:178 +#, c-format +msgid "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:242 +msgid "Adjust gamma ramps with Direct Rendering Manager.\n" +msgstr "" + +#. TRANSLATORS: DRM help output +#. left column must not be translated +#: ../src/gamma-drm.c:247 +msgid "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-drm.c:260 +#, c-format +msgid "CRTC must be a non-negative integer\n" +msgstr "" + +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 +#, c-format +msgid "Unknown method parameter: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 +#, c-format +msgid "`%s' returned error %d\n" +msgstr "" + +#: ../src/gamma-randr.c:103 +#, c-format +msgid "Unsupported RANDR version (%u.%u)\n" +msgstr "" + +#: ../src/gamma-randr.c:138 +#, c-format +msgid "Screen %i could not be found.\n" +msgstr "" + +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 +#, c-format +msgid "Gamma ramp size too small: %i\n" +msgstr "" + +#: ../src/gamma-randr.c:277 +#, c-format +msgid "Unable to restore CRTC %i\n" +msgstr "" + +#: ../src/gamma-randr.c:301 +msgid "Adjust gamma ramps with the X RANDR extension.\n" +msgstr "" + +#. TRANSLATORS: RANDR help output +#. left column must not be translated +#: ../src/gamma-randr.c:306 +msgid "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 +#, c-format +msgid "X request failed: %s\n" +msgstr "" + +#: ../src/gamma-vidmode.c:140 +msgid "Adjust gamma ramps with the X VidMode extension.\n" +msgstr "" + +#. TRANSLATORS: VidMode help output +#. left column must not be translated +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 +msgid "Unable to save current gamma ramp.\n" +msgstr "" + +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 +msgid "Unable to open device context.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:75 +msgid "Display device does not support gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:115 +msgid "Adjust gamma ramps with the Windows GDI.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:153 +msgid "Unable to restore gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:211 +msgid "Unable to set gamma ramps.\n" +msgstr "" + +#: ../src/gamma-dummy.c:43 +msgid "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" +msgstr "" + +#: ../src/gamma-dummy.c:60 +msgid "" +"Does not affect the display but prints the color temperature to the " +"terminal.\n" +msgstr "" + +#: ../src/gamma-dummy.c:75 +#, c-format +msgid "Temperature: %i\n" +msgstr "" + +#: ../src/location-geoclue2.c:59 +#, c-format +msgid "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" +msgstr "" + +#: ../src/location-geoclue2.c:107 +#, c-format +msgid "Unable to obtain location: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:150 +#, c-format +msgid "Unable to obtain GeoClue Manager: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:166 +#, c-format +msgid "Unable to obtain GeoClue client path: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:188 +#, c-format +msgid "Unable to obtain GeoClue Client: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:229 +#, c-format +msgid "Unable to set distance threshold: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:253 +#, c-format +msgid "Unable to start GeoClue client: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 +msgid "Not authorized to obtain location from CoreLocation.\n" +msgstr "" + +#: ../src/location-corelocation.m:111 +#, c-format +msgid "Error obtaining location from CoreLocation: %s\n" +msgstr "" + +#: ../src/location-corelocation.m:120 +msgid "Waiting for authorization to obtain location...\n" +msgstr "" + +#: ../src/location-corelocation.m:122 +msgid "Request for location was not authorized!\n" +msgstr "" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 +msgid "Use the location as discovered by the Corelocation provider.\n" +msgstr "" + +#: ../src/location-manual.c:59 +msgid "Latitude and longitude must be set.\n" +msgstr "Latitudinea și longitudinea trebuiesc setate.\n" + +#: ../src/location-manual.c:75 +msgid "Specify location manually.\n" +msgstr "Specificați locația manual.\n" + +#. TRANSLATORS: Manual location help output +#. left column must not be translated +#: ../src/location-manual.c:80 +msgid "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" +msgstr "" + +#: ../src/location-manual.c:83 +msgid "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" +msgstr "" + +#: ../src/location-manual.c:97 +msgid "Malformed argument.\n" +msgstr "" + +#: ../src/redshift-gtk/statusicon.py:78 +msgid "Suspend for" +msgstr "" + +#: ../src/redshift-gtk/statusicon.py:80 +msgid "30 minutes" +msgstr "30 de minute" + +#: ../src/redshift-gtk/statusicon.py:81 +msgid "1 hour" +msgstr "1 oră" + +#: ../src/redshift-gtk/statusicon.py:82 +msgid "2 hours" +msgstr "2 ore" + +#: ../src/redshift-gtk/statusicon.py:91 +msgid "Autostart" +msgstr "Pornire automată" + +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 +msgid "Info" +msgstr "Informații" + +#: ../src/redshift-gtk/statusicon.py:108 +msgid "Quit" +msgstr "Ieșire" + +#: ../src/redshift-gtk/statusicon.py:146 +msgid "Close" +msgstr "Închideți" + +#: ../src/redshift-gtk/statusicon.py:300 +msgid "<b>Status:</b> {}" +msgstr "" + +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 +msgid "Color temperature" +msgstr "" + +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 +msgid "Period" +msgstr "Perioadă" + +#: ../src/redshift-gtk/statusicon.py:318 +msgid "Location" +msgstr "Locație" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -8,16 +8,16 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:54+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-12-10 19:55+0000\n" +"Last-Translator: Andrey S. Kunitsyn <contact@libnaru.so>\n" "Language-Team: Russian <ru@li.org>\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: ru\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -25,6 +25,9 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift настраивает цветовую температуру экрана в соответствии с " +"окружающими вас условиями. Это может, например, помочь снизить усталость " +"глаз при работе на компьютере ночью." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -33,201 +36,100 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"Цветовая температура устанавливается в зависимости от положения солнца. " +"Ночью и днём используется различная цветовая температура. В сумерки и ранним " +"утром цветовая температура плавно переходит от ночных настроек к дневным, " +"позволяя глазам постепенно адаптироваться." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." -msgstr "" +msgstr "Эта программа позволяет управлять RedShift через иконку в трее." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"Информационное окно Redshift перекрыто примером эффекта тёплого света" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Настройка цветовой температуры" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Инструмент регулирования цветовой температуры" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Неизвестно" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "День" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Ночь" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Переход" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Время: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Период: %s (%.2f%% день)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "С" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "Ю" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "В" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "З" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "Использование: %s -l ШИР:ДОЛ -t ДЕНЬ:НОЧЬ [ОПЦИИ...]\n" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "Установка температуры цвета дисплея согласно времени суток.\n" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" -" -h\t\tПоказать это сообщение\n" -" -v\t\tВывод на экран информации о работе приложения\n" -" -V\t\tПоказать версию приложения\n" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" -"Нейтральная температура цвета - %uK. Использование этой величины\n" -"не изменит температуру цвета дисплея. Установка температуры цвета\n" -"больше этого значения приведет к более синему цвету экрана,\n" -"установка меньшего значения - к более красному оттенку.\n" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" -"Значения по умолчанию:\n" -" Температура цвета днем: %uK\n" -" Температура цвета ночью: %uK\n" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "Пожалуйста, об ошибках сообщайте на <%s>\n" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "Доступные методы корректировки:\n" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "Укажите опции, разделенные двоеточием: `-m METHOD:OPTIONS'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "Используйте `-m МЕТОД:help' для справки.\n" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "Доступные источники информации о местоположении:\n" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "Укажите опции, разделенные двоеточием: `-l PROVIDER:OPTIONS'.\n" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "Попробуйте `-l ИСТОЧНИК:help' для справки.\n" +msgstr "Местоположение: %.2f %s, %.2f %s\n" -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" msgstr "Ошибка инициализации %s\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" msgstr "Не удалось установить опцию %s\n" @@ -235,204 +137,344 @@ msgstr "Не удалось установить опцию %s\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" msgstr "Попробуйте `-l %s:help' для получения дополнительной информации.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Не удалось разобрать опцию `%s'.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" msgstr "Ошибка обращения к источнику местоположения%s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" msgstr "Попробуйте `-m %s:help' для дополнительной информации.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" msgstr "Используйте -m %s:help' для получения дополнительной информации.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" msgstr "Не удалось использовать метод корректировки %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Возможные значения широты: %.1f - %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Долгота должна быть между %.1f и %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" msgstr "Невозможно прочесть системное время.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Не удается получить координаты от указанного источника.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" msgstr "Температура цвета: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" msgstr "Яркость: %.2f\n" -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "Корректировка цветовой температуры не удалась.\n" - -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "Некорректная величина гаммы.\n" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Статус: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "Используйте «-h» для получения дополнительной информации.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Выключено" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "Неизвестный источник информации `%s'.\n" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Включено" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "Неизвестный метод настройки `%s'.\n" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Корректировка цветовой температуры не удалась.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "Некорректное значение температуры цвета.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "Неправильные настройки гаммы.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "Неизвестный параметр конфигурации `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "Попытка использования провайдера местоположений `%s'...\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" msgstr "Использование следующего источника местоположения...\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" msgstr "Использование источника `%s'.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" msgstr "Нет больше доступных источников местоположения.\n" -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "Не удается получить координаты от указанного источника.\n" - -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" msgstr "" -#: ../src/redshift.c:1473 -#, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "Возможные значения широты: %.1f - %.1f.\n" - -#: ../src/redshift.c:1482 +#: ../src/redshift.c:1049 #, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "Долгота должна быть между %.1f и %.1f.\n" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Температуры: %dK днём, %dK ночью\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Температура должна быть между %uK и %uK.\n" -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" - -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "Яркость должна быть между %.1f и %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "Яркость: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Возможные значения гаммы: %.1f - %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Гамма (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" msgstr "Попытка использования следующего метода...\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" msgstr "Использование метода `%s'.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" msgstr "Больше нет доступных для использования методов.\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" msgstr "Высота Солнца над горизонтом: %f°\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Нажмите ctrl-c чтобы остановить...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Использование: %s -l ШИР:ДОЛ -t ДЕНЬ:НОЧЬ [ОПЦИИ...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Установка температуры цвета дисплея согласно времени суток.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tПоказать это сообщение\n" +" -v\t\tВывод на экран информации о работе приложения\n" +" -V\t\tПоказать версию приложения\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" msgstr "" +"Значения по умолчанию:\n" +" Температура цвета днем: %uK\n" +" Температура цвета ночью: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Доступные методы корректировки:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Укажите опции, разделенные двоеточием: `-m METHOD:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Используйте `-m МЕТОД:help' для справки.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Доступные источники информации о местоположении:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "Укажите опции, разделенные двоеточием: `-l PROVIDER:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Попробуйте `-l ИСТОЧНИК:help' для справки.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Некорректная величина гаммы.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Используйте «-h» для получения дополнительной информации.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Неизвестный источник информации `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Неизвестный метод настройки `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Некорректное значение температуры цвета.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Неправильные настройки гаммы.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Неизвестный параметр конфигурации `%s'.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" @@ -444,329 +486,275 @@ msgstr "Некорректный параметр в конфигурацион #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" -msgstr "Некорректное значение за пределами секции в конфигурационном файле.\n" +msgstr "" +"Некорректное значение за пределами секции в конфигурационном файле.\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 #, c-format -msgid "Failed to get DRM mode resources\n" +msgid "Failed to open DRM device: %s\n" msgstr "" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "Не удалось получить ресурсы DRM режима\n" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d не найден. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" msgstr "Правильный CRTCs [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" msgstr "Существует только CRTC 0.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" msgstr "" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" msgstr "" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" msgstr "" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" msgstr "Неизвестный параметр метода: `%s'.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" msgstr "«%s» завершилось с ошибкой %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" msgstr "Неподдерживаемая версия RANDR (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" msgstr "Экран %i не может быть найден.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" msgstr "Размер таблицы корректировки цвета мал: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" msgstr "Не удается восстановить параметры CRT контроллера %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" msgstr "Корректирование цвета с помощью расширения X RANDR.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 -#, fuzzy +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -" screen=N\t Экран X к которому применять коррекцию цвета\n" -" crtc=N\t Контроллер CRT к которому применять коррекцию цвета\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" msgstr "Ошибка X запроса: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" msgstr "Корректирование цвета с помощью расширения X VidMode.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -#, fuzzy -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -" screen=N\t Экран X к которому применять коррекцию цвета\n" -" crtc=N\t Контроллер CRT к которому применять коррекцию цвета\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" msgstr "Не удается сохранить текущие значения корректировки цвета.\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" - -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" msgstr "Не удается открыть контекст устройства.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" msgstr "Дисплей не поддерживает коррекцию цвета.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" msgstr "Коррекция цвета с помощью Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" msgstr "Невозможно восстановить исходные значения корректировки цвета.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" msgstr "Невозможно установить параметры корректировки цвета.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" +msgstr "Температура: %i\n" -#: ../src/location-geoclue.c:80 +#: ../src/location-geoclue2.c:59 #, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 -#, c-format -msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Не удалось определить местоположение: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" msgstr "" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" +msgstr "Не удалось запустить клиент GeoClue: %s.\n" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" msgstr "" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" msgstr "" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" msgstr "" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" msgstr "" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" msgstr "Широта и долгота должны быть указаны.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" msgstr "Укажите свое местоположение вручную:\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" @@ -774,63 +762,64 @@ msgstr "" " lat=N\t\tШирота\n" " lon=N\t\tДолгота\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" msgstr "Неправильный аргумент.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Приостановить на" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 минут" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 час" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 часа" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" msgstr "Автозапуск" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "Информация" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Выйти" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Закрыть" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Статус:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Цветовая температура" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Период" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "Местоположение" -#~ msgid " screen=N\tX screen to apply adjustments to\n" -#~ msgstr " screen=N\tX экран к которому применять коррекцию цвета\n" +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" diff --git a/po/sr.po b/po/sr.po new file mode 100644 index 0000000..58d7696 --- /dev/null +++ b/po/sr.po @@ -0,0 +1,823 @@ +# Serbian translation for redshift. +# Copyright (C) 2016 redshift's COPYRIGHT HOLDER +# This file is distributed under the same license as the redshift package. +# Марко М. Костић (Marko M. Kostić), 2016. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2016-09-20 09:54+0000\n" +"Last-Translator: Марко М. Костић <Unknown>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: sr\n" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 +msgid "" +"Redshift adjusts the color temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." +msgstr "" +"Редшифт мења температуру боје вашег екрана у складу са вашим окружењем. Ово " +"вам може помоћи уколико осећате бол у очима када радите за рачунаром ноћу." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 +msgid "" +"The color temperature is set according to the position of the sun. A " +"different color temperature is set during night and daytime. During twilight " +"and early morning, the color temperature transitions smoothly from night to " +"daytime temperature to allow your eyes to slowly adapt." +msgstr "" +"Температура боје се се подешава у складу са положајем сунца. Другачија " +"температура боје се поставља ноћу а другачија дању. У сумрак и рано јутро " +"температура боје лагано прелази из ноћне у дневну температуру да би се вашим " +"очима омогућило лакше привикавање." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 +msgid "" +"This program provides a status icon that allows the user to control Redshift." +msgstr "" +"Овај програм пружа иконицу стања која омогућава кориснику да управља " +"Редшифтом." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 +msgid "" +"The Redshift information window overlaid with an example of the redness " +"effect" +msgstr "" +"Прозор са подацима Редшифта који је прекриван примером ефекта црвенила." + +#: ../data/applications/redshift.desktop.in.h:1 +#: ../data/applications/redshift-gtk.desktop.in.h:1 +msgid "Redshift" +msgstr "Редшифт" + +#: ../data/applications/redshift.desktop.in.h:2 +#: ../data/applications/redshift-gtk.desktop.in.h:2 +msgid "Color temperature adjustment" +msgstr "Прилагођавање температуре боје" + +#: ../data/applications/redshift.desktop.in.h:3 +#: ../data/applications/redshift-gtk.desktop.in.h:3 +msgid "Color temperature adjustment tool" +msgstr "Алатка за прилагођавање температуре боје" + +#. TRANSLATORS: Name printed when period of day is unknown +#: ../src/redshift.c:135 +msgid "None" +msgstr "Непознато" + +#: ../src/redshift.c:136 ../src/redshift.c:1107 +msgid "Daytime" +msgstr "Дан" + +#: ../src/redshift.c:137 ../src/redshift.c:1111 +msgid "Night" +msgstr "Ноћ" + +#: ../src/redshift.c:138 +msgid "Transition" +msgstr "Прелаз" + +#: ../src/redshift.c:225 +#, c-format +msgid "Period: %s\n" +msgstr "Период: %s\n" + +#: ../src/redshift.c:228 +#, c-format +msgid "Period: %s (%.2f%% day)\n" +msgstr "Период: %s (%.2f%% дан)\n" + +#. TRANSLATORS: Abbreviation for `north' +#: ../src/redshift.c:240 +msgid "N" +msgstr "С" + +#. TRANSLATORS: Abbreviation for `south' +#: ../src/redshift.c:242 +msgid "S" +msgstr "Ј" + +#. TRANSLATORS: Abbreviation for `east' +#: ../src/redshift.c:244 +msgid "E" +msgstr "И" + +#. TRANSLATORS: Abbreviation for `west' +#: ../src/redshift.c:246 +msgid "W" +msgstr "З" + +#. TRANSLATORS: Append degree symbols after %f if possible. +#. The string following each number is an abreviation for +#. north, source, east or west (N, S, E, W). +#: ../src/redshift.c:251 +#, c-format +msgid "Location: %.2f %s, %.2f %s\n" +msgstr "Место: %.2f %s, %.2f %s\n" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "Покретање ставке „%s“ није успело.\n" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "Нисам успео да подесим опцију %s.\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "Нисам успео да обрадим опцију „%s“.\n" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "Нисам успео да покренем достављача %s.\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "Не могу да прочитам системско време.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "Температура боје: %uK\n" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "Осветљење: %.2f\n" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Стање: %s\n" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Онемогућено" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Омогућено" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Прилагођавање температуре није успело.\n" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "Покушавам са достављачем локације „%s“...\n" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "Покушавам са следећим достављачем...\n" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "Користим достављача „%s“.\n" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "Испробао сам све достављаче локација.\n" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Температуре: %dK дању, %dK ноћу\n" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "Осветљење: %.2f:%.2f\n" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "Притисните ctrl-c за престанак рада...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Коришћење: %s -l ГЕО.ШИРИНА:ДУЖИНА -t ДАН:НОЋ [ОПЦИЈЕ...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Подеси температуру боје екрана у складу са тренутним временом.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\tПриказује ову помоћну поруку\n" +" -v\t\tПричљив излаз\n" +" -V\t\tПриказује издање програма\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Подразумеване вредности:\n" +"\n" +" Дневна температура: %uK\n" +" Ноћна температура: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Доступни начини прилагођавања:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Наведите опције раздвојене цртицом са „-m НАЧИН:ОПЦИЈЕ“.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Укуцајте `-m НАЧИН:help' за више података.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Доступни достављачи локација:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "Наведите опције раздвојене цртицом са „-l ДОСТАВЉАЧ:ОПЦИЈЕ“.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Укуцајте `-l ДОСТАВЉАЧ:help' за више података.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Деформисана вредност гама аргумента.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + +#: ../src/config-ini.c:167 +msgid "Malformed section header in config file.\n" +msgstr "" + +#: ../src/config-ini.c:203 +msgid "Malformed assignment in config file.\n" +msgstr "" + +#: ../src/config-ini.c:214 +msgid "Assignment outside section in config file.\n" +msgstr "" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 +#, c-format +msgid "CRTC %d does not exist. " +msgstr "" + +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 +#, c-format +msgid "Valid CRTCs are [0-%d].\n" +msgstr "" + +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 +#, c-format +msgid "Only CRTC 0 exists.\n" +msgstr "" + +#: ../src/gamma-drm.c:159 +#, c-format +msgid "CRTC %i lost, skipping\n" +msgstr "" + +#: ../src/gamma-drm.c:165 +#, c-format +msgid "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:178 +#, c-format +msgid "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:242 +msgid "Adjust gamma ramps with Direct Rendering Manager.\n" +msgstr "" + +#. TRANSLATORS: DRM help output +#. left column must not be translated +#: ../src/gamma-drm.c:247 +msgid "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-drm.c:260 +#, c-format +msgid "CRTC must be a non-negative integer\n" +msgstr "" + +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 +#, c-format +msgid "Unknown method parameter: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 +#, c-format +msgid "`%s' returned error %d\n" +msgstr "" + +#: ../src/gamma-randr.c:103 +#, c-format +msgid "Unsupported RANDR version (%u.%u)\n" +msgstr "" + +#: ../src/gamma-randr.c:138 +#, c-format +msgid "Screen %i could not be found.\n" +msgstr "" + +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 +#, c-format +msgid "Gamma ramp size too small: %i\n" +msgstr "" + +#: ../src/gamma-randr.c:277 +#, c-format +msgid "Unable to restore CRTC %i\n" +msgstr "" + +#: ../src/gamma-randr.c:301 +msgid "Adjust gamma ramps with the X RANDR extension.\n" +msgstr "" + +#. TRANSLATORS: RANDR help output +#. left column must not be translated +#: ../src/gamma-randr.c:306 +msgid "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 +#, c-format +msgid "X request failed: %s\n" +msgstr "" + +#: ../src/gamma-vidmode.c:140 +msgid "Adjust gamma ramps with the X VidMode extension.\n" +msgstr "" + +#. TRANSLATORS: VidMode help output +#. left column must not be translated +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 +msgid "Unable to save current gamma ramp.\n" +msgstr "" + +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 +msgid "Unable to open device context.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:75 +msgid "Display device does not support gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:115 +msgid "Adjust gamma ramps with the Windows GDI.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:153 +msgid "Unable to restore gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:211 +msgid "Unable to set gamma ramps.\n" +msgstr "" + +#: ../src/gamma-dummy.c:43 +msgid "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" +msgstr "" + +#: ../src/gamma-dummy.c:60 +msgid "" +"Does not affect the display but prints the color temperature to the " +"terminal.\n" +msgstr "" + +#: ../src/gamma-dummy.c:75 +#, c-format +msgid "Temperature: %i\n" +msgstr "Температура: %i\n" + +#: ../src/location-geoclue2.c:59 +#, c-format +msgid "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" +msgstr "" + +#: ../src/location-geoclue2.c:107 +#, c-format +msgid "Unable to obtain location: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:150 +#, c-format +msgid "Unable to obtain GeoClue Manager: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:166 +#, c-format +msgid "Unable to obtain GeoClue client path: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:188 +#, c-format +msgid "Unable to obtain GeoClue Client: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:229 +#, c-format +msgid "Unable to set distance threshold: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:253 +#, c-format +msgid "Unable to start GeoClue client: %s.\n" +msgstr "Не могу да покренем GeoClue клијента: %s.\n" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 +msgid "Not authorized to obtain location from CoreLocation.\n" +msgstr "" + +#: ../src/location-corelocation.m:111 +#, c-format +msgid "Error obtaining location from CoreLocation: %s\n" +msgstr "" + +#: ../src/location-corelocation.m:120 +msgid "Waiting for authorization to obtain location...\n" +msgstr "" + +#: ../src/location-corelocation.m:122 +msgid "Request for location was not authorized!\n" +msgstr "" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 +msgid "Use the location as discovered by the Corelocation provider.\n" +msgstr "" + +#: ../src/location-manual.c:59 +msgid "Latitude and longitude must be set.\n" +msgstr "" + +#: ../src/location-manual.c:75 +msgid "Specify location manually.\n" +msgstr "" + +#. TRANSLATORS: Manual location help output +#. left column must not be translated +#: ../src/location-manual.c:80 +msgid "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" +msgstr "" + +#: ../src/location-manual.c:83 +msgid "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" +msgstr "" + +#: ../src/location-manual.c:97 +msgid "Malformed argument.\n" +msgstr "Деформисан аргумент.\n" + +#: ../src/redshift-gtk/statusicon.py:78 +msgid "Suspend for" +msgstr "Обустави на" + +#: ../src/redshift-gtk/statusicon.py:80 +msgid "30 minutes" +msgstr "30 минута" + +#: ../src/redshift-gtk/statusicon.py:81 +msgid "1 hour" +msgstr "1 сат" + +#: ../src/redshift-gtk/statusicon.py:82 +msgid "2 hours" +msgstr "2 сата" + +#: ../src/redshift-gtk/statusicon.py:91 +msgid "Autostart" +msgstr "Самопокретање" + +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 +msgid "Info" +msgstr "Подаци" + +#: ../src/redshift-gtk/statusicon.py:108 +msgid "Quit" +msgstr "Изађи" + +#: ../src/redshift-gtk/statusicon.py:146 +msgid "Close" +msgstr "Затвори" + +#: ../src/redshift-gtk/statusicon.py:300 +msgid "<b>Status:</b> {}" +msgstr "<b>Стање:</b> {}" + +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 +msgid "Color temperature" +msgstr "Температура боје" + +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 +msgid "Period" +msgstr "Период" + +#: ../src/redshift-gtk/statusicon.py:318 +msgid "Location" +msgstr "Место" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" @@ -1,22 +1,23 @@ # Swedish translation for redshift -# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# Copyright (c) 2017 # This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. +# Jonathan Nyberg <EMAIL@ADDRESS>, 2017. +# Josef Andersson josef.andersson@fripost.org, 2017. # msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:53+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" -"Language-Team: Swedish <sv@li.org>\n" -"Language: sv\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-02-06 09:54+0000\n" +"Last-Translator: Josef Andersson <Unknown>\n" +"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: sv\n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" @@ -24,6 +25,8 @@ msgid "" "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." msgstr "" +"Redshift justerar färgtemperaturen på skärmen utefter din omgivning. Det kan " +"göra att dina ögon mindre irriterade om du arbetar framför skärmen på natten." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -32,783 +35,806 @@ msgid "" "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." msgstr "" +"Färgtemperaturen ställs in beroende på positionen av solen. En annan " +"färgtemperatur sätts under natten och dagen. Under gryning och tidigt på " +"morgonen övergår färgtemperaturen smidigt från natt till dagtidstemperatur " +"för att ge dina ögon tid att långsamt anpassa sig." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." msgstr "" +"Detta program skapar en statusikon som gör det möjligt för användaren att " +"styra Redshift." #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" msgstr "" +"Informationsfönstret för Redshift övertäckt med ett exempel på " +"rödhetseffekten" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "Redshift" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "Färgtemperaturjustering" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "Justeringsverktyg för färgtemperaturer" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "Ingen" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "Dagtid" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "Natt" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "Övergång" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "Period: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "Period: %s (%.2f%% dag)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "N" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "S" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "Ö" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "V" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "" +msgstr "Plats: %.2f %s, %.2f %s\n" -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "Initialisering av %s misslyckades.\n" +msgstr "Initiering av %s misslyckades.\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "" +msgstr "Det gick inte att ställa in flaggan %s.\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "" +msgstr "Försök med ”-l %s:help” för mera information.\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "Det gick inte att tolka flaggan ”%s”.\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" -msgstr "" +msgstr "Det gick inte att starta leverantör %s.\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "" +msgstr "Försök med ”-m %s:help” för mer information.\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" -msgstr "" +msgstr "Försök med ”-m %s:help” för mer information.\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" -msgstr "" +msgstr "Det gick inte att starta justeringsmetod %s.\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Latitud måste vara mellan %.1f och %.1f.\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Longitud måste vara mellan %.1f och %.1f.\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" -msgstr "" +msgstr "Det går inte att läsa systemets tid.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Vänter på att plats blir tillgängling...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Det går inte att få plats från leverantör.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Ogiltig plats mottagen från leverantör.\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "Färgtemperatur: %u K\n" +msgstr "Färgtemperatur: %uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" -msgstr "" - -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" +msgstr "Ljusstyrka: %.2f\n" -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Status: %s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Inaktiverad" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Aktiverad" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Temperaturjustering misslyckades.\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" msgstr "" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" msgstr "" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" msgstr "" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "Provar platsleverantör ”%s”…\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "" +msgstr "Provar nästa leverantör…\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "" +msgstr "Använder leverantör ”%s”.\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "" - -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" +msgstr "Inga fler platsleverantörer att pröva.\n" -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" msgstr "" +"Hög övergångsförhöjning kan inte vara lägre än den låga " +"övergångsförhöjningen.\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" +msgstr "Solhöjd: dag över %.1f, natt under %.1f\n" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Temperaturer: %dK vid dag, %dK vid natt\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" -msgstr "" - -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" +msgstr "Temperatur måste vara mellan %uK och %uK.\n" -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "Värden för ljusstyrka måste vara mellan %.1f och %.1f.\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "Ljusstyrka: %.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" -msgstr "" +msgstr "Gammavärde måste vara mellan %.1f och %.1f.\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "Gamma (%s): %.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" -msgstr "" +msgstr "Provar nästa metod…\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" -msgstr "Använder metod '%s'.\n" +msgstr "Använder metod ”%s”.\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" +msgstr "Inga fler metoder att pröva.\n" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" msgstr "" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "" +msgstr "Solförhöjning: %f\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "Tryck ctrl-c för att stoppa…\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Användning: %s -l LAT:LON -t DAG:NATT [FLAGGOR…]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Ställ in färgtemperatur på skärmen beroende av tid på dagen.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" msgstr "" +" -h\t\tVisa detta hjälp meddelande\n" +" -v\t\tUtförligt utdata\n" +" -V\t\tVisa programversion\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Standardvärden:\n" +"\n" +" Dagtidstemperatur: %uK\n" +" Nattemperatur: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Tillgängliga justeringsmetoder:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Ange kolonseparerade flaggor med ”-m METOD:FLAGGOR”.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Försök med `-m METOD:help' för hjälp.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Tillgängliga platsleverantörer:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "Ange kolonseparerade flaggor med ”-l LEVERANTÖR:FLAGGOR”.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Försök med ”-l LEVERANTÖR:help” för hjälp.\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Felaktigt gamma-argument.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Försök med ”-h” för mer information.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Okänd leverantörsplats ”%s”.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Okänd justeringsmetod ”%s”.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Felaktigt temperaturargument.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Felaktigt gamma-inställning.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Felaktigt gryningstidsinställning ”%s”.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Felaktigt skymningingstidsinställning ”%s”.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Okänd konfigurationsinställning ”%s”.\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "" +msgstr "Felaktig avsnittsrubrik i konfigurationsfil.\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "" +msgstr "Felaktigt tilldelning i konfigurationsfil.\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" +msgstr "Tilldelning utanför avsnitt i konfigurationsfil.\n" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" msgstr "" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "Det gick inte att få DRM-läges resurser\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " msgstr "CRTC %d existerar inte. " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" -msgstr "" +msgstr "Giltiga CRTC är [0-%d].\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" -msgstr "" +msgstr "Bara CRTC 0 finns.\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "CRTC %i förlorat, hoppar över\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" msgstr "" +"Det gick inte att hämta gammaförfiningars storlek för CRTC %i\n" +"på grafikkort %i, ignorerar enhet.\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" msgstr "" +"DRM kunde inte läsa gammaförfiningar på CRTC %i på\n" +"grafikkort %i, ignorerar enhet.\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "" +msgstr "Justera gammaförfiningar med Direct Rendering Manager.\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\tGrafikkort att tillämpa justeringar på\n" +" crtc=N\tCRTC att tillämpa justeringar på\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "" +msgstr "CRTC måste vara ett icke-negativt heltal\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "" +msgstr "Okänd metod-parameter: ”%s”.\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" -msgstr "" +msgstr "”%s” returnerade ett fel %d\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" -msgstr "" +msgstr "RANDR-version stöds ej (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" -msgstr "" +msgstr "Skärm %i kunde inte hittas.\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" -msgstr "" +msgstr "Gammaförfinings storlek för liten: %i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" -msgstr "" +msgstr "Det går inte att återställa CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" -msgstr "" +msgstr "Justera gammaförfiningar med X RANDR utökningen.\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" msgstr "" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "X anrop misslyckades: %s\n" +msgstr "X-anrop misslyckades: %s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" -msgstr "" +msgstr "Justera gammaförfiningar med X VidMode utökning.\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" msgstr "" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "" - -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" +msgstr "Det går inte att spara nuvarande gammaförfining.\n" -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" msgstr "" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "" +msgstr "Det går inte att öppna enhetskontext.\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" -msgstr "" +msgstr "Visningsenhet stöder inte gammaförfiningar.\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" -msgstr "" +msgstr "Justera gammaförfiningar med Windows GDI.\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "" +msgstr "Det går inte att återställa gammaförfiningar.\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "" +msgstr "Det går inte att ställa in gammaförfiningar.\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" msgstr "" +"VARNING: Använder falsk gamma-metod! Visning kommer inte att påverkas av " +"denna gamma-metod.\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" msgstr "" +"Påverkar inte visningen men skriver färgtemperaturen till terminalen.\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" +msgstr "Temperatur: %i\n" -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" - -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" -msgstr "" - -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "Det går inte att erhålla plats: %s.\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "Det går inte att erhålla GeoClue-hanterare: %s.\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "Det går inte att erhålla GeoClue-klients sökväg: %s.\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "Det går inte att erhålla GeoClue-klient: %s.\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "Det går inte att ställa in avståndsgränsvärdet: %s.\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "Det går inte att starta GeoClue-klient: %s.\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" msgstr "" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Använd platsen som upptäcktes av en GeoClue2-leverantör.\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "Inte behörighet att få plats från CoreLocation.\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "Fel erhållande av plats från CoreLocation: %s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "Väntar på tillstånd att erhålla plats…\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" +msgstr "Begäran om platsen var inte godkänt!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" msgstr "" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "Använd platsen som upptäckts av Corelocation-leverantören.\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" -msgstr "" +msgstr "Latitud och longitud måste anges.\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" -msgstr "" +msgstr "Ange plats manuellt.\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" +" lat=N\t\tLatitud\n" +" lon=N\t\tLongitud\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" +"Båda värdena beräknas vara flyttal,\n" +"negativa värden representerar väst/söder.\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" -msgstr "" +msgstr "Felaktigt argument.\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "Uppskjuta för" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 minuter" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 timme" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 timmar" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" -msgstr "" +msgstr "Starta automatiskt" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "Info" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "Avsluta" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "Stäng" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>Status:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "Färgtemperatur" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "Period" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" +msgstr "Plats" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." msgstr "" diff --git a/po/tr.po b/po/tr.po new file mode 100644 index 0000000..cca4486 --- /dev/null +++ b/po/tr.po @@ -0,0 +1,807 @@ +# Turkish translation for redshift +# Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 +# This file is distributed under the same license as the redshift package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: redshift\n" +"Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2016-09-13 22:18+0000\n" +"Last-Translator: Butterfly <Unknown>\n" +"Language-Team: Turkish <tr@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: tr\n" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 +msgid "" +"Redshift adjusts the color temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 +msgid "" +"The color temperature is set according to the position of the sun. A " +"different color temperature is set during night and daytime. During twilight " +"and early morning, the color temperature transitions smoothly from night to " +"daytime temperature to allow your eyes to slowly adapt." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 +msgid "" +"This program provides a status icon that allows the user to control Redshift." +msgstr "" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 +msgid "" +"The Redshift information window overlaid with an example of the redness " +"effect" +msgstr "" + +#: ../data/applications/redshift.desktop.in.h:1 +#: ../data/applications/redshift-gtk.desktop.in.h:1 +msgid "Redshift" +msgstr "Redshift" + +#: ../data/applications/redshift.desktop.in.h:2 +#: ../data/applications/redshift-gtk.desktop.in.h:2 +msgid "Color temperature adjustment" +msgstr "Renk sıcaklığı ayarı" + +#: ../data/applications/redshift.desktop.in.h:3 +#: ../data/applications/redshift-gtk.desktop.in.h:3 +msgid "Color temperature adjustment tool" +msgstr "Renk sıcaklığı ayarlama aracı" + +#. TRANSLATORS: Name printed when period of day is unknown +#: ../src/redshift.c:135 +msgid "None" +msgstr "Hiçbiri" + +#: ../src/redshift.c:136 ../src/redshift.c:1107 +msgid "Daytime" +msgstr "Gündüz" + +#: ../src/redshift.c:137 ../src/redshift.c:1111 +msgid "Night" +msgstr "Gece" + +#: ../src/redshift.c:138 +msgid "Transition" +msgstr "Dönüşüm" + +#: ../src/redshift.c:225 +#, c-format +msgid "Period: %s\n" +msgstr "Dönem: %s\n" + +#: ../src/redshift.c:228 +#, c-format +msgid "Period: %s (%.2f%% day)\n" +msgstr "Dönem: %s (%.2f%% day)\n" + +#. TRANSLATORS: Abbreviation for `north' +#: ../src/redshift.c:240 +msgid "N" +msgstr "K" + +#. TRANSLATORS: Abbreviation for `south' +#: ../src/redshift.c:242 +msgid "S" +msgstr "G" + +#. TRANSLATORS: Abbreviation for `east' +#: ../src/redshift.c:244 +msgid "E" +msgstr "D" + +#. TRANSLATORS: Abbreviation for `west' +#: ../src/redshift.c:246 +msgid "W" +msgstr "B" + +#. TRANSLATORS: Append degree symbols after %f if possible. +#. The string following each number is an abreviation for +#. north, source, east or west (N, S, E, W). +#: ../src/redshift.c:251 +#, c-format +msgid "Location: %.2f %s, %.2f %s\n" +msgstr "Konum: %.2f %s, %.2f %s\n" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "Renk sıcaklığı: %uK\n" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "Parlaklık: %.2f\n" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Durum: %s\n" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Pasif" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Etkin" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "Parlaklık: %.2f:%.2f\n" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "Kullanılan yöntem `%s'.\n" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Kullanımı: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Günün saatine göre renk sicaklığını ayarla.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "" + +#: ../src/config-ini.c:167 +msgid "Malformed section header in config file.\n" +msgstr "" + +#: ../src/config-ini.c:203 +msgid "Malformed assignment in config file.\n" +msgstr "" + +#: ../src/config-ini.c:214 +msgid "Assignment outside section in config file.\n" +msgstr "" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "" + +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 +#, c-format +msgid "CRTC %d does not exist. " +msgstr "" + +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 +#, c-format +msgid "Valid CRTCs are [0-%d].\n" +msgstr "" + +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 +#, c-format +msgid "Only CRTC 0 exists.\n" +msgstr "" + +#: ../src/gamma-drm.c:159 +#, c-format +msgid "CRTC %i lost, skipping\n" +msgstr "" + +#: ../src/gamma-drm.c:165 +#, c-format +msgid "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:178 +#, c-format +msgid "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" +msgstr "" + +#: ../src/gamma-drm.c:242 +msgid "Adjust gamma ramps with Direct Rendering Manager.\n" +msgstr "" + +#. TRANSLATORS: DRM help output +#. left column must not be translated +#: ../src/gamma-drm.c:247 +msgid "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-drm.c:260 +#, c-format +msgid "CRTC must be a non-negative integer\n" +msgstr "" + +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 +#, c-format +msgid "Unknown method parameter: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 +#, c-format +msgid "`%s' returned error %d\n" +msgstr "" + +#: ../src/gamma-randr.c:103 +#, c-format +msgid "Unsupported RANDR version (%u.%u)\n" +msgstr "" + +#: ../src/gamma-randr.c:138 +#, c-format +msgid "Screen %i could not be found.\n" +msgstr "" + +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 +#, c-format +msgid "Gamma ramp size too small: %i\n" +msgstr "" + +#: ../src/gamma-randr.c:277 +#, c-format +msgid "Unable to restore CRTC %i\n" +msgstr "" + +#: ../src/gamma-randr.c:301 +msgid "Adjust gamma ramps with the X RANDR extension.\n" +msgstr "" + +#. TRANSLATORS: RANDR help output +#. left column must not be translated +#: ../src/gamma-randr.c:306 +msgid "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 +#, c-format +msgid "X request failed: %s\n" +msgstr "" + +#: ../src/gamma-vidmode.c:140 +msgid "Adjust gamma ramps with the X VidMode extension.\n" +msgstr "" + +#. TRANSLATORS: VidMode help output +#. left column must not be translated +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr "" + +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 +msgid "Unable to save current gamma ramp.\n" +msgstr "" + +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 +msgid "Unable to open device context.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:75 +msgid "Display device does not support gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:115 +msgid "Adjust gamma ramps with the Windows GDI.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:153 +msgid "Unable to restore gamma ramps.\n" +msgstr "" + +#: ../src/gamma-w32gdi.c:211 +msgid "Unable to set gamma ramps.\n" +msgstr "" + +#: ../src/gamma-dummy.c:43 +msgid "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" +msgstr "" + +#: ../src/gamma-dummy.c:60 +msgid "" +"Does not affect the display but prints the color temperature to the " +"terminal.\n" +msgstr "" + +#: ../src/gamma-dummy.c:75 +#, c-format +msgid "Temperature: %i\n" +msgstr "" + +#: ../src/location-geoclue2.c:59 +#, c-format +msgid "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" +msgstr "" + +#: ../src/location-geoclue2.c:107 +#, c-format +msgid "Unable to obtain location: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:150 +#, c-format +msgid "Unable to obtain GeoClue Manager: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:166 +#, c-format +msgid "Unable to obtain GeoClue client path: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:188 +#, c-format +msgid "Unable to obtain GeoClue Client: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:229 +#, c-format +msgid "Unable to set distance threshold: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:253 +#, c-format +msgid "Unable to start GeoClue client: %s.\n" +msgstr "" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "" + +#: ../src/location-corelocation.m:73 +msgid "Not authorized to obtain location from CoreLocation.\n" +msgstr "" + +#: ../src/location-corelocation.m:111 +#, c-format +msgid "Error obtaining location from CoreLocation: %s\n" +msgstr "" + +#: ../src/location-corelocation.m:120 +msgid "Waiting for authorization to obtain location...\n" +msgstr "" + +#: ../src/location-corelocation.m:122 +msgid "Request for location was not authorized!\n" +msgstr "" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "" + +#: ../src/location-corelocation.m:235 +msgid "Use the location as discovered by the Corelocation provider.\n" +msgstr "" + +#: ../src/location-manual.c:59 +msgid "Latitude and longitude must be set.\n" +msgstr "" + +#: ../src/location-manual.c:75 +msgid "Specify location manually.\n" +msgstr "" + +#. TRANSLATORS: Manual location help output +#. left column must not be translated +#: ../src/location-manual.c:80 +msgid "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" +msgstr "" + +#: ../src/location-manual.c:83 +msgid "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" +msgstr "" + +#: ../src/location-manual.c:97 +msgid "Malformed argument.\n" +msgstr "" + +#: ../src/redshift-gtk/statusicon.py:78 +msgid "Suspend for" +msgstr "Askıya alma" + +#: ../src/redshift-gtk/statusicon.py:80 +msgid "30 minutes" +msgstr "30 dakika" + +#: ../src/redshift-gtk/statusicon.py:81 +msgid "1 hour" +msgstr "1 saat" + +#: ../src/redshift-gtk/statusicon.py:82 +msgid "2 hours" +msgstr "2 saat" + +#: ../src/redshift-gtk/statusicon.py:91 +msgid "Autostart" +msgstr "Otomatik başlat" + +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 +msgid "Info" +msgstr "Bilgi" + +#: ../src/redshift-gtk/statusicon.py:108 +msgid "Quit" +msgstr "Çıkış" + +#: ../src/redshift-gtk/statusicon.py:146 +msgid "Close" +msgstr "" + +#: ../src/redshift-gtk/statusicon.py:300 +msgid "<b>Status:</b> {}" +msgstr "<b>Durum:</b> {}" + +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 +msgid "Color temperature" +msgstr "Renk sıcaklığı" + +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 +msgid "Period" +msgstr "Dönem" + +#: ../src/redshift-gtk/statusicon.py:318 +msgid "Location" +msgstr "Konum" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "" diff --git a/po/uk.po b/po/uk.po new file mode 100644 index 0000000..a365115 --- /dev/null +++ b/po/uk.po @@ -0,0 +1,873 @@ +# Ukrainian translation for redshift +# Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 +# This file is distributed under the same license as the redshift package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: redshift\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2017-10-26 11:19+0000\n" +"Last-Translator: Vitalii Paslavskyi <vpaslavskyi@gmail.com>\n" +"Language-Team: Ukrainian <uk@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 +msgid "" +"Redshift adjusts the color temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." +msgstr "" +"Redshift налаштовує колірну температуру вашого дисплею відповідно до " +"навколишнього природного середовища. Це може зменшити втому ваших очей під " +"час роботи перед екраном в ночі." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 +msgid "" +"The color temperature is set according to the position of the sun. A " +"different color temperature is set during night and daytime. During twilight " +"and early morning, the color temperature transitions smoothly from night to " +"daytime temperature to allow your eyes to slowly adapt." +msgstr "" +"Колірна температура налаштовується відповідно до позиції сонця. Різна " +"колірна температура відображення монітору вмикається у залежності від " +"періоду доби. Під час настання сутінків чи сходу сонця, колірна температура " +"повільно переходить із нічної до денної температури, що дозволяє вашим очам " +"повільно адаптуватися." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 +msgid "" +"This program provides a status icon that allows the user to control Redshift." +msgstr "" +"Ця програма супроводжується статусною піктограмою, що дозволяє користувачеві " +"контролювати Redshift." + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 +msgid "" +"The Redshift information window overlaid with an example of the redness " +"effect" +msgstr "" +"Інформаційне вікно Redshift накладене прикладом ефекту почервонніння" + +#: ../data/applications/redshift.desktop.in.h:1 +#: ../data/applications/redshift-gtk.desktop.in.h:1 +msgid "Redshift" +msgstr "Redshift" + +#: ../data/applications/redshift.desktop.in.h:2 +#: ../data/applications/redshift-gtk.desktop.in.h:2 +msgid "Color temperature adjustment" +msgstr "Налаштування колірної температури" + +#: ../data/applications/redshift.desktop.in.h:3 +#: ../data/applications/redshift-gtk.desktop.in.h:3 +msgid "Color temperature adjustment tool" +msgstr "Знаряддя налаштувань колірної температури" + +#. TRANSLATORS: Name printed when period of day is unknown +#: ../src/redshift.c:135 +msgid "None" +msgstr "Невідомо" + +#: ../src/redshift.c:136 ../src/redshift.c:1107 +msgid "Daytime" +msgstr "День" + +#: ../src/redshift.c:137 ../src/redshift.c:1111 +msgid "Night" +msgstr "Ніч" + +#: ../src/redshift.c:138 +msgid "Transition" +msgstr "Перехід" + +#: ../src/redshift.c:225 +#, c-format +msgid "Period: %s\n" +msgstr "Період: %s\n" + +#: ../src/redshift.c:228 +#, c-format +msgid "Period: %s (%.2f%% day)\n" +msgstr "Період: %s (%.2f%% днів)\n" + +#. TRANSLATORS: Abbreviation for `north' +#: ../src/redshift.c:240 +msgid "N" +msgstr "Пн" + +#. TRANSLATORS: Abbreviation for `south' +#: ../src/redshift.c:242 +msgid "S" +msgstr "Пд" + +#. TRANSLATORS: Abbreviation for `east' +#: ../src/redshift.c:244 +msgid "E" +msgstr "Сх" + +#. TRANSLATORS: Abbreviation for `west' +#: ../src/redshift.c:246 +msgid "W" +msgstr "Зх" + +#. TRANSLATORS: Append degree symbols after %f if possible. +#. The string following each number is an abreviation for +#. north, source, east or west (N, S, E, W). +#: ../src/redshift.c:251 +#, c-format +msgid "Location: %.2f %s, %.2f %s\n" +msgstr "Місце знаходження: %.2f %s, %.2f %s\n" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "Ініціалізація %s помилкова.\n" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "Помилка при ввімкнені %s опції.\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "Спробуйте `-l %s:help' для отримання додаткової інформації.\n" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "Не вдалося проаналізувати параметр `% s '.\n" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "Не вдалось запустити постачальника %s.\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "Спробуйте `-m %s:help' для додаткової інформації.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "Спробуйте -m %s:help' для додаткової інформації.\n" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "Не вдалось запустити метод налаштувань %s.\n" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "Широта повинна бути між %.1f та %.1f.\n" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "Довгота повинна бути між %.1f та %.1f.\n" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "Неможливо зчитати системний час.\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "Очікування первинного місця розташування щоб стати доступним...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "Неможливо отримати місце знаходження від провайдера.\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "Отримано недійсне місце знаходження від провайдера.\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "Колірна температура: %uK\n" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "Яскравість: %.2f\n" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "Статус: %s\n" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "Вимкнено" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "Увімкнено" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "Невдале налаштування колірної температури.\n" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "" +"Місце знаходження тимчасово недоступне; Використовується попереднє місце " +"знаходження поки воно не буде доступним...\n" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "Часткова конфігурація часу не підтримується!\n" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "Недійсна конфігурація світанку / сутінків!\n" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "Під'єднання до постачальника місця знаходження '%s'...\n" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "Під'єднання до наступного постачальника...\n" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "Використовується постачальник `%s'.\n" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "Більше немає постачальників місця знаходження для нової спроби.\n" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "" +"Вища точка перепаду висот не може бути нижчою, ніж нижня точка перепад " +"висот.\n" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "Сонцестояння: день більший %.1f, ніч менша %.1f\n" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "Температура: %dK в день, %dK у ночі\n" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "температура повинна бути між %uK і %uK.\n" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "Яскравість повинна бути між %.1f та %.1f.\n" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "Яскравість: %.2f:%.2f\n" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "Величина гамми повинна бути між %.1f та %.1f.\n" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "Гамма (%s): %.3f, %.3f, %.3f\n" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "Випрубовується новий спосіб...\n" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "Використовується спосіб `%s'.\n" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "Більше немає способів використання.\n" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "Очікування на дійсне місце знаходження ...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "Розташування сонця: %f\n" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "Для зупинки натисніть ctrl-c ...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "Використовується: %s -l ШИР:ДОВ -t ДЕНЬ:НІЧ [ВИБІР...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "Увімкнути колірну температуру екрану відповідно періоду дня.\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\t Відображає це повідомлення допомоги\n" +" -v\t\tПовне виведення\n" +" -V\t\tПоказує версію програми\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b DAY:NIGHT\tЯскравість екрану (між 0.1 таd 1.0)\n" +" -c FILE\tЗавантажити налаштування із конфігураційного файлу\n" +" -g R:G:B\tЗастосування додатквого регулювання гамми\n" +" -l LAT:LON\tВаше дійсне місце знаходження\n" +" -l PROVIDER\tВибір постачальника автоматичних оновлень місця знаходження\n" +" \t\t(впишіть `list' для відображення доступних постачальників)\n" +" -m METHOD\tСпосіб використання колірної температури\n" +" \t\t(Впишість `list' для відображення доступних способів)\n" +" -o\t\tОдноразовий режим (тимчасове налаштування колірної температури)\n" +" -O TEMP\tОдноразовий ручний режим (вмикає колірну температуру)\n" +" -p\t\tРежим друку (лише друкує параметри і закривається)\n" +" -P\t\tСкидання наявних гамма-рамп перед застосуванням нового кольорового " +"ефекту\n" +" -x\t\tСкидання режиму (видаляє налаштування з екрану)\n" +" -r\t\tВимкнення затухання між колірними температурами\n" +" -t DAY:NIGHT\tУвімкнення колірної температури день/ніч\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"Встановлена нейтральна температура - %uK. Використовуючи регулятор, \n" +"колірна температура екрану не змінюватиметься. Регулювання колірної \n" +"температури до вищого значення ніж цей результат до більш блакитного\n" +"світла, і зменшення значення буде відображати більше червоного світла.\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"Значення за замовчуванням:\n" +"\n" +" Денна температура: %uK\n" +" Нічна температура: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "Наявні способи налаштувань:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "Вкажіть параметри, розділені двокрапками, з `-m METHOD:OPTIONS'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "Для допомоги спробуйте `-m METHOD:help'.\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "Доступні постачальники місця знаходження:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "" +"Вкажіть параметри, розділені двокрапками, з `-l ПОСТАЧАЛЬНИК: НАЛАШТУВАННЯ " +"'.\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "Для допомоги спробуйте `-l ПОСТАЧАЛЬНИК:help' .\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "Спотворений гамма-аргумент.\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "Для додаткової інформації спробуйте `-h'.\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "Невідомий постачальник місця знаходження `%s'.\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "Невідомий спосіб налаштувань `%s'.\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "Спотворений температурний аргумент.\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "Спотворене налаштування гамми.\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "Неправильно сформульовано налаштування часу доби \"% s\".\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "Невірно сформоване налаштування часу сутінків '% s'.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "Невідоме налаштування конфігурації `%s'.\n" + +#: ../src/config-ini.c:167 +msgid "Malformed section header in config file.\n" +msgstr "Неправильний заголовок розділу у файлі конфігурації.\n" + +#: ../src/config-ini.c:203 +msgid "Malformed assignment in config file.\n" +msgstr "Неправильне форматування в файлі конфігурації.\n" + +#: ../src/config-ini.c:214 +msgid "Assignment outside section in config file.\n" +msgstr "Призначення зовнішнього розділу в конфігураційному файлі.\n" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "Не вдалося відкрити DRM-пристрій:% s\n" + +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "Не вдалося отримати ресурси режиму DRM\n" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 +#, c-format +msgid "CRTC %d does not exist. " +msgstr "CRTC %d не існує. " + +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 +#, c-format +msgid "Valid CRTCs are [0-%d].\n" +msgstr "Дійсний CRTCs є [0-%d].\n" + +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 +#, c-format +msgid "Only CRTC 0 exists.\n" +msgstr "Лише CRTC 0 в наявності.\n" + +#: ../src/gamma-drm.c:159 +#, c-format +msgid "CRTC %i lost, skipping\n" +msgstr "CRTC %i загублено, пропускаю\n" + +#: ../src/gamma-drm.c:165 +#, c-format +msgid "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" +msgstr "" +"не вдалось отримати гамму-рампу для CRTC %i\n" +"на відеокарті %i, ігнорування пристрою.\n" + +#: ../src/gamma-drm.c:178 +#, c-format +msgid "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" +msgstr "" +"DRM не може прочитати гамма-рампу CRTC %i на\n" +"відеокарті %i, ігнорування пристрою.\n" + +#: ../src/gamma-drm.c:242 +msgid "Adjust gamma ramps with Direct Rendering Manager.\n" +msgstr "Налаштувати гамма-рампу за допомогою Direct Rendering Manager.\n" + +#. TRANSLATORS: DRM help output +#. left column must not be translated +#: ../src/gamma-drm.c:247 +msgid "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" +msgstr "" +" card=N\t Щоб застосувати коригування до відеокарти\n" +" crtc=N\t Щоб застосувати коригування CRTC\n" + +#: ../src/gamma-drm.c:260 +#, c-format +msgid "CRTC must be a non-negative integer\n" +msgstr "CRTC має бути невід'ємним цілим числом\n" + +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 +#, c-format +msgid "Unknown method parameter: `%s'.\n" +msgstr "Невідомий параметр способу : `%s'.\n" + +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 +#, c-format +msgid "`%s' returned error %d\n" +msgstr "`%s' повернута помилка %d\n" + +#: ../src/gamma-randr.c:103 +#, c-format +msgid "Unsupported RANDR version (%u.%u)\n" +msgstr "Непідримувана версія RANDR (%u.%u)\n" + +#: ../src/gamma-randr.c:138 +#, c-format +msgid "Screen %i could not be found.\n" +msgstr "Екран %i не знайдений.\n" + +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 +#, c-format +msgid "Gamma ramp size too small: %i\n" +msgstr "Розмір гамма-рампи надто малий: %i\n" + +#: ../src/gamma-randr.c:277 +#, c-format +msgid "Unable to restore CRTC %i\n" +msgstr "Неможливо відновити CRTC %i\n" + +#: ../src/gamma-randr.c:301 +msgid "Adjust gamma ramps with the X RANDR extension.\n" +msgstr "Налаштувати гамма-рампу за допомогою додатку X RANDR.\n" + +#. TRANSLATORS: RANDR help output +#. left column must not be translated +#: ../src/gamma-randr.c:306 +msgid "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" screen=N\t\tЩоб застосувати коригування до X монітору\n" +" crtc=N\tЩоб застосувати налаштування до списку CRTCs, розділеного комою\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "Неможливо прочитати кількість екранів: `%s'.\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "" +"пареметр `%s` не завжди увімкнутий; Використайте опцію `%s` у командній " +"стрічці для вимкнення.\n" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 +#, c-format +msgid "X request failed: %s\n" +msgstr "X запит не виконаний: %s\n" + +#: ../src/gamma-vidmode.c:140 +msgid "Adjust gamma ramps with the X VidMode extension.\n" +msgstr "Налаштування гамма-рампи за допомогою додатку X VidMode.\n" + +#. TRANSLATORS: VidMode help output +#. left column must not be translated +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tX екран для застосування налаштувань\n" + +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 +msgid "Unable to save current gamma ramp.\n" +msgstr "Неможливо зберегти дану гамма-рампу\n" + +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "Налаштувати гамма-рампи на macOS використовуючи Quartz.\n" + +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 +msgid "Unable to open device context.\n" +msgstr "Неможливо відкрити контекстне меню пристрою.\n" + +#: ../src/gamma-w32gdi.c:75 +msgid "Display device does not support gamma ramps.\n" +msgstr "Монітор пристрою не підтримує гамма-рампи.\n" + +#: ../src/gamma-w32gdi.c:115 +msgid "Adjust gamma ramps with the Windows GDI.\n" +msgstr "Налаштувати гамма-рампи за допомогою Windows GDI.\n" + +#: ../src/gamma-w32gdi.c:153 +msgid "Unable to restore gamma ramps.\n" +msgstr "Неможливо відновити гамма-рампи.\n" + +#: ../src/gamma-w32gdi.c:211 +msgid "Unable to set gamma ramps.\n" +msgstr "неможливо увімкнути гамма-рампи.\n" + +#: ../src/gamma-dummy.c:43 +msgid "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" +msgstr "" +"УВАГА: Використовується фіктивний гамма-метод! Цей гамма-метод не вплине на " +"дисплей.\n" + +#: ../src/gamma-dummy.c:60 +msgid "" +"Does not affect the display but prints the color temperature to the " +"terminal.\n" +msgstr "" +"Не застосовувати на екрані, лише надрукувати колірну температуру у " +"терміналі.\n" + +#: ../src/gamma-dummy.c:75 +#, c-format +msgid "Temperature: %i\n" +msgstr "Температура: %i\n" + +#: ../src/location-geoclue2.c:59 +#, c-format +msgid "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" +msgstr "" +"Доступ до доного місця знаходження скасований GeoClue!\n" +"Переконайтесь, сервіси місця знаходження увімкнуті і що Redshift\n" +"дозволяється їх використовувати. Додаткова інформація \n" +"https://github.com/jonls/redshift#faq\n" + +#: ../src/location-geoclue2.c:107 +#, c-format +msgid "Unable to obtain location: %s.\n" +msgstr "Неможливо отримати місцеположення:% s.\n" + +#: ../src/location-geoclue2.c:150 +#, c-format +msgid "Unable to obtain GeoClue Manager: %s.\n" +msgstr "Не вдається отримати GeoClue Manager:% s.\n" + +#: ../src/location-geoclue2.c:166 +#, c-format +msgid "Unable to obtain GeoClue client path: %s.\n" +msgstr "Неможливо отримати шлях клієнта GeoClue:% s.\n" + +#: ../src/location-geoclue2.c:188 +#, c-format +msgid "Unable to obtain GeoClue Client: %s.\n" +msgstr "Неможливо отримати клієнта GeoClue:% s.\n" + +#: ../src/location-geoclue2.c:229 +#, c-format +msgid "Unable to set distance threshold: %s.\n" +msgstr "Неможливо встановити порогове значення відстані:% s.\n" + +#: ../src/location-geoclue2.c:253 +#, c-format +msgid "Unable to start GeoClue client: %s.\n" +msgstr "Неможливо запустити клієнт GeoClue: %s.\n" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "Не вдалось запустити постачальника GeoClue2 !\n" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "Використовуйте місцезнаходження надане постачальником GeoClue2.\n" + +#: ../src/location-corelocation.m:73 +msgid "Not authorized to obtain location from CoreLocation.\n" +msgstr "Не авторизований для отримання місцезнаходження з CoreLocation.\n" + +#: ../src/location-corelocation.m:111 +#, c-format +msgid "Error obtaining location from CoreLocation: %s\n" +msgstr "Помилка отримання місцеположення з CoreLocation: %s\n" + +#: ../src/location-corelocation.m:120 +msgid "Waiting for authorization to obtain location...\n" +msgstr "Очікування авторизації для отримання місцезнаходження ...\n" + +#: ../src/location-corelocation.m:122 +msgid "Request for location was not authorized!\n" +msgstr "Запит на місцезнаходження не дозволено!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "Не вдалося запустити постачальника CoreLocation !\n" + +#: ../src/location-corelocation.m:235 +msgid "Use the location as discovered by the Corelocation provider.\n" +msgstr "" +"Використовуйте місце розташування, виявлене постачальником Corelocation.\n" + +#: ../src/location-manual.c:59 +msgid "Latitude and longitude must be set.\n" +msgstr "Довгота та широта повинні бути вказані.\n" + +#: ../src/location-manual.c:75 +msgid "Specify location manually.\n" +msgstr "Вказати місце розташування вручну.\n" + +#. TRANSLATORS: Manual location help output +#. left column must not be translated +#: ../src/location-manual.c:80 +msgid "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" +msgstr "" +" lat=N\t\tШирота\n" +" lon=N\t\tДовгота\n" + +#: ../src/location-manual.c:83 +msgid "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" +msgstr "" +"Обидва значення повинні бути із комою, негативні\n" +"значення, що представляють захід / південь відповідно.\n" + +#: ../src/location-manual.c:97 +msgid "Malformed argument.\n" +msgstr "Невірно сформований аргумент!\n" + +#: ../src/redshift-gtk/statusicon.py:78 +msgid "Suspend for" +msgstr "Призупинити через" + +#: ../src/redshift-gtk/statusicon.py:80 +msgid "30 minutes" +msgstr "30 хвилини" + +#: ../src/redshift-gtk/statusicon.py:81 +msgid "1 hour" +msgstr "1 година" + +#: ../src/redshift-gtk/statusicon.py:82 +msgid "2 hours" +msgstr "2 години" + +#: ../src/redshift-gtk/statusicon.py:91 +msgid "Autostart" +msgstr "Автозапуск" + +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 +msgid "Info" +msgstr "Інформація" + +#: ../src/redshift-gtk/statusicon.py:108 +msgid "Quit" +msgstr "Вихід" + +#: ../src/redshift-gtk/statusicon.py:146 +msgid "Close" +msgstr "Закрити" + +#: ../src/redshift-gtk/statusicon.py:300 +msgid "<b>Status:</b> {}" +msgstr "<b>Статус:</b> {}" + +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 +msgid "Color temperature" +msgstr "Колірна температура" + +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 +msgid "Period" +msgstr "Період" + +#: ../src/redshift-gtk/statusicon.py:318 +msgid "Location" +msgstr "Місцезнаходження" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "Для отримання допомоги, запустіть `redshift -h`." diff --git a/po/zh_CN.po b/po/zh_CN.po index 854d896..2577934 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,23 +7,23 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://github.com/jonls/redshift/issues\n" -"POT-Creation-Date: 2015-02-22 11:23-0500\n" -"PO-Revision-Date: 2014-12-31 23:56+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2015-12-11 09:28+0000\n" +"Last-Translator: Dmitry <dmitrydmitry761@gmail.com>\n" "Language-Team: Chinese (Simplified) <zh_CN@li.org>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-01-04 20:00+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: \n" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 msgid "" "Redshift adjusts the color temperature of your screen according to your " "surroundings. This may help your eyes hurt less if you are working in front " "of the screen at night." -msgstr "" +msgstr "红移(Redshift) 根据你的周围环境调节你的屏幕色温。如果夜晚在屏幕前工作,这可以减少你眼睛受到的伤害。" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 msgid "" @@ -31,784 +31,813 @@ msgid "" "different color temperature is set during night and daytime. During twilight " "and early morning, the color temperature transitions smoothly from night to " "daytime temperature to allow your eyes to slowly adapt." -msgstr "" +msgstr "该软件可以根据日照位置、日夜变化来设置屏幕色温,随着时间推移,色温会逐渐转变,保证让您的眼睛能够舒舒服服地适应。" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 msgid "" "This program provides a status icon that allows the user to control Redshift." -msgstr "" +msgstr "该程序提供了状态图标允许用户通过它控制 Redshift 。" #: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 msgid "" "The Redshift information window overlaid with an example of the redness " "effect" -msgstr "" +msgstr "Redshift 信息窗口覆盖了红移效果的示例。" +#: ../data/applications/redshift.desktop.in.h:1 #: ../data/applications/redshift-gtk.desktop.in.h:1 msgid "Redshift" -msgstr "" +msgstr "红移" +#: ../data/applications/redshift.desktop.in.h:2 #: ../data/applications/redshift-gtk.desktop.in.h:2 msgid "Color temperature adjustment" -msgstr "" +msgstr "色温调节" +#: ../data/applications/redshift.desktop.in.h:3 #: ../data/applications/redshift-gtk.desktop.in.h:3 msgid "Color temperature adjustment tool" -msgstr "" +msgstr "色温调节工具" #. TRANSLATORS: Name printed when period of day is unknown -#: ../src/redshift.c:319 +#: ../src/redshift.c:135 msgid "None" -msgstr "" +msgstr "无" -#: ../src/redshift.c:320 ../src/redshift.c:1546 +#: ../src/redshift.c:136 ../src/redshift.c:1107 msgid "Daytime" -msgstr "" +msgstr "日间" -#: ../src/redshift.c:321 ../src/redshift.c:1549 +#: ../src/redshift.c:137 ../src/redshift.c:1111 msgid "Night" -msgstr "" +msgstr "夜间" -#: ../src/redshift.c:322 +#: ../src/redshift.c:138 msgid "Transition" -msgstr "" +msgstr "过渡" -#: ../src/redshift.c:389 +#: ../src/redshift.c:225 #, c-format msgid "Period: %s\n" -msgstr "" +msgstr "时段: %s\n" -#: ../src/redshift.c:392 +#: ../src/redshift.c:228 #, c-format msgid "Period: %s (%.2f%% day)\n" -msgstr "" +msgstr "时段: %s (%.2f%% 日间)\n" #. TRANSLATORS: Abbreviation for `north' -#: ../src/redshift.c:404 +#: ../src/redshift.c:240 msgid "N" -msgstr "" +msgstr "北纬" #. TRANSLATORS: Abbreviation for `south' -#: ../src/redshift.c:406 +#: ../src/redshift.c:242 msgid "S" -msgstr "" +msgstr "南纬" #. TRANSLATORS: Abbreviation for `east' -#: ../src/redshift.c:408 +#: ../src/redshift.c:244 msgid "E" -msgstr "" +msgstr "东经" #. TRANSLATORS: Abbreviation for `west' -#: ../src/redshift.c:410 +#: ../src/redshift.c:246 msgid "W" -msgstr "" +msgstr "西经" #. TRANSLATORS: Append degree symbols after %f if possible. #. The string following each number is an abreviation for #. north, source, east or west (N, S, E, W). -#: ../src/redshift.c:415 +#: ../src/redshift.c:251 #, c-format msgid "Location: %.2f %s, %.2f %s\n" -msgstr "" - -#. TRANSLATORS: help output 1 -#. LAT is latitude, LON is longitude, -#. DAY is temperature at daytime, -#. NIGHT is temperature at night -#. no-wrap -#: ../src/redshift.c:452 -#, c-format -msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" -msgstr "" - -#. TRANSLATORS: help output 2 -#. no-wrap -#: ../src/redshift.c:458 -msgid "Set color temperature of display according to time of day.\n" -msgstr "" - -#. TRANSLATORS: help output 3 -#. no-wrap -#: ../src/redshift.c:464 -msgid "" -" -h\t\tDisplay this help message\n" -" -v\t\tVerbose output\n" -" -V\t\tShow program version\n" -msgstr "" - -#. TRANSLATORS: help output 4 -#. `list' must not be translated -#. no-wrap -#: ../src/redshift.c:472 -msgid "" -" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" -" -c FILE\tLoad settings from specified configuration file\n" -" -g R:G:B\tAdditional gamma correction to apply\n" -" -l LAT:LON\tYour current location\n" -" -l PROVIDER\tSelect provider for automatic location updates\n" -" \t\t(Type `list' to see available providers)\n" -" -m METHOD\tMethod to use to set color temperature\n" -" \t\t(Type `list' to see available methods)\n" -" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" -" -O TEMP\tOne shot manual mode (set color temperature)\n" -" -p\t\tPrint mode (only print parameters and exit)\n" -" -x\t\tReset mode (remove adjustment from screen)\n" -" -r\t\tDisable temperature transitions\n" -" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" -msgstr "" - -#. TRANSLATORS: help output 5 -#: ../src/redshift.c:492 -#, c-format -msgid "" -"The neutral temperature is %uK. Using this value will not\n" -"change the color temperature of the display. Setting the\n" -"color temperature to a value higher than this results in\n" -"more blue light, and setting a lower value will result in\n" -"more red light.\n" -msgstr "" - -#. TRANSLATORS: help output 6 -#: ../src/redshift.c:502 -#, c-format -msgid "" -"Default values:\n" -"\n" -" Daytime temperature: %uK\n" -" Night temperature: %uK\n" -msgstr "" - -#. TRANSLATORS: help output 7 -#: ../src/redshift.c:510 -#, c-format -msgid "Please report bugs to <%s>\n" -msgstr "" - -#: ../src/redshift.c:516 -msgid "Available adjustment methods:\n" -msgstr "" - -#: ../src/redshift.c:522 -msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:525 -msgid "Try `-m METHOD:help' for help.\n" -msgstr "" - -#: ../src/redshift.c:531 -msgid "Available location providers:\n" -msgstr "" - -#: ../src/redshift.c:537 -msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" -msgstr "" - -#. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:540 -msgid "Try `-l PROVIDER:help' for help.\n" -msgstr "" +msgstr "位置:%.2f %s, %.2f %s\n" -#: ../src/redshift.c:553 ../src/redshift.c:645 +#: ../src/redshift.c:325 ../src/redshift.c:416 #, c-format msgid "Initialization of %s failed.\n" -msgstr "" +msgstr "%s 初始化进程失败。\n" -#: ../src/redshift.c:568 ../src/redshift.c:612 ../src/redshift.c:660 -#: ../src/redshift.c:692 +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 #, c-format msgid "Failed to set %s option.\n" -msgstr "" +msgstr "设置 %s 选项失败。\n" #. TRANSLATORS: `help' must not be #. translated. #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:573 ../src/redshift.c:615 +#: ../src/redshift.c:345 ../src/redshift.c:387 #, c-format msgid "Try `-l %s:help' for more information.\n" -msgstr "" +msgstr "尝试“-l %s:help”来获取更多信息。\n" -#: ../src/redshift.c:601 ../src/redshift.c:682 +#: ../src/redshift.c:373 ../src/redshift.c:453 #, c-format msgid "Failed to parse option `%s'.\n" -msgstr "" +msgstr "解析“%s”选项失败。\n" -#: ../src/redshift.c:628 +#: ../src/redshift.c:400 #, c-format msgid "Failed to start provider %s.\n" -msgstr "" +msgstr "启动服务 %s 失败。\n" #. TRANSLATORS: `help' must not be #. translated. -#: ../src/redshift.c:665 +#: ../src/redshift.c:436 #, c-format msgid "Try `-m %s:help' for more information.\n" -msgstr "" +msgstr "尝试“-m %s:help”来获取更多信息。\n" #. TRANSLATORS: `help' must not be translated. -#: ../src/redshift.c:695 +#: ../src/redshift.c:466 #, c-format msgid "Try -m %s:help' for more information.\n" -msgstr "" +msgstr "尝试“-m %s:help”来获取更多信息。\n" -#: ../src/redshift.c:707 +#: ../src/redshift.c:478 #, c-format msgid "Failed to start adjustment method %s.\n" -msgstr "" +msgstr "启动调节模式 %s 失败。\n" -#: ../src/redshift.c:870 ../src/redshift.c:898 +#: ../src/redshift.c:509 #, c-format -msgid "Status: %s\n" -msgstr "" - -#: ../src/redshift.c:870 ../src/redshift.c:899 -#: ../src/redshift-gtk/statusicon.py:260 ../src/redshift-gtk/statusicon.py:466 -msgid "Enabled" -msgstr "" +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "纬度必须介于 %.1f 和 %.1f。\n" -#: ../src/redshift.c:899 ../src/redshift-gtk/statusicon.py:466 -msgid "Disabled" -msgstr "" +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "经度必须介于 %.1f 和 %.1f。\n" -#: ../src/redshift.c:927 ../src/redshift.c:1600 +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 msgid "Unable to read system time.\n" -msgstr "" +msgstr "无法读取系统时间。\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "正在等待初始位置可用...\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "无法从服务获取位置信息。\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "从提供程序返回的位置无效。\n" -#: ../src/redshift.c:999 ../src/redshift.c:1623 ../src/redshift.c:1652 +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 #, c-format msgid "Color temperature: %uK\n" -msgstr "" +msgstr "色温:%uK\n" -#: ../src/redshift.c:1004 ../src/redshift.c:1625 +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 #, c-format msgid "Brightness: %.2f\n" -msgstr "" - -#: ../src/redshift.c:1013 ../src/redshift.c:1636 ../src/redshift.c:1660 -#: ../src/redshift.c:1680 -msgid "Temperature adjustment failed.\n" -msgstr "" +msgstr "亮度:%.2f\n" -#: ../src/redshift.c:1105 -msgid "Malformed gamma argument.\n" -msgstr "" +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "状态:%s\n" -#: ../src/redshift.c:1107 ../src/redshift.c:1215 ../src/redshift.c:1234 -msgid "Try `-h' for more information.\n" -msgstr "" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "已禁用" -#: ../src/redshift.c:1154 ../src/redshift.c:1355 -#, c-format -msgid "Unknown location provider `%s'.\n" -msgstr "" +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "已启用" -#. TRANSLATORS: This refers to the method -#. used to adjust colors e.g VidMode -#: ../src/redshift.c:1185 ../src/redshift.c:1341 -#, c-format -msgid "Unknown adjustment method `%s'.\n" -msgstr "" +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "色温调节失败。\n" -#: ../src/redshift.c:1213 -msgid "Malformed temperature argument.\n" -msgstr "" +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "变得可用...\n" -#: ../src/redshift.c:1305 ../src/redshift.c:1318 ../src/redshift.c:1329 -msgid "Malformed gamma setting.\n" -msgstr "" +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "不支持部分时间配置!\n" -#: ../src/redshift.c:1364 -#, c-format -msgid "Unknown configuration setting `%s'.\n" -msgstr "" +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "黎明/黄昏时间配置无效!\n" -#: ../src/redshift.c:1422 +#: ../src/redshift.c:1006 #, c-format msgid "Trying location provider `%s'...\n" -msgstr "" +msgstr "正在尝试位置服务”%s“。\n" -#: ../src/redshift.c:1427 +#: ../src/redshift.c:1011 msgid "Trying next provider...\n" -msgstr "" +msgstr "正在尝试下一个服务…\n" -#: ../src/redshift.c:1433 +#: ../src/redshift.c:1017 #, c-format msgid "Using provider `%s'.\n" -msgstr "" +msgstr "正在使用服务”%s“。\n" -#: ../src/redshift.c:1441 +#: ../src/redshift.c:1025 msgid "No more location providers to try.\n" -msgstr "" - -#: ../src/redshift.c:1450 -msgid "Unable to get location from provider.\n" -msgstr "" +msgstr "没有更多的位置服务可供尝试。\n" -#: ../src/redshift.c:1460 +#: ../src/redshift.c:1034 #, c-format -msgid "Temperatures: %dK at day, %dK at night\n" -msgstr "" +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "高过渡值不能低于低过渡值。\n" #. TRANSLATORS: Append degree symbols if possible. -#: ../src/redshift.c:1465 +#: ../src/redshift.c:1041 #, c-format msgid "Solar elevations: day above %.1f, night below %.1f\n" -msgstr "" +msgstr "太阳高度:日间高于 %.1f 度,夜间低于 %.1f 度\n" -#: ../src/redshift.c:1473 +#: ../src/redshift.c:1049 #, c-format -msgid "Latitude must be between %.1f and %.1f.\n" -msgstr "" - -#: ../src/redshift.c:1482 -#, c-format -msgid "Longitude must be between %.1f and %.1f.\n" -msgstr "" +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "色温:日间 %dK,夜间 %dK\n" -#: ../src/redshift.c:1493 ../src/redshift.c:1511 +#: ../src/redshift.c:1060 ../src/redshift.c:1071 #, c-format msgid "Temperature must be between %uK and %uK.\n" -msgstr "" - -#: ../src/redshift.c:1501 -#, c-format -msgid "" -"High transition elevation cannot be lower than the low transition " -"elevation.\n" -msgstr "" +msgstr "色温必须介于 %uK 和 %uK。\n" -#: ../src/redshift.c:1523 +#: ../src/redshift.c:1083 #, c-format msgid "Brightness values must be between %.1f and %.1f.\n" -msgstr "" +msgstr "亮度必须介于 %.1f 和 %.1f。\n" -#: ../src/redshift.c:1529 +#: ../src/redshift.c:1089 #, c-format msgid "Brightness: %.2f:%.2f\n" -msgstr "" +msgstr "亮度:%.2f:%.2f\n" -#: ../src/redshift.c:1537 +#: ../src/redshift.c:1098 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" -msgstr "" +msgstr "伽马值必须介于 %.1f 和 %.1f。\n" #. TRANSLATORS: The string in parenthesis is either #. Daytime or Night (translated). -#: ../src/redshift.c:1545 ../src/redshift.c:1548 +#: ../src/redshift.c:1106 ../src/redshift.c:1110 #, c-format msgid "Gamma (%s): %.3f, %.3f, %.3f\n" -msgstr "" +msgstr "伽马 (%s):%.3f, %.3f, %.3f\n" -#: ../src/redshift.c:1572 +#: ../src/redshift.c:1139 msgid "Trying next method...\n" -msgstr "" +msgstr "正在尝试下一个模式…\n" -#: ../src/redshift.c:1577 +#: ../src/redshift.c:1144 #, c-format msgid "Using method `%s'.\n" -msgstr "" +msgstr "正在使用模式 ”%s“。\n" -#: ../src/redshift.c:1584 +#: ../src/redshift.c:1151 msgid "No more methods to try.\n" -msgstr "" +msgstr "没有更多的模式可供尝试。\n" -#. TRANSLATORS: Append degree symbol if possible. -#: ../src/redshift.c:1609 +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "正在等待当前位置可用...\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 #, c-format msgid "Solar elevation: %f\n" -msgstr "" +msgstr "太阳高度:%f度\n" -#: ../src/redshift.c:1645 ../src/redshift.c:1669 ../src/redshift.c:1689 +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 msgid "Press ctrl-c to stop...\n" +msgstr "按 Ctrl-C 来停止…\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "用法:%s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "根据一天中的时间设置显示器的色温。\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" msgstr "" +" -h\t\t显示此帮助信息\n" +" -v\t\t详细输出\n" +" -V\t\t显示程序版本\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b DAY:NIGHT\t要应用的屏幕亮度 (在 0.1 和 1.0 之间)\n" +" -c FILE\t从指定的配置文件加载设置\n" +" -g R:G:B\t要应用的额外伽马校正\n" +" -l LAT:LON\t您当前的位置\n" +" -l PROVIDER\t选择自动位置更新的提供商\n" +" \t\t(输入 “list” 以查看可用的提供者)\n" +" -m METHOD\tMethod 用于设置色温\n" +" \t\t(键入 “list” 以查看可用方法)\n" +" -o\t\t\一拍模式(不连续调节色温)\n" +" -O TEMP\t一次性手动模式(色温设置)\n" +" -p\t\t打印模式(仅打印参数并退出)\n" +" -P\t\t在应用新的颜色效果之前重置现有的伽马斜坡\n" +" -x\t\t重置模式(从屏幕上移除调整)\n" +" -r\t\t禁用色温之间的淡入淡出\n" +" -t DAY:NIGHT\t日/夜色温调节\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "中性温度是 %uK. 使用这个值不会改变颜色\n" +"显示器的温度。 将色温设置为更高的值\n" +"比这会导致更多的蓝光,设置较低的值会导致\n" +"更多的红灯。\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"默认值:\n" +"\n" +" 日间色温:%uK\n" +" 夜间色温:%uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "可用的调节模式:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "以冒号分隔格式指定选项 ”-m METHOD:OPTIONS“\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "尝试 ”-m METHOD:help“ 获取帮助。\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "可用的位置服务:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "以冒号分格的格式指定 “-l PROVIDER:OPTIONS” 选项。\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "尝试 “-l PROVIDER:help” 来获取帮助。\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "异常的伽马参数。\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "尝试“-h”来获取更多信息。\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "未知的位置服务“%s”。\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "未知的调节模式“%s”。\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "异常的色温参数。\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "异常的伽马设置。\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "日出时间设置错误 `%s'.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "畸形的黄昏时间设置 `%s'.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "未知的配置设置“%s”。\n" #: ../src/config-ini.c:167 msgid "Malformed section header in config file.\n" -msgstr "" +msgstr "异常的段头存在于配置文件中。\n" #: ../src/config-ini.c:203 msgid "Malformed assignment in config file.\n" -msgstr "" +msgstr "异常的分配存在于配置文件中。\n" #: ../src/config-ini.c:214 msgid "Assignment outside section in config file.\n" -msgstr "" +msgstr "分配在段外存在于配置文件中。\n" -#: ../src/gamma-drm.c:78 +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "无法打开 DRM 设备: %s\n" + +#: ../src/gamma-drm.c:105 #, c-format msgid "Failed to get DRM mode resources\n" -msgstr "" +msgstr "无法获取 DRM 模式资源\n" -#: ../src/gamma-drm.c:88 ../src/gamma-randr.c:311 +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 #, c-format msgid "CRTC %d does not exist. " -msgstr "" +msgstr "CRTC %d 没有退出。 " -#: ../src/gamma-drm.c:91 ../src/gamma-randr.c:314 +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 #, c-format msgid "Valid CRTCs are [0-%d].\n" -msgstr "" +msgstr "有效的 CRTCs 为 [0-%d]。\n" -#: ../src/gamma-drm.c:94 ../src/gamma-randr.c:317 +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 #, c-format msgid "Only CRTC 0 exists.\n" -msgstr "" +msgstr "只有 CRTC 0 存在。\n" -#: ../src/gamma-drm.c:132 +#: ../src/gamma-drm.c:159 #, c-format msgid "CRTC %i lost, skipping\n" -msgstr "" +msgstr "CRTC %i 丢失,跳过中\n" -#: ../src/gamma-drm.c:138 +#: ../src/gamma-drm.c:165 #, c-format msgid "" "Could not get gamma ramp size for CRTC %i\n" "on graphics card %i, ignoring device.\n" -msgstr "" +msgstr "无法在显卡 %i 上获取 CTRC %i 的伽马斜面大小,忽略设备中。\n" -#: ../src/gamma-drm.c:151 +#: ../src/gamma-drm.c:178 #, c-format msgid "" "DRM could not read gamma ramps on CRTC %i on\n" "graphics card %i, ignoring device.\n" -msgstr "" +msgstr "DRM 无法在显卡 %i 上获取 CTRC %i 的伽马斜面,忽略设备中。\n" -#: ../src/gamma-drm.c:214 +#: ../src/gamma-drm.c:242 msgid "Adjust gamma ramps with Direct Rendering Manager.\n" -msgstr "" +msgstr "使用 Direct Rendering Manager 调整伽马斜面。\n" #. TRANSLATORS: DRM help output #. left column must not be translated -#: ../src/gamma-drm.c:219 +#: ../src/gamma-drm.c:247 msgid "" " card=N\tGraphics card to apply adjustments to\n" " crtc=N\tCRTC to apply adjustments to\n" msgstr "" +" card=N\t用来应用调节的显卡\n" +" crtc=N\t用来应用调节的CRTC\n" -#: ../src/gamma-drm.c:232 +#: ../src/gamma-drm.c:260 #, c-format msgid "CRTC must be a non-negative integer\n" -msgstr "" +msgstr "CRTC 必须是非负整数\n" -#: ../src/gamma-drm.c:236 ../src/gamma-randr.c:297 ../src/gamma-vidmode.c:149 -#: ../src/gamma-quartz.c:172 ../src/gamma-w32gdi.c:121 ../src/gamma-dummy.c:66 -#: ../src/location-geoclue.c:180 ../src/location-geoclue2.c:82 -#: ../src/location-corelocation.m:141 ../src/location-manual.c:96 +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 #, c-format msgid "Unknown method parameter: `%s'.\n" -msgstr "" +msgstr "位置的模式参数:”%s“。\n" -#: ../src/gamma-randr.c:72 ../src/gamma-randr.c:129 ../src/gamma-randr.c:168 -#: ../src/gamma-randr.c:194 ../src/gamma-randr.c:251 ../src/gamma-randr.c:362 +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 #, c-format msgid "`%s' returned error %d\n" -msgstr "" +msgstr "”%s“ 返回了错误 %d。\n" -#: ../src/gamma-randr.c:80 +#: ../src/gamma-randr.c:103 #, c-format msgid "Unsupported RANDR version (%u.%u)\n" -msgstr "" +msgstr "不支持的 RANDR 版本 (%u.%u)\n" -#: ../src/gamma-randr.c:114 +#: ../src/gamma-randr.c:138 #, c-format msgid "Screen %i could not be found.\n" -msgstr "" +msgstr "屏幕 %i 无法找到。\n" -#: ../src/gamma-randr.c:180 ../src/gamma-vidmode.c:87 -#: ../src/gamma-quartz.c:100 +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 #, c-format msgid "Gamma ramp size too small: %i\n" -msgstr "" +msgstr "伽马斜面值太小:%i\n" -#: ../src/gamma-randr.c:253 +#: ../src/gamma-randr.c:277 #, c-format msgid "Unable to restore CRTC %i\n" -msgstr "" +msgstr "无法保存 CRTC %i\n" -#: ../src/gamma-randr.c:274 +#: ../src/gamma-randr.c:301 msgid "Adjust gamma ramps with the X RANDR extension.\n" -msgstr "" +msgstr "使用 X RANDR 扩展调整伽马斜面。\n" #. TRANSLATORS: RANDR help output #. left column must not be translated -#: ../src/gamma-randr.c:279 +#: ../src/gamma-randr.c:306 msgid "" " screen=N\t\tX screen to apply adjustments to\n" -" crtc=N\t\tCRTC to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" msgstr "" +" screen=N\t\tX 应用设置屏幕\n" +" crtc=N\t将调整应用于的逗号分隔 CRTC 列表\n" +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "无法读取屏幕编号: `%s'.\n" -#: ../src/gamma-vidmode.c:51 ../src/gamma-vidmode.c:72 -#: ../src/gamma-vidmode.c:81 ../src/gamma-vidmode.c:108 -#: ../src/gamma-vidmode.c:168 ../src/gamma-vidmode.c:213 +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "范围 `%s` 现在总是开启; 使用 `%s` 要禁用的命令行选项。\n" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 #, c-format msgid "X request failed: %s\n" -msgstr "" +msgstr "X 请求失败:%s\n" -#: ../src/gamma-vidmode.c:129 +#: ../src/gamma-vidmode.c:140 msgid "Adjust gamma ramps with the X VidMode extension.\n" -msgstr "" +msgstr "使用 X VidMode 扩展调整伽马斜面。\n" #. TRANSLATORS: VidMode help output #. left column must not be translated -#: ../src/gamma-vidmode.c:134 -msgid "" -" screen=N\t\tX screen to apply adjustments to\n" -" preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " screen=N\t\tX 应用调整的屏幕\n" -#: ../src/gamma-quartz.c:126 ../src/gamma-w32gdi.c:82 +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 msgid "Unable to save current gamma ramp.\n" -msgstr "" +msgstr "无法保存当前的伽马斜面。\n" -#: ../src/gamma-quartz.c:155 -msgid "Adjust gamma ramps on OSX using Quartz.\n" -msgstr "" - -#. TRANSLATORS: Quartz help output -#. left column must not be translated -#. TRANSLATORS: Windows GDI help output -#. left column must not be translated -#: ../src/gamma-quartz.c:160 ../src/gamma-w32gdi.c:109 -msgid " preserve={0,1}\tWhether existing gamma should be preserved\n" -msgstr "" +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "使用 Quartz 在 macOS 上调整伽马斜坡。\n" -#: ../src/gamma-w32gdi.c:59 ../src/gamma-w32gdi.c:134 -#: ../src/gamma-w32gdi.c:155 +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 msgid "Unable to open device context.\n" -msgstr "" +msgstr "无法打开设备上下文。\n" -#: ../src/gamma-w32gdi.c:66 +#: ../src/gamma-w32gdi.c:75 msgid "Display device does not support gamma ramps.\n" -msgstr "" +msgstr "显示设备不支持伽马斜面。\n" -#: ../src/gamma-w32gdi.c:104 +#: ../src/gamma-w32gdi.c:115 msgid "Adjust gamma ramps with the Windows GDI.\n" -msgstr "" +msgstr "使用 Windows GDI 调整伽马斜面。\n" -#: ../src/gamma-w32gdi.c:140 +#: ../src/gamma-w32gdi.c:153 msgid "Unable to restore gamma ramps.\n" -msgstr "" +msgstr "无法保存伽马斜面。\n" -#: ../src/gamma-w32gdi.c:195 +#: ../src/gamma-w32gdi.c:211 msgid "Unable to set gamma ramps.\n" -msgstr "" +msgstr "无法设置伽马斜面。\n" -#: ../src/gamma-dummy.c:42 +#: ../src/gamma-dummy.c:43 msgid "" "WARNING: Using dummy gamma method! Display will not be affected by this " "gamma method.\n" -msgstr "" +msgstr "警告:正在使用虚拟伽马模式!显示器不受此伽马模式影响。\n" -#: ../src/gamma-dummy.c:59 +#: ../src/gamma-dummy.c:60 msgid "" "Does not affect the display but prints the color temperature to the " "terminal.\n" -msgstr "" +msgstr "不要影响显示器但打印色温到终端上。\n" -#: ../src/gamma-dummy.c:73 +#: ../src/gamma-dummy.c:75 #, c-format msgid "Temperature: %i\n" -msgstr "" - -#: ../src/location-geoclue.c:76 -#, c-format -msgid "Unable to obtain master client: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:80 -#, c-format -msgid "Unable to obtain master client\n" -msgstr "" - -#: ../src/location-geoclue.c:91 -#, c-format -msgid "Can't set requirements for master: %s\n" -msgstr "" - -#: ../src/location-geoclue.c:95 -#, c-format -msgid "Can't set requirements for master\n" -msgstr "" - -#: ../src/location-geoclue.c:111 -#, c-format -msgid "Started Geoclue provider `%s'.\n" -msgstr "" - -#: ../src/location-geoclue.c:114 -msgid "Could not find a usable Geoclue provider.\n" -msgstr "" - -#: ../src/location-geoclue.c:115 -msgid "Try setting name and path to specify which to use.\n" -msgstr "" - -#: ../src/location-geoclue.c:133 -msgid "Use the location as discovered by a Geoclue provider.\n" -msgstr "" +msgstr "色温:%i\n" -#. TRANSLATORS: Geoclue help output -#. left column must not be translated -#: ../src/location-geoclue.c:138 -msgid "" -" name=N\tName of Geoclue provider (or `default')\n" -" path=N\tPath of Geoclue provider (or `default')\n" -msgstr "" - -#: ../src/location-geoclue.c:141 ../src/location-geoclue2.c:72 -#: ../src/location-corelocation.m:131 +#: ../src/location-geoclue2.c:59 #, c-format msgid "" -"NOTE: currently Redshift doesn't recheck %s once started,\n" -"which means it has to be restarted to take notice after travel.\n" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" msgstr "" +"GeoClue 拒绝访问当前位置!\n" +"确保已启用位置服务并允许 Redshift\n" +"使用定位服务。 有关更多信息,请参阅 https://github.com/jonls/redshift#faq\n" +"信息。\n" -#: ../src/location-geoclue.c:199 -#, c-format -msgid "Could not get location: %s.\n" -msgstr "" - -#: ../src/location-geoclue.c:206 -#, c-format -msgid "According to the geoclue provider we're at: %.2f, %.2f\n" -msgstr "" - -#: ../src/location-geoclue.c:210 -msgid "Provider does not have a valid location available." -msgstr "" - -#: ../src/location-geoclue2.c:69 -msgid "Use the location as discovered by a GeoClue2 provider.\n" -msgstr "" - -#: ../src/location-geoclue2.c:114 +#: ../src/location-geoclue2.c:107 #, c-format msgid "Unable to obtain location: %s.\n" -msgstr "" +msgstr "无法获取位置:%s。\n" -#: ../src/location-geoclue2.c:153 +#: ../src/location-geoclue2.c:150 #, c-format msgid "Unable to obtain GeoClue Manager: %s.\n" -msgstr "" +msgstr "无法获取 GeoClue 管理器:%s。\n" -#: ../src/location-geoclue2.c:168 +#: ../src/location-geoclue2.c:166 #, c-format msgid "Unable to obtain GeoClue client path: %s.\n" -msgstr "" +msgstr "无法获取 GeoClue 客户端路径:%s。\n" -#: ../src/location-geoclue2.c:189 +#: ../src/location-geoclue2.c:188 #, c-format msgid "Unable to obtain GeoClue Client: %s.\n" -msgstr "" +msgstr "无法获取 GeoClue 客户端:%s。\n" -#: ../src/location-geoclue2.c:228 +#: ../src/location-geoclue2.c:229 #, c-format msgid "Unable to set distance threshold: %s.\n" -msgstr "" +msgstr "无法设置距离阀值:%s。\n" -#: ../src/location-geoclue2.c:251 +#: ../src/location-geoclue2.c:253 #, c-format msgid "Unable to start GeoClue client: %s.\n" -msgstr "" +msgstr "无法启动 GeoClue 客户端:%s。\n" -#: ../src/location-geoclue2.c:269 -#, c-format -msgid "Unable to connect to GeoClue.\n" -msgstr "" +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "无法启动 GeoClue2 提供程序!\n" -#: ../src/location-corelocation.m:59 +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "使用 GeoClue2 服务检测到的位置。\n" + +#: ../src/location-corelocation.m:73 msgid "Not authorized to obtain location from CoreLocation.\n" -msgstr "" +msgstr "没有授权来从 CoreLocation 获取位置。\n" -#: ../src/location-corelocation.m:87 +#: ../src/location-corelocation.m:111 #, c-format msgid "Error obtaining location from CoreLocation: %s\n" -msgstr "" +msgstr "从 CoreLocation 获取位置时出错:%s\n" -#: ../src/location-corelocation.m:96 +#: ../src/location-corelocation.m:120 msgid "Waiting for authorization to obtain location...\n" -msgstr "" +msgstr "正在等待授权来获取位置…\n" -#: ../src/location-corelocation.m:99 +#: ../src/location-corelocation.m:122 msgid "Request for location was not authorized!\n" -msgstr "" +msgstr "位置请求还未授权!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "无法启动 CoreLocation 提供程序!\n" -#: ../src/location-corelocation.m:128 +#: ../src/location-corelocation.m:235 msgid "Use the location as discovered by the Corelocation provider.\n" -msgstr "" +msgstr "使用指定位置当做 Corelocation 服务检测到的。\n" -#: ../src/location-manual.c:50 +#: ../src/location-manual.c:59 msgid "Latitude and longitude must be set.\n" -msgstr "" +msgstr "纬度和经度必须设置。\n" -#: ../src/location-manual.c:65 +#: ../src/location-manual.c:75 msgid "Specify location manually.\n" -msgstr "" +msgstr "手动指定位置。\n" #. TRANSLATORS: Manual location help output #. left column must not be translated -#: ../src/location-manual.c:70 +#: ../src/location-manual.c:80 msgid "" " lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n" msgstr "" +" lat=N\t\t纬度\n" +" lon=N\t\t经度\n" -#: ../src/location-manual.c:73 +#: ../src/location-manual.c:83 msgid "" "Both values are expected to be floating point numbers,\n" "negative values representing west / south, respectively.\n" msgstr "" +"两个数值均为浮点数字,\n" +"负数分表代表南纬/西经。\n" -#: ../src/location-manual.c:87 +#: ../src/location-manual.c:97 msgid "Malformed argument.\n" -msgstr "" +msgstr "异常参数。\n" -#: ../src/redshift-gtk/statusicon.py:265 +#: ../src/redshift-gtk/statusicon.py:78 msgid "Suspend for" -msgstr "" +msgstr "挂起于" -#: ../src/redshift-gtk/statusicon.py:267 +#: ../src/redshift-gtk/statusicon.py:80 msgid "30 minutes" -msgstr "" +msgstr "30 分钟后" -#: ../src/redshift-gtk/statusicon.py:268 +#: ../src/redshift-gtk/statusicon.py:81 msgid "1 hour" -msgstr "" +msgstr "1 小时后" -#: ../src/redshift-gtk/statusicon.py:269 +#: ../src/redshift-gtk/statusicon.py:82 msgid "2 hours" -msgstr "" +msgstr "2 小时后" -#: ../src/redshift-gtk/statusicon.py:277 +#: ../src/redshift-gtk/statusicon.py:91 msgid "Autostart" -msgstr "" +msgstr "开机启动" -#: ../src/redshift-gtk/statusicon.py:289 ../src/redshift-gtk/statusicon.py:300 +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 msgid "Info" -msgstr "" +msgstr "信息" -#: ../src/redshift-gtk/statusicon.py:294 +#: ../src/redshift-gtk/statusicon.py:108 msgid "Quit" -msgstr "" +msgstr "退出" -#: ../src/redshift-gtk/statusicon.py:301 +#: ../src/redshift-gtk/statusicon.py:146 msgid "Close" -msgstr "" +msgstr "关闭" -#: ../src/redshift-gtk/statusicon.py:466 +#: ../src/redshift-gtk/statusicon.py:300 msgid "<b>Status:</b> {}" -msgstr "" +msgstr "<b>状态:</b> {}" -#: ../src/redshift-gtk/statusicon.py:470 +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 msgid "Color temperature" -msgstr "" +msgstr "色温" -#: ../src/redshift-gtk/statusicon.py:474 +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 msgid "Period" -msgstr "" +msgstr "时段" -#: ../src/redshift-gtk/statusicon.py:478 +#: ../src/redshift-gtk/statusicon.py:318 msgid "Location" -msgstr "" +msgstr "位置" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "请运行 `redshift -h` 以获得帮助输出。" diff --git a/po/zh_TW.po b/po/zh_TW.po new file mode 100644 index 0000000..96a019b --- /dev/null +++ b/po/zh_TW.po @@ -0,0 +1,850 @@ +# Chinese (Traditional) translation for redshift +# Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 +# This file is distributed under the same license as the redshift package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: redshift\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2017-10-18 11:46-0700\n" +"PO-Revision-Date: 2018-04-28 15:30+0000\n" +"Last-Translator: BigELK176 ≡ <BigELK176@gmail.com>\n" +"Language-Team: Chinese (Traditional) <zh_TW@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-05-21 01:04+0000\n" +"X-Generator: Launchpad (build 18658)\n" +"Language: zh_TW\n" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:1 +msgid "" +"Redshift adjusts the color temperature of your screen according to your " +"surroundings. This may help your eyes hurt less if you are working in front " +"of the screen at night." +msgstr "" +"Redshift 根據你周圍環境來調節整螢幕色溫。\n" +"如果夜晚在螢幕前工作,這可以減少眼睛受到傷害。" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:2 +msgid "" +"The color temperature is set according to the position of the sun. A " +"different color temperature is set during night and daytime. During twilight " +"and early morning, the color temperature transitions smoothly from night to " +"daytime temperature to allow your eyes to slowly adapt." +msgstr "根據太陽位置日夜變化來設置螢幕色溫。隨著日夜交替時間轉換,色溫設置則會逐漸變化,可讓您的眼睛能夠漸漸地適應。" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:3 +msgid "" +"This program provides a status icon that allows the user to control Redshift." +msgstr "軟體提供狀態圖示,讓使用者來控制 Redshift 。" + +#: ../data/appdata/redshift-gtk.appdata.xml.in.h:4 +msgid "" +"The Redshift information window overlaid with an example of the redness " +"effect" +msgstr "Redshift 資訊視窗鋪上一層紅暈效果的的示範" + +#: ../data/applications/redshift.desktop.in.h:1 +#: ../data/applications/redshift-gtk.desktop.in.h:1 +msgid "Redshift" +msgstr "Redshift" + +#: ../data/applications/redshift.desktop.in.h:2 +#: ../data/applications/redshift-gtk.desktop.in.h:2 +msgid "Color temperature adjustment" +msgstr "色溫調整" + +#: ../data/applications/redshift.desktop.in.h:3 +#: ../data/applications/redshift-gtk.desktop.in.h:3 +msgid "Color temperature adjustment tool" +msgstr "色溫調整工具" + +#. TRANSLATORS: Name printed when period of day is unknown +#: ../src/redshift.c:135 +msgid "None" +msgstr "無" + +#: ../src/redshift.c:136 ../src/redshift.c:1107 +msgid "Daytime" +msgstr "日間" + +#: ../src/redshift.c:137 ../src/redshift.c:1111 +msgid "Night" +msgstr "夜間" + +#: ../src/redshift.c:138 +msgid "Transition" +msgstr "轉換" + +#: ../src/redshift.c:225 +#, c-format +msgid "Period: %s\n" +msgstr "期間: %s\n" + +#: ../src/redshift.c:228 +#, c-format +msgid "Period: %s (%.2f%% day)\n" +msgstr "期間: %s (%.2f%% day)\n" + +#. TRANSLATORS: Abbreviation for `north' +#: ../src/redshift.c:240 +msgid "N" +msgstr "北" + +#. TRANSLATORS: Abbreviation for `south' +#: ../src/redshift.c:242 +msgid "S" +msgstr "南" + +#. TRANSLATORS: Abbreviation for `east' +#: ../src/redshift.c:244 +msgid "E" +msgstr "東" + +#. TRANSLATORS: Abbreviation for `west' +#: ../src/redshift.c:246 +msgid "W" +msgstr "西" + +#. TRANSLATORS: Append degree symbols after %f if possible. +#. The string following each number is an abreviation for +#. north, source, east or west (N, S, E, W). +#: ../src/redshift.c:251 +#, c-format +msgid "Location: %.2f %s, %.2f %s\n" +msgstr "位置: %.2f %s, %.2f %s\n" + +#: ../src/redshift.c:325 ../src/redshift.c:416 +#, c-format +msgid "Initialization of %s failed.\n" +msgstr "針對 %s 初始化失敗。\n" + +#: ../src/redshift.c:340 ../src/redshift.c:384 ../src/redshift.c:431 +#: ../src/redshift.c:463 +#, c-format +msgid "Failed to set %s option.\n" +msgstr "設定 %s 選項失敗。\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:345 ../src/redshift.c:387 +#, c-format +msgid "Try `-l %s:help' for more information.\n" +msgstr "試試 `-l %s:help' 取得更多資訊。\n" + +#: ../src/redshift.c:373 ../src/redshift.c:453 +#, c-format +msgid "Failed to parse option `%s'.\n" +msgstr "解析 '%s' 選項失敗\n" + +#: ../src/redshift.c:400 +#, c-format +msgid "Failed to start provider %s.\n" +msgstr "啟動供應者 %s 失敗。\n" + +#. TRANSLATORS: `help' must not be +#. translated. +#: ../src/redshift.c:436 +#, c-format +msgid "Try `-m %s:help' for more information.\n" +msgstr "試試 `-m %s:help' 取得更多資訊。\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/redshift.c:466 +#, c-format +msgid "Try -m %s:help' for more information.\n" +msgstr "試試 -m %s:help' 取得更多資訊。\n" + +#: ../src/redshift.c:478 +#, c-format +msgid "Failed to start adjustment method %s.\n" +msgstr "啟動調整方法 %s 失敗。\n" + +#: ../src/redshift.c:509 +#, c-format +msgid "Latitude must be between %.1f and %.1f.\n" +msgstr "緯度必須在 %.1f 及 %.1f 之間。\n" + +#: ../src/redshift.c:518 +#, c-format +msgid "Longitude must be between %.1f and %.1f.\n" +msgstr "經度必須在 %.1f 及 %.1f 之間。\n" + +#: ../src/redshift.c:545 ../src/redshift.c:564 ../src/redshift.c:696 +#: ../src/redshift.c:1187 +msgid "Unable to read system time.\n" +msgstr "無法讀取系統時間。\n" + +#: ../src/redshift.c:635 +msgid "Waiting for initial location to become available...\n" +msgstr "等待初始化位置變成可以使用…\n" + +#: ../src/redshift.c:641 ../src/redshift.c:832 ../src/redshift.c:847 +#: ../src/redshift.c:1172 +msgid "Unable to get location from provider.\n" +msgstr "無法由供應者取得位置資訊。\n" + +#: ../src/redshift.c:647 ../src/redshift.c:871 +msgid "Invalid location returned from provider.\n" +msgstr "供應者回覆不合用的位置資訊。\n" + +#: ../src/redshift.c:656 ../src/redshift.c:788 ../src/redshift.c:1222 +#: ../src/redshift.c:1253 +#, c-format +msgid "Color temperature: %uK\n" +msgstr "色溫:%uK\n" + +#: ../src/redshift.c:657 ../src/redshift.c:793 ../src/redshift.c:1224 +#, c-format +msgid "Brightness: %.2f\n" +msgstr "亮度: %.2f\n" + +#: ../src/redshift.c:686 +#, c-format +msgid "Status: %s\n" +msgstr "狀態: %s\n" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:301 +msgid "Disabled" +msgstr "已停用" + +#: ../src/redshift.c:687 ../src/redshift-gtk/statusicon.py:73 +#: ../src/redshift-gtk/statusicon.py:301 +msgid "Enabled" +msgstr "已啟用" + +#: ../src/redshift.c:802 ../src/redshift.c:1233 ../src/redshift.c:1263 +#: ../src/redshift.c:1285 +msgid "Temperature adjustment failed.\n" +msgstr "色溫調整失敗。\n" + +#: ../src/redshift.c:854 +msgid "" +"Location is temporarily unavailable; Using previous location until it " +"becomes available...\n" +msgstr "位置資訊暫時無法使用;使用之前的位置資訊,直到可用提供…\n" + +#: ../src/redshift.c:967 +msgid "Partial time-configuration not supported!\n" +msgstr "有部分的時間配置尚未支援!\n" + +#: ../src/redshift.c:975 +msgid "Invalid dawn/dusk time configuration!\n" +msgstr "無效的日出/日落時間配置!\n" + +#: ../src/redshift.c:1006 +#, c-format +msgid "Trying location provider `%s'...\n" +msgstr "試用位置資訊供應用者 `%s' ...\n" + +#: ../src/redshift.c:1011 +msgid "Trying next provider...\n" +msgstr "試用下一個供應用者 `%s' ...\n" + +#: ../src/redshift.c:1017 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "使用供應用者 `%s' 。\n" + +#: ../src/redshift.c:1025 +msgid "No more location providers to try.\n" +msgstr "沒有其它位置資訊供應用者可供試用。\n" + +#: ../src/redshift.c:1034 +#, c-format +msgid "" +"High transition elevation cannot be lower than the low transition " +"elevation.\n" +msgstr "高過渡海拔不可低於低過渡海拔。\n" + +#. TRANSLATORS: Append degree symbols if possible. +#: ../src/redshift.c:1041 +#, c-format +msgid "Solar elevations: day above %.1f, night below %.1f\n" +msgstr "太陽海拔:日間高於 %.1f .夜間低於 %.1f 。\n" + +#: ../src/redshift.c:1049 +#, c-format +msgid "Temperatures: %dK at day, %dK at night\n" +msgstr "溫度:日間為 %dK .夜間為 %dK\n" + +#: ../src/redshift.c:1060 ../src/redshift.c:1071 +#, c-format +msgid "Temperature must be between %uK and %uK.\n" +msgstr "溫度必須介於 %uK 及 %uK 之間。\n" + +#: ../src/redshift.c:1083 +#, c-format +msgid "Brightness values must be between %.1f and %.1f.\n" +msgstr "高度數值必須介於 %.1f 及 %.1f 之間。\n" + +#: ../src/redshift.c:1089 +#, c-format +msgid "Brightness: %.2f:%.2f\n" +msgstr "亮度: %.2f:%.2f\n" + +#: ../src/redshift.c:1098 +#, c-format +msgid "Gamma value must be between %.1f and %.1f.\n" +msgstr "伽瑪數值必須介於 %.1f 及 %.1f 之間。\n" + +#. TRANSLATORS: The string in parenthesis is either +#. Daytime or Night (translated). +#: ../src/redshift.c:1106 ../src/redshift.c:1110 +#, c-format +msgid "Gamma (%s): %.3f, %.3f, %.3f\n" +msgstr "伽瑪 (%s): %.3f, %.3f, %.3f\n" + +#: ../src/redshift.c:1139 +msgid "Trying next method...\n" +msgstr "試用下一個方法…\n" + +#: ../src/redshift.c:1144 +#, c-format +msgid "Using method `%s'.\n" +msgstr "使用方法`%s'。\n" + +#: ../src/redshift.c:1151 +msgid "No more methods to try.\n" +msgstr "沒有其它方法可供試用。\n" + +#: ../src/redshift.c:1165 +msgid "Waiting for current location to become available...\n" +msgstr "等待目前位置資訊可供使用…\n" + +#. TRANSLATORS: Append degree symbol if +#. possible. +#: ../src/redshift.c:1206 +#, c-format +msgid "Solar elevation: %f\n" +msgstr "太陽海拔: %f\n" + +#: ../src/redshift.c:1244 ../src/redshift.c:1272 ../src/redshift.c:1294 +msgid "Press ctrl-c to stop...\n" +msgstr "按 ctrl-c 停止 ...\n" + +#. TRANSLATORS: help output 1 +#. LAT is latitude, LON is longitude, +#. DAY is temperature at daytime, +#. NIGHT is temperature at night +#. no-wrap +#: ../src/options.c:159 +#, c-format +msgid "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" +msgstr "用法: %s -l LAT:LON -t DAY:NIGHT [選項...]\n" + +#. TRANSLATORS: help output 2 +#. no-wrap +#: ../src/options.c:165 +msgid "Set color temperature of display according to time of day.\n" +msgstr "根據日間時間來設定顯示器的色溫\n" + +#. TRANSLATORS: help output 3 +#. no-wrap +#: ../src/options.c:171 +msgid "" +" -h\t\tDisplay this help message\n" +" -v\t\tVerbose output\n" +" -V\t\tShow program version\n" +msgstr "" +" -h\t\t顯示說明訊息\n" +" -v\t\t細節內容輸出\n" +" -V\t\t顯示軟體版本\n" + +#. TRANSLATORS: help output 4 +#. `list' must not be translated +#. no-wrap +#: ../src/options.c:179 +msgid "" +" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" +" -c FILE\tLoad settings from specified configuration file\n" +" -g R:G:B\tAdditional gamma correction to apply\n" +" -l LAT:LON\tYour current location\n" +" -l PROVIDER\tSelect provider for automatic location updates\n" +" \t\t(Type `list' to see available providers)\n" +" -m METHOD\tMethod to use to set color temperature\n" +" \t\t(Type `list' to see available methods)\n" +" -o\t\tOne shot mode (do not continuously adjust color temperature)\n" +" -O TEMP\tOne shot manual mode (set color temperature)\n" +" -p\t\tPrint mode (only print parameters and exit)\n" +" -P\t\tReset existing gamma ramps before applying new color effect\n" +" -x\t\tReset mode (remove adjustment from screen)\n" +" -r\t\tDisable fading between color temperatures\n" +" -t DAY:NIGHT\tColor temperature to set at daytime/night\n" +msgstr "" +" -b DAY:NIGHT\t螢幕亮度套用(介於 0.1 及 1.0)\n" +" -c FILE\t從指定的設置檔案來載入設置\n" +" -g R:G:B\t額外的伽瑪校正設置\n" +" -l LAT:LON \t你目前的位置\n" +" -l PROVIDER\t選擇自動位置更新的提供者\n" +" \t\t輸入 `list' 來查看可用的提供者)\n" +" -m METHOD\t用來設置色溫的方法\n" +" \t\t(輸入 `list' 來查看可用的方法)\n" +" -o\t\t單觸發模式(不要持續地調整色溫)\n" +" -O TEMP\t單觸發手動模式(設置色溫)\n" +" -p\t\t列印模式(僅列列印參數值並退出)\n" +" -P\t\t在套用新的顏色效果前要重置咖瑪斜面\n" +" -x\t\t重置模式(從螢幕上移除調整)\n" +" -r\t\t停用色溫之間的淡化轉化\n" +" -t DAY:NIGHT\t設置日間/夜間的色溫\n" + +#. TRANSLATORS: help output 5 +#: ../src/options.c:201 +#, c-format +msgid "" +"The neutral temperature is %uK. Using this value will not change the color\n" +"temperature of the display. Setting the color temperature to a value higher\n" +"than this results in more blue light, and setting a lower value will result " +"in\n" +"more red light.\n" +msgstr "" +"中性色溫為 %uK 。\n" +"使用該值不會改變顯示器的色溫。\n" +"設置色溫值高於它,會導致更多的藍光。\n" +"設置色溫值低於它,會導致更多的紅光。\n" + +#. TRANSLATORS: help output 6 +#: ../src/options.c:210 +#, c-format +msgid "" +"Default values:\n" +"\n" +" Daytime temperature: %uK\n" +" Night temperature: %uK\n" +msgstr "" +"預設值:\n" +"\n" +" 日間色溫: %uK\n" +" 夜間色溫: %uK\n" + +#: ../src/options.c:225 +msgid "Available adjustment methods:\n" +msgstr "可供使用的調整方法:\n" + +#: ../src/options.c:231 +msgid "Specify colon-separated options with `-m METHOD:OPTIONS'.\n" +msgstr "用冒號分隔選項 `-m METHOD:OPTIONS'\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:234 +msgid "Try `-m METHOD:help' for help.\n" +msgstr "試用 `-m METHOD:help' 取得說明。\n" + +#: ../src/options.c:241 +msgid "Available location providers:\n" +msgstr "可供使用的位置資訊供應者:\n" + +#: ../src/options.c:247 +msgid "Specify colon-separated options with`-l PROVIDER:OPTIONS'.\n" +msgstr "用冒號來分別選項 `-l PROVIDER:OPTIONS'。\n" + +#. TRANSLATORS: `help' must not be translated. +#: ../src/options.c:250 +msgid "Try `-l PROVIDER:help' for help.\n" +msgstr "試用 `-l PROVIDER:help' 來獲得說明。\n" + +#: ../src/options.c:356 +msgid "Malformed gamma argument.\n" +msgstr "異常的咖瑪參數。\n" + +#: ../src/options.c:358 ../src/options.c:472 ../src/options.c:491 +msgid "Try `-h' for more information.\n" +msgstr "試用 `-h' 獲得更多資訊。\n" + +#: ../src/options.c:407 ../src/options.c:610 +#, c-format +msgid "Unknown location provider `%s'.\n" +msgstr "不明的位置資訊供應者 `%s' 。\n" + +#. TRANSLATORS: This refers to the method +#. used to adjust colors e.g VidMode +#: ../src/options.c:439 ../src/options.c:597 +#, c-format +msgid "Unknown adjustment method `%s'.\n" +msgstr "不明的調整方法 `%s'。\n" + +#: ../src/options.c:470 +msgid "Malformed temperature argument.\n" +msgstr "異常的溫度參數。\n" + +#: ../src/options.c:561 ../src/options.c:575 ../src/options.c:586 +msgid "Malformed gamma setting.\n" +msgstr "髒常的咖瑪設定。\n" + +#: ../src/options.c:621 +#, c-format +msgid "Malformed dawn-time setting `%s'.\n" +msgstr "異常的日出時間設定 `%s'.\n" + +#: ../src/options.c:632 +#, c-format +msgid "Malformed dusk-time setting `%s'.\n" +msgstr "異常的日落時間設定 `%s'.\n" + +#: ../src/options.c:639 +#, c-format +msgid "Unknown configuration setting `%s'.\n" +msgstr "不明的設置設定 `%s'.\n" + +#: ../src/config-ini.c:167 +msgid "Malformed section header in config file.\n" +msgstr "設置檔案中異常分配存在。\n" + +#: ../src/config-ini.c:203 +msgid "Malformed assignment in config file.\n" +msgstr "設置檔案中分配異常。\n" + +#: ../src/config-ini.c:214 +msgid "Assignment outside section in config file.\n" +msgstr "設置檔案中分配外部段落。\n" + +#: ../src/gamma-drm.c:97 +#, c-format +msgid "Failed to open DRM device: %s\n" +msgstr "開啟 DRM 設備失敗: %s\n" + +#: ../src/gamma-drm.c:105 +#, c-format +msgid "Failed to get DRM mode resources\n" +msgstr "取得 DRM 模式資源失敗\n" + +#: ../src/gamma-drm.c:115 ../src/gamma-randr.c:384 +#, c-format +msgid "CRTC %d does not exist. " +msgstr "CRTC %d 不存在。 " + +#: ../src/gamma-drm.c:118 ../src/gamma-randr.c:387 +#, c-format +msgid "Valid CRTCs are [0-%d].\n" +msgstr "有效的 CRTCs 為 [0-%d]。\n" + +#: ../src/gamma-drm.c:121 ../src/gamma-randr.c:390 +#, c-format +msgid "Only CRTC 0 exists.\n" +msgstr "僅有 CRTC 0 存在。\n" + +#: ../src/gamma-drm.c:159 +#, c-format +msgid "CRTC %i lost, skipping\n" +msgstr "CRTC %i 遺失,跳過中\n" + +#: ../src/gamma-drm.c:165 +#, c-format +msgid "" +"Could not get gamma ramp size for CRTC %i\n" +"on graphics card %i, ignoring device.\n" +msgstr "" +"在顯示卡 %i 不能取得用於 CRTC %i 的咖瑪斜面大小,\n" +"忽略設備中。\n" + +#: ../src/gamma-drm.c:178 +#, c-format +msgid "" +"DRM could not read gamma ramps on CRTC %i on\n" +"graphics card %i, ignoring device.\n" +msgstr "" +"DRM 不能讀到咖瑪斜面於 CRTC %i on\n" +"顯示卡 %i , 忽略設備。\n" + +#: ../src/gamma-drm.c:242 +msgid "Adjust gamma ramps with Direct Rendering Manager.\n" +msgstr "用 Direct Rendering Manager 調整咖瑪斜面。\n" + +#. TRANSLATORS: DRM help output +#. left column must not be translated +#: ../src/gamma-drm.c:247 +msgid "" +" card=N\tGraphics card to apply adjustments to\n" +" crtc=N\tCRTC to apply adjustments to\n" +msgstr "" +" card=N\t顯示卡去套用調整至\n" +" crtc=N\tCRTC 去套用調整至\n" + +#: ../src/gamma-drm.c:260 +#, c-format +msgid "CRTC must be a non-negative integer\n" +msgstr "CRTC 必須為非負整數\n" + +#: ../src/gamma-drm.c:264 ../src/gamma-randr.c:369 ../src/gamma-vidmode.c:161 +#: ../src/gamma-quartz.c:183 ../src/gamma-w32gdi.c:128 ../src/gamma-dummy.c:67 +#: ../src/location-geoclue2.c:408 ../src/location-corelocation.m:243 +#: ../src/location-manual.c:106 +#, c-format +msgid "Unknown method parameter: `%s'.\n" +msgstr "不明的方法參數: `%s'.\n" + +#: ../src/gamma-randr.c:94 ../src/gamma-randr.c:153 ../src/gamma-randr.c:192 +#: ../src/gamma-randr.c:218 ../src/gamma-randr.c:275 ../src/gamma-randr.c:435 +#, c-format +msgid "`%s' returned error %d\n" +msgstr "`%s' 擲回錯誤 %d\n" + +#: ../src/gamma-randr.c:103 +#, c-format +msgid "Unsupported RANDR version (%u.%u)\n" +msgstr "不支援的 RANDR 版本 (%u.%u)\n" + +#: ../src/gamma-randr.c:138 +#, c-format +msgid "Screen %i could not be found.\n" +msgstr "螢幕 %i 未被找到。\n" + +#: ../src/gamma-randr.c:204 ../src/gamma-vidmode.c:96 ../src/gamma-quartz.c:114 +#, c-format +msgid "Gamma ramp size too small: %i\n" +msgstr "咖瑪斜面值太小: %i\n" + +#: ../src/gamma-randr.c:277 +#, c-format +msgid "Unable to restore CRTC %i\n" +msgstr "無法存入 CRTC %i\n" + +#: ../src/gamma-randr.c:301 +msgid "Adjust gamma ramps with the X RANDR extension.\n" +msgstr "使用 X RANDR 擴充來調整咖瑪斜面。\n" + +#. TRANSLATORS: RANDR help output +#. left column must not be translated +#: ../src/gamma-randr.c:306 +msgid "" +" screen=N\t\tX screen to apply adjustments to\n" +" crtc=N\tList of comma separated CRTCs to apply adjustments to\n" +msgstr "" +" 螢幕=N\t\tX 螢幕去套用調整至\n" +" crtc=N\t串串逗號幅來各別 CRTCs 去套用調整至\n" + +#: ../src/gamma-randr.c:328 +#, c-format +msgid "Unable to read screen number: `%s'.\n" +msgstr "無法讀取燭幕數字: `%s'。\n" + +#: ../src/gamma-randr.c:364 ../src/gamma-vidmode.c:156 +#: ../src/gamma-quartz.c:178 ../src/gamma-w32gdi.c:123 +#, c-format +msgid "" +"Parameter `%s` is now always on; Use the `%s` command-line option to " +"disable.\n" +msgstr "參數 `%s` 現在是永遠開啟; 使用 `%s` 指令選項去停用。\n" + +#: ../src/gamma-vidmode.c:61 ../src/gamma-vidmode.c:81 +#: ../src/gamma-vidmode.c:90 ../src/gamma-vidmode.c:117 +#: ../src/gamma-vidmode.c:180 ../src/gamma-vidmode.c:225 +#, c-format +msgid "X request failed: %s\n" +msgstr "X 請求失敗: %s\n" + +#: ../src/gamma-vidmode.c:140 +msgid "Adjust gamma ramps with the X VidMode extension.\n" +msgstr "使用 X VidMode extension 去調整咖瑪斜面。\n" + +#. TRANSLATORS: VidMode help output +#. left column must not be translated +#: ../src/gamma-vidmode.c:145 +msgid " screen=N\t\tX screen to apply adjustments to\n" +msgstr " 螢幕=N\t\tX 螢幕去套用調整至\n" + +#: ../src/gamma-quartz.c:140 ../src/gamma-w32gdi.c:91 +msgid "Unable to save current gamma ramp.\n" +msgstr "無法儲存目前的咖瑪斜面。\n" + +#: ../src/gamma-quartz.c:170 +msgid "Adjust gamma ramps on macOS using Quartz.\n" +msgstr "在 macOS 使用 Quarts 來調整咖瑪斜面。\n" + +#: ../src/gamma-w32gdi.c:68 ../src/gamma-w32gdi.c:141 ../src/gamma-w32gdi.c:168 +msgid "Unable to open device context.\n" +msgstr "無法開啟設備前後內文。\n" + +#: ../src/gamma-w32gdi.c:75 +msgid "Display device does not support gamma ramps.\n" +msgstr "顯示器沒有支援咖瑪斜面。\n" + +#: ../src/gamma-w32gdi.c:115 +msgid "Adjust gamma ramps with the Windows GDI.\n" +msgstr "用 Windows GDI 調整咖瑪斜面。\n" + +#: ../src/gamma-w32gdi.c:153 +msgid "Unable to restore gamma ramps.\n" +msgstr "無法存入咖瑪斜面。\n" + +#: ../src/gamma-w32gdi.c:211 +msgid "Unable to set gamma ramps.\n" +msgstr "無法設置咖瑪斜面。\n" + +#: ../src/gamma-dummy.c:43 +msgid "" +"WARNING: Using dummy gamma method! Display will not be affected by this " +"gamma method.\n" +msgstr "警示:正在使用虛擬咖瑪方法!顯示器不受此咖瑪方法的影響。\n" + +#: ../src/gamma-dummy.c:60 +msgid "" +"Does not affect the display but prints the color temperature to the " +"terminal.\n" +msgstr "不要影響顯示器,但列印色溫至終端器。\n" + +#: ../src/gamma-dummy.c:75 +#, c-format +msgid "Temperature: %i\n" +msgstr "色溫: %i\n" + +#: ../src/location-geoclue2.c:59 +#, c-format +msgid "" +"Access to the current location was denied by GeoClue!\n" +"Make sure that location services are enabled and that Redshift is permitted\n" +"to use location services. See https://github.com/jonls/redshift#faq for " +"more\n" +"information.\n" +msgstr "" +"取用目前位置資訊遭到 GeoClue 拒絕!\n" +"要確定位置提供服務是啟用的,且允許 Redshift 使用位置服務。\n" +"請見網頁 https://github.com/jonls/redshift#faq 更多資訊。\n" + +#: ../src/location-geoclue2.c:107 +#, c-format +msgid "Unable to obtain location: %s.\n" +msgstr "無法取得位置: %s。\n" + +#: ../src/location-geoclue2.c:150 +#, c-format +msgid "Unable to obtain GeoClue Manager: %s.\n" +msgstr "無法取得 GeoClue 管理者: %s。\n" + +#: ../src/location-geoclue2.c:166 +#, c-format +msgid "Unable to obtain GeoClue client path: %s.\n" +msgstr "無法取得 GeoClue 客戶端路徑: %s。\n" + +#: ../src/location-geoclue2.c:188 +#, c-format +msgid "Unable to obtain GeoClue Client: %s.\n" +msgstr "無法取得 GeoClue 客戶端: %s。\n" + +#: ../src/location-geoclue2.c:229 +#, c-format +msgid "Unable to set distance threshold: %s.\n" +msgstr "無法設置距離閥值: %s。\n" + +#: ../src/location-geoclue2.c:253 +#, c-format +msgid "Unable to start GeoClue client: %s.\n" +msgstr "無法啟動 GeoClue 客戶端: %s。\n" + +#: ../src/location-geoclue2.c:365 +msgid "Failed to start GeoClue2 provider!\n" +msgstr "啟動 GeoClue2 供應服務失敗!\n" + +#: ../src/location-geoclue2.c:399 +msgid "Use the location as discovered by a GeoClue2 provider.\n" +msgstr "使用位置作為 GeoClue2 供應者所發現的。\n" + +#: ../src/location-corelocation.m:73 +msgid "Not authorized to obtain location from CoreLocation.\n" +msgstr "來自 CoreLocation 取得位置資訊未獲授權。\n" + +#: ../src/location-corelocation.m:111 +#, c-format +msgid "Error obtaining location from CoreLocation: %s\n" +msgstr "來自 CoreLocation 取得位置資訊錯誤:%s\n" + +#: ../src/location-corelocation.m:120 +msgid "Waiting for authorization to obtain location...\n" +msgstr "等待授權以取得位置資訊...\n" + +#: ../src/location-corelocation.m:122 +msgid "Request for location was not authorized!\n" +msgstr "請求位置尚未授權!\n" + +#: ../src/location-corelocation.m:203 +msgid "Failed to start CoreLocation provider!\n" +msgstr "啟動 CoreLocation 供應服務失敗!\n" + +#: ../src/location-corelocation.m:235 +msgid "Use the location as discovered by the Corelocation provider.\n" +msgstr "使用位置作為 Corelocation 供應者所發現的.\n" + +#: ../src/location-manual.c:59 +msgid "Latitude and longitude must be set.\n" +msgstr "經度緯度必須設置。\n" + +#: ../src/location-manual.c:75 +msgid "Specify location manually.\n" +msgstr "手動指定位置。\n" + +#. TRANSLATORS: Manual location help output +#. left column must not be translated +#: ../src/location-manual.c:80 +msgid "" +" lat=N\t\tLatitude\n" +" lon=N\t\tLongitude\n" +msgstr "" +" lat=N\t\t緯度\n" +" lon=N\t\t經度\n" + +#: ../src/location-manual.c:83 +msgid "" +"Both values are expected to be floating point numbers,\n" +"negative values representing west / south, respectively.\n" +msgstr "" +"兩個數均為浮點數字,\n" +"負數分代表西經或南緯。\n" + +#: ../src/location-manual.c:97 +msgid "Malformed argument.\n" +msgstr "異常參數\n" + +#: ../src/redshift-gtk/statusicon.py:78 +msgid "Suspend for" +msgstr "暫緩執行" + +#: ../src/redshift-gtk/statusicon.py:80 +msgid "30 minutes" +msgstr "30 分鐘" + +#: ../src/redshift-gtk/statusicon.py:81 +msgid "1 hour" +msgstr "1 小時" + +#: ../src/redshift-gtk/statusicon.py:82 +msgid "2 hours" +msgstr "2 小時" + +#: ../src/redshift-gtk/statusicon.py:91 +msgid "Autostart" +msgstr "自動啟動" + +#: ../src/redshift-gtk/statusicon.py:103 ../src/redshift-gtk/statusicon.py:113 +msgid "Info" +msgstr "資訊" + +#: ../src/redshift-gtk/statusicon.py:108 +msgid "Quit" +msgstr "停止" + +#: ../src/redshift-gtk/statusicon.py:146 +msgid "Close" +msgstr "關閉" + +#: ../src/redshift-gtk/statusicon.py:300 +msgid "<b>Status:</b> {}" +msgstr "<b>狀態:</b> {}" + +#: ../src/redshift-gtk/statusicon.py:306 ../src/redshift-gtk/statusicon.py:324 +msgid "Color temperature" +msgstr "色溫" + +#: ../src/redshift-gtk/statusicon.py:312 ../src/redshift-gtk/statusicon.py:325 +msgid "Period" +msgstr "期間" + +#: ../src/redshift-gtk/statusicon.py:318 +msgid "Location" +msgstr "位置" + +#: ../src/redshift-gtk/statusicon.py:349 +msgid "Please run `redshift -h` for help output." +msgstr "請執行 `redshift -h` 獲得說明輸出。" @@ -1,128 +1,154 @@ -.TH REDSHIFT: "1" "October 2011" "redshift" "User Commands" +.TH REDSHIFT 1 REDSHIFT-NG .SH NAME -redshift \- Set color temperature of display according to time of day. +redshift \- set color temperature of display according to time of day .SH SYNOPSIS .B redshift -\fI[\-l LAT:LON | \-l PROVIDER:OPTIONS] [\-t DAY:NIGHT] \fR[\fIOPTIONS\fR...] +\fR[\fB\-l\fR \fILAT\fB:\fILON\fR | \fB\-l\fR \fIPROVIDER\fB:\fIOPTIONS\fR] [\fB\-t\fR \fIDAY\fB:\fINIGHT\fR] [\fIOPTIONS\fR...] .SH DESCRIPTION .B redshift adjusts the color temperature of your screen according to your surroundings. This may help your eyes hurt less or reduce the risk for delayed sleep phase syndrome if you are working in front of the screen at night. - +.PP The color temperature is set according to the position of the sun. A different color temperature is set during night and daytime. During twilight and early morning, the color temperature transitions smoothly from night to daytime temperature to allow your eyes to slowly adapt over a period of about an hour. At night the color temperature should be set to match the lamps in your room. This is typically a low -temperature at around 3000K\-4000K (default is 3700K). During the day, +temperature at around 3000K\-4000K (default is 4500K). During the day, the color temperature should match the light from outside, typically -around 5500K\-6500K (default is 5500K). The light has a higher +around 5500K\-6500K (default is 6500K). The light has a higher temperature on an overcast day. +.PP +In addition to the command-line tool \fBredshift\fR, the GUI +\fBredshift-gtk\fR provides an alternative interface that shows up as a +notification icon in the desktop environment. .SH OPTIONS .TP \fB\-h\fR -Display this help message +Display help message. .TP \fB\-v\fR -Verbose output +Enable verbose output. .TP \fB\-V\fR -Show program version +Show program version. .TP -\fB\-b\fR DAY:NIGHT -Screen brightness to apply (between 0.1 and 1.0) +\fB\-b\fR \fIDAY\fB:\fINIGHT\fR +Screen brightness to apply (between 0.1 and 1.0). .TP -\fB\-c\fR FILE -Load settings from specified configuration file +\fB\-c\fR \fIFILE\fR +Load settings from specified configuration file. .TP -\fB\-g\fR R:G:B -Additional gamma correction to apply +\fB\-g\fR \fIR\fB:\fIG\fB:\fIB\fR +Additional gamma correction to apply. .TP -\fB\-l\fR LAT:LON +\fB\-l\fR \fILAT\fB:\fILON\fR Your current location, in degrees, given as floating point numbers, towards north and east, with negative numbers representing south and west, respectively. .TP -\fB\-l\fR PROVIDER[:OPTIONS] +\fB\-l\fR \fIPROVIDER\fR[\fB:\fIOPTIONS\fR] Select provider for automatic location updates -(Use `-l list' to see available providers) +(Use \fB"\-l list"\fR to see available providers). .TP -\fB\-m\fR METHOD[:OPTIONS] +\fB\-m\fR \fIMETHOD\fR[\fB:\fIOPTIONS\fR] Method to use to set color temperature -(Use `-m list' to see available methods) +(Use \fB"\-m list"\fR to see available methods). .TP \fB\-o\fR -One shot mode (do not continuously adjust color temperature) +One-shot mode (do not continuously adjust color temperature). Use this with the +\fB\-P\fR option to clear the existing gamma ramps before applying the new color +temperature. .TP -\fB\-O\fR TEMP -One shot manual mode (set color temperature) +\fB\-O\fR \fITEMP\fR +One-shot manual mode (set color temperature). Use this with the \fB\-P\fR option +to clear the existing gamma ramps before applying the new color temperature. .TP \fB\-p\fR -Print mode (only print parameters and exit) +Print mode (only print parameters and exit). +.TP +\fB\-P\fR +Reset existing gamma ramps before applying new color effect. .TP \fB\-x\fR -Reset mode (remove adjustment from screen) +Reset mode (remove adjustment from screen). .TP \fB\-r\fR -Disable temperature transitions +Disable fading between color temperatures. .TP -\fB\-t\fR DAY:NIGHT -Color temperature to set at daytime/night +\fB\-t\fR \fIDAY\fB:\fINIGHT\fR +Color temperature to set at daytime/night. .PP The neutral temperature is 6500K. Using this value will not change the color temperature of the display. Setting the color temperature to a value higher than this results in more blue light, and setting a lower value will result in more red light. - +.PP Default temperature values: .IP -Daytime: 5500K, night: 3700K +Daytime: 6500K, night: 4500K .SH CONFIGURATION FILE -A configuration file with the name `redshift.conf' can optionally be -placed in `~/.config/'. The file has standard INI format. General -program options are placed under the `redshift' header, while options +A configuration file with the name \fIredshift.conf\fR can optionally be +placed in \fI~/.config/redshift/\fR (if the environment variable +XDG_CONFIG_HOME is undefined) or \fI${XDG_CONFIG_HOME}/redshift/\fR +(if XDG_CONFIG_HOME is defined). The file has standard INI format. General +program options are placed under the \fBredshift\fR header, while options for location providers and adjustment methods are placed under a header with the name of that provider or method. General options are: .TP -\fBtemp\-day\fR = integer +\fBtemp\-day\fR = \fIinteger\fR Daytime temperature .TP -\fBtemp\-night\fR = integer +\fBtemp\-night\fR = \fIinteger\fR Night temperature .TP -\fBtransition\fR = 0 or 1 -Disable or enable transitions +\fBfade\fR = \fI0 or 1\fR +Disable or enable fading between color temperatures when Redshift starts or +stops .TP -\fBbrightness\-day\fR = 0.1\-1.0 +\fBbrightness\-day\fR = \fI0.1\-1.0\fR Screen brightness at daytime .TP -\fBbrightness\-night\fR = 0.1\-1.0 +\fBbrightness\-night\fR = \fI0.1\-1.0\fR Screen brightness at night .TP -\fBelevation-high\fR = decimal -The solar elevation for the transition to daytime +\fBelevation-high\fR = \fIdecimal\fR +The solar elevation in degrees for the transition to daytime .TP -\fBelevation-low\fR = decimal -The solar elevation for the transition to night +\fBelevation-low\fR = \fIdecimal\fR +The solar elevation in degrees for the transition to night .TP -\fBgamma\fR = R:G:B +\fBdawn-time\fR = \fIHH\fB:\fIMM\fR[\fB\-\fIHH\fB:\fIMM\fR] +The custom time interval for the transition from night to day in the morning. +When specified, the solar elevation will not be used to determine the current +daytime/night period. If this option is set, dusk-time must also be specified. +.TP +\fBdusk-time\fR = \fIHH\fB:\fIMM\fR[\fB\-\fIHH\fB:\fIMM\fR] +The custom time interval for the transition from day to night in the evening. +When specified, the solar elevation will not be used to determine the current +daytime/night period. If this option is set, dawn-time must also be specified. +.TP +\fBgamma\fR = \fIR\fB:\fIG\fB:\fIB\fR Gamma adjustment to apply (day and night) .TP -\fBgamma-day\fR = R:G:B +\fBgamma-day\fR = \fIR\fB:\fIG\fB:\fIB\fR Gamma adjustment to apply at daytime .TP -\fBgamma-night\fR = R:G:B +\fBgamma-night\fR = \fIR\fB:\fIG\fB:\fIB\fR Gamma adjustment to apply at night .TP -\fBadjustment\-method\fR = name +\fBpreserve-gamma\fR = \fI0 or 1\fR +Reset existing gamma ramps before applying new color effect. (On by default) +.TP +\fBadjustment\-method\fR = \fIname\fR Select adjustment method. Options for the adjustment method can be given under the configuration file heading of the same name. .TP -\fBlocation\-provider\fR = name +\fBlocation\-provider\fR = \fIname\fR Select location provider. Options for the location provider can be given under the configuration file heading of the same name. .PP @@ -149,15 +175,15 @@ lat=55.7 lon=12.6 .fi .SH HOOKS -Executable files (e.g. scripts) placed in `~/.config/redshift/hooks' +Executables (e.g. scripts) placed in folder \fI~/.config/redshift/hooks\fR will be run when a certain event happens. The first parameter to the script indicates the event and further parameters may indicate -more details about the event. The event `period-changed' is indicated -when the period changes (`night', `daytime', `transition'). The second +more details about the event. The event \fBperiod-changed\fR is indicated +when the period changes (\fBnight\fR, \fBdaytime\fR, \fBtransition\fR). The second parameter is the old period and the third is the new period. The event is also signaled when Redshift starts up with the old period set to -`none'. - +\fBnone\fR. Any dotfiles in the folder are skipped. +.PP A simple script to handle these events can be written like this: .IP .nf @@ -175,9 +201,8 @@ Both .B redshift and this manual page are released under the GNU General Public License, version 3. -.SH BUGS -Please report bugs to <https://github.com/jonls/redshift/issues> .SH KNOWN ISSUES -Redshift won't affect the color of your cursor when your graphics driver +.B redshift +will not affect the color of your cursor when your graphics driver is configured to use hardware cursors. Some graphics drivers have an -option to disable hardware cursors in xorg.conf. +option to disable hardware cursors. diff --git a/redshift.conf.sample b/redshift.conf.sample new file mode 100644 index 0000000..2f237cb --- /dev/null +++ b/redshift.conf.sample @@ -0,0 +1,71 @@ +; Global settings for redshift +[redshift] +; Set the day and night screen temperatures +; Defaults: 6500 / 4500 +temp-day=5700 +temp-night=3500 + +; Disable the smooth fade between temperatures when Redshift starts and stops. +; 0 will cause an immediate change between screen temperatures. +; 1 will gradually apply the new screen temperature over a couple of seconds. +fade=1 + +; Solar elevation thresholds. +; By default, Redshift will use the current elevation of the sun to determine +; whether it is daytime, night or in transition (dawn/dusk). When the sun is +; above the degrees specified with elevation-high it is considered daytime and +; below elevation-low it is considered night. +;elevation-high=3 +;elevation-low=-6 + +; Custom dawn/dusk intervals. +; Instead of using the solar elevation, the time intervals of dawn and dusk +; can be specified manually. The times must be specified as HH:MM in 24-hour +; format. +;dawn-time=6:00-7:45 +;dusk-time=18:35-20:15 + +; Set the screen brightness. Default is 1.0. +;brightness=0.9 +; It is also possible to use different settings for day and night +; since version 1.8. +;brightness-day=0.7 +;brightness-night=0.4 +; Set the screen gamma (for all colors, or each color channel +; individually) +gamma=0.8 +;gamma=0.8:0.7:0.8 +; This can also be set individually for day and night since +; version 1.10. +;gamma-day=0.8:0.7:0.8 +;gamma-night=0.6 + +; Set the location-provider: 'geoclue2', 'manual' +; type 'redshift -l list' to see possible values. +; The location provider settings are in a different section. +location-provider=manual + +; Set the adjustment-method: 'randr', 'vidmode' +; type 'redshift -m list' to see all possible values. +; 'randr' is the preferred method, 'vidmode' is an older API. +; but works in some cases when 'randr' does not. +; The adjustment method settings are in a different section. +adjustment-method=randr + +; Configuration of the location-provider: +; type 'redshift -l PROVIDER:help' to see the settings. +; ex: 'redshift -l manual:help' +; Keep in mind that longitudes west of Greenwich (e.g. the Americas) +; are negative numbers. +[manual] +lat=48.1 +lon=11.6 + +; Configuration of the adjustment-method +; type 'redshift -m METHOD:help' to see the settings. +; ex: 'redshift -m randr:help' +; In this example, randr is configured to adjust only screen 0. +; Note that the numbering starts from 0, so this is actually the first screen. +; If this option is not specified, Redshift will try to adjust _all_ screens. +[randr] +screen=0 diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..c906e20 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,54 @@ +.POSIX: + +CONFIGFILE = config.mk +include $(CONFIGFILE) + +OBJ =\ + colorramp.o\ + config-ini.o\ + gamma-coopgamma.o\ + gamma-drm.o\ + gamma-dummy.o\ + gamma-randr.o\ + gamma-vidmode.o\ + hooks.o\ + location-geoclue2.o\ + location-manual.o\ + options.o\ + pipeutils.o\ + redshift.o\ + signals.o\ + solar.o\ + systemtime.o + +HDR = $(OBJ:.o=.h) + +PACKAGE_STRING = redshift-ng 1.13 + +all: redshift +$(OBJ): $(HDR) + +.c.o: + $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) -D'PACKAGE_STRING="$(PACKAGE_STRING)"' + +redshift: $(OBJ) + $(CC) -o $@ $(OBJ) $(LDFLAGS) + +install: redshift + mkdir -p -- "$(DESTDIR)$(PREFIX)/bin" + mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1/" + cp -- redshift "$(DESTDIR)$(PREFIX)/bin/" + cp -- redshift.1 "$(DESTDIR)$(MANPREFIX)/man1/" + +uninstall: + -rm -f -- "$(DESTDIR)$(PREFIX)/bin/redshift" + -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/redshift.1" + +clean: + -rm -f -- *.o *.a *.lo *.su + -rm -f -- redshift + +.SUFFIXES: +.SUFFIXES: .o .c + +.PHONY: all install uninstall clean diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index c7a5444..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,100 +0,0 @@ - -SUBDIRS = redshift-gtk - -# I18n -localedir = $(datadir)/locale -AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" - -# redshift Program -bin_PROGRAMS = redshift - -redshift_SOURCES = \ - redshift.c redshift.h \ - colorramp.c colorramp.h \ - config-ini.c config-ini.h \ - location-manual.c location-manual.h \ - solar.c solar.h \ - systemtime.c systemtime.h \ - hooks.c hooks.h \ - gamma-dummy.c gamma-dummy.h - -EXTRA_redshift_SOURCES = \ - gamma-drm.c gamma-drm.h \ - gamma-randr.c gamma-randr.h \ - gamma-vidmode.c gamma-vidmode.h \ - gamma-quartz.c gamma-quartz.h \ - gamma-w32gdi.c gamma-w32gdi.h \ - location-geoclue.c location-geoclue.h - -AM_CFLAGS = -redshift_LDADD = @LIBINTL@ -EXTRA_DIST = - -if ENABLE_DRM -redshift_SOURCES += gamma-drm.c gamma-drm.h -AM_CFLAGS += $(DRM_CFLAGS) -redshift_LDADD += \ - $(DRM_LIBS) $(DRM_CFLAGS) -endif - -if ENABLE_RANDR -redshift_SOURCES += gamma-randr.c gamma-randr.h -AM_CFLAGS += $(XCB_CFLAGS) $(XCB_RANDR_CFLAGS) -redshift_LDADD += \ - $(XCB_LIBS) $(XCB_CFLAGS) \ - $(XCB_RANDR_LIBS) $(XCB_RANDR_CFLAGS) -endif - -if ENABLE_VIDMODE -redshift_SOURCES += gamma-vidmode.c gamma-vidmode.h -AM_CFLAGS += $(X11_CFLAGS) $(XF86VM_CFLAGS) -redshift_LDADD += \ - $(X11_LIBS) $(X11_CFLAGS) \ - $(XF86VM_LIBS) $(XF86VM_CFLAGS) -endif - -if ENABLE_QUARTZ -redshift_SOURCES += gamma-quartz.c gamma-quartz.h -AM_CFLAGS += $(QUARTZ_CFLAGS) -redshift_LDADD += \ - $(QUARTZ_LIBS) $(QUARTZ_CFLAGS) -endif - -if ENABLE_WINGDI -redshift_SOURCES += gamma-w32gdi.c gamma-w32gdi.h -redshift_LDADD += -lgdi32 -endif - - -if ENABLE_GEOCLUE -redshift_SOURCES += location-geoclue.c location-geoclue.h -AM_CFLAGS += \ - $(GEOCLUE_CFLAGS) $(GEOCLUE_LIBS) \ - $(GLIB_CFLAGS) $(GLIB_LIBS) -redshift_LDADD += \ - $(GEOCLUE_LIBS) $(GEOCLUE_CFLAGS) - $(GLIB_LIBS) $(GLIB_CFLAGS) -endif - -if ENABLE_GEOCLUE2 -redshift_SOURCES += location-geoclue2.c location-geoclue2.h -AM_CFLAGS += \ - $(GEOCLUE2_CFLAGS) -redshift_LDADD += \ - $(GEOCLUE2_LIBS) $(GEOCLUE2_CFLAGS) -endif - -# Build CoreLocation module as a separate convenience -# library since it is using a separate compiler -# (Objective C). - -if ENABLE_CORELOCATION -noinst_LTLIBRARIES = liblocation-corelocation.la -liblocation_corelocation_la_SOURCES = \ - location-corelocation.m location-corelocation.h -liblocation_corelocation_la_OBJCFLAGS = \ - $(CORELOCATION_CFLAGS) -liblocation_corelocation_la_LIBADD = \ - $(CORELOCATION_CFLAGS) $(CORELOCATION_LIBS) -redshift_LDADD += liblocation-corelocation.la -endif diff --git a/src/colorramp.c b/src/colorramp.c index fda75f2..2c67969 100644 --- a/src/colorramp.c +++ b/src/colorramp.c @@ -21,6 +21,7 @@ #include <stdint.h> #include <math.h> +#include "colorramp.h" #include "redshift.h" /* Whitepoint values for temperatures at 100K intervals. @@ -285,43 +286,29 @@ interpolate_color(float a, const float *c1, const float *c2, float *c) #define F(Y, C) pow((Y) * setting->brightness * \ white_point[C], 1.0/setting->gamma[C]) -void -colorramp_fill(uint16_t *gamma_r, uint16_t *gamma_g, uint16_t *gamma_b, - int size, const color_setting_t *setting) -{ - /* Approximate white point */ - float white_point[3]; - float alpha = (setting->temperature % 100) / 100.0; - int temp_index = ((setting->temperature - 1000) / 100)*3; - interpolate_color(alpha, &blackbody_color[temp_index], - &blackbody_color[temp_index+3], white_point); - for (int i = 0; i < size; i++) { - gamma_r[i] = F((double)gamma_r[i]/(UINT16_MAX+1), 0) * - (UINT16_MAX+1); - gamma_g[i] = F((double)gamma_g[i]/(UINT16_MAX+1), 1) * - (UINT16_MAX+1); - gamma_b[i] = F((double)gamma_b[i]/(UINT16_MAX+1), 2) * - (UINT16_MAX+1); +#define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\ + void\ + colorramp_fill_##SUFFIX(TYPE *gamma_r, TYPE *gamma_g, TYPE *gamma_b,\ + size_t size_r, size_t size_g, size_t size_b,\ + const color_setting_t *setting)\ + {\ + /* Approximate white point */\ + float white_point[3];\ + float alpha = (setting->temperature % 100) / 100.0;\ + int temp_index = ((setting->temperature - 1000) / 100) * 3;\ + interpolate_color(alpha, &blackbody_color[temp_index],\ + &blackbody_color[temp_index+3], white_point);\ + \ + for (size_t i = 0; i < size_r; i++)\ + gamma_r[i] = F((double)gamma_r[i] / (MAX), 0) * (MAX);\ + for (size_t i = 0; i < size_g; i++)\ + gamma_g[i] = F((double)gamma_g[i] / (MAX), 1) * (MAX);\ + for (size_t i = 0; i < size_b; i++)\ + gamma_b[i] = F((double)gamma_b[i] / (MAX), 2) * (MAX);\ } -} - -void -colorramp_fill_float(float *gamma_r, float *gamma_g, float *gamma_b, - int size, const color_setting_t *setting) -{ - /* Approximate white point */ - float white_point[3]; - float alpha = (setting->temperature % 100) / 100.0; - int temp_index = ((setting->temperature - 1000) / 100)*3; - interpolate_color(alpha, &blackbody_color[temp_index], - &blackbody_color[temp_index+3], white_point); - for (int i = 0; i < size; i++) { - gamma_r[i] = F((double)gamma_r[i], 0); - gamma_g[i] = F((double)gamma_g[i], 1); - gamma_b[i] = F((double)gamma_b[i], 2); - } -} +LIST_RAMPS_STOP_VALUE_TYPES +#undef X #undef F diff --git a/src/colorramp.h b/src/colorramp.h index 438c563..8802844 100644 --- a/src/colorramp.h +++ b/src/colorramp.h @@ -24,9 +24,19 @@ #include "redshift.h" -void colorramp_fill(uint16_t *gamma_r, uint16_t *gamma_g, uint16_t *gamma_b, - int size, const color_setting_t *setting); -void colorramp_fill_float(float *gamma_r, float *gamma_g, float *gamma_b, - int size, const color_setting_t *setting); +#define LIST_RAMPS_STOP_VALUE_TYPES\ + X(u8, uint8_t, UINT8_MAX + 1ULL, UINT8_MAX, 8)\ + X(u16, uint16_t, UINT16_MAX + 1ULL, UINT16_MAX, 16)\ + X(u32, uint32_t, UINT32_MAX + 1ULL, UINT32_MAX, 32)\ + X(u64, uint64_t, UINT64_MAX, UINT64_MAX, 64)\ + X(float, float, 1, 1, -1)\ + X(double, double, 1, 1, -2) + +#define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\ + void colorramp_fill_##SUFFIX(TYPE *gamma_r, TYPE *gamma_g, TYPE *gamma_b,\ + size_t size_r, size_t size_g, size_t size_b,\ + const color_setting_t *setting); +LIST_RAMPS_STOP_VALUE_TYPES +#undef X #endif /* ! REDSHIFT_COLORRAMP_H */ diff --git a/src/config-ini.c b/src/config-ini.c index 334a541..4f12610 100644 --- a/src/config-ini.c +++ b/src/config-ini.c @@ -14,9 +14,12 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2018 Jon Lund Steffensen <jonlst@gmail.com> */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif #include <stdio.h> #include <stdlib.h> @@ -63,8 +66,15 @@ open_config_file(const char *filepath) if (f == NULL && (env = getenv("XDG_CONFIG_HOME")) != NULL && env[0] != '\0') { - snprintf(cp, sizeof(cp), "%s/redshift.conf", env); + snprintf(cp, sizeof(cp), + "%s/redshift/redshift.conf", env); f = fopen(cp, "r"); + if (f == NULL) { + /* Fall back to formerly used path. */ + snprintf(cp, sizeof(cp), + "%s/redshift.conf", env); + f = fopen(cp, "r"); + } } #ifdef _WIN32 @@ -78,8 +88,14 @@ open_config_file(const char *filepath) if (f == NULL && (env = getenv("HOME")) != NULL && env[0] != '\0') { snprintf(cp, sizeof(cp), - "%s/.config/redshift.conf", env); + "%s/.config/redshift/redshift.conf", env); f = fopen(cp, "r"); + if (f == NULL) { + /* Fall back to formerly used path. */ + snprintf(cp, sizeof(cp), + "%s/.config/redshift.conf", env); + f = fopen(cp, "r"); + } } #ifndef _WIN32 @@ -89,8 +105,14 @@ open_config_file(const char *filepath) char *home = pwd->pw_dir; if ((home != NULL) && (*home != '\0')) { snprintf(cp, sizeof(cp), - "%s/.config/redshift.conf", home); + "%s/.config/redshift/redshift.conf", home); f = fopen(cp, "r"); + if (f == NULL) { + /* Fall back to formerly used path. */ + snprintf(cp, sizeof(cp), + "%s/.config/redshift.conf", home); + f = fopen(cp, "r"); + } } else { fprintf(stderr, _("Cannot determine your home directory, " "it is from the system's user table.\n")); @@ -115,9 +137,14 @@ open_config_file(const char *filepath) int len = end - begin; if (len > 0) { snprintf(cp, sizeof(cp), - "%.*s/redshift.conf", len, begin); - + "%.*s/redshift/redshift.conf", len, begin); f = fopen(cp, "r"); + if (f != NULL) { + /* Fall back to formerly used path. */ + snprintf(cp, sizeof(cp), + "%.*s/redshift.conf", len, begin); + f = fopen(cp, "r"); + } if (f != NULL) break; } @@ -171,7 +198,7 @@ config_ini_init(config_ini_state_t *state, const char *filepath) s[strcspn(s, "\r\n")] = '\0'; /* Skip comments and empty lines. */ - if (s[0] == ';' || s[0] == '\0') continue; + if (s[0] == ';' || s[0] == '#' || s[0] == '\0') continue; if (s[0] == '[') { /* Read name of section. */ @@ -240,7 +267,7 @@ config_ini_init(config_ini_state_t *state, const char *filepath) config_ini_free(state); return -1; } - + /* Insert into section list. */ setting->name = NULL; setting->value = NULL; diff --git a/src/config.mk b/src/config.mk new file mode 100644 index 0000000..0e0b2fd --- /dev/null +++ b/src/config.mk @@ -0,0 +1,21 @@ +PREFIX = /usr +MANPREFIX = $(PREFIX)/share/man + +CC = c99 + +PKGCONFIG = pkg-config +PKGCONFIG_CFLAGS = $(PKGCONFIG) --cflags +PKGCONFIG_LDFLAGS = $(PKGCONFIG) --libs + +DRM_LIBS = libdrm +GEOCLUE_LIBS = glib-2.0 gio-2.0 +RANDR_LIBS = xcb xcb-randr +VIDMODE_LIBS = x11 xxf86vm + +LIBS_PKGCONFIG = $(DRM_LIBS) $(GEOCLUE_LIBS) $(RANDR_LIBS) $(VIDMODE_LIBS) + +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE\ + -DENABLE_DRM -DENABLE_GEOCLUE2 -DENABLE_RANDR -DENABLE_VIDMODE\ + -DENABLE_COOPGAMMA +CFLAGS = $$($(PKGCONFIG_CFLAGS) $(LIBS_PKGCONFIG)) +LDFLAGS = $$($(PKGCONFIG_LDFLAGS) $(LIBS_PKGCONFIG)) -lm -lcoopgamma diff --git a/src/gamma-coopgamma.c b/src/gamma-coopgamma.c new file mode 100644 index 0000000..41a9d2b --- /dev/null +++ b/src/gamma-coopgamma.c @@ -0,0 +1,571 @@ +/* gamma-coopgamma.h -- coopgamma gamma adjustment source + This file is part of Redshift. + + Redshift is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Redshift is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Redshift. If not, see <http://www.gnu.org/licenses/>. + + Copyright (c) 2016, 2025 Mattias Andrée <m@maandree.se> +*/ + +#ifdef HAVE_CONFIG_H +# include "config.h" +#else +# define PACKAGE "redshift" +#endif + +#include <errno.h> +#include <inttypes.h> +#include <signal.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#ifdef ENABLE_NLS +# include <libintl.h> +# define _(s) gettext(s) +#else +# define _(s) s +#endif + +#include "gamma-coopgamma.h" +#include "colorramp.h" + + +typedef struct { + char *edid; + size_t index; +} coopgamma_output_id_t; + +typedef struct { + libcoopgamma_filter_t filter; + libcoopgamma_ramps_t plain_ramps; + size_t rampsize; +} coopgamma_crtc_state_t; + +typedef struct { + libcoopgamma_context_t ctx; + coopgamma_crtc_state_t *crtcs; + size_t n_crtcs; + char **methods; + char *method; + char *site; + int64_t priority; + int list_outputs; + coopgamma_output_id_t *outputs; + size_t n_outputs; + size_t a_outputs; +} coopgamma_state_t; + + +struct signal_blockage { +}; + +static int +unblocked_signal(int signo, struct signal_blockage *prev) +{ + /* TODO */ + return 0; +} + + +static int +restore_signal_blockage(int signo, const struct signal_blockage *blockage) +{ + /* TODO */ + return 0; +} + + +static int +update(coopgamma_state_t *state) +{ + for (size_t i = 0; i < state->n_crtcs; i++) + libcoopgamma_set_gamma_sync(&state->crtcs[i].filter, &state->ctx); + return 0; +} + + +static void +print_error(coopgamma_state_t *state) +{ + const char* side = state->ctx.error.server_side ? _("server-side") : _("client-side"); + if (state->ctx.error.custom) { + if (state->ctx.error.number != 0 && state->ctx.error.description != NULL) + fprintf(stderr, "%s error number %llu: %s\n", + side, (unsigned long long int)state->ctx.error.number, + state->ctx.error.description); + else if (state->ctx.error.number != 0) + fprintf(stderr, _("%s error number %llu\n"), + side, (unsigned long long int)state->ctx.error.number); + else if (state->ctx.error.description != NULL) + fprintf(stderr, _("%s error: %s\n"), side, state->ctx.error.description); + } else if (state->ctx.error.description != NULL) { + fprintf(stderr, _("%s error: %s\n"), side, state->ctx.error.description); + } else { + fprintf(stderr, _("%s error: %s\n"), side, strerror(state->ctx.error.number)); + } +} + + +static int +coopgamma_init(coopgamma_state_t **state) +{ + *state = malloc(sizeof(coopgamma_state_t)); + if (*state == NULL) return -1; + + coopgamma_state_t *s = *state; + + struct signal_blockage signal_blockage; + memset(s, 0, sizeof(*s)); + if (libcoopgamma_context_initialise(&s->ctx)) { + perror("libcoopgamma_context_initialise"); + return -1; + } + + /* This is done this early to check if coopgamma is available */ + if (unblocked_signal(SIGCHLD, &signal_blockage) < 0) + return -1; + s->methods = libcoopgamma_get_methods(); + if (s->methods == NULL) { + perror("libcoopgamma_get_methods"); + if (restore_signal_blockage(SIGCHLD, &signal_blockage) < 0) + exit(EXIT_FAILURE); + return -1; + } + if (restore_signal_blockage(SIGCHLD, &signal_blockage) < 0) + return -1; + + s->priority = 0x0800000000000000LL; + + return 0; +} + +static int +coopgamma_start(coopgamma_state_t *state, program_mode_t mode) +{ + struct signal_blockage signal_blockage; + libcoopgamma_lifespan_t lifespan; + char** outputs; + size_t i, j, n_outputs; + int r; + double d; + + switch (mode) { + case PROGRAM_MODE_RESET: + lifespan = LIBCOOPGAMMA_REMOVE; + break; + case PROGRAM_MODE_ONE_SHOT: + case PROGRAM_MODE_MANUAL: + lifespan = LIBCOOPGAMMA_UNTIL_REMOVAL; + break; + default: + lifespan = LIBCOOPGAMMA_UNTIL_DEATH; + break; + } + + free(state->methods); + state->methods = NULL; + + /* Connect to server */ + if (unblocked_signal(SIGCHLD, &signal_blockage) < 0) + return -1; + if (libcoopgamma_connect(state->method, state->site, &state->ctx) < 0) { + if (errno) + perror("libcoopgamma_connect"); + else + fprintf(stderr, _("libcoopgamma_connect: could not " + "start coopgamma server\n")); + if (restore_signal_blockage(SIGCHLD, &signal_blockage) < 0) + exit(EXIT_FAILURE); + return -1; + } + if (restore_signal_blockage(SIGCHLD, &signal_blockage) < 0) + return -1; + free(state->method); + state->method = NULL; + free(state->site); + state->site = NULL; + + /* Get available outputs */ + outputs = libcoopgamma_get_crtcs_sync(&state->ctx); + for (n_outputs = 0; outputs[n_outputs]; n_outputs++); + + /* List available output if edid=list was used */ + if (state->list_outputs) { + if (outputs == NULL) { + print_error(state); + return -1; + } + printf(_("Available outputs:\n")); + for (i = 0; outputs[i]; i++) + printf(" %s\n", outputs[i]); + if (ferror(stdout)) { + perror("printf"); + exit(EXIT_FAILURE); + } + exit(EXIT_SUCCESS); + } + + /* Translate crtc=N to edid=EDID */ + for (i = 0; i < state->n_outputs; i++) { + if (state->outputs[i].edid != NULL) + continue; + if (state->outputs[i].index >= n_outputs) { + fprintf(stderr, _("monitor number %zu does not exist," + "available monitors are [0, %zu]\n"), + state->outputs[i].index, n_outputs - 1); + return -1; + } + state->outputs[i].edid = strdup(outputs[state->outputs[i].index]); + if (state->outputs[i].edid == NULL) { + perror("strdup"); + return -1; + } + } + + /* Use all outputs if none were specified */ + if (state->n_outputs == 0) { + state->n_outputs = state->a_outputs = n_outputs; + state->outputs = malloc(n_outputs * sizeof(*state->outputs)); + if (state->outputs == NULL) { + perror("malloc"); + return -1; + } + for (i = 0; i < n_outputs; i++) { + state->outputs[i].edid = strdup(outputs[i]); + if (state->outputs[i].edid == NULL) { + perror("strdup"); + return -1; + } + } + } + + free(outputs); + + /* Initialise information for each output */ + state->crtcs = calloc(state->n_outputs, sizeof(*state->crtcs)); + if (state->crtcs == NULL) { + perror("calloc"); + return -1; + } + for (i = 0; i < state->n_outputs; i++) { + libcoopgamma_crtc_info_t info; + coopgamma_crtc_state_t *crtc = state->crtcs + state->n_crtcs; + + crtc->filter.priority = state->priority; + crtc->filter.crtc = state->outputs[i].edid; + crtc->filter.class = PACKAGE "::redshift::standard"; + crtc->filter.lifespan = lifespan; + + if (libcoopgamma_get_gamma_info_sync(crtc->filter.crtc, &info, &state->ctx) < 0) { + int saved_errno = errno; + fprintf(stderr, _("failed to retrieve information for output `%s':\n"), + outputs[i]); + errno = saved_errno; + print_error(state); + return -1; + } + if (!info.cooperative) { + fprintf(stderr, _("coopgamma is not available\n")); + return -1; + } + if (info.supported == LIBCOOPGAMMA_NO) { + fprintf(stderr, _("output `%s' does not support gamma " + "adjustments, skipping\n"), outputs[i]); + continue; + } + + /* Get total size of the ramps */ + switch (info.depth) { +#define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\ + case DEPTH:\ + crtc->rampsize = sizeof(TYPE);\ + break; + LIST_RAMPS_STOP_VALUE_TYPES +#undef X + default: + if (info.depth > 0) + fprintf(stderr, _("output `%s' uses an unsupported depth " + "for its gamma ramps: %i bits, skipping\n"), + outputs[i], info.depth); + else + fprintf(stderr, _("output `%s' uses an unrecognised depth, " + "for its gamma ramps, with the code %i, " + "skipping\n"), outputs[i], info.depth); + continue; + } + crtc->rampsize *= info.red_size + info.green_size + info.blue_size; + + crtc->filter.depth = info.depth; + crtc->filter.ramps.u8.red_size = info.red_size; + crtc->filter.ramps.u8.green_size = info.green_size; + crtc->filter.ramps.u8.blue_size = info.blue_size; + crtc->plain_ramps.u8.red_size = info.red_size; + crtc->plain_ramps.u8.green_size = info.green_size; + crtc->plain_ramps.u8.blue_size = info.blue_size; + + /* Initialise plain ramp and working ramp */ +#define float f +#define double d + switch (info.depth) { +#define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\ + case DEPTH:\ + r = libcoopgamma_ramps_initialise(&crtc->filter.ramps.SUFFIX);\ + if (r < 0) {\ + perror("libcoopgamma_ramps_initialise");\ + return -1;\ + }\ + r = libcoopgamma_ramps_initialise(&crtc->plain_ramps.SUFFIX);\ + if (r < 0) {\ + perror("libcoopgamma_ramps_initialise");\ + return -1;\ + }\ + for (j = 0; j < crtc->plain_ramps.SUFFIX.red_size; j++) {\ + d = j;\ + d /= crtc->plain_ramps.SUFFIX.red_size;\ + crtc->plain_ramps.SUFFIX.red[j] = d * TRUE_MAX;\ + }\ + for (j = 0; j < crtc->plain_ramps.SUFFIX.green_size; j++) {\ + d = j;\ + d /= crtc->plain_ramps.SUFFIX.green_size;\ + crtc->plain_ramps.SUFFIX.green[j] = d * TRUE_MAX;\ + }\ + for (j = 0; j < crtc->plain_ramps.SUFFIX.blue_size; j++) {\ + d = j;\ + d /= crtc->plain_ramps.SUFFIX.blue_size;\ + crtc->plain_ramps.SUFFIX.blue[j] = d * TRUE_MAX;\ + }\ + break; + LIST_RAMPS_STOP_VALUE_TYPES +#undef X + default: + abort(); + } +#undef float +#undef double + + state->outputs[i].edid = NULL; + state->n_crtcs++; + } + + free(state->outputs); + state->outputs = NULL; + state->n_outputs = 0; + + return 0; +} + +static void +coopgamma_free(coopgamma_state_t *state) +{ + free(state->methods); + state->methods = NULL; + free(state->method); + state->method = NULL; + free(state->site); + state->site = NULL; + + while (state->n_crtcs--) { + state->crtcs[state->n_crtcs].filter.class = NULL; + libcoopgamma_filter_destroy(&state->crtcs[state->n_crtcs].filter); + libcoopgamma_ramps_destroy(&state->crtcs[state->n_crtcs].plain_ramps); + } + state->n_crtcs = 0; + free(state->crtcs); + state->crtcs = NULL; + + libcoopgamma_context_destroy(&state->ctx, 1); + while (state->n_outputs--) + free(state->outputs[state->n_outputs].edid); + state->n_outputs = 0; + free(state->outputs); + state->outputs = NULL; +} + +static void +coopgamma_print_help(FILE *f) +{ + fputs(_("Adjust gamma ramps with coopgamma.\n"), f); + fputs("\n", f); + + /* TRANSLATORS: coopgamma help output + left column must not be translated */ + fputs(_(" edid=EDID \tEDID of monitor to apply adjustments to, enter " + "`list' to list available monitors\n" + " crtc=N \tIndex of CRTC to apply adjustments to\n" + " priority=N \tThe application order of the adjustments, " + "default value is 576460752303423488.\n" + " method=METHOD \tUnderlaying adjustment method, enter " + "`list' to list available methods\n" + " display=DISPLAY\tThe display to apply adjustments to\n"), + f); + fputs("\n", f); +} + +static int +coopgamma_set_option(coopgamma_state_t *state, const char *key, const char *value) +{ + size_t i; + char *end; + long long int priority; + + if (!strcasecmp(key, "priority")) { + errno = 0; + priority = strtoll(value, &end, 10); + if (errno || *end || priority < INT64_MIN || priority > INT64_MAX) { + fprintf(stderr, _("value of method parameter `crtc' " + "must be a integer in [%lli, %lli]\n"), + (long long int)INT64_MIN, (long long int)INT64_MAX); + return -1; + } + state->priority = priority; + } else if (!strcasecmp(key, "method")) { + if (state->method != NULL) { + fprintf(stderr, _("method parameter `method' " + "can only be used once\n")); + return -1; + } + if (!strcasecmp(value, "list")) { + /* TRANSLATORS: coopgamma help output + the word "coopgamma" must not be translated */ + printf(_("Available adjustment methods for coopgamma:\n")); + for (i = 0; state->methods[i]; i++) + printf(" %s\n", state->methods[i]); + if (ferror(stdout)) { + perror("printf"); + exit(EXIT_FAILURE); + } + exit(EXIT_SUCCESS); + } + state->method = strdup(value); + if (state->method == NULL) { + perror("strdup"); + return -1; + } + } else if (!strcasecmp(key, "display")) { + if (state->site != NULL) { + fprintf(stderr, _("method parameter `display' " + "can only be used once\n")); + return -1; + } + state->site = strdup(value); + if (state->site == NULL) { + perror("strdup"); + return -1; + } + } else if (!strcasecmp(key, "edid") || !strcasecmp(key, "crtc")) { + if (state->n_outputs == state->a_outputs) { + state->a_outputs += 8; + state->outputs = realloc(state->outputs, + state->a_outputs * sizeof(*state->outputs)); + if (state->outputs == NULL) { + perror("realloc"); + return -1; + } + } + if (!strcasecmp(key, "edid")) { + state->outputs[state->n_outputs].edid = strdup(value); + if (state->outputs[state->n_outputs].edid == NULL) { + perror("strdup"); + return -1; + } + if (!strcasecmp(state->outputs[state->n_outputs].edid, "list")) + state->list_outputs = 1; + } else { + state->outputs[state->n_outputs].edid = NULL; + errno = 0; + state->outputs[state->n_outputs].index = (size_t)strtoul(value, &end, 10); + if (!*end && errno == ERANGE && + state->outputs[state->n_outputs].index == SIZE_MAX) { + state->outputs[state->n_outputs].index = SIZE_MAX; + } else if (errno || *end) { + fprintf(stderr, _("value of method parameter `crtc' " + "must be a non-negative integer\n")); + return -1; + } + } + state->n_outputs++; + } else { + fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); + return -1; + } + + return 0; +} + +static void +coopgamma_restore(coopgamma_state_t *state) +{ + size_t i; + for (i = 0; i < state->n_crtcs; i++) + state->crtcs[i].filter.lifespan = LIBCOOPGAMMA_REMOVE; + update(state); + for (i = 0; i < state->n_crtcs; i++) + state->crtcs[i].filter.lifespan = LIBCOOPGAMMA_UNTIL_DEATH; +} + +static int +coopgamma_set_temperature(coopgamma_state_t *state, const color_setting_t *setting) +{ + libcoopgamma_filter_t *filter; + libcoopgamma_filter_t *last_filter = NULL; + size_t i; + + for (i = 0; i < state->n_crtcs; i++, last_filter = filter) { + filter = &state->crtcs[i].filter; + + /* Copy ramps for previous CRTC if its ramps is of same size and depth */ + if (last_filter != NULL && + last_filter->ramps.u8.red_size == filter->ramps.u8.red_size && + last_filter->ramps.u8.green_size == filter->ramps.u8.green_size && + last_filter->ramps.u8.blue_size == filter->ramps.u8.blue_size) { + memcpy(filter->ramps.u8.red, last_filter->ramps.u8.red, + state->crtcs[i].rampsize); + continue; + } + + /* Otherwise, create calculate the ramps */ + memcpy(filter->ramps.u8.red, state->crtcs[i].plain_ramps.u8.red, + state->crtcs[i].rampsize); + switch (filter->depth) { +#define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\ + case DEPTH:\ + colorramp_fill_##SUFFIX((void *)(filter->ramps.u8.red),\ + (void *)(filter->ramps.u8.green),\ + (void *)(filter->ramps.u8.blue),\ + filter->ramps.u8.red_size,\ + filter->ramps.u8.green_size,\ + filter->ramps.u8.blue_size,\ + setting);\ + break; + LIST_RAMPS_STOP_VALUE_TYPES +#undef X + default: + abort(); + } + } + + return update(state); +} + + +const gamma_method_t coopgamma_gamma_method = { + "coopgamma", 1, + (gamma_method_init_func *)coopgamma_init, + (gamma_method_start_func *)coopgamma_start, + (gamma_method_free_func *)coopgamma_free, + (gamma_method_print_help_func *)coopgamma_print_help, + (gamma_method_set_option_func *)coopgamma_set_option, + (gamma_method_restore_func *)coopgamma_restore, + (gamma_method_set_temperature_func *)coopgamma_set_temperature +}; diff --git a/src/gamma-coopgamma.h b/src/gamma-coopgamma.h new file mode 100644 index 0000000..a46f863 --- /dev/null +++ b/src/gamma-coopgamma.h @@ -0,0 +1,29 @@ +/* gamma-coopgamma.h -- coopgamma gamma adjustment header + This file is part of Redshift. + + Redshift is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Redshift is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Redshift. If not, see <http://www.gnu.org/licenses/>. + + Copyright (c) 2016, 2025 Mattias Andrée <m@maandree.se> +*/ + +#ifndef REDSHIFT_GAMMA_COOPGAMMA_H +#define REDSHIFT_GAMMA_COOPGAMMA_H + +#include <libcoopgamma.h> + +#include "redshift.h" + +extern const gamma_method_t coopgamma_gamma_method; + +#endif /* ! REDSHIFT_GAMMA_COOPGAMMA_H */ diff --git a/src/gamma-drm.c b/src/gamma-drm.c index d431395..dec7074 100644 --- a/src/gamma-drm.c +++ b/src/gamma-drm.c @@ -14,14 +14,18 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2014 Mattias Andrée <maandree@member.fsf.org> + Copyright (c) 2014 Mattias Andrée <m@maandree.se> + Copyright (c) 2017 Jon Lund Steffensen <jonlst@gmail.com> */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> -#include <alloca.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> @@ -38,29 +42,54 @@ #define O_CLOEXEC 02000000 #endif +#include <xf86drm.h> +#include <xf86drmMode.h> + #include "gamma-drm.h" #include "colorramp.h" -int -drm_init(drm_state_t *state) +typedef struct { + int crtc_num; + int crtc_id; + int gamma_size; + uint16_t* r_gamma; + uint16_t* g_gamma; + uint16_t* b_gamma; +} drm_crtc_state_t; + +typedef struct { + int card_num; + int crtc_num; + int fd; + drmModeRes* res; + drm_crtc_state_t* crtcs; +} drm_state_t; + + +static int +drm_init(drm_state_t **state) { /* Initialize state. */ - state->card_num = 0; - state->crtc_num = -1; - state->fd = -1; - state->res = NULL; - state->crtcs = NULL; + *state = malloc(sizeof(drm_state_t)); + if (*state == NULL) return -1; + + drm_state_t *s = *state; + s->card_num = 0; + s->crtc_num = -1; + s->fd = -1; + s->res = NULL; + s->crtcs = NULL; return 0; } -int -drm_start(drm_state_t *state) +static int +drm_start(drm_state_t *state, program_mode_t mode) { /* Acquire access to a graphics card. */ long maxlen = strlen(DRM_DIR_NAME) + strlen(DRM_DEV_NAME) + 10; - char *pathname = alloca(maxlen * sizeof(char)); + char pathname[maxlen]; sprintf(pathname, DRM_DEV_NAME, DRM_DIR_NAME, state->card_num); @@ -69,6 +98,8 @@ drm_start(drm_state_t *state) /* TODO check if access permissions, normally root or membership of the video group is required. */ perror("open"); + fprintf(stderr, _("Failed to open DRM device: %s\n"), + pathname); return -1; } @@ -171,7 +202,7 @@ drm_start(drm_state_t *state) return 0; } -void +static void drm_restore(drm_state_t *state) { drm_crtc_state_t *crtcs = state->crtcs; @@ -184,14 +215,13 @@ drm_restore(drm_state_t *state) } } -void +static void drm_free(drm_state_t *state) { if (state->crtcs != NULL) { drm_crtc_state_t *crtcs = state->crtcs; while (crtcs->crtc_num >= 0) { - if (crtcs->r_gamma != NULL) - free(crtcs->r_gamma); + free(crtcs->r_gamma); crtcs->crtc_num = -1; crtcs++; } @@ -206,9 +236,11 @@ drm_free(drm_state_t *state) close(state->fd); state->fd = -1; } + + free(state); } -void +static void drm_print_help(FILE *f) { fputs(_("Adjust gamma ramps with Direct Rendering Manager.\n"), f); @@ -221,7 +253,7 @@ drm_print_help(FILE *f) fputs("\n", f); } -int +static int drm_set_option(drm_state_t *state, const char *key, const char *value) { if (strcasecmp(key, "card") == 0) { @@ -240,11 +272,12 @@ drm_set_option(drm_state_t *state, const char *key, const char *value) return 0; } -int -drm_set_temperature(drm_state_t *state, const color_setting_t *setting) +static int +drm_set_temperature( + drm_state_t *state, const color_setting_t *setting, int preserve) { drm_crtc_state_t *crtcs = state->crtcs; - int last_gamma_size = 0; + uint32_t last_gamma_size = 0; uint16_t *r_gamma = NULL; uint16_t *g_gamma = NULL; uint16_t *b_gamma = NULL; @@ -270,16 +303,16 @@ drm_set_temperature(drm_state_t *state, const color_setting_t *setting) } /* Initialize gamma ramps to pure state */ - int ramp_size = crtcs->gamma_size; - for (int i = 0; i < ramp_size; i++) { + uint32_t ramp_size = crtcs->gamma_size; + for (uint32_t i = 0; i < ramp_size; i++) { uint16_t value = (double)i/ramp_size * (UINT16_MAX+1); r_gamma[i] = value; g_gamma[i] = value; b_gamma[i] = value; } - colorramp_fill(r_gamma, g_gamma, b_gamma, crtcs->gamma_size, - setting); + colorramp_fill_u16(r_gamma, g_gamma, b_gamma, crtcs->gamma_size, + crtcs->gamma_size, crtcs->gamma_size, setting); drmModeCrtcSetGamma(state->fd, crtcs->crtc_id, crtcs->gamma_size, r_gamma, g_gamma, b_gamma); } @@ -288,3 +321,15 @@ drm_set_temperature(drm_state_t *state, const color_setting_t *setting) return 0; } + + +const gamma_method_t drm_gamma_method = { + "drm", 0, + (gamma_method_init_func *)drm_init, + (gamma_method_start_func *)drm_start, + (gamma_method_free_func *)drm_free, + (gamma_method_print_help_func *)drm_print_help, + (gamma_method_set_option_func *)drm_set_option, + (gamma_method_restore_func *)drm_restore, + (gamma_method_set_temperature_func *)drm_set_temperature +}; diff --git a/src/gamma-drm.h b/src/gamma-drm.h index ae97d00..96ee10c 100644 --- a/src/gamma-drm.h +++ b/src/gamma-drm.h @@ -14,48 +14,15 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2014 Mattias Andrée <maandree@member.fsf.org> + Copyright (c) 2014 Mattias Andrée <m@maandree.se> + Copyright (c) 2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_GAMMA_DRM_H #define REDSHIFT_GAMMA_DRM_H -#include <stdint.h> - -#include <xf86drm.h> -#include <xf86drmMode.h> - #include "redshift.h" - -typedef struct { - int crtc_num; - int crtc_id; - int gamma_size; - uint16_t* r_gamma; - uint16_t* g_gamma; - uint16_t* b_gamma; -} drm_crtc_state_t; - -typedef struct { - int card_num; - int crtc_num; - int fd; - drmModeRes* res; - drm_crtc_state_t* crtcs; -} drm_state_t; - - -int drm_init(drm_state_t *state); -int drm_start(drm_state_t *state); -void drm_free(drm_state_t *state); - -void drm_print_help(FILE *f); -int drm_set_option(drm_state_t *state, const char *key, const char *value); - -void drm_restore(drm_state_t *state); -int drm_set_temperature(drm_state_t *state, - const color_setting_t *setting); - +extern const gamma_method_t drm_gamma_method; #endif /* ! REDSHIFT_GAMMA_DRM_H */ diff --git a/src/gamma-dummy.c b/src/gamma-dummy.c index ba62d93..559fcea 100644 --- a/src/gamma-dummy.c +++ b/src/gamma-dummy.c @@ -14,9 +14,13 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2013-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2013-2017 Jon Lund Steffensen <jonlst@gmail.com> */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> @@ -30,46 +34,60 @@ #include "redshift.h" -int -gamma_dummy_init(void *state) +static int +gamma_dummy_init(void **state) { + *state = NULL; return 0; } -int -gamma_dummy_start(void *state) +static int +gamma_dummy_start(void *state, program_mode_t mode) { fputs(_("WARNING: Using dummy gamma method! Display will not be affected by this gamma method.\n"), stderr); return 0; } -void +static void gamma_dummy_restore(void *state) { } -void +static void gamma_dummy_free(void *state) { } -void +static void gamma_dummy_print_help(FILE *f) { fputs(_("Does not affect the display but prints the color temperature to the terminal.\n"), f); fputs("\n", f); } -int +static int gamma_dummy_set_option(void *state, const char *key, const char *value) { fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); return -1; } -int -gamma_dummy_set_temperature(void *state, const color_setting_t *setting) +static int +gamma_dummy_set_temperature( + void *state, const color_setting_t *setting, int preserve) { printf(_("Temperature: %i\n"), setting->temperature); return 0; } + + +const gamma_method_t dummy_gamma_method = { + "dummy", 0, + (gamma_method_init_func *)gamma_dummy_init, + (gamma_method_start_func *)gamma_dummy_start, + (gamma_method_free_func *)gamma_dummy_free, + (gamma_method_print_help_func *)gamma_dummy_print_help, + (gamma_method_set_option_func *)gamma_dummy_set_option, + (gamma_method_restore_func *)gamma_dummy_restore, + (gamma_method_set_temperature_func *)gamma_dummy_set_temperature +}; diff --git a/src/gamma-dummy.h b/src/gamma-dummy.h index 3e58ec1..c610d94 100644 --- a/src/gamma-dummy.h +++ b/src/gamma-dummy.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2013-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2013-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_GAMMA_DUMMY_H @@ -22,17 +22,6 @@ #include "redshift.h" - -int gamma_dummy_init(void *state); -int gamma_dummy_start(void *state); -void gamma_dummy_free(void *state); - -void gamma_dummy_print_help(FILE *f); -int gamma_dummy_set_option(void *state, const char *key, const char *value); - -void gamma_dummy_restore(void *state); -int gamma_dummy_set_temperature(void *state, - const color_setting_t *setting); - +extern const gamma_method_t dummy_gamma_method; #endif /* ! REDSHIFT_GAMMA_DUMMY_H */ diff --git a/src/gamma-quartz.c b/src/gamma-quartz.c index 6691c91..74ceaf0 100644 --- a/src/gamma-quartz.c +++ b/src/gamma-quartz.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2014-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifdef HAVE_CONFIG_H @@ -37,19 +37,33 @@ #include "colorramp.h" -int -quartz_init(quartz_state_t *state) +typedef struct { + CGDirectDisplayID display; + uint32_t ramp_size; + float *saved_ramps; +} quartz_display_state_t; + +typedef struct { + quartz_display_state_t *displays; + uint32_t display_count; +} quartz_state_t; + + +static int +quartz_init(quartz_state_t **state) { - state->preserve = 0; - state->displays = NULL; + *state = malloc(sizeof(quartz_state_t)); + if (*state == NULL) return -1; + + quartz_state_t *s = *state; + s->displays = NULL; return 0; } -int -quartz_start(quartz_state_t *state) +static int +quartz_start(quartz_state_t *state, program_mode_t mode) { - int r; CGError error; uint32_t display_count; @@ -132,13 +146,13 @@ quartz_start(quartz_state_t *state) return 0; } -void +static void quartz_restore(quartz_state_t *state) { CGDisplayRestoreColorSyncSettings(); } -void +static void quartz_free(quartz_state_t *state) { if (state->displays != NULL) { @@ -147,27 +161,24 @@ quartz_free(quartz_state_t *state) } } free(state->displays); + free(state); } -void +static void quartz_print_help(FILE *f) { - fputs(_("Adjust gamma ramps on OSX using Quartz.\n"), f); - fputs("\n", f); - - /* TRANSLATORS: Quartz help output - left column must not be translated */ - fputs(_(" preserve={0,1}\tWhether existing gamma should be" - " preserved\n"), - f); + fputs(_("Adjust gamma ramps on macOS using Quartz.\n"), f); fputs("\n", f); } -int +static int quartz_set_option(quartz_state_t *state, const char *key, const char *value) { if (strcasecmp(key, "preserve") == 0) { - state->preserve = atoi(value); + fprintf(stderr, _("Parameter `%s` is now always on; " + " Use the `%s` command-line option" + " to disable.\n"), + key, "-P"); } else { fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); return -1; @@ -177,10 +188,12 @@ quartz_set_option(quartz_state_t *state, const char *key, const char *value) } static void -quartz_set_temperature_for_display(quartz_state_t *state, int display, - const color_setting_t *setting) +quartz_set_temperature_for_display( + quartz_state_t *state, int display_index, + const color_setting_t *setting, int preserve) { - uint32_t ramp_size = state->displays[display].ramp_size; + CGDirectDisplayID display = state->displays[display_index].display; + uint32_t ramp_size = state->displays[display_index].ramp_size; /* Create new gamma ramps */ float *gamma_ramps = malloc(3*ramp_size*sizeof(float)); @@ -193,9 +206,9 @@ quartz_set_temperature_for_display(quartz_state_t *state, int display, float *gamma_g = &gamma_ramps[1*ramp_size]; float *gamma_b = &gamma_ramps[2*ramp_size]; - if (state->preserve) { + if (preserve) { /* Initialize gamma ramps from saved state */ - memcpy(gamma_ramps, state->displays[display].saved_ramps, + memcpy(gamma_ramps, state->displays[display_index].saved_ramps, 3*ramp_size*sizeof(float)); } else { /* Initialize gamma ramps to pure state */ @@ -208,7 +221,7 @@ quartz_set_temperature_for_display(quartz_state_t *state, int display, } colorramp_fill_float(gamma_r, gamma_g, gamma_b, ramp_size, - setting); + ramp_size, ramp_size, setting); CGError error = CGSetDisplayTransferByTable(display, ramp_size, @@ -221,13 +234,26 @@ quartz_set_temperature_for_display(quartz_state_t *state, int display, free(gamma_ramps); } -int -quartz_set_temperature(quartz_state_t *state, - const color_setting_t *setting) +static int +quartz_set_temperature( + quartz_state_t *state, const color_setting_t *setting, int preserve) { for (int i = 0; i < state->display_count; i++) { - quartz_set_temperature_for_display(state, i, setting); + quartz_set_temperature_for_display( + state, i, setting, preserve); } return 0; } + + +const gamma_method_t quartz_gamma_method = { + "quartz", 1, + (gamma_method_init_func *)quartz_init, + (gamma_method_start_func *)quartz_start, + (gamma_method_free_func *)quartz_free, + (gamma_method_print_help_func *)quartz_print_help, + (gamma_method_set_option_func *)quartz_set_option, + (gamma_method_restore_func *)quartz_restore, + (gamma_method_set_temperature_func *)quartz_set_temperature +}; diff --git a/src/gamma-quartz.h b/src/gamma-quartz.h index cd29d54..9a40137 100644 --- a/src/gamma-quartz.h +++ b/src/gamma-quartz.h @@ -14,43 +14,14 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2014-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_GAMMA_QUARTZ_H #define REDSHIFT_GAMMA_QUARTZ_H -#include <stdint.h> - -#include <ApplicationServices/ApplicationServices.h> - #include "redshift.h" - -typedef struct { - CGDirectDisplayID display; - uint32_t ramp_size; - float *saved_ramps; -} quartz_display_state_t; - -typedef struct { - quartz_display_state_t *displays; - uint32_t display_count; - int preserve; -} quartz_state_t; - - -int quartz_init(quartz_state_t *state); -int quartz_start(quartz_state_t *state); -void quartz_free(quartz_state_t *state); - -void quartz_print_help(FILE *f); -int quartz_set_option(quartz_state_t *state, const char *key, - const char *value); - -void quartz_restore(quartz_state_t *state); -int quartz_set_temperature(quartz_state_t *state, - const color_setting_t *setting); - +extern const gamma_method_t quartz_gamma_method; #endif /* ! REDSHIFT_GAMMA_QUARTZ_H */ diff --git a/src/gamma-randr.c b/src/gamma-randr.c index 0594332..358ab58 100644 --- a/src/gamma-randr.c +++ b/src/gamma-randr.c @@ -14,13 +14,18 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> +#include <errno.h> #ifdef ENABLE_NLS # include <libintl.h> @@ -41,29 +46,50 @@ #define RANDR_VERSION_MINOR 3 -int -randr_init(randr_state_t *state) +typedef struct { + xcb_randr_crtc_t crtc; + unsigned int ramp_size; + uint16_t *saved_ramps; +} randr_crtc_state_t; + +typedef struct { + xcb_connection_t *conn; + xcb_screen_t *screen; + int preferred_screen; + int screen_num; + int crtc_num_count; + int* crtc_num; + unsigned int crtc_count; + randr_crtc_state_t *crtcs; +} randr_state_t; + + +static int +randr_init(randr_state_t **state) { /* Initialize state. */ - state->screen_num = -1; - state->crtc_num = -1; + *state = malloc(sizeof(randr_state_t)); + if (*state == NULL) return -1; - state->crtc_count = 0; - state->crtcs = NULL; + randr_state_t *s = *state; + s->screen_num = -1; + s->crtc_num = NULL; - state->preserve = 0; + s->crtc_num_count = 0; + s->crtc_count = 0; + s->crtcs = NULL; xcb_generic_error_t *error; /* Open X server connection */ - state->conn = xcb_connect(NULL, &state->preferred_screen); + s->conn = xcb_connect(NULL, &s->preferred_screen); /* Query RandR version */ xcb_randr_query_version_cookie_t ver_cookie = - xcb_randr_query_version(state->conn, RANDR_VERSION_MAJOR, + xcb_randr_query_version(s->conn, RANDR_VERSION_MAJOR, RANDR_VERSION_MINOR); xcb_randr_query_version_reply_t *ver_reply = - xcb_randr_query_version_reply(state->conn, ver_cookie, &error); + xcb_randr_query_version_reply(s->conn, ver_cookie, &error); /* TODO What does it mean when both error and ver_reply is NULL? Apparently, we have to check both to avoid seg faults. */ @@ -71,7 +97,8 @@ randr_init(randr_state_t *state) int ec = (error != 0) ? error->error_code : -1; fprintf(stderr, _("`%s' returned error %d\n"), "RANDR Query Version", ec); - xcb_disconnect(state->conn); + xcb_disconnect(s->conn); + free(s); return -1; } @@ -80,7 +107,8 @@ randr_init(randr_state_t *state) fprintf(stderr, _("Unsupported RANDR version (%u.%u)\n"), ver_reply->major_version, ver_reply->minor_version); free(ver_reply); - xcb_disconnect(state->conn); + xcb_disconnect(s->conn); + free(s); return -1; } @@ -89,8 +117,8 @@ randr_init(randr_state_t *state) return 0; } -int -randr_start(randr_state_t *state) +static int +randr_start(randr_state_t *state, program_mode_t mode) { xcb_generic_error_t *error; @@ -226,7 +254,7 @@ randr_start(randr_state_t *state) return 0; } -void +static void randr_restore(randr_state_t *state) { xcb_generic_error_t *error; @@ -255,7 +283,7 @@ randr_restore(randr_state_t *state) } } -void +static void randr_free(randr_state_t *state) { /* Free CRTC state */ @@ -263,12 +291,15 @@ randr_free(randr_state_t *state) free(state->crtcs[i].saved_ramps); } free(state->crtcs); + free(state->crtc_num); /* Close connection */ xcb_disconnect(state->conn); + + free(state); } -void +static void randr_print_help(FILE *f) { fputs(_("Adjust gamma ramps with the X RANDR extension.\n"), f); @@ -277,22 +308,67 @@ randr_print_help(FILE *f) /* TRANSLATORS: RANDR help output left column must not be translated */ fputs(_(" screen=N\t\tX screen to apply adjustments to\n" - " crtc=N\t\tCRTC to apply adjustments to\n" - " preserve={0,1}\tWhether existing gamma should be" - " preserved\n"), + " crtc=N\tList of comma separated CRTCs to apply" + " adjustments to\n"), f); fputs("\n", f); } -int +static int randr_set_option(randr_state_t *state, const char *key, const char *value) { if (strcasecmp(key, "screen") == 0) { state->screen_num = atoi(value); } else if (strcasecmp(key, "crtc") == 0) { - state->crtc_num = atoi(value); + char *tail; + + /* Check how many crtcs are configured */ + const char *local_value = value; + while (1) { + errno = 0; + int parsed = strtol(local_value, &tail, 0); + if (parsed == 0 && (errno != 0 || + tail == local_value)) { + fprintf(stderr, _("Unable to read screen" + " number: `%s'.\n"), value); + return -1; + } else { + state->crtc_num_count += 1; + } + local_value = tail; + + if (*local_value == ',') { + local_value += 1; + } else if (*local_value == '\0') { + break; + } + } + + /* Configure all given crtcs */ + state->crtc_num = calloc(state->crtc_num_count, sizeof(int)); + local_value = value; + for (int i = 0; i < state->crtc_num_count; i++) { + errno = 0; + int parsed = strtol(local_value, &tail, 0); + if (parsed == 0 && (errno != 0 || + tail == local_value)) { + return -1; + } else { + state->crtc_num[i] = parsed; + } + local_value = tail; + + if (*local_value == ',') { + local_value += 1; + } else if (*local_value == '\0') { + break; + } + } } else if (strcasecmp(key, "preserve") == 0) { - state->preserve = atoi(value); + fprintf(stderr, _("Parameter `%s` is now always on; " + " Use the `%s` command-line option" + " to disable.\n"), + key, "-P"); } else { fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); return -1; @@ -302,14 +378,15 @@ randr_set_option(randr_state_t *state, const char *key, const char *value) } static int -randr_set_temperature_for_crtc(randr_state_t *state, int crtc_num, - const color_setting_t *setting) +randr_set_temperature_for_crtc( + randr_state_t *state, int crtc_num, const color_setting_t *setting, + int preserve) { xcb_generic_error_t *error; - + if (crtc_num >= state->crtc_count || crtc_num < 0) { fprintf(stderr, _("CRTC %d does not exist. "), - state->crtc_num); + crtc_num); if (state->crtc_count > 1) { fprintf(stderr, _("Valid CRTCs are [0-%d].\n"), state->crtc_count-1); @@ -334,7 +411,7 @@ randr_set_temperature_for_crtc(randr_state_t *state, int crtc_num, uint16_t *gamma_g = &gamma_ramps[1*ramp_size]; uint16_t *gamma_b = &gamma_ramps[2*ramp_size]; - if (state->preserve) { + if (preserve) { /* Initialize gamma ramps from saved state */ memcpy(gamma_ramps, state->crtcs[crtc_num].saved_ramps, 3*ramp_size*sizeof(uint16_t)); @@ -348,8 +425,8 @@ randr_set_temperature_for_crtc(randr_state_t *state, int crtc_num, } } - colorramp_fill(gamma_r, gamma_g, gamma_b, ramp_size, - setting); + colorramp_fill_u16(gamma_r, gamma_g, gamma_b, ramp_size, + ramp_size, ramp_size, setting); /* Set new gamma ramps */ xcb_void_cookie_t gamma_set_cookie = @@ -370,24 +447,39 @@ randr_set_temperature_for_crtc(randr_state_t *state, int crtc_num, return 0; } -int -randr_set_temperature(randr_state_t *state, - const color_setting_t *setting) +static int +randr_set_temperature( + randr_state_t *state, const color_setting_t *setting, int preserve) { int r; - /* If no CRTC number has been specified, + /* If no CRTC numbers have been specified, set temperature on all CRTCs. */ - if (state->crtc_num < 0) { + if (state->crtc_num_count == 0) { for (int i = 0; i < state->crtc_count; i++) { - r = randr_set_temperature_for_crtc(state, i, - setting); + r = randr_set_temperature_for_crtc( + state, i, setting, preserve); if (r < 0) return -1; } } else { - return randr_set_temperature_for_crtc(state, state->crtc_num, - setting); + for (int i = 0; i < state->crtc_num_count; ++i) { + r = randr_set_temperature_for_crtc( + state, state->crtc_num[i], setting, preserve); + if (r < 0) return -1; + } } return 0; } + + +const gamma_method_t randr_gamma_method = { + "randr", 1, + (gamma_method_init_func *)randr_init, + (gamma_method_start_func *)randr_start, + (gamma_method_free_func *)randr_free, + (gamma_method_print_help_func *)randr_print_help, + (gamma_method_set_option_func *)randr_set_option, + (gamma_method_restore_func *)randr_restore, + (gamma_method_set_temperature_func *)randr_set_temperature +}; diff --git a/src/gamma-randr.h b/src/gamma-randr.h index 093c41f..0545d2f 100644 --- a/src/gamma-randr.h +++ b/src/gamma-randr.h @@ -14,49 +14,14 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_GAMMA_RANDR_H #define REDSHIFT_GAMMA_RANDR_H -#include <stdio.h> -#include <stdint.h> - -#include <xcb/xcb.h> -#include <xcb/randr.h> - #include "redshift.h" - -typedef struct { - xcb_randr_crtc_t crtc; - unsigned int ramp_size; - uint16_t *saved_ramps; -} randr_crtc_state_t; - -typedef struct { - xcb_connection_t *conn; - xcb_screen_t *screen; - int preferred_screen; - int preserve; - int screen_num; - int crtc_num; - unsigned int crtc_count; - randr_crtc_state_t *crtcs; -} randr_state_t; - - -int randr_init(randr_state_t *state); -int randr_start(randr_state_t *state); -void randr_free(randr_state_t *state); - -void randr_print_help(FILE *f); -int randr_set_option(randr_state_t *state, const char *key, const char *value); - -void randr_restore(randr_state_t *state); -int randr_set_temperature(randr_state_t *state, - const color_setting_t *setting); - +extern const gamma_method_t randr_gamma_method; #endif /* ! REDSHIFT_GAMMA_RANDR_H */ diff --git a/src/gamma-vidmode.c b/src/gamma-vidmode.c index 254d065..1ea585e 100644 --- a/src/gamma-vidmode.c +++ b/src/gamma-vidmode.c @@ -14,9 +14,13 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdlib.h> #include <stdio.h> #include <stdint.h> @@ -37,27 +41,36 @@ #include "colorramp.h" -int -vidmode_init(vidmode_state_t *state) +typedef struct { + Display *display; + int screen_num; + int ramp_size; + uint16_t *saved_ramps; +} vidmode_state_t; + + +static int +vidmode_init(vidmode_state_t **state) { - state->screen_num = -1; - state->saved_ramps = NULL; + *state = malloc(sizeof(vidmode_state_t)); + if (*state == NULL) return -1; - state->preserve = 0; + vidmode_state_t *s = *state; + s->screen_num = -1; + s->saved_ramps = NULL; /* Open display */ - state->display = XOpenDisplay(NULL); - if (state->display == NULL) { - fprintf(stderr, _("X request failed: %s\n"), - "XOpenDisplay"); + s->display = XOpenDisplay(NULL); + if (s->display == NULL) { + fprintf(stderr, _("X request failed: %s\n"), "XOpenDisplay"); return -1; } return 0; } -int -vidmode_start(vidmode_state_t *state) +static int +vidmode_start(vidmode_state_t *state, program_mode_t mode) { int r; int screen_num = state->screen_num; @@ -113,7 +126,7 @@ vidmode_start(vidmode_state_t *state) return 0; } -void +static void vidmode_free(vidmode_state_t *state) { /* Free saved ramps */ @@ -121,9 +134,11 @@ vidmode_free(vidmode_state_t *state) /* Close display connection */ XCloseDisplay(state->display); + + free(state); } -void +static void vidmode_print_help(FILE *f) { fputs(_("Adjust gamma ramps with the X VidMode extension.\n"), f); @@ -131,20 +146,21 @@ vidmode_print_help(FILE *f) /* TRANSLATORS: VidMode help output left column must not be translated */ - fputs(_(" screen=N\t\tX screen to apply adjustments to\n" - " preserve={0,1}\tWhether existing gamma should be" - " preserved\n"), + fputs(_(" screen=N\t\tX screen to apply adjustments to\n"), f); fputs("\n", f); } -int +static int vidmode_set_option(vidmode_state_t *state, const char *key, const char *value) { if (strcasecmp(key, "screen") == 0) { state->screen_num = atoi(value); } else if (strcasecmp(key, "preserve") == 0) { - state->preserve = atoi(value); + fprintf(stderr, _("Parameter `%s` is now always on; " + " Use the `%s` command-line option" + " to disable.\n"), + key, "-P"); } else { fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); return -1; @@ -153,7 +169,7 @@ vidmode_set_option(vidmode_state_t *state, const char *key, const char *value) return 0; } -void +static void vidmode_restore(vidmode_state_t *state) { uint16_t *gamma_r = &state->saved_ramps[0*state->ramp_size]; @@ -167,12 +183,12 @@ vidmode_restore(vidmode_state_t *state) if (!r) { fprintf(stderr, _("X request failed: %s\n"), "XF86VidModeSetGammaRamp"); - } + } } -int -vidmode_set_temperature(vidmode_state_t *state, - const color_setting_t *setting) +static int +vidmode_set_temperature( + vidmode_state_t *state, const color_setting_t *setting, int preserve) { int r; @@ -187,7 +203,7 @@ vidmode_set_temperature(vidmode_state_t *state, uint16_t *gamma_g = &gamma_ramps[1*state->ramp_size]; uint16_t *gamma_b = &gamma_ramps[2*state->ramp_size]; - if (state->preserve) { + if (preserve) { /* Initialize gamma ramps from saved state */ memcpy(gamma_ramps, state->saved_ramps, 3*state->ramp_size*sizeof(uint16_t)); @@ -202,8 +218,8 @@ vidmode_set_temperature(vidmode_state_t *state, } } - colorramp_fill(gamma_r, gamma_g, gamma_b, state->ramp_size, - setting); + colorramp_fill_u16(gamma_r, gamma_g, gamma_b, state->ramp_size, + state->ramp_size, state->ramp_size, setting); /* Set new gamma ramps */ r = XF86VidModeSetGammaRamp(state->display, state->screen_num, @@ -220,3 +236,15 @@ vidmode_set_temperature(vidmode_state_t *state, return 0; } + + +const gamma_method_t vidmode_gamma_method = { + "vidmode", 1, + (gamma_method_init_func *)vidmode_init, + (gamma_method_start_func *)vidmode_start, + (gamma_method_free_func *)vidmode_free, + (gamma_method_print_help_func *)vidmode_print_help, + (gamma_method_set_option_func *)vidmode_set_option, + (gamma_method_restore_func *)vidmode_restore, + (gamma_method_set_temperature_func *)vidmode_set_temperature +}; diff --git a/src/gamma-vidmode.h b/src/gamma-vidmode.h index 4b6cecc..6bad207 100644 --- a/src/gamma-vidmode.h +++ b/src/gamma-vidmode.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_GAMMA_VIDMODE_H @@ -22,31 +22,6 @@ #include "redshift.h" -#include <stdio.h> -#include <stdint.h> - -#include <X11/Xlib.h> - -typedef struct { - Display *display; - int preserve; - int screen_num; - int ramp_size; - uint16_t *saved_ramps; -} vidmode_state_t; - - -int vidmode_init(vidmode_state_t *state); -int vidmode_start(vidmode_state_t *state); -void vidmode_free(vidmode_state_t *state); - -void vidmode_print_help(FILE *f); -int vidmode_set_option(vidmode_state_t *state, const char *key, - const char *value); - -void vidmode_restore(vidmode_state_t *state); -int vidmode_set_temperature(vidmode_state_t *state, - const color_setting_t *setting); - +extern const gamma_method_t vidmode_gamma_method; #endif /* ! REDSHIFT_GAMMA_VIDMODE_H */ diff --git a/src/gamma-w32gdi.c b/src/gamma-w32gdi.c index c518fe6..da5461e 100644 --- a/src/gamma-w32gdi.c +++ b/src/gamma-w32gdi.c @@ -14,9 +14,13 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> @@ -37,19 +41,28 @@ #include "colorramp.h" #define GAMMA_RAMP_SIZE 256 +#define MAX_ATTEMPTS 10 + +typedef struct { + WORD *saved_ramps; +} w32gdi_state_t; -int -w32gdi_init(w32gdi_state_t *state) + +static int +w32gdi_init(w32gdi_state_t **state) { - state->saved_ramps = NULL; - state->preserve = 0; + *state = malloc(sizeof(w32gdi_state_t)); + if (state == NULL) return -1; + + w32gdi_state_t *s = *state; + s->saved_ramps = NULL; return 0; } -int -w32gdi_start(w32gdi_state_t *state) +static int +w32gdi_start(w32gdi_state_t *state, program_mode_t mode) { BOOL r; @@ -90,33 +103,31 @@ w32gdi_start(w32gdi_state_t *state) return 0; } -void +static void w32gdi_free(w32gdi_state_t *state) { /* Free saved ramps */ free(state->saved_ramps); + + free(state); } -void +static void w32gdi_print_help(FILE *f) { fputs(_("Adjust gamma ramps with the Windows GDI.\n"), f); fputs("\n", f); - - /* TRANSLATORS: Windows GDI help output - left column must not be translated */ - fputs(_(" preserve={0,1}\tWhether existing gamma should be" - " preserved\n"), - f); - fputs("\n", f); } -int +static int w32gdi_set_option(w32gdi_state_t *state, const char *key, const char *value) { if (strcasecmp(key, "preserve") == 0) { - state->preserve = atoi(value); + fprintf(stderr, _("Parameter `%s` is now always on; " + " Use the `%s` command-line option" + " to disable.\n"), + key, "-P"); } else { fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); return -1; @@ -125,7 +136,7 @@ w32gdi_set_option(w32gdi_state_t *state, const char *key, const char *value) return 0; } -void +static void w32gdi_restore(w32gdi_state_t *state) { /* Open device context */ @@ -136,16 +147,22 @@ w32gdi_restore(w32gdi_state_t *state) } /* Restore gamma ramps */ - BOOL r = SetDeviceGammaRamp(hDC, state->saved_ramps); + BOOL r = FALSE; + for (int i = 0; i < MAX_ATTEMPTS && !r; i++) { + /* We retry a few times before giving up because some + buggy drivers fail on the first invocation of + SetDeviceGammaRamp just to succeed on the second. */ + r = SetDeviceGammaRamp(hDC, state->saved_ramps); + } if (!r) fputs(_("Unable to restore gamma ramps.\n"), stderr); /* Release device context */ ReleaseDC(NULL, hDC); } -int -w32gdi_set_temperature(w32gdi_state_t *state, - const color_setting_t *setting) +static int +w32gdi_set_temperature( + w32gdi_state_t *state, const color_setting_t *setting, int preserve) { BOOL r; @@ -168,7 +185,7 @@ w32gdi_set_temperature(w32gdi_state_t *state, WORD *gamma_g = &gamma_ramps[1*GAMMA_RAMP_SIZE]; WORD *gamma_b = &gamma_ramps[2*GAMMA_RAMP_SIZE]; - if (state->preserve) { + if (preserve) { /* Initialize gamma ramps from saved state */ memcpy(gamma_ramps, state->saved_ramps, 3*GAMMA_RAMP_SIZE*sizeof(WORD)); @@ -183,15 +200,18 @@ w32gdi_set_temperature(w32gdi_state_t *state, } } - colorramp_fill(gamma_r, gamma_g, gamma_b, GAMMA_RAMP_SIZE, - setting); + colorramp_fill_u16(gamma_r, gamma_g, gamma_b, GAMMA_RAMP_SIZE, + GAMMA_RAMP_SIZE, GAMMA_RAMP_SIZE, setting); /* Set new gamma ramps */ - r = SetDeviceGammaRamp(hDC, gamma_ramps); + r = FALSE; + for (int i = 0; i < MAX_ATTEMPTS && !r; i++) { + /* We retry a few times before giving up because some + buggy drivers fail on the first invocation of + SetDeviceGammaRamp just to succeed on the second. */ + r = SetDeviceGammaRamp(hDC, gamma_ramps); + } if (!r) { - /* TODO it happens that SetDeviceGammaRamp returns FALSE on - occasions where the adjustment seems to be successful. - Does this only happen with multiple monitors connected? */ fputs(_("Unable to set gamma ramps.\n"), stderr); free(gamma_ramps); ReleaseDC(NULL, hDC); @@ -205,3 +225,15 @@ w32gdi_set_temperature(w32gdi_state_t *state, return 0; } + + +const gamma_method_t w32gdi_gamma_method = { + "wingdi", 1, + (gamma_method_init_func *)w32gdi_init, + (gamma_method_start_func *)w32gdi_start, + (gamma_method_free_func *)w32gdi_free, + (gamma_method_print_help_func *)w32gdi_print_help, + (gamma_method_set_option_func *)w32gdi_set_option, + (gamma_method_restore_func *)w32gdi_restore, + (gamma_method_set_temperature_func *)w32gdi_set_temperature +}; diff --git a/src/gamma-w32gdi.h b/src/gamma-w32gdi.h index 6e73cd1..ac6eb10 100644 --- a/src/gamma-w32gdi.h +++ b/src/gamma-w32gdi.h @@ -14,35 +14,14 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_GAMMA_W32GDI_H #define REDSHIFT_GAMMA_W32GDI_H -#include <windows.h> -#include <wingdi.h> - #include "redshift.h" - -typedef struct { - WORD *saved_ramps; - int preserve; -} w32gdi_state_t; - - -int w32gdi_init(w32gdi_state_t *state); -int w32gdi_start(w32gdi_state_t *state); -void w32gdi_free(w32gdi_state_t *state); - -void w32gdi_print_help(FILE *f); -int w32gdi_set_option(w32gdi_state_t *state, const char *key, - const char *value); - -void w32gdi_restore(w32gdi_state_t *state); -int w32gdi_set_temperature(w32gdi_state_t *state, - const color_setting_t *color); - +extern const gamma_method_t w32gdi_gamma_method; #endif /* ! REDSHIFT_GAMMA_W32GDI_H */ diff --git a/src/location-corelocation.h b/src/location-corelocation.h index 4b74382..4af302c 100644 --- a/src/location-corelocation.h +++ b/src/location-corelocation.h @@ -14,27 +14,14 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2014 Jon Lund Steffense <jonlst@gmail.com> + Copyright (c) 2014-2017 Jon Lund Steffense <jonlst@gmail.com> */ #ifndef REDSHIFT_LOCATION_CORELOCATION_H #define REDSHIFT_LOCATION_CORELOCATION_H -#include <stdio.h> - #include "redshift.h" - -int location_corelocation_init(void *state); -int location_corelocation_start(void *state); -void location_corelocation_free(void *state); - -void location_corelocation_print_help(FILE *f); -int location_corelocation_set_option(void *state, - const char *key, const char *value); - -int location_corelocation_get_location(void *state, - location_t *location); - +extern const location_provider_t corelocation_location_provider; #endif /* ! REDSHIFT_LOCATION_CORELOCATION_H */ diff --git a/src/location-corelocation.m b/src/location-corelocation.m index 2f1768d..10d7acd 100644 --- a/src/location-corelocation.m +++ b/src/location-corelocation.m @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2014-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifdef HAVE_CONFIG_H @@ -25,9 +25,11 @@ #import <CoreLocation/CoreLocation.h> #include "location-corelocation.h" +#include "pipeutils.h" #include "redshift.h" #include <stdio.h> +#include <unistd.h> #ifdef ENABLE_NLS # include <libintl.h> @@ -37,128 +39,261 @@ #endif -@interface Delegate : NSObject <CLLocationManagerDelegate> +typedef struct { + NSThread *thread; + NSLock *lock; + int pipe_fd_read; + int pipe_fd_write; + int available; + int error; + float latitude; + float longitude; +} location_corelocation_state_t; + + +@interface LocationDelegate : NSObject <CLLocationManagerDelegate> @property (strong, nonatomic) CLLocationManager *locationManager; -@property (nonatomic) BOOL success; -@property (nonatomic) float latitude; -@property (nonatomic) float longitude; +@property (nonatomic) location_corelocation_state_t *state; @end -@implementation Delegate; +@implementation LocationDelegate; - (void)start { - self.locationManager = [[CLLocationManager alloc] init]; - self.locationManager.delegate = self; + self.locationManager = [[CLLocationManager alloc] init]; + self.locationManager.delegate = self; + self.locationManager.distanceFilter = 50000; + self.locationManager.desiredAccuracy = kCLLocationAccuracyKilometer; + + CLAuthorizationStatus authStatus = + [CLLocationManager authorizationStatus]; + + if (authStatus != kCLAuthorizationStatusNotDetermined && + authStatus != kCLAuthorizationStatusAuthorized) { + fputs(_("Not authorized to obtain location" + " from CoreLocation.\n"), stderr); + [self markError]; + } else { + [self.locationManager startUpdatingLocation]; + } +} + +- (void)markError +{ + [self.state->lock lock]; - CLAuthorizationStatus authStatus = - [CLLocationManager authorizationStatus]; + self.state->error = 1; - if (authStatus != kCLAuthorizationStatusNotDetermined && - authStatus != kCLAuthorizationStatusAuthorized) { - fputs(_("Not authorized to obtain location" - " from CoreLocation.\n"), stderr); - CFRunLoopStop(CFRunLoopGetCurrent()); - } + [self.state->lock unlock]; - [self.locationManager startUpdatingLocation]; + pipeutils_signal(self.state->pipe_fd_write); } -- (void)stop +- (void)markUnavailable { - [self.locationManager stopUpdatingLocation]; - CFRunLoopStop(CFRunLoopGetCurrent()); + [self.state->lock lock]; + + self.state->available = 0; + + [self.state->lock unlock]; + + pipeutils_signal(self.state->pipe_fd_write); } - (void)locationManager:(CLLocationManager *)manager - didUpdateLocations:(NSArray *)locations + didUpdateLocations:(NSArray *)locations { - CLLocation *newLocation = [locations firstObject]; - self.latitude = newLocation.coordinate.latitude; - self.longitude = newLocation.coordinate.longitude; - self.success = YES; + CLLocation *newLocation = [locations firstObject]; + + [self.state->lock lock]; + + self.state->latitude = newLocation.coordinate.latitude; + self.state->longitude = newLocation.coordinate.longitude; + self.state->available = 1; - [self stop]; + [self.state->lock unlock]; + + pipeutils_signal(self.state->pipe_fd_write); } - (void)locationManager:(CLLocationManager *)manager - didFailWithError:(NSError *)error + didFailWithError:(NSError *)error { - fprintf(stderr, _("Error obtaining location from CoreLocation: %s\n"), - [[error localizedDescription] UTF8String]); - [self stop]; + fprintf(stderr, _("Error obtaining location from CoreLocation: %s\n"), + [[error localizedDescription] UTF8String]); + if ([error code] == kCLErrorDenied) { + [self markError]; + } else { + [self markUnavailable]; + } } - (void)locationManager:(CLLocationManager *)manager - didChangeAuthorizationStatus:(CLAuthorizationStatus)status + didChangeAuthorizationStatus:(CLAuthorizationStatus)status { - if (status == kCLAuthorizationStatusNotDetermined) { - fputs(_("Waiting for authorization to obtain location...\n"), - stderr); - } else if (status != kCLAuthorizationStatusAuthorized) { - fputs(_("Request for location was not authorized!\n"), - stderr); - [self stop]; - } + if (status == kCLAuthorizationStatusNotDetermined) { + fputs(_("Waiting for authorization to obtain location...\n"), stderr); + } else if (status != kCLAuthorizationStatusAuthorized) { + fputs(_("Request for location was not authorized!\n"), stderr); + [self markError]; + } } @end -int -location_corelocation_init(void *state) +// Callback when the pipe is closed. +// +// Stops the run loop causing the thread to end. +static void +pipe_close_callback( + CFFileDescriptorRef fdref, CFOptionFlags callBackTypes, void *info) { - return 0; + CFFileDescriptorInvalidate(fdref); + CFRelease(fdref); + + CFRunLoopStop(CFRunLoopGetCurrent()); } -int -location_corelocation_start(void *state) + +@interface LocationThread : NSThread +@property (nonatomic) location_corelocation_state_t *state; +@end + +@implementation LocationThread; + +// Run loop for location provider thread. +- (void)main { - return 0; + @autoreleasepool { + LocationDelegate *locationDelegate = [[LocationDelegate alloc] init]; + locationDelegate.state = self.state; + + // Start the location delegate on the run loop in this thread. + [locationDelegate performSelector:@selector(start) + withObject:nil afterDelay:0]; + + // Create a callback that is triggered when the pipe is closed. This will + // trigger the main loop to quit and the thread to stop. + CFFileDescriptorRef fdref = CFFileDescriptorCreate( + kCFAllocatorDefault, self.state->pipe_fd_write, false, + pipe_close_callback, NULL); + CFFileDescriptorEnableCallBacks(fdref, kCFFileDescriptorReadCallBack); + CFRunLoopSourceRef source = CFFileDescriptorCreateRunLoopSource( + kCFAllocatorDefault, fdref, 0); + CFRunLoopAddSource(CFRunLoopGetCurrent(), source, kCFRunLoopDefaultMode); + + // Run the loop + CFRunLoopRun(); + + close(self.state->pipe_fd_write); + } } -void -location_corelocation_free(void *state) +@end + + +static int +location_corelocation_init(location_corelocation_state_t **state) { + *state = malloc(sizeof(location_corelocation_state_t)); + if (*state == NULL) return -1; + return 0; } -void +static int +location_corelocation_start(location_corelocation_state_t *state) +{ + state->pipe_fd_read = -1; + state->pipe_fd_write = -1; + + state->available = 0; + state->error = 0; + state->latitude = 0; + state->longitude = 0; + + int pipefds[2]; + int r = pipeutils_create_nonblocking(pipefds); + if (r < 0) { + fputs(_("Failed to start CoreLocation provider!\n"), stderr); + return -1; + } + + state->pipe_fd_read = pipefds[0]; + state->pipe_fd_write = pipefds[1]; + + pipeutils_signal(state->pipe_fd_write); + + state->lock = [[NSLock alloc] init]; + + LocationThread *thread = [[LocationThread alloc] init]; + thread.state = state; + [thread start]; + state->thread = thread; + + return 0; +} + +static void +location_corelocation_free(location_corelocation_state_t *state) +{ + if (state->pipe_fd_read != -1) { + close(state->pipe_fd_read); + } + + free(state); +} + +static void location_corelocation_print_help(FILE *f) { - fputs(_("Use the location as discovered by the Corelocation provider.\n"), f); - fputs("\n", f); + fputs(_("Use the location as discovered by the Corelocation provider.\n"), f); + fputs("\n", f); +} - fprintf(f, _("NOTE: currently Redshift doesn't recheck %s once started,\n" - "which means it has to be restarted to take notice after travel.\n"), - "CoreLocation"); - fputs("\n", f); +static int +location_corelocation_set_option( + location_corelocation_state_t *state, const char *key, const char *value) +{ + fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); + return -1; } -int -location_corelocation_set_option(void *state, - const char *key, const char *value) +static int +location_corelocation_get_fd(location_corelocation_state_t *state) { - fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); - return -1; + return state->pipe_fd_read; } -int -location_corelocation_get_location(void *state, - location_t *location) +static int +location_corelocation_handle( + location_corelocation_state_t *state, + location_t *location, int *available) { - int result = -1; + pipeutils_handle_signal(state->pipe_fd_read); - @autoreleasepool { - Delegate *delegate = [[Delegate alloc] init]; - [delegate performSelectorOnMainThread:@selector(start) withObject:nil waitUntilDone:NO]; - CFRunLoopRun(); + [state->lock lock]; - if (delegate.success) { - location->lat = delegate.latitude; - location->lon = delegate.longitude; - result = 0; - } - } + int error = state->error; + location->lat = state->latitude; + location->lon = state->longitude; + *available = state->available; - return result; + [state->lock unlock]; + + if (error) return -1; + + return 0; } + + +const location_provider_t corelocation_location_provider = { + "corelocation", + (location_provider_init_func *)location_corelocation_init, + (location_provider_start_func *)location_corelocation_start, + (location_provider_free_func *)location_corelocation_free, + (location_provider_print_help_func *)location_corelocation_print_help, + (location_provider_set_option_func *)location_corelocation_set_option, + (location_provider_get_fd_func *)location_corelocation_get_fd, + (location_provider_handle_func *)location_corelocation_handle +}; diff --git a/src/location-geoclue.c b/src/location-geoclue.c deleted file mode 100644 index b2616bf..0000000 --- a/src/location-geoclue.c +++ /dev/null @@ -1,218 +0,0 @@ -/* location-geoclue.c -- Geoclue location provider source - This file is part of Redshift. - - Redshift is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - Redshift is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Redshift. If not, see <http://www.gnu.org/licenses/>. - - Copyright (c) 2010 Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> -*/ - -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - -#include <geoclue/geoclue-master.h> -#include <geoclue/geoclue-position.h> - -#include <glib.h> -#include <glib-object.h> - -#include "location-geoclue.h" -#include "redshift.h" - -#ifdef ENABLE_NLS -# include <libintl.h> -# define _(s) gettext(s) -#else -# define _(s) s -#endif - -#define DEFAULT_PROVIDER "org.freedesktop.Geoclue.Providers.UbuntuGeoIP" -#define DEFAULT_PROVIDER_PATH "/org/freedesktop/Geoclue/Providers/UbuntuGeoIP" - -int -location_geoclue_init(location_geoclue_state_t *state) -{ -#if !GLIB_CHECK_VERSION(2, 35, 0) - g_type_init(); -#endif - - state->position = NULL; - state->provider = NULL; - state->provider_path = NULL; - - return 0; -} - -int -location_geoclue_start(location_geoclue_state_t *state) -{ - if (state->provider && state->provider_path) { - state->position = geoclue_position_new(state->provider, - state->provider_path); - } else { - if (getenv("DISPLAY") == NULL || *getenv("DISPLAY") == '\0') { - /* TODO This (hack) should be removed when GeoClue has been patched. */ - putenv("DISPLAY=:0"); - } - GError *error = NULL; - GeoclueMaster *master = geoclue_master_get_default(); - GeoclueMasterClient *client = geoclue_master_create_client(master, - NULL, &error); - g_object_unref(master); - - if (client == NULL) { - if (error != NULL) { - g_printerr(_("Unable to obtain master client: %s\n"), - error->message); - g_error_free(error); - } else { - g_printerr(_("Unable to obtain master client\n")); - } - return -1; - } - - if (!geoclue_master_client_set_requirements(client, - GEOCLUE_ACCURACY_LEVEL_REGION, - 0, FALSE, - GEOCLUE_RESOURCE_NETWORK, - &error)) { - if (error != NULL) { - g_printerr(_("Can't set requirements for master: %s\n"), - error->message); - g_error_free(error); - } else { - g_printerr(_("Can't set requirements for master\n")); - } - g_object_unref(client); - - return -1; - } - - state->position = geoclue_master_client_create_position(client, NULL); - - g_object_unref(client); - } - - gchar *name = NULL; - - if (geoclue_provider_get_provider_info(GEOCLUE_PROVIDER(state->position), - &name, NULL, NULL)) { - fprintf(stdout, _("Started Geoclue provider `%s'.\n"), name); - g_free(name); - } else { - fputs(_("Could not find a usable Geoclue provider.\n"), stderr); - fputs(_("Try setting name and path to specify which to use.\n"), stderr); - return -1; - } - - return 0; -} - -void -location_geoclue_free(location_geoclue_state_t *state) -{ - if (state->position != NULL) g_object_unref(state->position); - if (state->provider != NULL) free(state->provider); - if (state->provider_path != NULL) free(state->provider_path); -} - -void -location_geoclue_print_help(FILE *f) -{ - fputs(_("Use the location as discovered by a Geoclue provider.\n"), f); - fputs("\n", f); - - /* TRANSLATORS: Geoclue help output - left column must not be translated */ - fputs(_(" name=N\tName of Geoclue provider (or `default')\n" - " path=N\tPath of Geoclue provider (or `default')\n"), f); - fputs("\n", f); - fprintf(f, _("NOTE: currently Redshift doesn't recheck %s once started,\n" - "which means it has to be restarted to take notice after travel.\n"), - "GeoClue"); - fputs("\n", f); -} - -int -location_geoclue_set_option(location_geoclue_state_t *state, - const char *key, const char *value) -{ - const char *provider = NULL; - const char *path = NULL; - - /* Parse string value */ - if (strcasecmp(key, "name") == 0) { - if (strcasecmp(value, "default") == 0) { - provider = DEFAULT_PROVIDER; - } else { - provider = value; - } - - state->provider = strdup(provider); - if (state->provider == NULL) { - perror("strdup"); - return -1; - } - } else if (strcasecmp(key, "path") == 0) { - if (value != NULL && strcasecmp(value, "default") == 0) { - path = DEFAULT_PROVIDER_PATH; - } else { - path = value; - } - - state->provider_path = strdup(path); - if (state->provider_path == NULL) { - perror("strdup"); - return -1; - } - } else { - fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); - return -1; - } - - return 0; -} - -int -location_geoclue_get_location(location_geoclue_state_t *state, - location_t *location) -{ - GeocluePositionFields fields; - GError *error = NULL; - double latitude = 0, longitude = 0; - - fields = geoclue_position_get_position(state->position, NULL, - &latitude, &longitude, NULL, - NULL, &error); - if (error) { - g_printerr(_("Could not get location: %s.\n"), error->message); - g_error_free(error); - return -1; - } - - if (fields & GEOCLUE_POSITION_FIELDS_LATITUDE && - fields & GEOCLUE_POSITION_FIELDS_LONGITUDE) { - fprintf(stdout, _("According to the geoclue provider" - " we're at: %.2f, %.2f\n"), - latitude, longitude); - } else { - g_warning(_("Provider does not have a valid location available.")); - return -1; - } - - location->lat = latitude; - location->lon = longitude; - - return 0; -} diff --git a/src/location-geoclue.h b/src/location-geoclue.h deleted file mode 100644 index 3847ee2..0000000 --- a/src/location-geoclue.h +++ /dev/null @@ -1,46 +0,0 @@ -/* location-geoclue.h -- Geoclue location provider header - This file is part of Redshift. - - Redshift is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - Redshift is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Redshift. If not, see <http://www.gnu.org/licenses/>. - - Copyright (c) 2010 Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> -*/ - -#ifndef REDSHIFT_LOCATION_GEOCLUE_H -#define REDSHIFT_LOCATION_GEOCLUE_H - -#include <stdio.h> -#include <geoclue/geoclue-position.h> - -#include "redshift.h" - -typedef struct { - GeocluePosition *position; /* main geoclue object */ - char *provider; /* name of a geoclue provider */ - char *provider_path; /* path of the geoclue provider */ -} location_geoclue_state_t; - -int location_geoclue_init(location_geoclue_state_t *state); -int location_geoclue_start(location_geoclue_state_t *state); -void location_geoclue_free(location_geoclue_state_t *state); - -void location_geoclue_print_help(FILE *f); -int location_geoclue_set_option(location_geoclue_state_t *state, - const char *key, const char *value); - -int location_geoclue_get_location(location_geoclue_state_t *state, - location_t *loc); - - -#endif /* ! REDSHIFT_LOCATION_GEOCLUE_H */ diff --git a/src/location-geoclue2.c b/src/location-geoclue2.c index abccbd3..06015c5 100644 --- a/src/location-geoclue2.c +++ b/src/location-geoclue2.c @@ -14,9 +14,13 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2014-2017 Jon Lund Steffensen <jonlst@gmail.com> */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> @@ -26,6 +30,7 @@ #include "location-geoclue2.h" #include "redshift.h" +#include "pipeutils.h" #ifdef ENABLE_NLS # include <libintl.h> @@ -34,62 +39,54 @@ # define _(s) s #endif +#define DBUS_ACCESS_ERROR "org.freedesktop.DBus.Error.AccessDenied" + typedef struct { GMainLoop *loop; - + GThread *thread; + GMutex lock; + int pipe_fd_read; + int pipe_fd_write; int available; - location_t location; -} get_location_data_t; - + int error; + float latitude; + float longitude; +} location_geoclue2_state_t; -int -location_geoclue2_init(void *state) -{ -#if !GLIB_CHECK_VERSION(2, 35, 0) - g_type_init(); -#endif - return 0; -} -int -location_geoclue2_start(void *state) +/* Print the message explaining denial from GeoClue. */ +static void +print_denial_message() { - return 0; + g_printerr(_( + "Access to the current location was denied by GeoClue!\n" + "Make sure that location services are enabled and that" + " Redshift is permitted\nto use location services." + " See https://github.com/jonls/redshift#faq for more\n" + "information.\n")); } -void -location_geoclue2_free(void *state) +/* Indicate an unrecoverable error during GeoClue2 communication. */ +static void +mark_error(location_geoclue2_state_t *state) { -} + g_mutex_lock(&state->lock); -void -location_geoclue2_print_help(FILE *f) -{ - fputs(_("Use the location as discovered by a GeoClue2 provider.\n"), f); - fputs("\n", f); + state->error = 1; - fprintf(f, _("NOTE: currently Redshift doesn't recheck %s once started,\n" - "which means it has to be restarted to take notice after travel.\n"), - "GeoClue2"); - fputs("\n", f); -} + g_mutex_unlock(&state->lock); -int -location_geoclue2_set_option(void *state, - const char *key, const char *value) -{ - fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); - return -1; + pipeutils_signal(state->pipe_fd_write); } /* Handle position change callbacks */ static void geoclue_client_signal_cb(GDBusProxy *client, gchar *sender_name, gchar *signal_name, GVariant *parameters, - gpointer *user_data) + gpointer user_data) { - get_location_data_t *data = (get_location_data_t *)user_data; + location_geoclue2_state_t *state = user_data; /* Only handle LocationUpdated signals */ if (g_strcmp0(signal_name, "LocationUpdated") != 0) { @@ -102,34 +99,38 @@ geoclue_client_signal_cb(GDBusProxy *client, gchar *sender_name, /* Obtain location */ GError *error = NULL; - GDBusProxy *location = - g_dbus_proxy_new_for_bus_sync(G_BUS_TYPE_SYSTEM, - G_DBUS_PROXY_FLAGS_NONE, - NULL, - "org.freedesktop.GeoClue2", - location_path, - "org.freedesktop.GeoClue2.Location", - NULL, &error); + GDBusProxy *location = g_dbus_proxy_new_sync( + g_dbus_proxy_get_connection(client), + G_DBUS_PROXY_FLAGS_NONE, + NULL, + "org.freedesktop.GeoClue2", + location_path, + "org.freedesktop.GeoClue2.Location", + NULL, &error); if (location == NULL) { g_printerr(_("Unable to obtain location: %s.\n"), error->message); g_error_free(error); + mark_error(state); return; } + g_mutex_lock(&state->lock); + /* Read location properties */ - GVariant *lat_v = g_dbus_proxy_get_cached_property(location, - "Latitude"); - data->location.lat = g_variant_get_double(lat_v); + GVariant *lat_v = g_dbus_proxy_get_cached_property( + location, "Latitude"); + state->latitude = g_variant_get_double(lat_v); - GVariant *lon_v = g_dbus_proxy_get_cached_property(location, - "Longitude"); - data->location.lon = g_variant_get_double(lon_v); + GVariant *lon_v = g_dbus_proxy_get_cached_property( + location, "Longitude"); + state->longitude = g_variant_get_double(lon_v); - data->available = 1; + state->available = 1; - /* Return from main loop */ - g_main_loop_quit(data->loop); + g_mutex_unlock(&state->lock); + + pipeutils_signal(state->pipe_fd_write); } /* Callback when GeoClue name appears on the bus */ @@ -137,22 +138,23 @@ static void on_name_appeared(GDBusConnection *conn, const gchar *name, const gchar *name_owner, gpointer user_data) { - get_location_data_t *data = (get_location_data_t *)user_data; + location_geoclue2_state_t *state = user_data; /* Obtain GeoClue Manager */ GError *error = NULL; - GDBusProxy *geoclue_manager = - g_dbus_proxy_new_for_bus_sync(G_BUS_TYPE_SYSTEM, - G_DBUS_PROXY_FLAGS_NONE, - NULL, - "org.freedesktop.GeoClue2", - "/org/freedesktop/GeoClue2/Manager", - "org.freedesktop.GeoClue2.Manager", - NULL, &error); + GDBusProxy *geoclue_manager = g_dbus_proxy_new_sync( + conn, + G_DBUS_PROXY_FLAGS_NONE, + NULL, + "org.freedesktop.GeoClue2", + "/org/freedesktop/GeoClue2/Manager", + "org.freedesktop.GeoClue2.Manager", + NULL, &error); if (geoclue_manager == NULL) { g_printerr(_("Unable to obtain GeoClue Manager: %s.\n"), error->message); g_error_free(error); + mark_error(state); return; } @@ -169,6 +171,7 @@ on_name_appeared(GDBusConnection *conn, const gchar *name, error->message); g_error_free(error); g_object_unref(geoclue_manager); + mark_error(state); return; } @@ -177,20 +180,21 @@ on_name_appeared(GDBusConnection *conn, const gchar *name, /* Obtain GeoClue client */ error = NULL; - GDBusProxy *geoclue_client = - g_dbus_proxy_new_for_bus_sync(G_BUS_TYPE_SYSTEM, - G_DBUS_PROXY_FLAGS_NONE, - NULL, - "org.freedesktop.GeoClue2", - client_path, - "org.freedesktop.GeoClue2.Client", - NULL, &error); + GDBusProxy *geoclue_client = g_dbus_proxy_new_sync( + conn, + G_DBUS_PROXY_FLAGS_NONE, + NULL, + "org.freedesktop.GeoClue2", + client_path, + "org.freedesktop.GeoClue2.Client", + NULL, &error); if (geoclue_client == NULL) { g_printerr(_("Unable to obtain GeoClue Client: %s.\n"), error->message); g_error_free(error); g_variant_unref(client_path_v); g_object_unref(geoclue_manager); + mark_error(state); return; } @@ -198,15 +202,15 @@ on_name_appeared(GDBusConnection *conn, const gchar *name, /* Set desktop id (basename of the .desktop file) */ error = NULL; - GVariant *ret_v = - g_dbus_proxy_call_sync(geoclue_client, - "org.freedesktop.DBus.Properties.Set", - g_variant_new("(ssv)", - "org.freedesktop.GeoClue2.Client", - "DesktopId", - g_variant_new("s", "redshift")), - G_DBUS_CALL_FLAGS_NONE, - -1, NULL, &error); + GVariant *ret_v = g_dbus_proxy_call_sync( + geoclue_client, + "org.freedesktop.DBus.Properties.Set", + g_variant_new("(ssv)", + "org.freedesktop.GeoClue2.Client", + "DesktopId", + g_variant_new("s", "redshift")), + G_DBUS_CALL_FLAGS_NONE, + -1, NULL, &error); if (ret_v == NULL) { /* Ignore this error for now. The property is not available in early versions of GeoClue2. */ @@ -216,20 +220,22 @@ on_name_appeared(GDBusConnection *conn, const gchar *name, /* Set distance threshold */ error = NULL; - ret_v = g_dbus_proxy_call_sync(geoclue_client, - "org.freedesktop.DBus.Properties.Set", - g_variant_new("(ssv)", - "org.freedesktop.GeoClue2.Client", - "DistanceThreshold", - g_variant_new("u", 50000)), - G_DBUS_CALL_FLAGS_NONE, - -1, NULL, &error); + ret_v = g_dbus_proxy_call_sync( + geoclue_client, + "org.freedesktop.DBus.Properties.Set", + g_variant_new("(ssv)", + "org.freedesktop.GeoClue2.Client", + "DistanceThreshold", + g_variant_new("u", 50000)), + G_DBUS_CALL_FLAGS_NONE, + -1, NULL, &error); if (ret_v == NULL) { g_printerr(_("Unable to set distance threshold: %s.\n"), error->message); g_error_free(error); g_object_unref(geoclue_client); g_object_unref(geoclue_manager); + mark_error(state); return; } @@ -238,7 +244,7 @@ on_name_appeared(GDBusConnection *conn, const gchar *name, /* Attach signal callback to client */ g_signal_connect(geoclue_client, "g-signal", G_CALLBACK(geoclue_client_signal_cb), - data); + user_data); /* Start GeoClue client */ error = NULL; @@ -250,9 +256,18 @@ on_name_appeared(GDBusConnection *conn, const gchar *name, if (ret_v == NULL) { g_printerr(_("Unable to start GeoClue client: %s.\n"), error->message); + if (g_dbus_error_is_remote_error(error)) { + gchar *dbus_error = g_dbus_error_get_remote_error( + error); + if (g_strcmp0(dbus_error, DBUS_ACCESS_ERROR) == 0) { + print_denial_message(); + } + g_free(dbus_error); + } g_error_free(error); g_object_unref(geoclue_client); g_object_unref(geoclue_manager); + mark_error(state); return; } @@ -264,34 +279,175 @@ static void on_name_vanished(GDBusConnection *connection, const gchar *name, gpointer user_data) { - get_location_data_t *data = (get_location_data_t *)user_data; + location_geoclue2_state_t *state = user_data; + + g_mutex_lock(&state->lock); + + state->available = 0; - g_fprintf(stderr, _("Unable to connect to GeoClue.\n")); + g_mutex_unlock(&state->lock); - g_main_loop_quit(data->loop); + pipeutils_signal(state->pipe_fd_write); } -int -location_geoclue2_get_location(void *state, - location_t *location) +/* Callback when the pipe to the main thread is closed. */ +static gboolean +on_pipe_closed(GIOChannel *channel, GIOCondition condition, gpointer user_data) { - get_location_data_t data; - data.available = 0; - - guint watcher_id = g_bus_watch_name(G_BUS_TYPE_SYSTEM, - "org.freedesktop.GeoClue2", - G_BUS_NAME_WATCHER_FLAGS_AUTO_START, - on_name_appeared, - on_name_vanished, - &data, NULL); - data.loop = g_main_loop_new(NULL, FALSE); - g_main_loop_run(data.loop); + location_geoclue2_state_t *state = user_data; + g_main_loop_quit(state->loop); + + return FALSE; +} + + +/* Run loop for location provider thread. */ +static void * +run_geoclue2_loop(void *state_) +{ + location_geoclue2_state_t *state = state_; + + GMainContext *context = g_main_context_new(); + g_main_context_push_thread_default(context); + state->loop = g_main_loop_new(context, FALSE); + + guint watcher_id = g_bus_watch_name( + G_BUS_TYPE_SYSTEM, + "org.freedesktop.GeoClue2", + G_BUS_NAME_WATCHER_FLAGS_AUTO_START, + on_name_appeared, + on_name_vanished, + state, NULL); + + /* Listen for closure of pipe */ + GIOChannel *pipe_channel = g_io_channel_unix_new(state->pipe_fd_write); + GSource *pipe_source = g_io_create_watch( + pipe_channel, G_IO_IN | G_IO_HUP | G_IO_ERR); + g_source_set_callback( + pipe_source, (GSourceFunc)on_pipe_closed, state, NULL); + g_source_attach(pipe_source, context); + + g_main_loop_run(state->loop); + + g_source_unref(pipe_source); + g_io_channel_unref(pipe_channel); + close(state->pipe_fd_write); g_bus_unwatch_name(watcher_id); - if (!data.available) return -1; + g_main_loop_unref(state->loop); + g_main_context_unref(context); + + return NULL; +} + +static int +location_geoclue2_init(location_geoclue2_state_t **state) +{ +#if !GLIB_CHECK_VERSION(2, 35, 0) + g_type_init(); +#endif + *state = malloc(sizeof(location_geoclue2_state_t)); + if (*state == NULL) return -1; + return 0; +} + +static int +location_geoclue2_start(location_geoclue2_state_t *state) +{ + state->pipe_fd_read = -1; + state->pipe_fd_write = -1; + + state->available = 0; + state->error = 0; + state->latitude = 0; + state->longitude = 0; + + int pipefds[2]; + int r = pipeutils_create_nonblocking(pipefds); + if (r < 0) { + fputs(_("Failed to start GeoClue2 provider!\n"), stderr); + return -1; + } + + state->pipe_fd_read = pipefds[0]; + state->pipe_fd_write = pipefds[1]; + + pipeutils_signal(state->pipe_fd_write); + + g_mutex_init(&state->lock); + state->thread = g_thread_new("geoclue2", run_geoclue2_loop, state); + + return 0; +} + +static void +location_geoclue2_free(location_geoclue2_state_t *state) +{ + if (state->pipe_fd_read != -1) { + close(state->pipe_fd_read); + } + + /* Closing the pipe should cause the thread to exit. */ + g_thread_join(state->thread); + state->thread = NULL; + + g_mutex_clear(&state->lock); + + free(state); +} + +static void +location_geoclue2_print_help(FILE *f) +{ + fputs(_("Use the location as discovered by a GeoClue2 provider.\n"), + f); + fputs("\n", f); +} - *location = data.location; +static int +location_geoclue2_set_option(location_geoclue2_state_t *state, + const char *key, const char *value) +{ + fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); + return -1; +} + +static int +location_geoclue2_get_fd(location_geoclue2_state_t *state) +{ + return state->pipe_fd_read; +} + +static int +location_geoclue2_handle( + location_geoclue2_state_t *state, + location_t *location, int *available) +{ + pipeutils_handle_signal(state->pipe_fd_read); + + g_mutex_lock(&state->lock); + + int error = state->error; + location->lat = state->latitude; + location->lon = state->longitude; + *available = state->available; + + g_mutex_unlock(&state->lock); + + if (error) return -1; return 0; } + + +const location_provider_t geoclue2_location_provider = { + "geoclue2", + (location_provider_init_func *)location_geoclue2_init, + (location_provider_start_func *)location_geoclue2_start, + (location_provider_free_func *)location_geoclue2_free, + (location_provider_print_help_func *)location_geoclue2_print_help, + (location_provider_set_option_func *)location_geoclue2_set_option, + (location_provider_get_fd_func *)location_geoclue2_get_fd, + (location_provider_handle_func *)location_geoclue2_handle +}; diff --git a/src/location-geoclue2.h b/src/location-geoclue2.h index c3c377b..a7189a7 100644 --- a/src/location-geoclue2.h +++ b/src/location-geoclue2.h @@ -14,27 +14,14 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2014-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_LOCATION_GEOCLUE2_H #define REDSHIFT_LOCATION_GEOCLUE2_H -#include <stdio.h> - #include "redshift.h" - -int location_geoclue2_init(void *state); -int location_geoclue2_start(void *state); -void location_geoclue2_free(void *state); - -void location_geoclue2_print_help(FILE *f); -int location_geoclue2_set_option(void *state, - const char *key, const char *value); - -int location_geoclue2_get_location(void *state, - location_t *loc); - +extern const location_provider_t geoclue2_location_provider; #endif /* ! REDSHIFT_LOCATION_GEOCLUE2_H */ diff --git a/src/location-manual.c b/src/location-manual.c index c5da074..db3a8a9 100644 --- a/src/location-manual.c +++ b/src/location-manual.c @@ -14,9 +14,13 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <math.h> @@ -33,16 +37,25 @@ #endif -int -location_manual_init(location_manual_state_t *state) +typedef struct { + location_t loc; +} location_manual_state_t; + + +static int +location_manual_init(location_manual_state_t **state) { - state->loc.lat = NAN; - state->loc.lon = NAN; + *state = malloc(sizeof(location_manual_state_t)); + if (*state == NULL) return -1; + + location_manual_state_t *s = *state; + s->loc.lat = NAN; + s->loc.lon = NAN; return 0; } -int +static int location_manual_start(location_manual_state_t *state) { /* Latitude and longitude must be set */ @@ -54,12 +67,13 @@ location_manual_start(location_manual_state_t *state) return 0; } -void +static void location_manual_free(location_manual_state_t *state) { + free(state); } -void +static void location_manual_print_help(FILE *f) { fputs(_("Specify location manually.\n"), f); @@ -75,7 +89,7 @@ location_manual_print_help(FILE *f) fputs("\n", f); } -int +static int location_manual_set_option(location_manual_state_t *state, const char *key, const char *value) { @@ -100,11 +114,30 @@ location_manual_set_option(location_manual_state_t *state, const char *key, return 0; } -int -location_manual_get_location(location_manual_state_t *state, - location_t *loc) +static int +location_manual_get_fd(location_manual_state_t *state) { - *loc = state->loc; + return -1; +} + +static int +location_manual_handle( + location_manual_state_t *state, location_t *location, int *available) +{ + *location = state->loc; + *available = 1; return 0; } + + +const location_provider_t manual_location_provider = { + "manual", + (location_provider_init_func *)location_manual_init, + (location_provider_start_func *)location_manual_start, + (location_provider_free_func *)location_manual_free, + (location_provider_print_help_func *)location_manual_print_help, + (location_provider_set_option_func *)location_manual_set_option, + (location_provider_get_fd_func *)location_manual_get_fd, + (location_provider_handle_func *)location_manual_handle +}; diff --git a/src/location-manual.h b/src/location-manual.h index e70d9cf..c7ef2ad 100644 --- a/src/location-manual.h +++ b/src/location-manual.h @@ -14,32 +14,14 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_LOCATION_MANUAL_H #define REDSHIFT_LOCATION_MANUAL_H -#include <stdio.h> - #include "redshift.h" - -typedef struct { - location_t loc; -} location_manual_state_t; - - -int location_manual_init(location_manual_state_t *state); -int location_manual_start(location_manual_state_t *state); -void location_manual_free(location_manual_state_t *state); - -void location_manual_print_help(FILE *f); -int location_manual_set_option(location_manual_state_t *state, - const char *key, const char *value); - -int location_manual_get_location(location_manual_state_t *state, - location_t *loc); - +extern const location_provider_t manual_location_provider; #endif /* ! REDSHIFT_LOCATION_MANUAL_H */ diff --git a/src/options.c b/src/options.c new file mode 100644 index 0000000..aadd317 --- /dev/null +++ b/src/options.c @@ -0,0 +1,680 @@ +/* options.c -- Program options + This file is part of Redshift. + + Redshift is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Redshift is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Redshift. If not, see <http://www.gnu.org/licenses/>. + + Copyright (c) 2017 Jon Lund Steffensen <jonlst@gmail.com> +*/ + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include <stdlib.h> +#include <unistd.h> +#include <string.h> +#include <errno.h> +#include <math.h> + +#ifdef ENABLE_NLS +# include <libintl.h> +# define _(s) gettext(s) +#else +# define _(s) s +#endif + +#include "redshift.h" +#include "config-ini.h" +#include "options.h" +#include "solar.h" + +/* Angular elevation of the sun at which the color temperature + transition period starts and ends (in degress). + Transition during twilight, and while the sun is lower than + 3.0 degrees above the horizon. */ +#define TRANSITION_LOW SOLAR_CIVIL_TWILIGHT_ELEV +#define TRANSITION_HIGH 3.0 + +/* Default values for parameters. */ +#define DEFAULT_DAY_TEMP 6500 +#define DEFAULT_NIGHT_TEMP 4500 +#define DEFAULT_BRIGHTNESS 1.0 +#define DEFAULT_GAMMA 1.0 + + +/* A brightness string contains either one floating point value, + or two values separated by a colon. */ +static void +parse_brightness_string( + const char *str, float *bright_day, float *bright_night) +{ + char *s = strchr(str, ':'); + if (s == NULL) { + /* Same value for day and night. */ + *bright_day = *bright_night = atof(str); + } else { + *(s++) = '\0'; + *bright_day = atof(str); + *bright_night = atof(s); + } +} + +/* A gamma string contains either one floating point value, + or three values separated by colon. */ +static int +parse_gamma_string(const char *str, float gamma[]) +{ + char *s = strchr(str, ':'); + if (s == NULL) { + /* Use value for all channels */ + float g = atof(str); + gamma[0] = gamma[1] = gamma[2] = g; + } else { + /* Parse separate value for each channel */ + *(s++) = '\0'; + char *g_s = s; + s = strchr(s, ':'); + if (s == NULL) return -1; + + *(s++) = '\0'; + gamma[0] = atof(str); /* Red */ + gamma[1] = atof(g_s); /* Blue */ + gamma[2] = atof(s); /* Green */ + } + + return 0; +} + +/* Parse transition time string e.g. "04:50". Returns negative on failure, + otherwise the parsed time is returned as seconds since midnight. */ +static int +parse_transition_time(const char *str, const char **end) +{ + const char *min = NULL; + errno = 0; + long hours = strtol(str, (char **)&min, 10); + if (errno != 0 || min == str || min[0] != ':' || + hours < 0 || hours >= 24) { + return -1; + } + + min += 1; + errno = 0; + long minutes = strtol(min, (char **)end, 10); + if (errno != 0 || *end == min || minutes < 0 || minutes >= 60) { + return -1; + } + + return minutes * 60 + hours * 3600; +} + +/* Parse transition range string e.g. "04:50-6:20". Returns negative on + failure, otherwise zero. Parsed start and end times are returned as seconds + since midnight. */ +static int +parse_transition_range(const char *str, time_range_t *range) +{ + const char *next = NULL; + int start_time = parse_transition_time(str, &next); + if (start_time < 0) return -1; + + int end_time; + if (next[0] == '\0') { + end_time = start_time; + } else if (next[0] == '-') { + next += 1; + const char *end = NULL; + end_time = parse_transition_time(next, &end); + if (end_time < 0 || end[0] != '\0') return -1; + } else { + return -1; + } + + range->start = start_time; + range->end = end_time; + + return 0; +} + +/* Print help text. */ +static void +print_help(const char *program_name) +{ + /* TRANSLATORS: help output 1 + LAT is latitude, LON is longitude, + DAY is temperature at daytime, + NIGHT is temperature at night + no-wrap */ + printf(_("Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n"), + program_name); + fputs("\n", stdout); + + /* TRANSLATORS: help output 2 + no-wrap */ + fputs(_("Set color temperature of display" + " according to time of day.\n"), stdout); + fputs("\n", stdout); + + /* TRANSLATORS: help output 3 + no-wrap */ + fputs(_(" -h\t\tDisplay this help message\n" + " -v\t\tVerbose output\n" + " -V\t\tShow program version\n"), stdout); + fputs("\n", stdout); + + /* TRANSLATORS: help output 4 + `list' must not be translated + no-wrap */ + fputs(_(" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" + " -c FILE\tLoad settings from specified configuration file\n" + " -g R:G:B\tAdditional gamma correction to apply\n" + " -l LAT:LON\tYour current location\n" + " -l PROVIDER\tSelect provider for automatic" + " location updates\n" + " \t\t(Type `list' to see available providers)\n" + " -m METHOD\tMethod to use to set color temperature\n" + " \t\t(Type `list' to see available methods)\n" + " -o\t\tOne shot mode (do not continuously adjust" + " color temperature)\n" + " -O TEMP\tOne shot manual mode (set color temperature)\n" + " -p\t\tPrint mode (only print parameters and exit)\n" + " -P\t\tReset existing gamma ramps before applying new" + " color effect\n" + " -x\t\tReset mode (remove adjustment from screen)\n" + " -r\t\tDisable fading between color temperatures\n" + " -t DAY:NIGHT\tColor temperature to set at daytime/night\n"), + stdout); + fputs("\n", stdout); + + /* TRANSLATORS: help output 5 */ + printf(_("The neutral temperature is %uK. Using this value will not change " + "the color\ntemperature of the display. Setting the color temperature " + "to a value higher\nthan this results in more blue light, and setting " + "a lower value will result in\nmore red light.\n"), + NEUTRAL_TEMP); + + fputs("\n", stdout); + + /* TRANSLATORS: help output 6 */ + printf(_("Default values:\n\n" + " Daytime temperature: %uK\n" + " Night temperature: %uK\n"), + DEFAULT_DAY_TEMP, DEFAULT_NIGHT_TEMP); + + fputs("\n", stdout); +} + +/* Print list of adjustment methods. */ +static void +print_method_list(const gamma_method_t *gamma_methods) +{ + fputs(_("Available adjustment methods:\n"), stdout); + for (int i = 0; gamma_methods[i].name != NULL; i++) { + printf(" %s\n", gamma_methods[i].name); + } + + fputs("\n", stdout); + fputs(_("Specify colon-separated options with" + " `-m METHOD:OPTIONS'.\n"), stdout); + /* TRANSLATORS: `help' must not be translated. */ + fputs(_("Try `-m METHOD:help' for help.\n"), stdout); +} + +/* Print list of location providers. */ +static void +print_provider_list(const location_provider_t location_providers[]) +{ + fputs(_("Available location providers:\n"), stdout); + for (int i = 0; location_providers[i].name != NULL; i++) { + printf(" %s\n", location_providers[i].name); + } + + fputs("\n", stdout); + fputs(_("Specify colon-separated options with" + "`-l PROVIDER:OPTIONS'.\n"), stdout); + /* TRANSLATORS: `help' must not be translated. */ + fputs(_("Try `-l PROVIDER:help' for help.\n"), stdout); +} + +/* Return the gamma method with the given name. */ +static const gamma_method_t * +find_gamma_method(const gamma_method_t gamma_methods[], const char *name) +{ + const gamma_method_t *method = NULL; + for (int i = 0; gamma_methods[i].name != NULL; i++) { + const gamma_method_t *m = &gamma_methods[i]; + if (strcasecmp(name, m->name) == 0) { + method = m; + break; + } + } + + return method; +} + +/* Return location provider with the given name. */ +static const location_provider_t * +find_location_provider( + const location_provider_t location_providers[], const char *name) +{ + const location_provider_t *provider = NULL; + for (int i = 0; location_providers[i].name != NULL; i++) { + const location_provider_t *p = &location_providers[i]; + if (strcasecmp(name, p->name) == 0) { + provider = p; + break; + } + } + + return provider; +} + + +/* Initialize options struct. */ +void +options_init(options_t *options) +{ + options->config_filepath = NULL; + + /* Default elevation values. */ + options->scheme.high = TRANSITION_HIGH; + options->scheme.low = TRANSITION_LOW; + + /* Settings for day, night and transition period. + Initialized to indicate that the values are not set yet. */ + options->scheme.use_time = 0; + options->scheme.dawn.start = -1; + options->scheme.dawn.end = -1; + options->scheme.dusk.start = -1; + options->scheme.dusk.end = -1; + + options->scheme.day.temperature = -1; + options->scheme.day.gamma[0] = NAN; + options->scheme.day.brightness = NAN; + + options->scheme.night.temperature = -1; + options->scheme.night.gamma[0] = NAN; + options->scheme.night.brightness = NAN; + + /* Temperature for manual mode */ + options->temp_set = -1; + + options->method = NULL; + options->method_args = NULL; + + options->provider = NULL; + options->provider_args = NULL; + + options->use_fade = -1; + options->preserve_gamma = 1; + options->mode = PROGRAM_MODE_CONTINUAL; + options->verbose = 0; +} + +/* Parse a single option from the command-line. */ +static int +parse_command_line_option( + const char option, char *value, options_t *options, + const char *program_name, const gamma_method_t *gamma_methods, + const location_provider_t *location_providers) +{ + int r; + char *s; + + switch (option) { + case 'b': + parse_brightness_string( + value, &options->scheme.day.brightness, + &options->scheme.night.brightness); + break; + case 'c': + free(options->config_filepath); + options->config_filepath = strdup(value); + break; + case 'g': + r = parse_gamma_string(value, options->scheme.day.gamma); + if (r < 0) { + fputs(_("Malformed gamma argument.\n"), stderr); + fputs(_("Try `-h' for more information.\n"), stderr); + return -1; + } + + /* Set night gamma to the same value as day gamma. + To set these to distinct values use the config + file. */ + memcpy(options->scheme.night.gamma, + options->scheme.day.gamma, + sizeof(options->scheme.night.gamma)); + break; + case 'h': + print_help(program_name); + exit(EXIT_SUCCESS); + break; + case 'l': + /* Print list of providers if argument is `list' */ + if (strcasecmp(value, "list") == 0) { + print_provider_list(location_providers); + exit(EXIT_SUCCESS); + } + + char *provider_name = NULL; + + /* Don't save the result of strtof(); we simply want + to know if value can be parsed as a float. */ + errno = 0; + char *end; + strtof(value, &end); + if (errno == 0 && *end == ':') { + /* Use instead as arguments to `manual'. */ + provider_name = "manual"; + options->provider_args = value; + } else { + /* Split off provider arguments. */ + s = strchr(value, ':'); + if (s != NULL) { + *(s++) = '\0'; + options->provider_args = s; + } + + provider_name = value; + } + + /* Lookup provider from name. */ + options->provider = find_location_provider( + location_providers, provider_name); + if (options->provider == NULL) { + fprintf(stderr, _("Unknown location provider `%s'.\n"), + provider_name); + return -1; + } + + /* Print provider help if arg is `help'. */ + if (options->provider_args != NULL && + strcasecmp(options->provider_args, "help") == 0) { + options->provider->print_help(stdout); + exit(EXIT_SUCCESS); + } + break; + case 'm': + /* Print list of methods if argument is `list' */ + if (strcasecmp(value, "list") == 0) { + print_method_list(gamma_methods); + exit(EXIT_SUCCESS); + } + + /* Split off method arguments. */ + s = strchr(value, ':'); + if (s != NULL) { + *(s++) = '\0'; + options->method_args = s; + } + + /* Find adjustment method by name. */ + options->method = find_gamma_method(gamma_methods, value); + if (options->method == NULL) { + /* TRANSLATORS: This refers to the method + used to adjust colors e.g VidMode */ + fprintf(stderr, _("Unknown adjustment method `%s'.\n"), + value); + return -1; + } + + /* Print method help if arg is `help'. */ + if (options->method_args != NULL && + strcasecmp(options->method_args, "help") == 0) { + options->method->print_help(stdout); + exit(EXIT_SUCCESS); + } + break; + case 'o': + options->mode = PROGRAM_MODE_ONE_SHOT; + break; + case 'O': + options->mode = PROGRAM_MODE_MANUAL; + options->temp_set = atoi(value); + break; + case 'p': + options->mode = PROGRAM_MODE_PRINT; + break; + case 'P': + options->preserve_gamma = 0; + break; + case 'r': + options->use_fade = 0; + break; + case 't': + s = strchr(value, ':'); + if (s == NULL) { + fputs(_("Malformed temperature argument.\n"), stderr); + fputs(_("Try `-h' for more information.\n"), stderr); + return -1; + } + *(s++) = '\0'; + options->scheme.day.temperature = atoi(value); + options->scheme.night.temperature = atoi(s); + break; + case 'v': + options->verbose = 1; + break; + case 'V': + printf("%s\n", PACKAGE_STRING); + exit(EXIT_SUCCESS); + break; + case 'x': + options->mode = PROGRAM_MODE_RESET; + break; + case '?': + fputs(_("Try `-h' for more information.\n"), stderr); + return -1; + break; + } + + return 0; +} + +/* Parse command line arguments. */ +void +options_parse_args( + options_t *options, int argc, char *argv[], + const gamma_method_t *gamma_methods, + const location_provider_t *location_providers) +{ + const char* program_name = argv[0]; + int opt; + while ((opt = getopt(argc, argv, "b:c:g:hl:m:oO:pPrt:vVx")) != -1) { + char option = opt; + int r = parse_command_line_option( + option, optarg, options, program_name, gamma_methods, + location_providers); + if (r < 0) exit(EXIT_FAILURE); + } +} + +/* Parse a single key-value pair from the configuration file. */ +static int +parse_config_file_option( + const char *key, const char *value, options_t *options, + const gamma_method_t *gamma_methods, + const location_provider_t *location_providers) +{ + if (strcasecmp(key, "temp-day") == 0) { + if (options->scheme.day.temperature < 0) { + options->scheme.day.temperature = atoi(value); + } + } else if (strcasecmp(key, "temp-night") == 0) { + if (options->scheme.night.temperature < 0) { + options->scheme.night.temperature = atoi(value); + } + } else if (strcasecmp(key, "transition") == 0 || + strcasecmp(key, "fade") == 0) { + /* "fade" is preferred, "transition" is + deprecated as the setting key. */ + if (options->use_fade < 0) { + options->use_fade = !!atoi(value); + } + } else if (strcasecmp(key, "brightness") == 0) { + if (isnan(options->scheme.day.brightness)) { + options->scheme.day.brightness = atof(value); + } + if (isnan(options->scheme.night.brightness)) { + options->scheme.night.brightness = atof(value); + } + } else if (strcasecmp(key, "brightness-day") == 0) { + if (isnan(options->scheme.day.brightness)) { + options->scheme.day.brightness = atof(value); + } + } else if (strcasecmp(key, "brightness-night") == 0) { + if (isnan(options->scheme.night.brightness)) { + options->scheme.night.brightness = atof(value); + } + } else if (strcasecmp(key, "elevation-high") == 0) { + options->scheme.high = atof(value); + } else if (strcasecmp(key, "elevation-low") == 0) { + options->scheme.low = atof(value); + } else if (strcasecmp(key, "gamma") == 0) { + if (isnan(options->scheme.day.gamma[0])) { + int r = parse_gamma_string( + value, options->scheme.day.gamma); + if (r < 0) { + fputs(_("Malformed gamma setting.\n"), stderr); + return -1; + } + memcpy(options->scheme.night.gamma, + options->scheme.day.gamma, + sizeof(options->scheme.night.gamma)); + } + } else if (strcasecmp(key, "gamma-day") == 0) { + if (isnan(options->scheme.day.gamma[0])) { + int r = parse_gamma_string( + value, options->scheme.day.gamma); + if (r < 0) { + fputs(_("Malformed gamma setting.\n"), stderr); + return -1; + } + } + } else if (strcasecmp(key, "gamma-night") == 0) { + if (isnan(options->scheme.night.gamma[0])) { + int r = parse_gamma_string( + value, options->scheme.night.gamma); + if (r < 0) { + fputs(_("Malformed gamma setting.\n"), stderr); + return -1; + } + } + } else if (strcasecmp(key, "preserve-gamma") == 0) { + if (options->preserve_gamma == 1) { + options->preserve_gamma = !!atoi(value); + } + } else if (strcasecmp(key, "adjustment-method") == 0) { + if (options->method == NULL) { + options->method = find_gamma_method( + gamma_methods, value); + if (options->method == NULL) { + fprintf(stderr, _("Unknown adjustment" + " method `%s'.\n"), value); + return -1; + } + } + } else if (strcasecmp(key, "location-provider") == 0) { + if (options->provider == NULL) { + options->provider = find_location_provider( + location_providers, value); + if (options->provider == NULL) { + fprintf(stderr, _("Unknown location" + " provider `%s'.\n"), value); + return -1; + } + } + } else if (strcasecmp(key, "dawn-time") == 0) { + if (options->scheme.dawn.start < 0) { + int r = parse_transition_range( + value, &options->scheme.dawn); + if (r < 0) { + fprintf(stderr, _("Malformed dawn-time" + " setting `%s'.\n"), value); + return -1; + } + } + } else if (strcasecmp(key, "dusk-time") == 0) { + if (options->scheme.dusk.start < 0) { + int r = parse_transition_range( + value, &options->scheme.dusk); + if (r < 0) { + fprintf(stderr, _("Malformed dusk-time" + " setting `%s'.\n"), value); + return -1; + } + } + } else { + fprintf(stderr, _("Unknown configuration setting `%s'.\n"), + key); + } + + return 0; +} + +/* Parse options defined in the config file. */ +void +options_parse_config_file( + options_t *options, config_ini_state_t *config_state, + const gamma_method_t *gamma_methods, + const location_provider_t *location_providers) +{ + /* Read global config settings. */ + config_ini_section_t *section = config_ini_get_section( + config_state, "redshift"); + if (section == NULL) return; + + config_ini_setting_t *setting = section->settings; + while (setting != NULL) { + int r = parse_config_file_option( + setting->name, setting->value, options, + gamma_methods, location_providers); + if (r < 0) exit(EXIT_FAILURE); + + setting = setting->next; + } +} + +/* Replace unspecified options with default values. */ +void +options_set_defaults(options_t *options) +{ + if (options->scheme.day.temperature < 0) { + options->scheme.day.temperature = DEFAULT_DAY_TEMP; + } + if (options->scheme.night.temperature < 0) { + options->scheme.night.temperature = DEFAULT_NIGHT_TEMP; + } + + if (isnan(options->scheme.day.brightness)) { + options->scheme.day.brightness = DEFAULT_BRIGHTNESS; + } + if (isnan(options->scheme.night.brightness)) { + options->scheme.night.brightness = DEFAULT_BRIGHTNESS; + } + + if (isnan(options->scheme.day.gamma[0])) { + options->scheme.day.gamma[0] = DEFAULT_GAMMA; + options->scheme.day.gamma[1] = DEFAULT_GAMMA; + options->scheme.day.gamma[2] = DEFAULT_GAMMA; + } + if (isnan(options->scheme.night.gamma[0])) { + options->scheme.night.gamma[0] = DEFAULT_GAMMA; + options->scheme.night.gamma[1] = DEFAULT_GAMMA; + options->scheme.night.gamma[2] = DEFAULT_GAMMA; + } + + if (options->use_fade < 0) options->use_fade = 1; +} diff --git a/src/options.h b/src/options.h new file mode 100644 index 0000000..9993a07 --- /dev/null +++ b/src/options.h @@ -0,0 +1,63 @@ +/* options.h -- Program options header + This file is part of Redshift. + + Redshift is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Redshift is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Redshift. If not, see <http://www.gnu.org/licenses/>. + + Copyright (c) 2017 Jon Lund Steffensen <jonlst@gmail.com> +*/ + +#ifndef REDSHIFT_OPTIONS_H +#define REDSHIFT_OPTIONS_H + +#include "redshift.h" + +typedef struct { + /* Path to config file */ + char *config_filepath; + + transition_scheme_t scheme; + program_mode_t mode; + int verbose; + + /* Temperature to set in manual mode. */ + int temp_set; + /* Whether to fade between large skips in color temperature. */ + int use_fade; + /* Whether to preserve gamma ramps if supported by gamma method. */ + int preserve_gamma; + + /* Selected gamma method. */ + const gamma_method_t *method; + /* Arguments for gamma method. */ + char *method_args; + + /* Selected location provider. */ + const location_provider_t *provider; + /* Arguments for location provider. */ + char *provider_args; +} options_t; + + +void options_init(options_t *options); +void options_parse_args( + options_t *options, int argc, char *argv[], + const gamma_method_t *gamma_methods, + const location_provider_t *location_providers); +void options_parse_config_file( + options_t *options, config_ini_state_t *config_state, + const gamma_method_t *gamma_methods, + const location_provider_t *location_providers); +void options_set_defaults(options_t *options); + +#endif /* ! REDSHIFT_OPTIONS_H */ diff --git a/src/pipeutils.c b/src/pipeutils.c new file mode 100644 index 0000000..75302cb --- /dev/null +++ b/src/pipeutils.c @@ -0,0 +1,98 @@ +/* pipeutils.c -- Utilities for using pipes as signals + This file is part of Redshift. + + Redshift is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Redshift is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Redshift. If not, see <http://www.gnu.org/licenses/>. + + Copyright (c) 2017 Jon Lund Steffensen <jonlst@gmail.com> +*/ + +#include <stdio.h> +#include <unistd.h> +#include <fcntl.h> + + +#ifndef _WIN32 + +/* Create non-blocking set of pipe fds. */ +int +pipeutils_create_nonblocking(int pipefds[2]) +{ + int r = pipe(pipefds); + if (r == -1) { + perror("pipe"); + return -1; + } + + int flags = fcntl(pipefds[0], F_GETFL); + if (flags == -1) { + perror("fcntl"); + close(pipefds[0]); + close(pipefds[1]); + return -1; + } + + r = fcntl(pipefds[0], F_SETFL, flags | O_NONBLOCK); + if (r == -1) { + perror("fcntl"); + close(pipefds[0]); + close(pipefds[1]); + return -1; + } + + flags = fcntl(pipefds[1], F_GETFL); + if (flags == -1) { + perror("fcntl"); + close(pipefds[0]); + close(pipefds[1]); + return -1; + } + + r = fcntl(pipefds[1], F_SETFL, flags | O_NONBLOCK); + if (r == -1) { + perror("fcntl"); + close(pipefds[0]); + close(pipefds[1]); + return -1; + } + + return 0; +} + +#else /* _WIN32 */ + +/* Create non-blocking set of pipe fds. + + Not supported on Windows! Always fails. */ +int +pipeutils_create_nonblocking(int pipefds[2]) +{ + return -1; +} + +#endif + +/* Signal on write-end of pipe. */ +void +pipeutils_signal(int write_fd) +{ + write(write_fd, "", 1); +} + +/* Mark signal as handled on read-end of pipe. */ +void +pipeutils_handle_signal(int read_fd) +{ + char data; + read(read_fd, &data, 1); +} diff --git a/src/pipeutils.h b/src/pipeutils.h new file mode 100644 index 0000000..69c3350 --- /dev/null +++ b/src/pipeutils.h @@ -0,0 +1,28 @@ +/* pipeutils.h -- Utilities for using pipes as signals + This file is part of Redshift. + + Redshift is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Redshift is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Redshift. If not, see <http://www.gnu.org/licenses/>. + + Copyright (c) 2017 Jon Lund Steffensen <jonlst@gmail.com> +*/ + +#ifndef REDSHIFT_PIPEUTILS_H +#define REDSHIFT_PIPEUTILS_H + +int pipeutils_create_nonblocking(int pipefds[2]); + +void pipeutils_signal(int write_fd); +void pipeutils_handle_signal(int read_fd); + +#endif /* ! REDSHIFT_PIPEUTILS_H */ diff --git a/src/redshift-gtk/Makefile.am b/src/redshift-gtk/Makefile.am index c4ab24f..b7303a2 100644 --- a/src/redshift-gtk/Makefile.am +++ b/src/redshift-gtk/Makefile.am @@ -2,8 +2,9 @@ if ENABLE_GUI redshift_gtk_PYTHON = \ __init__.py \ - utils.py \ - statusicon.py + controller.py \ + statusicon.py \ + utils.py nodist_redshift_gtk_PYTHON = \ defs.py redshift_gtkdir = $(pythondir)/redshift_gtk diff --git a/src/redshift-gtk/controller.py b/src/redshift-gtk/controller.py new file mode 100644 index 0000000..24c58ae --- /dev/null +++ b/src/redshift-gtk/controller.py @@ -0,0 +1,227 @@ +# controller.py -- Redshift child process controller +# This file is part of Redshift. + +# Redshift is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# Redshift is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with Redshift. If not, see <http://www.gnu.org/licenses/>. + +# Copyright (c) 2013-2017 Jon Lund Steffensen <jonlst@gmail.com> + +import os +import re +import fcntl +import signal + +import gi +gi.require_version('GLib', '2.0') + +from gi.repository import GLib, GObject + +from . import defs + + +class RedshiftController(GObject.GObject): + """GObject wrapper around the Redshift child process.""" + + __gsignals__ = { + 'inhibit-changed': (GObject.SIGNAL_RUN_FIRST, None, (bool,)), + 'temperature-changed': (GObject.SIGNAL_RUN_FIRST, None, (int,)), + 'period-changed': (GObject.SIGNAL_RUN_FIRST, None, (str,)), + 'location-changed': (GObject.SIGNAL_RUN_FIRST, None, (float, float)), + 'error-occured': (GObject.SIGNAL_RUN_FIRST, None, (str,)), + 'stopped': (GObject.SIGNAL_RUN_FIRST, None, ()), + } + + def __init__(self, args): + """Initialize controller and start child process. + + The parameter args is a list of command line arguments to pass on to + the child process. The "-v" argument is automatically added. + """ + GObject.GObject.__init__(self) + + # Initialize state variables + self._inhibited = False + self._temperature = 0 + self._period = 'Unknown' + self._location = (0.0, 0.0) + + # Start redshift with arguments + args.insert(0, os.path.join(defs.BINDIR, 'redshift')) + if '-v' not in args: + args.insert(1, '-v') + + # Start child process with C locale so we can parse the output + env = os.environ.copy() + for key in ('LANG', 'LANGUAGE', 'LC_ALL', 'LC_MESSAGES'): + env[key] = 'C' + self._process = GLib.spawn_async( + args, envp=['{}={}'.format(k, v) for k, v in env.items()], + flags=GLib.SPAWN_DO_NOT_REAP_CHILD, + standard_output=True, standard_error=True) + + # Wrap remaining contructor in try..except to avoid that the child + # process is not closed properly. + try: + # Handle child input + # The buffer is encapsulated in a class so we + # can pass an instance to the child callback. + class InputBuffer(object): + buf = '' + + self._input_buffer = InputBuffer() + self._error_buffer = InputBuffer() + self._errors = '' + + # Set non blocking + fcntl.fcntl( + self._process[2], fcntl.F_SETFL, + fcntl.fcntl(self._process[2], fcntl.F_GETFL) | os.O_NONBLOCK) + + # Add watch on child process + GLib.child_watch_add( + GLib.PRIORITY_DEFAULT, self._process[0], self._child_cb) + GLib.io_add_watch( + self._process[2], GLib.PRIORITY_DEFAULT, GLib.IO_IN, + self._child_data_cb, (True, self._input_buffer)) + GLib.io_add_watch( + self._process[3], GLib.PRIORITY_DEFAULT, GLib.IO_IN, + self._child_data_cb, (False, self._error_buffer)) + + # Signal handler to relay USR1 signal to redshift process + def relay_signal_handler(signal): + os.kill(self._process[0], signal) + return True + + GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGUSR1, + relay_signal_handler, signal.SIGUSR1) + except: + self.termwait() + raise + + @property + def inhibited(self): + """Current inhibition state.""" + return self._inhibited + + @property + def temperature(self): + """Current screen temperature.""" + return self._temperature + + @property + def period(self): + """Current period of day.""" + return self._period + + @property + def location(self): + """Current location.""" + return self._location + + def set_inhibit(self, inhibit): + """Set inhibition state.""" + if inhibit != self._inhibited: + self._child_toggle_inhibit() + + def _child_signal(self, sg): + """Send signal to child process.""" + os.kill(self._process[0], sg) + + def _child_toggle_inhibit(self): + """Sends a request to the child process to toggle state.""" + self._child_signal(signal.SIGUSR1) + + def _child_cb(self, pid, status, data=None): + """Called when the child process exists.""" + + # Empty stdout and stderr + for f in (self._process[2], self._process[3]): + while True: + buf = os.read(f, 256).decode('utf-8') + if buf == '': + break + if f == self._process[3]: # stderr + self._errors += buf + + # Check exit status of child + try: + GLib.spawn_check_exit_status(status) + except GLib.GError: + self.emit('error-occured', self._errors) + + GLib.spawn_close_pid(self._process[0]) + self.emit('stopped') + + def _child_key_change_cb(self, key, value): + """Called when the child process reports a change of internal state.""" + + def parse_coord(s): + """Parse coordinate like `42.0 N` or `91.5 W`.""" + v, d = s.split(' ') + return float(v) * (1 if d in 'NE' else -1) + + if key == 'Status': + new_inhibited = value != 'Enabled' + if new_inhibited != self._inhibited: + self._inhibited = new_inhibited + self.emit('inhibit-changed', new_inhibited) + elif key == 'Color temperature': + new_temperature = int(value.rstrip('K'), 10) + if new_temperature != self._temperature: + self._temperature = new_temperature + self.emit('temperature-changed', new_temperature) + elif key == 'Period': + new_period = value + if new_period != self._period: + self._period = new_period + self.emit('period-changed', new_period) + elif key == 'Location': + new_location = tuple(parse_coord(x) for x in value.split(', ')) + if new_location != self._location: + self._location = new_location + self.emit('location-changed', *new_location) + + def _child_stdout_line_cb(self, line): + """Called when the child process outputs a line to stdout.""" + if line: + m = re.match(r'([\w ]+): (.+)', line) + if m: + key = m.group(1) + value = m.group(2) + self._child_key_change_cb(key, value) + + def _child_data_cb(self, f, cond, data): + """Called when the child process has new data on stdout/stderr.""" + stdout, ib = data + ib.buf += os.read(f, 256).decode('utf-8') + + # Split input at line break + while True: + first, sep, last = ib.buf.partition('\n') + if sep == '': + break + ib.buf = last + if stdout: + self._child_stdout_line_cb(first) + else: + self._errors += first + '\n' + + return True + + def terminate_child(self): + """Send SIGINT to child process.""" + self._child_signal(signal.SIGINT) + + def kill_child(self): + """Send SIGKILL to child process.""" + self._child_signal(signal.SIGKILL) diff --git a/src/redshift-gtk/statusicon.py b/src/redshift-gtk/statusicon.py index b766175..b4adfb0 100644 --- a/src/redshift-gtk/statusicon.py +++ b/src/redshift-gtk/statusicon.py @@ -14,243 +14,61 @@ # You should have received a copy of the GNU General Public License # along with Redshift. If not, see <http://www.gnu.org/licenses/>. -# Copyright (c) 2013-2014 Jon Lund Steffensen <jonlst@gmail.com> +# Copyright (c) 2013-2017 Jon Lund Steffensen <jonlst@gmail.com> -'''GUI status icon for Redshift. +"""GUI status icon for Redshift. The run method will try to start an appindicator for Redshift. If the appindicator module isn't present it will fall back to a GTK status icon. -''' +""" -import sys, os -import fcntl +import sys import signal -import re import gettext -from gi.repository import Gtk, GLib, GObject +import gi +gi.require_version('Gtk', '3.0') + +from gi.repository import Gtk, GLib try: + gi.require_version('AppIndicator3', '0.1') from gi.repository import AppIndicator3 as appindicator -except ImportError: +except (ImportError, ValueError): appindicator = None +from .controller import RedshiftController from . import defs from . import utils _ = gettext.gettext -class RedshiftController(GObject.GObject): - '''A GObject wrapper around the child process''' - - __gsignals__ = { - 'inhibit-changed': (GObject.SIGNAL_RUN_FIRST, None, (bool,)), - 'temperature-changed': (GObject.SIGNAL_RUN_FIRST, None, (int,)), - 'period-changed': (GObject.SIGNAL_RUN_FIRST, None, (str,)), - 'location-changed': (GObject.SIGNAL_RUN_FIRST, None, (float, float)), - 'error-occured': (GObject.SIGNAL_RUN_FIRST, None, (str,)) - } - - def __init__(self, args): - '''Initialize controller and start child process - - The parameter args is a list of command line arguments to pass on to - the child process. The "-v" argument is automatically added.''' - - GObject.GObject.__init__(self) - - # Initialize state variables - self._inhibited = False - self._temperature = 0 - self._period = 'Unknown' - self._location = (0.0, 0.0) - - # Start redshift with arguments - args.insert(0, os.path.join(defs.BINDIR, 'redshift')) - if '-v' not in args: - args.insert(1, '-v') - - # Start child process with C locale so we can parse the output - env = os.environ.copy() - env['LANG'] = env['LANGUAGE'] = env['LC_ALL'] = env['LC_MESSAGES'] = 'C' - self._process = GLib.spawn_async(args, envp=['{}={}'.format(k,v) for k, v in env.items()], - flags=GLib.SPAWN_DO_NOT_REAP_CHILD, - standard_output=True, standard_error=True) - - # Wrap remaining contructor in try..except to avoid that the child - # process is not closed properly. - try: - # Handle child input - # The buffer is encapsulated in a class so we - # can pass an instance to the child callback. - class InputBuffer(object): - buf = '' - - self._input_buffer = InputBuffer() - self._error_buffer = InputBuffer() - self._errors = '' - - # Set non blocking - fcntl.fcntl(self._process[2], fcntl.F_SETFL, - fcntl.fcntl(self._process[2], fcntl.F_GETFL) | os.O_NONBLOCK) - - # Add watch on child process - GLib.child_watch_add(GLib.PRIORITY_DEFAULT, self._process[0], self._child_cb) - GLib.io_add_watch(self._process[2], GLib.PRIORITY_DEFAULT, GLib.IO_IN, - self._child_data_cb, (True, self._input_buffer)) - GLib.io_add_watch(self._process[3], GLib.PRIORITY_DEFAULT, GLib.IO_IN, - self._child_data_cb, (False, self._error_buffer)) - - # Signal handler to relay USR1 signal to redshift process - def relay_signal_handler(signal): - os.kill(self._process[0], signal) - return True - - GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGUSR1, - relay_signal_handler, signal.SIGUSR1) - except: - self.termwait() - raise - - @property - def inhibited(self): - '''Current inhibition state''' - return self._inhibited - - @property - def temperature(self): - '''Current screen temperature''' - return self._temperature - - @property - def period(self): - '''Current period of day''' - return self._period - - @property - def location(self): - '''Current location''' - return self._location - - def set_inhibit(self, inhibit): - '''Set inhibition state''' - if inhibit != self._inhibited: - self._child_toggle_inhibit() - - def _child_toggle_inhibit(self): - '''Sends a request to the child process to toggle state''' - os.kill(self._process[0], signal.SIGUSR1) - - def _child_cb(self, pid, status, data=None): - '''Called when the child process exists''' - - # Empty stdout and stderr - for f in (self._process[2], self._process[3]): - while True: - buf = os.read(f, 256).decode('utf-8') - if buf == '': - break - if f == self._process[3]: # stderr - self._errors += buf - - # Check exit status of child - report_errors = False - try: - GLib.spawn_check_exit_status(status) - Gtk.main_quit() - except GLib.GError: - report_errors = True - - if report_errors: - self.emit('error-occured', self._errors) - - def _child_key_change_cb(self, key, value): - '''Called when the child process reports a change of internal state''' - - def parse_coord(s): - '''Parse coordinate like `42.0 N` or `91.5 W`''' - v, d = s.split(' ') - return float(v) * (1 if d in 'NE' else -1) - - if key == 'Status': - new_inhibited = value != 'Enabled' - if new_inhibited != self._inhibited: - self._inhibited = new_inhibited - self.emit('inhibit-changed', new_inhibited) - elif key == 'Color temperature': - new_temperature = int(value.rstrip('K'), 10) - if new_temperature != self._temperature: - self._temperature = new_temperature - self.emit('temperature-changed', new_temperature) - elif key == 'Period': - new_period = value - if new_period != self._period: - self._period = new_period - self.emit('period-changed', new_period) - elif key == 'Location': - new_location = tuple(parse_coord(x) for x in value.split(', ')) - if new_location != self._location: - self._location = new_location - self.emit('location-changed', *new_location) - - def _child_stdout_line_cb(self, line): - '''Called when the child process outputs a line to stdout''' - if line: - m = re.match(r'([\w ]+): (.+)', line) - if m: - key = m.group(1) - value = m.group(2) - self._child_key_change_cb(key, value) - - def _child_data_cb(self, f, cond, data): - '''Called when the child process has new data on stdout/stderr''' - - stdout, ib = data - ib.buf += os.read(f, 256).decode('utf-8') - - # Split input at line break - while True: - first, sep, last = ib.buf.partition('\n') - if sep == '': - break - ib.buf = last - if stdout: - self._child_stdout_line_cb(first) - else: - self._errors += first + '\n' - - return True - - def termwait(self): - '''Send SIGINT and wait for the child process to quit''' - try: - os.kill(self._process[0], signal.SIGINT) - os.waitpid(self._process[0], 0) - except ProcessLookupError: - # Process has apparently already disappeared - pass - - class RedshiftStatusIcon(object): - '''The status icon tracking the RedshiftController''' + """The status icon tracking the RedshiftController.""" def __init__(self, controller): - '''Creates a new instance of the status icon''' + """Creates a new instance of the status icon.""" self._controller = controller + self.icon_theme = Gtk.IconTheme.get_default() + icon_name = 'redshift-status-on-symbolic' + if not self.icon_theme.has_icon(icon_name): + icon_name = 'redshift-status-on' + if appindicator: # Create indicator - self.indicator = appindicator.Indicator.new('redshift', - 'redshift-status-on', - appindicator.IndicatorCategory.APPLICATION_STATUS) + self.indicator = appindicator.Indicator.new( + 'redshift', + icon_name, + appindicator.IndicatorCategory.APPLICATION_STATUS) self.indicator.set_status(appindicator.IndicatorStatus.ACTIVE) else: # Create status icon self.status_icon = Gtk.StatusIcon() - self.status_icon.set_from_icon_name('redshift-status-on') + self.status_icon.set_from_icon_name(icon_name) self.status_icon.set_tooltip_text('Redshift') # Create popup menu @@ -266,7 +84,9 @@ class RedshiftStatusIcon(object): suspend_menu = Gtk.Menu() for minutes, label in [(30, _('30 minutes')), (60, _('1 hour')), - (120, _('2 hours'))]: + (120, _('2 hours')), + (240, _('4 hours')), + (480, _('8 hours'))]: suspend_item = Gtk.MenuItem.new_with_label(label) suspend_item.connect('activate', self.suspend_cb, minutes) suspend_menu.append(suspend_item) @@ -274,16 +94,17 @@ class RedshiftStatusIcon(object): self.status_menu.append(suspend_menu_item) # Add autostart option - autostart_item = Gtk.CheckMenuItem.new_with_label(_('Autostart')) - try: - autostart_item.set_active(utils.get_autostart()) - except IOError as strerror: - print(strerror) - autostart_item.set_property('sensitive', False) - else: - autostart_item.connect('toggled', self.autostart_cb) - finally: - self.status_menu.append(autostart_item) + if utils.supports_autostart(): + autostart_item = Gtk.CheckMenuItem.new_with_label(_('Autostart')) + try: + autostart_item.set_active(utils.get_autostart()) + except IOError as strerror: + print(strerror) + autostart_item.set_property('sensitive', False) + else: + autostart_item.connect('toggled', self.autostart_cb) + finally: + self.status_menu.append(autostart_item) # Add info action info_item = Gtk.MenuItem.new_with_label(_('Info')) @@ -296,44 +117,53 @@ class RedshiftStatusIcon(object): self.status_menu.append(quit_item) # Create info dialog - self.info_dialog = Gtk.Dialog() - self.info_dialog.set_title(_('Info')) - self.info_dialog.add_button(_('Close'), Gtk.ButtonsType.CLOSE) + self.info_dialog = Gtk.Window(title=_('Info')) self.info_dialog.set_resizable(False) self.info_dialog.set_property('border-width', 6) + self.info_dialog.connect('delete-event', self.close_info_dialog_cb) + + content_area = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6) + self.info_dialog.add(content_area) + content_area.show() self.status_label = Gtk.Label() self.status_label.set_alignment(0.0, 0.5) self.status_label.set_padding(6, 6) - self.info_dialog.get_content_area().pack_start(self.status_label, True, True, 0) + content_area.pack_start(self.status_label, True, True, 0) self.status_label.show() self.location_label = Gtk.Label() self.location_label.set_alignment(0.0, 0.5) self.location_label.set_padding(6, 6) - self.info_dialog.get_content_area().pack_start(self.location_label, True, True, 0) + content_area.pack_start(self.location_label, True, True, 0) self.location_label.show() self.temperature_label = Gtk.Label() self.temperature_label.set_alignment(0.0, 0.5) self.temperature_label.set_padding(6, 6) - self.info_dialog.get_content_area().pack_start(self.temperature_label, True, True, 0) + content_area.pack_start(self.temperature_label, True, True, 0) self.temperature_label.show() self.period_label = Gtk.Label() self.period_label.set_alignment(0.0, 0.5) self.period_label.set_padding(6, 6) - self.info_dialog.get_content_area().pack_start(self.period_label, True, True, 0) + content_area.pack_start(self.period_label, True, True, 0) self.period_label.show() - self.info_dialog.connect('response', self.response_info_cb) + self.close_button = Gtk.Button(label=_('Close')) + content_area.pack_start(self.close_button, True, True, 0) + self.close_button.connect('clicked', self.close_info_dialog_cb) + self.close_button.show() # Setup signals to property changes self._controller.connect('inhibit-changed', self.inhibit_change_cb) self._controller.connect('period-changed', self.period_change_cb) - self._controller.connect('temperature-changed', self.temperature_change_cb) + self._controller.connect( + 'temperature-changed', self.temperature_change_cb) self._controller.connect('location-changed', self.location_change_cb) self._controller.connect('error-occured', self.error_occured_cb) + self._controller.connect('stopped', self.controller_stopped_cb) + self.icon_theme.connect('changed', self.on_icon_theme_changed_cb) # Set info box text self.change_inhibited(self._controller.inhibited) @@ -356,18 +186,18 @@ class RedshiftStatusIcon(object): self.suspend_timer = None def remove_suspend_timer(self): - '''Disable any previously set suspend timer''' + """Disable any previously set suspend timer.""" if self.suspend_timer is not None: GLib.source_remove(self.suspend_timer) self.suspend_timer = None def suspend_cb(self, item, minutes): - '''Callback that handles activation of a suspend timer - - The minutes parameter is the number of minutes to suspend. Even if redshift - is not disabled when called, it will still set a suspend timer and - reactive redshift when the timer is up.''' + """Callback that handles activation of a suspend timer. + The minutes parameter is the number of minutes to suspend. Even if + redshift is not disabled when called, it will still set a suspend timer + and reactive redshift when the timer is up. + """ # Inhibit self._controller.set_inhibit(True) @@ -376,29 +206,30 @@ class RedshiftStatusIcon(object): self.remove_suspend_timer() # If redshift was already disabled we reenable it nonetheless. - self.suspend_timer = GLib.timeout_add_seconds(minutes * 60, self.reenable_cb) + self.suspend_timer = GLib.timeout_add_seconds( + minutes * 60, self.reenable_cb) def reenable_cb(self): - '''Callback to reenable redshift when a suspend timer expires''' + """Callback to reenable redshift when a suspend timer expires.""" self._controller.set_inhibit(False) def popup_menu_cb(self, widget, button, time, data=None): - '''Callback when the popup menu on the status icon has to open''' + """Callback when the popup menu on the status icon has to open.""" self.status_menu.show_all() self.status_menu.popup(None, None, Gtk.StatusIcon.position_menu, self.status_icon, button, time) def toggle_cb(self, widget, data=None): - '''Callback when a request to toggle redshift was made''' + """Callback when a request to toggle redshift was made.""" self.remove_suspend_timer() self._controller.set_inhibit(not self._controller.inhibited) def toggle_item_cb(self, widget, data=None): - '''Callback then a request to toggle redshift was made from a toggle item + """Callback when a request to toggle redshift was made. This ensures that the state of redshift is synchronised with - the toggle state of the widget (e.g. Gtk.CheckMenuItem).''' - + the toggle state of the widget (e.g. Gtk.CheckMenuItem). + """ active = not self._controller.inhibited if active != widget.get_active(): self.remove_suspend_timer() @@ -406,115 +237,150 @@ class RedshiftStatusIcon(object): # Info dialog callbacks def show_info_cb(self, widget, data=None): - '''Callback when the info dialog should be presented''' + """Callback when the info dialog should be presented.""" self.info_dialog.show() def response_info_cb(self, widget, data=None): - '''Callback when a button in the info dialog was activated''' + """Callback when a button in the info dialog was activated.""" self.info_dialog.hide() + def close_info_dialog_cb(self, widget, data=None): + """Callback when the info dialog is closed.""" + self.info_dialog.hide() + return True + + def on_icon_theme_changed_cb(self, theme): + self.update_status_icon() + def update_status_icon(self): - '''Update the status icon according to the internally recorded state + """Update the status icon according to the internally recorded state. This should be called whenever the internally recorded state - might have changed.''' + might have changed. + """ + if self._controller.inhibited: + icon_name = 'redshift-status-off-symbolic' + else: + icon_name = 'redshift-status-on-symbolic' + + if not self.icon_theme.has_icon(icon_name): + icon_name = icon_name.replace('-symbolic', '') - # Update status icon if appindicator: - if not self._controller.inhibited: - self.indicator.set_icon('redshift-status-on') - else: - self.indicator.set_icon('redshift-status-off') + self.indicator.set_icon(icon_name) else: - if not self._controller.inhibited: - self.status_icon.set_from_icon_name('redshift-status-on') - else: - self.status_icon.set_from_icon_name('redshift-status-off') + self.status_icon.set_from_icon_name(icon_name) # State update functions def inhibit_change_cb(self, controller, inhibit): - '''Callback when controller changes inhibition status''' + """Callback when controller changes inhibition status.""" self.change_inhibited(inhibit) def period_change_cb(self, controller, period): - '''Callback when controller changes period''' + """Callback when controller changes period.""" self.change_period(period) def temperature_change_cb(self, controller, temperature): - '''Callback when controller changes temperature''' + """Callback when controller changes temperature.""" self.change_temperature(temperature) def location_change_cb(self, controller, lat, lon): - '''Callback when controlled changes location''' + """Callback when controlled changes location.""" self.change_location((lat, lon)) def error_occured_cb(self, controller, error): - '''Callback when an error occurs in the controller''' - error_dialog = Gtk.MessageDialog(None, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, - Gtk.ButtonsType.CLOSE, '') - error_dialog.set_markup('<b>Failed to run Redshift</b>\n<i>' + error + '</i>') + """Callback when an error occurs in the controller.""" + error_dialog = Gtk.MessageDialog( + None, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, + Gtk.ButtonsType.CLOSE, '') + error_dialog.set_markup( + '<b>Failed to run Redshift</b>\n<i>' + error + '</i>') error_dialog.run() # Quit when the model dialog is closed sys.exit(-1) + def controller_stopped_cb(self, controller): + """Callback when controlled is stopped successfully.""" + Gtk.main_quit() + # Update interface def change_inhibited(self, inhibited): - '''Change interface to new inhibition status''' + """Change interface to new inhibition status.""" self.update_status_icon() self.toggle_item.set_active(not inhibited) - self.status_label.set_markup(_('<b>Status:</b> {}').format(_('Disabled') if inhibited else _('Enabled'))) + self.status_label.set_markup( + _('<b>Status:</b> {}').format( + _('Disabled') if inhibited else _('Enabled'))) def change_temperature(self, temperature): - '''Change interface to new temperature''' - self.temperature_label.set_markup('<b>{}:</b> {}K'.format(_('Color temperature'), temperature)) + """Change interface to new temperature.""" + self.temperature_label.set_markup( + '<b>{}:</b> {}K'.format(_('Color temperature'), temperature)) + self.update_tooltip_text() def change_period(self, period): - '''Change interface to new period''' - self.period_label.set_markup('<b>{}:</b> {}'.format(_('Period'), period)) + """Change interface to new period.""" + self.period_label.set_markup( + '<b>{}:</b> {}'.format(_('Period'), period)) + self.update_tooltip_text() def change_location(self, location): - '''Change interface to new location''' - self.location_label.set_markup('<b>{}:</b> {}, {}'.format(_('Location'), *location)) + """Change interface to new location.""" + self.location_label.set_markup( + '<b>{}:</b> {}, {}'.format(_('Location'), *location)) + def update_tooltip_text(self): + """Update text of tooltip status icon.""" + if not appindicator: + self.status_icon.set_tooltip_text('{}: {}K, {}: {}'.format( + _('Color temperature'), self._controller.temperature, + _('Period'), self._controller.period)) def autostart_cb(self, widget, data=None): - '''Callback when a request to toggle autostart is made''' + """Callback when a request to toggle autostart is made.""" utils.set_autostart(widget.get_active()) def destroy_cb(self, widget, data=None): - '''Callback when a request to quit the application is made''' + """Callback when a request to quit the application is made.""" if not appindicator: self.status_icon.set_visible(False) - Gtk.main_quit() + self.info_dialog.destroy() + self._controller.terminate_child() return False -def sigterm_handler(data=None): - sys.exit(0) - - def run(): utils.setproctitle('redshift-gtk') - # Install TERM signal handler - GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGTERM, - sigterm_handler, None) - GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGINT, - sigterm_handler, None) - # Internationalisation gettext.bindtextdomain('redshift', defs.LOCALEDIR) gettext.textdomain('redshift') + for help_arg in ('-h', '--help'): + if help_arg in sys.argv: + print(_('Please run `redshift -h` for help output.')) + sys.exit(-1) + # Create redshift child process controller c = RedshiftController(sys.argv[1:]) + + def terminate_child(data=None): + c.terminate_child() + return False + + # Install signal handlers + GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGTERM, + terminate_child, None) + GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGINT, + terminate_child, None) + try: # Create status icon - s = RedshiftStatusIcon(c) + RedshiftStatusIcon(c) # Run main loop Gtk.main() - finally: - # Always make sure that the child process is closed - c.termwait() + except: + c.kill_child() + raise diff --git a/src/redshift-gtk/utils.py b/src/redshift-gtk/utils.py index 73c95a9..9365356 100644 --- a/src/redshift-gtk/utils.py +++ b/src/redshift-gtk/utils.py @@ -20,8 +20,14 @@ import ctypes import os import sys -from xdg import BaseDirectory as base -from xdg import DesktopEntry as desktop + +try: + from xdg import BaseDirectory + from xdg import DesktopEntry + has_xdg = True +except ImportError: + has_xdg = False + REDSHIFT_DESKTOP = 'redshift-gtk.desktop' @@ -32,12 +38,13 @@ AUTOSTART_KEYS = (('Hidden', ('true', 'false')), def open_autostart_file(): - autostart_dir = base.save_config_path("autostart") + autostart_dir = BaseDirectory.save_config_path("autostart") autostart_file = os.path.join(autostart_dir, REDSHIFT_DESKTOP) if not os.path.exists(autostart_file): - desktop_files = list(base.load_data_paths("applications", - REDSHIFT_DESKTOP)) + desktop_files = list( + BaseDirectory.load_data_paths( + "applications", REDSHIFT_DESKTOP)) if not desktop_files: raise IOError("Installed redshift desktop file not found!") @@ -45,21 +52,33 @@ def open_autostart_file(): desktop_file_path = desktop_files[0] # Read installed file - dfile = desktop.DesktopEntry(desktop_file_path) + dfile = DesktopEntry.DesktopEntry(desktop_file_path) for key, values in AUTOSTART_KEYS: dfile.set(key, values[False]) dfile.write(filename=autostart_file) else: - dfile = desktop.DesktopEntry(autostart_file) + dfile = DesktopEntry.DesktopEntry(autostart_file) return dfile, autostart_file + +def supports_autostart(): + return has_xdg + + def get_autostart(): + if not has_xdg: + return False + dfile, path = open_autostart_file() check_key, check_values = AUTOSTART_KEYS[0] return dfile.get(check_key) == check_values[True] + def set_autostart(active): + if not has_xdg: + return + dfile, path = open_autostart_file() for key, values in AUTOSTART_KEYS: dfile.set(key, values[active]) @@ -67,6 +86,7 @@ def set_autostart(active): def setproctitle(title): + """Set process title.""" title_bytes = title.encode(sys.getdefaultencoding(), 'replace') buf = ctypes.create_string_buffer(title_bytes) if 'linux' in sys.platform: diff --git a/src/redshift.c b/src/redshift.c index 0fcb0ba..d2e79f6 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2009-2015 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2009-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifdef HAVE_CONFIG_H @@ -28,6 +28,22 @@ #include <math.h> #include <locale.h> #include <errno.h> +#include <time.h> + +/* poll.h is not available on Windows but there is no Windows location provider + using polling. On Windows, we just define some stubs to make things compile. + */ +#ifndef _WIN32 +# include <poll.h> +#else +#define POLLIN 0 +struct pollfd { + int fd; + short events; + short revents; +}; +int poll(struct pollfd *fds, int nfds, int timeout) { abort(); return -1; } +#endif #if defined(HAVE_SIGNAL_H) && !defined(__WIN32__) # include <signal.h> @@ -48,11 +64,8 @@ #include "solar.h" #include "systemtime.h" #include "hooks.h" - - -#define MIN(x,y) ((x) < (y) ? (x) : (y)) -#define MAX(x,y) ((x) > (y) ? (x) : (y)) -#define CLAMP(lo,x,up) (MAX((lo), MIN((x), (up)))) +#include "signals.h" +#include "options.h" /* pause() is not defined on windows platform but is not needed either. Use a noop macro instead. */ @@ -62,6 +75,10 @@ #include "gamma-dummy.h" +#ifdef ENABLE_COOPGAMMA +# include "gamma-coopgamma.h" +#endif + #ifdef ENABLE_DRM # include "gamma-drm.h" #endif @@ -85,10 +102,6 @@ #include "location-manual.h" -#ifdef ENABLE_GEOCLUE -# include "location-geoclue.h" -#endif - #ifdef ENABLE_GEOCLUE2 # include "location-geoclue2.h" #endif @@ -97,171 +110,10 @@ # include "location-corelocation.h" #endif - -/* Union of state data for gamma adjustment methods */ -typedef union { -#ifdef ENABLE_DRM - drm_state_t drm; -#endif -#ifdef ENABLE_RANDR - randr_state_t randr; -#endif -#ifdef ENABLE_VIDMODE - vidmode_state_t vidmode; -#endif -#ifdef ENABLE_QUARTZ - quartz_state_t quartz; -#endif -#ifdef ENABLE_WINGDI - w32gdi_state_t w32gdi; -#endif -} gamma_state_t; +#undef CLAMP +#define CLAMP(lo,mid,up) (((lo) > (mid)) ? (lo) : (((mid) < (up)) ? (mid) : (up))) -/* Gamma adjustment method structs */ -static const gamma_method_t gamma_methods[] = { -#ifdef ENABLE_DRM - { - "drm", 0, - (gamma_method_init_func *)drm_init, - (gamma_method_start_func *)drm_start, - (gamma_method_free_func *)drm_free, - (gamma_method_print_help_func *)drm_print_help, - (gamma_method_set_option_func *)drm_set_option, - (gamma_method_restore_func *)drm_restore, - (gamma_method_set_temperature_func *)drm_set_temperature - }, -#endif -#ifdef ENABLE_RANDR - { - "randr", 1, - (gamma_method_init_func *)randr_init, - (gamma_method_start_func *)randr_start, - (gamma_method_free_func *)randr_free, - (gamma_method_print_help_func *)randr_print_help, - (gamma_method_set_option_func *)randr_set_option, - (gamma_method_restore_func *)randr_restore, - (gamma_method_set_temperature_func *)randr_set_temperature - }, -#endif -#ifdef ENABLE_VIDMODE - { - "vidmode", 1, - (gamma_method_init_func *)vidmode_init, - (gamma_method_start_func *)vidmode_start, - (gamma_method_free_func *)vidmode_free, - (gamma_method_print_help_func *)vidmode_print_help, - (gamma_method_set_option_func *)vidmode_set_option, - (gamma_method_restore_func *)vidmode_restore, - (gamma_method_set_temperature_func *)vidmode_set_temperature - }, -#endif -#ifdef ENABLE_QUARTZ - { - "quartz", 1, - (gamma_method_init_func *)quartz_init, - (gamma_method_start_func *)quartz_start, - (gamma_method_free_func *)quartz_free, - (gamma_method_print_help_func *)quartz_print_help, - (gamma_method_set_option_func *)quartz_set_option, - (gamma_method_restore_func *)quartz_restore, - (gamma_method_set_temperature_func *)quartz_set_temperature - }, -#endif -#ifdef ENABLE_WINGDI - { - "wingdi", 1, - (gamma_method_init_func *)w32gdi_init, - (gamma_method_start_func *)w32gdi_start, - (gamma_method_free_func *)w32gdi_free, - (gamma_method_print_help_func *)w32gdi_print_help, - (gamma_method_set_option_func *)w32gdi_set_option, - (gamma_method_restore_func *)w32gdi_restore, - (gamma_method_set_temperature_func *)w32gdi_set_temperature - }, -#endif - { - "dummy", 0, - (gamma_method_init_func *)gamma_dummy_init, - (gamma_method_start_func *)gamma_dummy_start, - (gamma_method_free_func *)gamma_dummy_free, - (gamma_method_print_help_func *)gamma_dummy_print_help, - (gamma_method_set_option_func *)gamma_dummy_set_option, - (gamma_method_restore_func *)gamma_dummy_restore, - (gamma_method_set_temperature_func *)gamma_dummy_set_temperature - }, - { NULL } -}; - - -/* Union of state data for location providers */ -typedef union { - location_manual_state_t manual; -#ifdef ENABLE_GEOCLUE - location_geoclue_state_t geoclue; -#endif -} location_state_t; - - -/* Location provider method structs */ -static const location_provider_t location_providers[] = { -#ifdef ENABLE_GEOCLUE - { - "geoclue", - (location_provider_init_func *)location_geoclue_init, - (location_provider_start_func *)location_geoclue_start, - (location_provider_free_func *)location_geoclue_free, - (location_provider_print_help_func *) - location_geoclue_print_help, - (location_provider_set_option_func *) - location_geoclue_set_option, - (location_provider_get_location_func *) - location_geoclue_get_location - }, -#endif -#ifdef ENABLE_GEOCLUE2 - { - "geoclue2", - (location_provider_init_func *)location_geoclue2_init, - (location_provider_start_func *)location_geoclue2_start, - (location_provider_free_func *)location_geoclue2_free, - (location_provider_print_help_func *) - location_geoclue2_print_help, - (location_provider_set_option_func *) - location_geoclue2_set_option, - (location_provider_get_location_func *) - location_geoclue2_get_location - }, -#endif -#ifdef ENABLE_CORELOCATION - { - "corelocation", - (location_provider_init_func *)location_corelocation_init, - (location_provider_start_func *)location_corelocation_start, - (location_provider_free_func *)location_corelocation_free, - (location_provider_print_help_func *) - location_corelocation_print_help, - (location_provider_set_option_func *) - location_corelocation_set_option, - (location_provider_get_location_func *) - location_corelocation_get_location - }, -#endif - { - "manual", - (location_provider_init_func *)location_manual_init, - (location_provider_start_func *)location_manual_start, - (location_provider_free_func *)location_manual_free, - (location_provider_print_help_func *) - location_manual_print_help, - (location_provider_set_option_func *) - location_manual_set_option, - (location_provider_get_location_func *) - location_manual_get_location - }, - { NULL } -}; - /* Bounds for parameters. */ #define MIN_LAT -90.0 #define MAX_LAT 90.0 @@ -274,44 +126,12 @@ static const location_provider_t location_providers[] = { #define MIN_GAMMA 0.1 #define MAX_GAMMA 10.0 -/* Default values for parameters. */ -#define DEFAULT_DAY_TEMP 5500 -#define DEFAULT_NIGHT_TEMP 3500 -#define DEFAULT_BRIGHTNESS 1.0 -#define DEFAULT_GAMMA 1.0 - -/* The color temperature when no adjustment is applied. */ -#define NEUTRAL_TEMP 6500 - -/* Angular elevation of the sun at which the color temperature - transition period starts and ends (in degress). - Transition during twilight, and while the sun is lower than - 3.0 degrees above the horizon. */ -#define TRANSITION_LOW SOLAR_CIVIL_TWILIGHT_ELEV -#define TRANSITION_HIGH 3.0 - /* Duration of sleep between screen updates (milliseconds). */ #define SLEEP_DURATION 5000 #define SLEEP_DURATION_SHORT 100 -/* Program modes. */ -typedef enum { - PROGRAM_MODE_CONTINUAL, - PROGRAM_MODE_ONE_SHOT, - PROGRAM_MODE_PRINT, - PROGRAM_MODE_RESET, - PROGRAM_MODE_MANUAL -} program_mode_t; - -/* Transition scheme. - The solar elevations at which the transition begins/ends, - and the association color settings. */ -typedef struct { - double high; - double low; - color_setting_t day; - color_setting_t night; -} transition_scheme_t; +/* Length of fade in numbers of short sleep durations. */ +#define FADE_LENGTH 40 /* Names of periods of day */ static const char *period_names[] = { @@ -322,37 +142,26 @@ static const char *period_names[] = { N_("Transition") }; -#if defined(HAVE_SIGNAL_H) && !defined(__WIN32__) - -static volatile sig_atomic_t exiting = 0; -static volatile sig_atomic_t disable = 0; -/* Signal handler for exit signals */ -static void -sigexit(int signo) -{ - exiting = 1; -} - -/* Signal handler for disable signal */ -static void -sigdisable(int signo) +/* Determine which period we are currently in based on time offset. */ +static period_t +get_period_from_time(const transition_scheme_t *transition, int time_offset) { - disable = 1; + if (time_offset < transition->dawn.start || + time_offset >= transition->dusk.end) { + return PERIOD_NIGHT; + } else if (time_offset >= transition->dawn.end && + time_offset < transition->dusk.start) { + return PERIOD_DAYTIME; + } else { + return PERIOD_TRANSITION; + } } -#else /* ! HAVE_SIGNAL_H || __WIN32__ */ - -static int exiting = 0; -static int disable = 0; - -#endif /* ! HAVE_SIGNAL_H || __WIN32__ */ - - -/* Determine which period we are currently in. */ +/* Determine which period we are currently in based on solar elevation. */ static period_t -get_period(const transition_scheme_t *transition, - double elevation) +get_period_from_elevation( + const transition_scheme_t *transition, double elevation) { if (elevation < transition->low) { return PERIOD_NIGHT; @@ -363,10 +172,31 @@ get_period(const transition_scheme_t *transition, } } -/* Determine how far through the transition we are. */ +/* Determine how far through the transition we are based on time offset. */ +static double +get_transition_progress_from_time( + const transition_scheme_t *transition, int time_offset) +{ + if (time_offset < transition->dawn.start || + time_offset >= transition->dusk.end) { + return 0.0; + } else if (time_offset < transition->dawn.end) { + return (transition->dawn.start - time_offset) / + (double)(transition->dawn.start - + transition->dawn.end); + } else if (time_offset > transition->dusk.start) { + return (transition->dusk.end - time_offset) / + (double)(transition->dusk.end - + transition->dusk.start); + } else { + return 1.0; + } +} + +/* Determine how far through the transition we are based on elevation. */ static double -get_transition_progress(const transition_scheme_t *transition, - double elevation) +get_transition_progress_from_elevation( + const transition_scheme_t *transition, double elevation) { if (elevation < transition->low) { return 0.0; @@ -378,6 +208,20 @@ get_transition_progress(const transition_scheme_t *transition, } } +/* Return number of seconds since midnight from timestamp. */ +static int +get_seconds_since_midnight(double timestamp) +{ + time_t t = (time_t)timestamp; + struct tm tm; +#ifdef _WIN32 + localtime_s(&tm, &t); +#else + localtime_r(&t, &tm); +#endif + return tm.tm_sec + tm.tm_min * 60 + tm.tm_hour * 3600; +} + /* Print verbose description of the given period. */ static void print_period(period_t period, double transition) @@ -417,134 +261,70 @@ print_location(const location_t *location) fabs(location->lon), location->lon >= 0.f ? east : west); } -/* Interpolate color setting structs based on solar elevation */ +/* Interpolate color setting structs given alpha. */ static void -interpolate_color_settings(const transition_scheme_t *transition, - double elevation, - color_setting_t *result) +interpolate_color_settings( + const color_setting_t *first, + const color_setting_t *second, + double alpha, + color_setting_t *result) { - const color_setting_t *day = &transition->day; - const color_setting_t *night = &transition->night; - - double alpha = (transition->low - elevation) / - (transition->low - transition->high); alpha = CLAMP(0.0, alpha, 1.0); - result->temperature = (1.0-alpha)*night->temperature + - alpha*day->temperature; - result->brightness = (1.0-alpha)*night->brightness + - alpha*day->brightness; + result->temperature = (1.0-alpha)*first->temperature + + alpha*second->temperature; + result->brightness = (1.0-alpha)*first->brightness + + alpha*second->brightness; for (int i = 0; i < 3; i++) { - result->gamma[i] = (1.0-alpha)*night->gamma[i] + - alpha*day->gamma[i]; + result->gamma[i] = (1.0-alpha)*first->gamma[i] + + alpha*second->gamma[i]; } } - +/* Interpolate color setting structs transition scheme. */ static void -print_help(const char *program_name) +interpolate_transition_scheme( + const transition_scheme_t *transition, + double alpha, + color_setting_t *result) { - /* TRANSLATORS: help output 1 - LAT is latitude, LON is longitude, - DAY is temperature at daytime, - NIGHT is temperature at night - no-wrap */ - printf(_("Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n"), - program_name); - fputs("\n", stdout); - - /* TRANSLATORS: help output 2 - no-wrap */ - fputs(_("Set color temperature of display" - " according to time of day.\n"), stdout); - fputs("\n", stdout); - - /* TRANSLATORS: help output 3 - no-wrap */ - fputs(_(" -h\t\tDisplay this help message\n" - " -v\t\tVerbose output\n" - " -V\t\tShow program version\n"), stdout); - fputs("\n", stdout); - - /* TRANSLATORS: help output 4 - `list' must not be translated - no-wrap */ - fputs(_(" -b DAY:NIGHT\tScreen brightness to apply (between 0.1 and 1.0)\n" - " -c FILE\tLoad settings from specified configuration file\n" - " -g R:G:B\tAdditional gamma correction to apply\n" - " -l LAT:LON\tYour current location\n" - " -l PROVIDER\tSelect provider for automatic" - " location updates\n" - " \t\t(Type `list' to see available providers)\n" - " -m METHOD\tMethod to use to set color temperature\n" - " \t\t(Type `list' to see available methods)\n" - " -o\t\tOne shot mode (do not continuously adjust" - " color temperature)\n" - " -O TEMP\tOne shot manual mode (set color temperature)\n" - " -p\t\tPrint mode (only print parameters and exit)\n" - " -x\t\tReset mode (remove adjustment from screen)\n" - " -r\t\tDisable temperature transitions\n" - " -t DAY:NIGHT\tColor temperature to set at daytime/night\n"), - stdout); - fputs("\n", stdout); - - /* TRANSLATORS: help output 5 */ - printf(_("The neutral temperature is %uK. Using this value will not\n" - "change the color temperature of the display. Setting the\n" - "color temperature to a value higher than this results in\n" - "more blue light, and setting a lower value will result in\n" - "more red light.\n"), - NEUTRAL_TEMP); - - fputs("\n", stdout); - - /* TRANSLATORS: help output 6 */ - printf(_("Default values:\n\n" - " Daytime temperature: %uK\n" - " Night temperature: %uK\n"), - DEFAULT_DAY_TEMP, DEFAULT_NIGHT_TEMP); - - fputs("\n", stdout); - - /* TRANSLATORS: help output 7 */ - printf(_("Please report bugs to <%s>\n"), PACKAGE_BUGREPORT); + const color_setting_t *day = &transition->day; + const color_setting_t *night = &transition->night; + + alpha = CLAMP(0.0, alpha, 1.0); + interpolate_color_settings(night, day, alpha, result); } -static void -print_method_list() +/* Return 1 if color settings have major differences, otherwise 0. + Used to determine if a fade should be applied in continual mode. */ +static int +color_setting_diff_is_major( + const color_setting_t *first, + const color_setting_t *second) { - fputs(_("Available adjustment methods:\n"), stdout); - for (int i = 0; gamma_methods[i].name != NULL; i++) { - printf(" %s\n", gamma_methods[i].name); - } - - fputs("\n", stdout); - fputs(_("Specify colon-separated options with" - " `-m METHOD:OPTIONS'.\n"), stdout); - /* TRANSLATORS: `help' must not be translated. */ - fputs(_("Try `-m METHOD:help' for help.\n"), stdout); + return (abs(first->temperature - second->temperature) > 25 || + fabsf(first->brightness - second->brightness) > 0.1 || + fabsf(first->gamma[0] - second->gamma[0]) > 0.1 || + fabsf(first->gamma[1] - second->gamma[1]) > 0.1 || + fabsf(first->gamma[2] - second->gamma[2]) > 0.1); } +/* Reset color setting to default values. */ static void -print_provider_list() +color_setting_reset(color_setting_t *color) { - fputs(_("Available location providers:\n"), stdout); - for (int i = 0; location_providers[i].name != NULL; i++) { - printf(" %s\n", location_providers[i].name); - } - - fputs("\n", stdout); - fputs(_("Specify colon-separated options with" - "`-l PROVIDER:OPTIONS'.\n"), stdout); - /* TRANSLATORS: `help' must not be translated. */ - fputs(_("Try `-l PROVIDER:help' for help.\n"), stdout); + color->temperature = NEUTRAL_TEMP; + color->gamma[0] = 1.0; + color->gamma[1] = 1.0; + color->gamma[2] = 1.0; + color->brightness = 1.0; } static int provider_try_start(const location_provider_t *provider, - location_state_t *state, - config_ini_state_t *config, char *args) + location_state_t **state, config_ini_state_t *config, + char *args) { int r; @@ -561,10 +341,10 @@ provider_try_start(const location_provider_t *provider, if (section != NULL) { config_ini_setting_t *setting = section->settings; while (setting != NULL) { - r = provider->set_option(state, setting->name, + r = provider->set_option(*state, setting->name, setting->value); if (r < 0) { - provider->free(state); + provider->free(*state); fprintf(stderr, _("Failed to set %s" " option.\n"), provider->name); @@ -606,9 +386,9 @@ provider_try_start(const location_provider_t *provider, *(value++) = '\0'; } - r = provider->set_option(state, key, value); + r = provider->set_option(*state, key, value); if (r < 0) { - provider->free(state); + provider->free(*state); fprintf(stderr, _("Failed to set %s option.\n"), provider->name); /* TRANSLATORS: `help' must not be translated. */ @@ -622,9 +402,9 @@ provider_try_start(const location_provider_t *provider, } /* Start provider. */ - r = provider->start(state); + r = provider->start(*state); if (r < 0) { - provider->free(state); + provider->free(*state); fprintf(stderr, _("Failed to start provider %s.\n"), provider->name); return -1; @@ -634,9 +414,8 @@ provider_try_start(const location_provider_t *provider, } static int -method_try_start(const gamma_method_t *method, - gamma_state_t *state, - config_ini_state_t *config, char *args) +method_try_start(const gamma_method_t *method, gamma_state_t **state, + program_mode_t mode, config_ini_state_t *config, char *args) { int r; @@ -653,10 +432,10 @@ method_try_start(const gamma_method_t *method, if (section != NULL) { config_ini_setting_t *setting = section->settings; while (setting != NULL) { - r = method->set_option(state, setting->name, - setting->value); + r = method->set_option( + *state, setting->name, setting->value); if (r < 0) { - method->free(state); + method->free(*state); fprintf(stderr, _("Failed to set %s" " option.\n"), method->name); @@ -686,9 +465,9 @@ method_try_start(const gamma_method_t *method, *(value++) = '\0'; } - r = method->set_option(state, key, value); + r = method->set_option(*state, key, value); if (r < 0) { - method->free(state); + method->free(*state); fprintf(stderr, _("Failed to set %s option.\n"), method->name); /* TRANSLATORS: `help' must not be translated. */ @@ -701,9 +480,9 @@ method_try_start(const gamma_method_t *method, } /* Start method. */ - r = method->start(state); + r = method->start(*state, mode); if (r < 0) { - method->free(state); + method->free(*state); fprintf(stderr, _("Failed to start adjustment method %s.\n"), method->name); return -1; @@ -712,47 +491,6 @@ method_try_start(const gamma_method_t *method, return 0; } -/* A gamma string contains either one floating point value, - or three values separated by colon. */ -static int -parse_gamma_string(const char *str, float gamma[]) -{ - char *s = strchr(str, ':'); - if (s == NULL) { - /* Use value for all channels */ - float g = atof(str); - gamma[0] = gamma[1] = gamma[2] = g; - } else { - /* Parse separate value for each channel */ - *(s++) = '\0'; - char *g_s = s; - s = strchr(s, ':'); - if (s == NULL) return -1; - - *(s++) = '\0'; - gamma[0] = atof(str); /* Red */ - gamma[1] = atof(g_s); /* Blue */ - gamma[2] = atof(s); /* Green */ - } - - return 0; -} - -/* A brightness string contains either one floating point value, - or two values separated by a colon. */ -static void -parse_brightness_string(const char *str, float *bright_day, float *bright_night) -{ - char *s = strchr(str, ':'); - if (s == NULL) { - /* Same value for day and night. */ - *bright_day = *bright_night = atof(str); - } else { - *(s++) = '\0'; - *bright_day = atof(str); - *bright_night = atof(s); - } -} /* Check whether gamma is within allowed levels. */ static int @@ -764,37 +502,102 @@ gamma_is_valid(const float gamma[3]) gamma[1] > MAX_GAMMA || gamma[2] < MIN_GAMMA || gamma[2] > MAX_GAMMA); - } -static const gamma_method_t * -find_gamma_method(const char *name) +/* Check whether location is valid. + Prints error message on stderr and returns 0 if invalid, otherwise + returns 1. */ +static int +location_is_valid(const location_t *location) { - const gamma_method_t *method = NULL; - for (int i = 0; gamma_methods[i].name != NULL; i++) { - const gamma_method_t *m = &gamma_methods[i]; - if (strcasecmp(name, m->name) == 0) { - method = m; - break; - } + /* Latitude */ + if (location->lat < MIN_LAT || location->lat > MAX_LAT) { + /* TRANSLATORS: Append degree symbols if possible. */ + fprintf(stderr, + _("Latitude must be between %.1f and %.1f.\n"), + MIN_LAT, MAX_LAT); + return 0; + } + + /* Longitude */ + if (location->lon < MIN_LON || location->lon > MAX_LON) { + /* TRANSLATORS: Append degree symbols if possible. */ + fprintf(stderr, + _("Longitude must be between" + " %.1f and %.1f.\n"), MIN_LON, MAX_LON); + return 0; } - return method; + return 1; } -static const location_provider_t * -find_location_provider(const char *name) +/* Wait for location to become available from provider. + Waits until timeout (milliseconds) has elapsed or forever if timeout + is -1. Writes location to loc. Returns -1 on error, + 0 if timeout was reached, 1 if location became available. */ +static int +provider_get_location( + const location_provider_t *provider, location_state_t *state, + int timeout, location_t *loc) { - const location_provider_t *provider = NULL; - for (int i = 0; location_providers[i].name != NULL; i++) { - const location_provider_t *p = &location_providers[i]; - if (strcasecmp(name, p->name) == 0) { - provider = p; - break; + int available = 0; + struct pollfd pollfds[1]; + while (!available) { + int loc_fd = provider->get_fd(state); + if (loc_fd >= 0) { + /* Provider is dynamic. */ + /* TODO: This should use a monotonic time source. */ + double now; + int r = systemtime_get_time(&now); + if (r < 0) { + fputs(_("Unable to read system time.\n"), + stderr); + return -1; + } + + /* Poll on file descriptor until ready. */ + pollfds[0].fd = loc_fd; + pollfds[0].events = POLLIN; + r = poll(pollfds, 1, timeout); + if (r < 0) { + perror("poll"); + return -1; + } else if (r == 0) { + return 0; + } + + double later; + r = systemtime_get_time(&later); + if (r < 0) { + fputs(_("Unable to read system time.\n"), + stderr); + return -1; + } + + /* Adjust timeout by elapsed time */ + if (timeout >= 0) { + timeout -= (later - now) * 1000; + timeout = timeout < 0 ? 0 : timeout; + } } + + + int r = provider->handle(state, loc, &available); + if (r < 0) return -1; } - return provider; + return 1; +} + +/* Easing function for fade. + See https://github.com/mietek/ease-tween */ +static double +ease_fade(double t) +{ + if (t <= 0) return 0; + if (t >= 1) return 1; + return 1.0042954579734844 * exp( + -6.4041738958415664 * exp(-7.2908241330981340 * t)); } @@ -803,123 +606,97 @@ find_location_provider(const char *name) current time and continuously updates the screen to the appropriate color temperature. */ static int -run_continual_mode(const location_t *loc, +run_continual_mode(const location_provider_t *provider, + location_state_t *location_state, const transition_scheme_t *scheme, const gamma_method_t *method, - gamma_state_t *state, - int transition, int verbose) + gamma_state_t *method_state, + int use_fade, int preserve_gamma, int verbose) { int r; - /* Make an initial transition from 6500K */ - int short_trans_delta = -1; - int short_trans_len = 10; + /* Short fade parameters */ + int fade_length = 0; + int fade_time = 0; + color_setting_t fade_start_interp; - /* Amount of adjustment to apply. At zero the color - temperature will be exactly as calculated, and at one it - will be exactly 6500K. */ - double adjustment_alpha = 1.0; - -#if defined(HAVE_SIGNAL_H) && !defined(__WIN32__) - struct sigaction sigact; - sigset_t sigset; - sigemptyset(&sigset); - - /* Install signal handler for INT and TERM signals */ - sigact.sa_handler = sigexit; - sigact.sa_mask = sigset; - sigact.sa_flags = 0; - - r = sigaction(SIGINT, &sigact, NULL); + r = signals_install_handlers(); if (r < 0) { - perror("sigaction"); - return -1; + return r; } - r = sigaction(SIGTERM, &sigact, NULL); - if (r < 0) { - perror("sigaction"); - return -1; - } + /* Save previous parameters so we can avoid printing status updates if + the values did not change. */ + period_t prev_period = PERIOD_NONE; - /* Install signal handler for USR1 signal */ - sigact.sa_handler = sigdisable; - sigact.sa_mask = sigset; - sigact.sa_flags = 0; + /* Previous target color setting and current actual color setting. + Actual color setting takes into account the current color fade. */ + color_setting_t prev_target_interp; + color_setting_reset(&prev_target_interp); - r = sigaction(SIGUSR1, &sigact, NULL); - if (r < 0) { - perror("sigaction"); - return -1; - } + color_setting_t interp; + color_setting_reset(&interp); - /* Ignore CHLD signal. This causes child processes - (hooks) to be reaped automatically. */ - sigact.sa_handler = SIG_IGN; - sigact.sa_mask = sigset; - sigact.sa_flags = 0; + location_t loc = { NAN, NAN }; + int need_location = !scheme->use_time; + if (need_location) { + fputs(_("Waiting for initial location" + " to become available...\n"), stderr); - r = sigaction(SIGCHLD, &sigact, NULL); - if (r < 0) { - perror("sigaction"); - return -1; + /* Get initial location from provider */ + r = provider_get_location(provider, location_state, -1, &loc); + if (r < 0) { + fputs(_("Unable to get location" + " from provider.\n"), stderr); + return -1; + } + + if (!location_is_valid(&loc)) { + fputs(_("Invalid location returned from provider.\n"), + stderr); + return -1; + } + + print_location(&loc); } -#endif /* HAVE_SIGNAL_H && ! __WIN32__ */ if (verbose) { - printf(_("Status: %s\n"), _("Enabled")); + printf(_("Color temperature: %uK\n"), interp.temperature); + printf(_("Brightness: %.2f\n"), interp.brightness); } - /* Save previous colors so we can avoid - printing status updates if the values - did not change. */ - period_t prev_period = PERIOD_NONE; - color_setting_t prev_interp = - { -1, { NAN, NAN, NAN }, NAN }; - /* Continuously adjust color temperature */ int done = 0; + int prev_disabled = 1; int disabled = 0; + int location_available = 1; while (1) { /* Check to see if disable signal was caught */ - if (disable) { - short_trans_len = 2; - if (!disabled) { - /* Transition to disabled state */ - short_trans_delta = 1; - } else { - /* Transition back to enabled */ - short_trans_delta = -1; - } + if (disable && !done) { disabled = !disabled; disable = 0; - - if (verbose) { - printf(_("Status: %s\n"), disabled ? - _("Disabled") : _("Enabled")); - } } /* Check to see if exit signal was caught */ if (exiting) { if (done) { - /* On second signal stop the ongoing - transition */ - short_trans_delta = 0; - adjustment_alpha = 0.0; + /* On second signal stop the ongoing fade. */ + break; } else { - if (!disabled) { - /* Make a short transition - back to 6500K */ - short_trans_delta = 1; - short_trans_len = 2; - } - done = 1; + disabled = 1; } exiting = 0; } + /* Print status change */ + if (verbose && disabled != prev_disabled) { + printf(_("Status: %s\n"), disabled ? + _("Disabled") : _("Enabled")); + } + + prev_disabled = disabled; + /* Read timestamp */ double now; r = systemtime_get_time(&now); @@ -928,36 +705,47 @@ run_continual_mode(const location_t *loc, return -1; } - /* Skip over transition if transitions are disabled */ - int set_adjustments = 0; - if (!transition) { - if (short_trans_delta) { - adjustment_alpha = short_trans_delta < 0 ? - 0.0 : 1.0; - short_trans_delta = 0; - set_adjustments = 1; - } + period_t period; + double transition_prog; + if (scheme->use_time) { + int time_offset = get_seconds_since_midnight(now); + + period = get_period_from_time(scheme, time_offset); + transition_prog = get_transition_progress_from_time( + scheme, time_offset); + } else { + /* Current angular elevation of the sun */ + double elevation = solar_elevation( + now, loc.lat, loc.lon); + + period = get_period_from_elevation(scheme, elevation); + transition_prog = + get_transition_progress_from_elevation( + scheme, elevation); } - /* Current angular elevation of the sun */ - double elevation = solar_elevation(now, loc->lat, - loc->lon); + /* Use transition progress to get target color + temperature. */ + color_setting_t target_interp; + interpolate_transition_scheme( + scheme, transition_prog, &target_interp); - /* Use elevation of sun to set color temperature */ - color_setting_t interp; - interpolate_color_settings(scheme, elevation, &interp); + if (disabled) { + period = PERIOD_NONE; + color_setting_reset(&target_interp); + } + + if (done) { + period = PERIOD_NONE; + } /* Print period if it changed during this update, - or if we are in transition. In transition we + or if we are in the transition period. In transition we print the progress, so we always print it in that case. */ - period_t period = get_period(scheme, elevation); if (verbose && (period != prev_period || period == PERIOD_TRANSITION)) { - double transition = - get_transition_progress(scheme, - elevation); - print_period(period, transition); + print_period(period, transition_prog); } /* Activate hooks if period changed */ @@ -965,76 +753,146 @@ run_continual_mode(const location_t *loc, hooks_signal_period_change(prev_period, period); } - /* Ongoing short transition */ - if (short_trans_delta) { - /* Calculate alpha */ - adjustment_alpha += short_trans_delta * 0.1 / - (float)short_trans_len; - - /* Stop transition when done */ - if (adjustment_alpha <= 0.0 || - adjustment_alpha >= 1.0) { - short_trans_delta = 0; + /* Start fade if the parameter differences are too big to apply + instantly. */ + if (use_fade) { + if ((fade_length == 0 && + color_setting_diff_is_major( + &interp, + &target_interp)) || + (fade_length != 0 && + color_setting_diff_is_major( + &target_interp, + &prev_target_interp))) { + fade_length = FADE_LENGTH; + fade_time = 0; + fade_start_interp = interp; } - - /* Clamp alpha value */ - adjustment_alpha = - MAX(0.0, MIN(adjustment_alpha, 1.0)); } - /* Interpolate between 6500K and calculated - temperature */ - interp.temperature = adjustment_alpha*6500 + - (1.0-adjustment_alpha)*interp.temperature; + /* Handle ongoing fade */ + if (fade_length != 0) { + fade_time += 1; + double frac = fade_time / (double)fade_length; + double alpha = CLAMP(0.0, ease_fade(frac), 1.0); - interp.brightness = adjustment_alpha*1.0 + - (1.0-adjustment_alpha)*interp.brightness; + interpolate_color_settings( + &fade_start_interp, &target_interp, alpha, + &interp); - /* Quit loop when done */ - if (done && !short_trans_delta) break; + if (fade_time > fade_length) { + fade_time = 0; + fade_length = 0; + } + } else { + interp = target_interp; + } + + /* Break loop when done and final fade is over */ + if (done && fade_length == 0) break; if (verbose) { - if (interp.temperature != - prev_interp.temperature) { + if (prev_target_interp.temperature != + target_interp.temperature) { printf(_("Color temperature: %uK\n"), - interp.temperature); + target_interp.temperature); } - if (interp.brightness != - prev_interp.brightness) { + if (prev_target_interp.brightness != + target_interp.brightness) { printf(_("Brightness: %.2f\n"), - interp.brightness); + target_interp.brightness); } } /* Adjust temperature */ - if (!disabled || short_trans_delta || set_adjustments) { - r = method->set_temperature(state, &interp); + r = method->set_temperature( + method_state, &interp, preserve_gamma); + if (r < 0) { + fputs(_("Temperature adjustment failed.\n"), + stderr); + return -1; + } + + /* Save period and target color setting as previous */ + prev_period = period; + prev_target_interp = target_interp; + + /* Sleep length depends on whether a fade is ongoing. */ + int delay = SLEEP_DURATION; + if (fade_length != 0) { + delay = SLEEP_DURATION_SHORT; + } + + /* Update location. */ + int loc_fd = -1; + if (need_location) { + loc_fd = provider->get_fd(location_state); + } + + if (loc_fd >= 0) { + /* Provider is dynamic. */ + struct pollfd pollfds[1]; + pollfds[0].fd = loc_fd; + pollfds[0].events = POLLIN; + int r = poll(pollfds, 1, delay); if (r < 0) { - fputs(_("Temperature adjustment" - " failed.\n"), stderr); + if (errno == EINTR) continue; + perror("poll"); + fputs(_("Unable to get location" + " from provider.\n"), stderr); return -1; + } else if (r == 0) { + continue; } - } - /* Save temperature as previous */ - prev_period = period; - memcpy(&prev_interp, &interp, - sizeof(color_setting_t)); + /* Get new location and availability + information. */ + location_t new_loc; + int new_available; + r = provider->handle( + location_state, &new_loc, + &new_available); + if (r < 0) { + fputs(_("Unable to get location" + " from provider.\n"), stderr); + return -1; + } + + if (!new_available && + new_available != location_available) { + fputs(_("Location is temporarily" + " unavailable; Using previous" + " location until it becomes" + " available...\n"), stderr); + } + + if (new_available && + (new_loc.lat != loc.lat || + new_loc.lon != loc.lon || + new_available != location_available)) { + loc = new_loc; + print_location(&loc); + } + + location_available = new_available; - /* Sleep for 5 seconds or 0.1 second. */ - if (short_trans_delta) { - systemtime_msleep(SLEEP_DURATION_SHORT); + if (!location_is_valid(&loc)) { + fputs(_("Invalid location returned" + " from provider.\n"), stderr); + return -1; + } } else { - systemtime_msleep(SLEEP_DURATION); + systemtime_msleep(delay); } } /* Restore saved gamma ramps */ - method->restore(state); + method->restore(method_state); return 0; } + int main(int argc, char *argv[]) { @@ -1050,35 +908,41 @@ main(int argc, char *argv[]) textdomain(PACKAGE); #endif - /* Initialize settings to NULL values. */ - char *config_filepath = NULL; - - /* Settings for day, night and transition. - Initialized to indicate that the values are not set yet. */ - transition_scheme_t scheme = - { TRANSITION_HIGH, TRANSITION_LOW }; - - scheme.day.temperature = -1; - scheme.day.gamma[0] = NAN; - scheme.day.brightness = NAN; - - scheme.night.temperature = -1; - scheme.night.gamma[0] = NAN; - scheme.night.brightness = NAN; - - /* Temperature for manual mode */ - int temp_set = -1; - - const gamma_method_t *method = NULL; - char *method_args = NULL; - - const location_provider_t *provider = NULL; - char *provider_args = NULL; + /* List of gamma methods. */ + const gamma_method_t gamma_methods[] = { +#ifdef ENABLE_COOPGAMMA + coopgamma_gamma_method, +#endif +#ifdef ENABLE_DRM + drm_gamma_method, +#endif +#ifdef ENABLE_RANDR + randr_gamma_method, +#endif +#ifdef ENABLE_VIDMODE + vidmode_gamma_method, +#endif +#ifdef ENABLE_QUARTZ + quartz_gamma_method, +#endif +#ifdef ENABLE_WINGDI + w32gdi_gamma_method, +#endif + dummy_gamma_method, + { NULL } + }; - int transition = -1; - program_mode_t mode = PROGRAM_MODE_CONTINUAL; - int verbose = 0; - char *s; + /* List of location providers. */ + const location_provider_t location_providers[] = { +#ifdef ENABLE_GEOCLUE2 + geoclue2_location_provider, +#endif +#ifdef ENABLE_CORELOCATION + corelocation_location_provider, +#endif + manual_location_provider, + { NULL } + }; /* Flush messages consistently even if redirected to a pipe or file. Change the flush behaviour to line-buffered, without @@ -1086,331 +950,63 @@ main(int argc, char *argv[]) setvbuf(stdout, NULL, _IOLBF, 0); setvbuf(stderr, NULL, _IOLBF, 0); - /* Parse command line arguments. */ - int opt; - while ((opt = getopt(argc, argv, "b:c:g:hl:m:oO:prt:vVx")) != -1) { - switch (opt) { - case 'b': - parse_brightness_string(optarg, - &scheme.day.brightness, - &scheme.night.brightness); - break; - case 'c': - if (config_filepath != NULL) free(config_filepath); - config_filepath = strdup(optarg); - break; - case 'g': - r = parse_gamma_string(optarg, scheme.day.gamma); - if (r < 0) { - fputs(_("Malformed gamma argument.\n"), - stderr); - fputs(_("Try `-h' for more" - " information.\n"), stderr); - exit(EXIT_FAILURE); - } - - /* Set night gamma to the same value as day gamma. - To set these to distinct values use the config - file. */ - memcpy(scheme.night.gamma, scheme.day.gamma, - sizeof(scheme.night.gamma)); - break; - case 'h': - print_help(argv[0]); - exit(EXIT_SUCCESS); - break; - case 'l': - /* Print list of providers if argument is `list' */ - if (strcasecmp(optarg, "list") == 0) { - print_provider_list(); - exit(EXIT_SUCCESS); - } - - char *provider_name = NULL; - - /* Don't save the result of strtof(); we simply want - to know if optarg can be parsed as a float. */ - errno = 0; - char *end; - strtof(optarg, &end); - if (errno == 0 && *end == ':') { - /* Use instead as arguments to `manual'. */ - provider_name = "manual"; - provider_args = optarg; - } else { - /* Split off provider arguments. */ - s = strchr(optarg, ':'); - if (s != NULL) { - *(s++) = '\0'; - provider_args = s; - } - - provider_name = optarg; - } - - /* Lookup provider from name. */ - provider = find_location_provider(provider_name); - if (provider == NULL) { - fprintf(stderr, _("Unknown location provider" - " `%s'.\n"), provider_name); - exit(EXIT_FAILURE); - } - - /* Print provider help if arg is `help'. */ - if (provider_args != NULL && - strcasecmp(provider_args, "help") == 0) { - provider->print_help(stdout); - exit(EXIT_SUCCESS); - } - break; - case 'm': - /* Print list of methods if argument is `list' */ - if (strcasecmp(optarg, "list") == 0) { - print_method_list(); - exit(EXIT_SUCCESS); - } - - /* Split off method arguments. */ - s = strchr(optarg, ':'); - if (s != NULL) { - *(s++) = '\0'; - method_args = s; - } - - /* Find adjustment method by name. */ - method = find_gamma_method(optarg); - if (method == NULL) { - /* TRANSLATORS: This refers to the method - used to adjust colors e.g VidMode */ - fprintf(stderr, _("Unknown adjustment method" - " `%s'.\n"), optarg); - exit(EXIT_FAILURE); - } - - /* Print method help if arg is `help'. */ - if (method_args != NULL && - strcasecmp(method_args, "help") == 0) { - method->print_help(stdout); - exit(EXIT_SUCCESS); - } - break; - case 'o': - mode = PROGRAM_MODE_ONE_SHOT; - break; - case 'O': - mode = PROGRAM_MODE_MANUAL; - temp_set = atoi(optarg); - break; - case 'p': - mode = PROGRAM_MODE_PRINT; - break; - case 'r': - transition = 0; - break; - case 't': - s = strchr(optarg, ':'); - if (s == NULL) { - fputs(_("Malformed temperature argument.\n"), - stderr); - fputs(_("Try `-h' for more information.\n"), - stderr); - exit(EXIT_FAILURE); - } - *(s++) = '\0'; - scheme.day.temperature = atoi(optarg); - scheme.night.temperature = atoi(s); - break; - case 'v': - verbose = 1; - break; - case 'V': - printf("%s\n", PACKAGE_STRING); - exit(EXIT_SUCCESS); - break; - case 'x': - mode = PROGRAM_MODE_RESET; - break; - case '?': - fputs(_("Try `-h' for more information.\n"), stderr); - exit(EXIT_FAILURE); - break; - } - } + options_t options; + options_init(&options); + options_parse_args( + &options, argc, argv, gamma_methods, location_providers); /* Load settings from config file. */ config_ini_state_t config_state; - r = config_ini_init(&config_state, config_filepath); + r = config_ini_init(&config_state, options.config_filepath); if (r < 0) { fputs("Unable to load config file.\n", stderr); exit(EXIT_FAILURE); } - if (config_filepath != NULL) free(config_filepath); + free(options.config_filepath); - /* Read global config settings. */ - config_ini_section_t *section = config_ini_get_section(&config_state, - "redshift"); - if (section != NULL) { - config_ini_setting_t *setting = section->settings; - while (setting != NULL) { - if (strcasecmp(setting->name, "temp-day") == 0) { - if (scheme.day.temperature < 0) { - scheme.day.temperature = - atoi(setting->value); - } - } else if (strcasecmp(setting->name, - "temp-night") == 0) { - if (scheme.night.temperature < 0) { - scheme.night.temperature = - atoi(setting->value); - } - } else if (strcasecmp(setting->name, - "transition") == 0) { - if (transition < 0) { - transition = !!atoi(setting->value); - } - } else if (strcasecmp(setting->name, - "brightness") == 0) { - if (isnan(scheme.day.brightness)) { - scheme.day.brightness = - atof(setting->value); - } - if (isnan(scheme.night.brightness)) { - scheme.night.brightness = - atof(setting->value); - } - } else if (strcasecmp(setting->name, - "brightness-day") == 0) { - if (isnan(scheme.day.brightness)) { - scheme.day.brightness = - atof(setting->value); - } - } else if (strcasecmp(setting->name, - "brightness-night") == 0) { - if (isnan(scheme.night.brightness)) { - scheme.night.brightness = - atof(setting->value); - } - } else if (strcasecmp(setting->name, - "elevation-high") == 0) { - scheme.high = atof(setting->value); - } else if (strcasecmp(setting->name, - "elevation-low") == 0) { - scheme.low = atof(setting->value); - } else if (strcasecmp(setting->name, "gamma") == 0) { - if (isnan(scheme.day.gamma[0])) { - r = parse_gamma_string(setting->value, - scheme.day.gamma); - if (r < 0) { - fputs(_("Malformed gamma" - " setting.\n"), - stderr); - exit(EXIT_FAILURE); - } - memcpy(scheme.night.gamma, scheme.day.gamma, - sizeof(scheme.night.gamma)); - } - } else if (strcasecmp(setting->name, "gamma-day") == 0) { - if (isnan(scheme.day.gamma[0])) { - r = parse_gamma_string(setting->value, - scheme.day.gamma); - if (r < 0) { - fputs(_("Malformed gamma" - " setting.\n"), - stderr); - exit(EXIT_FAILURE); - } - } - } else if (strcasecmp(setting->name, "gamma-night") == 0) { - if (isnan(scheme.night.gamma[0])) { - r = parse_gamma_string(setting->value, - scheme.night.gamma); - if (r < 0) { - fputs(_("Malformed gamma" - " setting.\n"), - stderr); - exit(EXIT_FAILURE); - } - } - } else if (strcasecmp(setting->name, - "adjustment-method") == 0) { - if (method == NULL) { - method = find_gamma_method( - setting->value); - if (method == NULL) { - fprintf(stderr, _("Unknown" - " adjustment" - " method" - " `%s'.\n"), - setting->value); - exit(EXIT_FAILURE); - } - } - } else if (strcasecmp(setting->name, - "location-provider") == 0) { - if (provider == NULL) { - provider = find_location_provider( - setting->value); - if (provider == NULL) { - fprintf(stderr, _("Unknown" - " location" - " provider" - " `%s'.\n"), - setting->value); - exit(EXIT_FAILURE); - } - } - } else { - fprintf(stderr, _("Unknown configuration" - " setting `%s'.\n"), - setting->name); - } - setting = setting->next; - } - } + options_parse_config_file( + &options, &config_state, gamma_methods, location_providers); - /* Use default values for settings that were neither defined in - the config file nor on the command line. */ - if (scheme.day.temperature < 0) { - scheme.day.temperature = DEFAULT_DAY_TEMP; - } - if (scheme.night.temperature < 0) { - scheme.night.temperature = DEFAULT_NIGHT_TEMP; - } + options_set_defaults(&options); - if (isnan(scheme.day.brightness)) { - scheme.day.brightness = DEFAULT_BRIGHTNESS; - } - if (isnan(scheme.night.brightness)) { - scheme.night.brightness = DEFAULT_BRIGHTNESS; - } - - if (isnan(scheme.day.gamma[0])) { - scheme.day.gamma[0] = DEFAULT_GAMMA; - scheme.day.gamma[1] = DEFAULT_GAMMA; - scheme.day.gamma[2] = DEFAULT_GAMMA; - } - if (isnan(scheme.night.gamma[0])) { - scheme.night.gamma[0] = DEFAULT_GAMMA; - scheme.night.gamma[1] = DEFAULT_GAMMA; - scheme.night.gamma[2] = DEFAULT_GAMMA; - } + if (options.scheme.dawn.start >= 0 || options.scheme.dawn.end >= 0 || + options.scheme.dusk.start >= 0 || options.scheme.dusk.end >= 0) { + if (options.scheme.dawn.start < 0 || + options.scheme.dawn.end < 0 || + options.scheme.dusk.start < 0 || + options.scheme.dusk.end < 0) { + fputs(_("Partial time-configuration not" + " supported!\n"), stderr); + exit(EXIT_FAILURE); + } - if (transition < 0) transition = 1; + if (options.scheme.dawn.start > options.scheme.dawn.end || + options.scheme.dawn.end > options.scheme.dusk.start || + options.scheme.dusk.start > options.scheme.dusk.end) { + fputs(_("Invalid dawn/dusk time configuration!\n"), + stderr); + exit(EXIT_FAILURE); + } - location_t loc = { NAN, NAN }; + options.scheme.use_time = 1; + } - /* Initialize location provider. If provider is NULL + /* Initialize location provider if needed. If provider is NULL try all providers until one that works is found. */ - location_state_t location_state; + location_state_t *location_state; /* Location is not needed for reset mode and manual mode. */ - if (mode != PROGRAM_MODE_RESET && - mode != PROGRAM_MODE_MANUAL) { - if (provider != NULL) { + int need_location = + options.mode != PROGRAM_MODE_RESET && + options.mode != PROGRAM_MODE_MANUAL && + !options.scheme.use_time; + if (need_location) { + if (options.provider != NULL) { /* Use provider specified on command line. */ - r = provider_try_start(provider, &location_state, - &config_state, provider_args); + r = provider_try_start( + options.provider, &location_state, + &config_state, options.provider_args); if (r < 0) exit(EXIT_FAILURE); } else { /* Try all providers, use the first that works. */ @@ -1431,82 +1027,58 @@ main(int argc, char *argv[]) /* Found provider that works. */ printf(_("Using provider `%s'.\n"), p->name); - provider = p; + options.provider = p; break; } /* Failure if no providers were successful at this point. */ - if (provider == NULL) { + if (options.provider == NULL) { fputs(_("No more location providers" " to try.\n"), stderr); exit(EXIT_FAILURE); } } - /* Get current location. */ - r = provider->get_location(&location_state, &loc); - if (r < 0) { - fputs(_("Unable to get location from provider.\n"), - stderr); - exit(EXIT_FAILURE); + /* Solar elevations */ + if (options.scheme.high < options.scheme.low) { + fprintf(stderr, + _("High transition elevation cannot be lower than" + " the low transition elevation.\n")); + exit(EXIT_FAILURE); } - - provider->free(&location_state); - - if (verbose) { - print_location(&loc); - printf(_("Temperatures: %dK at day, %dK at night\n"), - scheme.day.temperature, - scheme.night.temperature); - - /* TRANSLATORS: Append degree symbols if possible. */ + if (options.verbose) { + /* TRANSLATORS: Append degree symbols if possible. */ printf(_("Solar elevations: day above %.1f, night below %.1f\n"), - scheme.high, scheme.low); + options.scheme.high, options.scheme.low); } + } - /* Latitude */ - if (loc.lat < MIN_LAT || loc.lat > MAX_LAT) { - /* TRANSLATORS: Append degree symbols if possible. */ - fprintf(stderr, - _("Latitude must be between %.1f and %.1f.\n"), - MIN_LAT, MAX_LAT); - exit(EXIT_FAILURE); - } - - /* Longitude */ - if (loc.lon < MIN_LON || loc.lon > MAX_LON) { - /* TRANSLATORS: Append degree symbols if possible. */ - fprintf(stderr, - _("Longitude must be between" - " %.1f and %.1f.\n"), MIN_LON, MAX_LON); - exit(EXIT_FAILURE); + if (options.mode != PROGRAM_MODE_RESET && + options.mode != PROGRAM_MODE_MANUAL) { + if (options.verbose) { + printf(_("Temperatures: %dK at day, %dK at night\n"), + options.scheme.day.temperature, + options.scheme.night.temperature); } /* Color temperature */ - if (scheme.day.temperature < MIN_TEMP || - scheme.day.temperature > MAX_TEMP || - scheme.night.temperature < MIN_TEMP || - scheme.night.temperature > MAX_TEMP) { + if (options.scheme.day.temperature < MIN_TEMP || + options.scheme.day.temperature > MAX_TEMP || + options.scheme.night.temperature < MIN_TEMP || + options.scheme.night.temperature > MAX_TEMP) { fprintf(stderr, _("Temperature must be between %uK and %uK.\n"), MIN_TEMP, MAX_TEMP); exit(EXIT_FAILURE); } - - /* Solar elevations */ - if (scheme.high < scheme.low) { - fprintf(stderr, - _("High transition elevation cannot be lower than" - " the low transition elevation.\n")); - exit(EXIT_FAILURE); - } } - if (mode == PROGRAM_MODE_MANUAL) { + if (options.mode == PROGRAM_MODE_MANUAL) { /* Check color temperature to be set */ - if (temp_set < MIN_TEMP || temp_set > MAX_TEMP) { + if (options.temp_set < MIN_TEMP || + options.temp_set > MAX_TEMP) { fprintf(stderr, _("Temperature must be between %uK and %uK.\n"), MIN_TEMP, MAX_TEMP); @@ -1515,51 +1087,57 @@ main(int argc, char *argv[]) } /* Brightness */ - if (scheme.day.brightness < MIN_BRIGHTNESS || - scheme.day.brightness > MAX_BRIGHTNESS || - scheme.night.brightness < MIN_BRIGHTNESS || - scheme.night.brightness > MAX_BRIGHTNESS) { + if (options.scheme.day.brightness < MIN_BRIGHTNESS || + options.scheme.day.brightness > MAX_BRIGHTNESS || + options.scheme.night.brightness < MIN_BRIGHTNESS || + options.scheme.night.brightness > MAX_BRIGHTNESS) { fprintf(stderr, _("Brightness values must be between %.1f and %.1f.\n"), MIN_BRIGHTNESS, MAX_BRIGHTNESS); exit(EXIT_FAILURE); } - if (verbose) { + if (options.verbose) { printf(_("Brightness: %.2f:%.2f\n"), - scheme.day.brightness, scheme.night.brightness); + options.scheme.day.brightness, + options.scheme.night.brightness); } /* Gamma */ - if (!gamma_is_valid(scheme.day.gamma) || - !gamma_is_valid(scheme.night.gamma)) { + if (!gamma_is_valid(options.scheme.day.gamma) || + !gamma_is_valid(options.scheme.night.gamma)) { fprintf(stderr, _("Gamma value must be between %.1f and %.1f.\n"), MIN_GAMMA, MAX_GAMMA); exit(EXIT_FAILURE); } - if (verbose) { + if (options.verbose) { /* TRANSLATORS: The string in parenthesis is either Daytime or Night (translated). */ printf(_("Gamma (%s): %.3f, %.3f, %.3f\n"), - _("Daytime"), scheme.day.gamma[0], - scheme.day.gamma[1], scheme.day.gamma[2]); + _("Daytime"), options.scheme.day.gamma[0], + options.scheme.day.gamma[1], + options.scheme.day.gamma[2]); printf(_("Gamma (%s): %.3f, %.3f, %.3f\n"), - _("Night"), scheme.night.gamma[0], - scheme.night.gamma[1], scheme.night.gamma[2]); + _("Night"), options.scheme.night.gamma[0], + options.scheme.night.gamma[1], + options.scheme.night.gamma[2]); } + transition_scheme_t *scheme = &options.scheme; + /* Initialize gamma adjustment method. If method is NULL try all methods until one that works is found. */ - gamma_state_t state; + gamma_state_t *method_state; /* Gamma adjustment not needed for print mode */ - if (mode != PROGRAM_MODE_PRINT) { - if (method != NULL) { + if (options.mode != PROGRAM_MODE_PRINT) { + if (options.method != NULL) { /* Use method specified on command line. */ - r = method_try_start(method, &state, &config_state, - method_args); + r = method_try_start( + options.method, &method_state, options.mode, &config_state, + options.method_args); if (r < 0) exit(EXIT_FAILURE); } else { /* Try all methods, use the first that works. */ @@ -1567,7 +1145,8 @@ main(int argc, char *argv[]) const gamma_method_t *m = &gamma_methods[i]; if (!m->autostart) continue; - r = method_try_start(m, &state, &config_state, NULL); + r = method_try_start( + m, &method_state, options.mode, &config_state, NULL); if (r < 0) { fputs(_("Trying next method...\n"), stderr); continue; @@ -1575,12 +1154,12 @@ main(int argc, char *argv[]) /* Found method that works. */ printf(_("Using method `%s'.\n"), m->name); - method = m; + options.method = m; break; } /* Failure if no methods were successful at this point. */ - if (method == NULL) { + if (options.method == NULL) { fputs(_("No more methods to try.\n"), stderr); exit(EXIT_FAILURE); } @@ -1589,83 +1168,119 @@ main(int argc, char *argv[]) config_ini_free(&config_state); - switch (mode) { + switch (options.mode) { case PROGRAM_MODE_ONE_SHOT: case PROGRAM_MODE_PRINT: { - /* Current angular elevation of the sun */ + location_t loc = { NAN, NAN }; + if (need_location) { + fputs(_("Waiting for current location" + " to become available...\n"), stderr); + + /* Wait for location provider. */ + int r = provider_get_location( + options.provider, location_state, -1, &loc); + if (r < 0) { + fputs(_("Unable to get location" + " from provider.\n"), stderr); + exit(EXIT_FAILURE); + } + + if (!location_is_valid(&loc)) { + exit(EXIT_FAILURE); + } + + print_location(&loc); + } + double now; r = systemtime_get_time(&now); if (r < 0) { fputs(_("Unable to read system time.\n"), stderr); - method->free(&state); + options.method->free(method_state); exit(EXIT_FAILURE); } - double elevation = solar_elevation(now, loc.lat, loc.lon); + period_t period; + double transition_prog; + if (options.scheme.use_time) { + int time_offset = get_seconds_since_midnight(now); + period = get_period_from_time(scheme, time_offset); + transition_prog = get_transition_progress_from_time( + scheme, time_offset); + } else { + /* Current angular elevation of the sun */ + double elevation = solar_elevation( + now, loc.lat, loc.lon); + if (options.verbose) { + /* TRANSLATORS: Append degree symbol if + possible. */ + printf(_("Solar elevation: %f\n"), elevation); + } - if (verbose) { - /* TRANSLATORS: Append degree symbol if possible. */ - printf(_("Solar elevation: %f\n"), elevation); + period = get_period_from_elevation(scheme, elevation); + transition_prog = + get_transition_progress_from_elevation( + scheme, elevation); } - /* Use elevation of sun to set color temperature */ + /* Use transition progress to set color temperature */ color_setting_t interp; - interpolate_color_settings(&scheme, elevation, &interp); - - if (verbose || mode == PROGRAM_MODE_PRINT) { - period_t period = get_period(&scheme, - elevation); - double transition = - get_transition_progress(&scheme, - elevation); - print_period(period, transition); + interpolate_transition_scheme( + scheme, transition_prog, &interp); + + if (options.verbose || options.mode == PROGRAM_MODE_PRINT) { + print_period(period, transition_prog); printf(_("Color temperature: %uK\n"), interp.temperature); printf(_("Brightness: %.2f\n"), interp.brightness); } - if (mode == PROGRAM_MODE_PRINT) { - exit(EXIT_SUCCESS); - } - - /* Adjust temperature */ - r = method->set_temperature(&state, &interp); - if (r < 0) { - fputs(_("Temperature adjustment failed.\n"), stderr); - method->free(&state); - exit(EXIT_FAILURE); - } + if (options.mode != PROGRAM_MODE_PRINT) { + /* Adjust temperature */ + r = options.method->set_temperature( + method_state, &interp, options.preserve_gamma); + if (r < 0) { + fputs(_("Temperature adjustment failed.\n"), + stderr); + options.method->free(method_state); + exit(EXIT_FAILURE); + } - /* In Quartz (OSX) the gamma adjustments will automatically - revert when the process exits. Therefore, we have to loop - until CTRL-C is received. */ - if (strcmp(method->name, "quartz") == 0) { - fputs(_("Press ctrl-c to stop...\n"), stderr); - pause(); + /* In Quartz (macOS) the gamma adjustments will + automatically revert when the process exits. + Therefore, we have to loop until CTRL-C is received. + */ + if (strcmp(options.method->name, "quartz") == 0) { + fputs(_("Press ctrl-c to stop...\n"), stderr); + pause(); + } } } break; case PROGRAM_MODE_MANUAL: { - if (verbose) printf(_("Color temperature: %uK\n"), temp_set); + if (options.verbose) { + printf(_("Color temperature: %uK\n"), + options.temp_set); + } /* Adjust temperature */ - color_setting_t manual; - memcpy(&manual, &scheme.day, sizeof(color_setting_t)); - manual.temperature = temp_set; - r = method->set_temperature(&state, &manual); + color_setting_t manual = scheme->day; + manual.temperature = options.temp_set; + r = options.method->set_temperature( + method_state, &manual, options.preserve_gamma); if (r < 0) { fputs(_("Temperature adjustment failed.\n"), stderr); - method->free(&state); + options.method->free(method_state); exit(EXIT_FAILURE); } /* In Quartz (OSX) the gamma adjustments will automatically revert when the process exits. Therefore, we have to loop until CTRL-C is received. */ - if (strcmp(method->name, "quartz") == 0) { + if (strcmp(options.method->name, "quartz") == 0) { fputs(_("Press ctrl-c to stop...\n"), stderr); pause(); } @@ -1674,18 +1289,20 @@ main(int argc, char *argv[]) case PROGRAM_MODE_RESET: { /* Reset screen */ - color_setting_t reset = { NEUTRAL_TEMP, { 1.0, 1.0, 1.0 }, 1.0 }; - r = method->set_temperature(&state, &reset); + color_setting_t reset; + color_setting_reset(&reset); + + r = options.method->set_temperature(method_state, &reset, 0); if (r < 0) { fputs(_("Temperature adjustment failed.\n"), stderr); - method->free(&state); + options.method->free(method_state); exit(EXIT_FAILURE); } /* In Quartz (OSX) the gamma adjustments will automatically revert when the process exits. Therefore, we have to loop until CTRL-C is received. */ - if (strcmp(method->name, "quartz") == 0) { + if (strcmp(options.method->name, "quartz") == 0) { fputs(_("Press ctrl-c to stop...\n"), stderr); pause(); } @@ -1693,16 +1310,25 @@ main(int argc, char *argv[]) break; case PROGRAM_MODE_CONTINUAL: { - r = run_continual_mode(&loc, &scheme, - method, &state, - transition, verbose); + r = run_continual_mode( + options.provider, location_state, scheme, + options.method, method_state, + options.use_fade, options.preserve_gamma, + options.verbose); if (r < 0) exit(EXIT_FAILURE); } break; } /* Clean up gamma adjustment state */ - method->free(&state); + if (options.mode != PROGRAM_MODE_PRINT) { + options.method->free(method_state); + } + + /* Clean up location provider state */ + if (need_location) { + options.provider->free(location_state); + } return EXIT_SUCCESS; } diff --git a/src/redshift.h b/src/redshift.h index bac8e34..896ee28 100644 --- a/src/redshift.h +++ b/src/redshift.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2013-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2013-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_REDSHIFT_H @@ -23,6 +23,9 @@ #include <stdio.h> #include <stdlib.h> +/* The color temperature when no adjustment is applied. */ +#define NEUTRAL_TEMP 6500 + /* Location */ typedef struct { @@ -45,17 +48,48 @@ typedef struct { float brightness; } color_setting_t; +/* Program modes. */ +typedef enum { + PROGRAM_MODE_CONTINUAL, + PROGRAM_MODE_ONE_SHOT, + PROGRAM_MODE_PRINT, + PROGRAM_MODE_RESET, + PROGRAM_MODE_MANUAL +} program_mode_t; + +/* Time range. + Fields are offsets from midnight in seconds. */ +typedef struct { + int start; + int end; +} time_range_t; + +/* Transition scheme. + The solar elevations at which the transition begins/ends, + and the association color settings. */ +typedef struct { + double high; + double low; + int use_time; /* When enabled, ignore elevation and use time ranges. */ + time_range_t dawn; + time_range_t dusk; + color_setting_t day; + color_setting_t night; +} transition_scheme_t; + /* Gamma adjustment method */ -typedef int gamma_method_init_func(void *state); -typedef int gamma_method_start_func(void *state); -typedef void gamma_method_free_func(void *state); +typedef struct gamma_state gamma_state_t; + +typedef int gamma_method_init_func(gamma_state_t **state); +typedef int gamma_method_start_func(gamma_state_t *state, program_mode_t mode); +typedef void gamma_method_free_func(gamma_state_t *state); typedef void gamma_method_print_help_func(FILE *f); -typedef int gamma_method_set_option_func(void *state, const char *key, +typedef int gamma_method_set_option_func(gamma_state_t *state, const char *key, const char *value); -typedef void gamma_method_restore_func(void *state); -typedef int gamma_method_set_temperature_func(void *state, - const color_setting_t *setting); +typedef void gamma_method_restore_func(gamma_state_t *state); +typedef int gamma_method_set_temperature_func( + gamma_state_t *state, const color_setting_t *setting, int preserve); typedef struct { char *name; @@ -83,13 +117,17 @@ typedef struct { /* Location provider */ -typedef int location_provider_init_func(void *state); -typedef int location_provider_start_func(void *state); -typedef void location_provider_free_func(void *state); +typedef struct location_state location_state_t; + +typedef int location_provider_init_func(location_state_t **state); +typedef int location_provider_start_func(location_state_t *state); +typedef void location_provider_free_func(location_state_t *state); typedef void location_provider_print_help_func(FILE *f); -typedef int location_provider_set_option_func(void *state, const char *key, - const char *value); -typedef int location_provider_get_location_func(void *state, location_t *loc); +typedef int location_provider_set_option_func( + location_state_t *state, const char *key, const char *value); +typedef int location_provider_get_fd_func(location_state_t *state); +typedef int location_provider_handle_func( + location_state_t *state, location_t *location, int *available); typedef struct { char *name; @@ -106,8 +144,9 @@ typedef struct { /* Set an option key, value-pair. */ location_provider_set_option_func *set_option; - /* Get current location. */ - location_provider_get_location_func *get_location; + /* Listen and handle location updates. */ + location_provider_get_fd_func *get_fd; + location_provider_handle_func *handle; } location_provider_t; diff --git a/src/signals.c b/src/signals.c new file mode 100644 index 0000000..e2aa219 --- /dev/null +++ b/src/signals.c @@ -0,0 +1,118 @@ +/* signals.c -- Signal processing source + This file is part of Redshift. + + Redshift is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Redshift is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Redshift. If not, see <http://www.gnu.org/licenses/>. + + Copyright (c) 2009-2015 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2015 Mattias Andrée <m@maandree.se> +*/ + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include <stdio.h> +#if defined(HAVE_SIGNAL_H) && !defined(__WIN32__) +# include <signal.h> +#endif + +#include "signals.h" + + +#if defined(HAVE_SIGNAL_H) && !defined(__WIN32__) + +volatile sig_atomic_t exiting = 0; +volatile sig_atomic_t disable = 0; + + +/* Signal handler for exit signals */ +static void +sigexit(int signo) +{ + exiting = 1; +} + +/* Signal handler for disable signal */ +static void +sigdisable(int signo) +{ + disable = 1; +} + +#else /* ! HAVE_SIGNAL_H || __WIN32__ */ + +int disable = 0; +int exiting = 0; + +#endif /* ! HAVE_SIGNAL_H || __WIN32__ */ + + +int +signals_install_handlers(void) +{ +#if defined(HAVE_SIGNAL_H) && !defined(__WIN32__) + struct sigaction sigact; + sigset_t sigset; + int r; + sigemptyset(&sigset); + + /* Install signal handler for INT and TERM signals */ + sigact.sa_handler = sigexit; + sigact.sa_mask = sigset; + sigact.sa_flags = 0; + + r = sigaction(SIGINT, &sigact, NULL); + if (r < 0) { + perror("sigaction"); + return -1; + } + + r = sigaction(SIGTERM, &sigact, NULL); + if (r < 0) { + perror("sigaction"); + return -1; + } + + r = sigaction(SIGQUIT, &sigact, NULL); + if (r < 0) { + perror("sigaction"); + return -1; + } + + /* Install signal handler for USR1 signal */ + sigact.sa_handler = sigdisable; + sigact.sa_mask = sigset; + sigact.sa_flags = 0; + + r = sigaction(SIGUSR1, &sigact, NULL); + if (r < 0) { + perror("sigaction"); + return -1; + } + + /* Ignore CHLD signal. This causes child processes + (hooks) to be reaped automatically. */ + sigact.sa_handler = SIG_IGN; + sigact.sa_mask = sigset; + sigact.sa_flags = 0; + + r = sigaction(SIGCHLD, &sigact, NULL); + if (r < 0) { + perror("sigaction"); + return -1; + } +#endif /* HAVE_SIGNAL_H && ! __WIN32__ */ + + return 0; +} diff --git a/src/signals.h b/src/signals.h new file mode 100644 index 0000000..0b0af53 --- /dev/null +++ b/src/signals.h @@ -0,0 +1,38 @@ +/* signals.h -- Signal processing header + This file is part of Redshift. + + Redshift is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Redshift is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Redshift. If not, see <http://www.gnu.org/licenses/>. + + Copyright (c) 2009-2015 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2015 Mattias Andrée <m@maandree.se> +*/ +#ifndef REDSHIFT_SIGNALS_H +#define REDSHIFT_SIGNALS_H + + +#if defined(HAVE_SIGNAL_H) && !defined(__WIN32__) + +extern volatile sig_atomic_t exiting; +extern volatile sig_atomic_t disable; + +#else /* ! HAVE_SIGNAL_H || __WIN32__ */ +extern int exiting; +extern int disable; +#endif /* ! HAVE_SIGNAL_H || __WIN32__ */ + + +int signals_install_handlers(void); + + +#endif /* REDSHIFT_SIGNALS_H */ diff --git a/src/windows/appicon.rc b/src/windows/appicon.rc new file mode 100644 index 0000000..9980b7e --- /dev/null +++ b/src/windows/appicon.rc @@ -0,0 +1 @@ +AppIcon ICON redshift.ico diff --git a/src/windows/redshift.ico b/src/windows/redshift.ico Binary files differnew file mode 100644 index 0000000..751e6fa --- /dev/null +++ b/src/windows/redshift.ico diff --git a/src/windows/versioninfo.rc b/src/windows/versioninfo.rc new file mode 100644 index 0000000..9ede49d --- /dev/null +++ b/src/windows/versioninfo.rc @@ -0,0 +1,20 @@ +#include "config.h" + +1 VERSIONINFO +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904E4" + BEGIN + VALUE "CompanyName", "Redshift Open Source Project" + VALUE "FileDescription", "Redshift" + VALUE "OriginalFilename", "redshift.exe" + VALUE "ProductName", "Redshift" + VALUE "ProductVersion", PACKAGE_VERSION + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1252 + END +END |