├── .gitignore ├── screenshot.png ├── screenshots ├── config_1.png ├── config_2.png ├── config_3.png ├── config_4.png ├── config_5.png └── screenshot.png ├── info.json ├── files └── qredshift@quintao │ ├── icon.png │ ├── bin │ ├── qredshift_i686 │ ├── qredshift_aarch64 │ ├── qredshift_armv7l │ ├── qredshift_mipsel │ ├── qredshift_s390x │ ├── qredshift_x86_64 │ ├── qredshift_armv5tel │ ├── qredshift_mips64el │ └── qredshift_powerpc64le │ ├── metadata.json │ ├── icons │ ├── update.svg │ ├── sunrise-symbolic.svg │ ├── sunset-symbolic.svg │ ├── icon.svg │ ├── qredshift.svg │ ├── qredshift-on-symbolic.svg │ ├── qredshift-off-symbolic.svg │ └── qredshift-off.svg │ ├── stylesheet.css │ ├── lib │ ├── QSunCalc.js │ └── QUtils.js │ └── po │ ├── ro.po │ ├── bg.po │ ├── tr.po │ ├── sv.po │ ├── es_MX.po │ ├── pl.po │ ├── de.po │ ├── zh_CN.po │ ├── oc.po │ ├── sk.po │ ├── ru.po │ ├── it.po │ ├── es.po │ └── qredshift@quintao.pot ├── .editorconfig ├── .github └── FUNDING.yml ├── install.sh ├── README.md └── LICENSE.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .editorconfig -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshots/config_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/screenshots/config_1.png -------------------------------------------------------------------------------- /screenshots/config_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/screenshots/config_2.png -------------------------------------------------------------------------------- /screenshots/config_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/screenshots/config_3.png -------------------------------------------------------------------------------- /screenshots/config_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/screenshots/config_4.png -------------------------------------------------------------------------------- /screenshots/config_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/screenshots/config_5.png -------------------------------------------------------------------------------- /info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "raphaelquintao", 3 | "original_author": "raphaelquintao", 4 | "license": "A2L" 5 | } 6 | -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /files/qredshift@quintao/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/icon.png -------------------------------------------------------------------------------- /files/qredshift@quintao/bin/qredshift_i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/bin/qredshift_i686 -------------------------------------------------------------------------------- /files/qredshift@quintao/bin/qredshift_aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/bin/qredshift_aarch64 -------------------------------------------------------------------------------- /files/qredshift@quintao/bin/qredshift_armv7l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/bin/qredshift_armv7l -------------------------------------------------------------------------------- /files/qredshift@quintao/bin/qredshift_mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/bin/qredshift_mipsel -------------------------------------------------------------------------------- /files/qredshift@quintao/bin/qredshift_s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/bin/qredshift_s390x -------------------------------------------------------------------------------- /files/qredshift@quintao/bin/qredshift_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/bin/qredshift_x86_64 -------------------------------------------------------------------------------- /files/qredshift@quintao/bin/qredshift_armv5tel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/bin/qredshift_armv5tel -------------------------------------------------------------------------------- /files/qredshift@quintao/bin/qredshift_mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/bin/qredshift_mips64el -------------------------------------------------------------------------------- /files/qredshift@quintao/bin/qredshift_powerpc64le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/HEAD/files/qredshift@quintao/bin/qredshift_powerpc64le -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | charset=utf-8 3 | end_of_line=lf 4 | insert_final_newline=false 5 | indent_style=space 6 | indent_size=2 7 | 8 | [{.babelrc,.prettierrc,.stylelintrc,.eslintrc,jest.config,*.json,*.jsb3,*.jsb2,*.bowerrc}] 9 | indent_style=space 10 | indent_size=2 11 | 12 | [*.scss] 13 | indent_style=space 14 | indent_size=2 15 | 16 | [*.svg] 17 | indent_style=space 18 | indent_size=2 19 | 20 | -------------------------------------------------------------------------------- /files/qredshift@quintao/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "uuid": "qredshift@quintao", 3 | "name": "QRedshift", 4 | "version": "2.0.4", 5 | "description": "It makes the color of your computer's display adapt to the time of day, warm at night and like sunlight during the day.", 6 | "multiversion": true, 7 | "max-instances": 1, 8 | "cinnamon-version": ["3.8", "4.0", "4.2", "4.3", "4.4", "4.5", "4.6", "4.8", "5.0", "5.2", "5.4", "5.5", "5.6", "5.8"] 9 | } 10 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [raphaelquintao] 4 | # patreon: # Replace with a single Patreon username 5 | # open_collective: # Replace with a single Open Collective username 6 | # ko_fi: # Replace with a single Ko-fi username 7 | # tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | # community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | # liberapay: # Replace with a single Liberapay username 10 | # issuehunt: # Replace with a single IssueHunt username 11 | # lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | # polar: # Replace with a single Polar username 13 | # buy_me_a_coffee: # Replace with a single Buy Me a Coffee username 14 | # thanks_dev: # Replace with a single thanks.dev username 15 | # custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 16 | -------------------------------------------------------------------------------- /files/qredshift@quintao/icons/update.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /files/qredshift@quintao/icons/sunrise-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /files/qredshift@quintao/icons/sunset-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /files/qredshift@quintao/stylesheet.css: -------------------------------------------------------------------------------- 1 | .q-icon-bar .q-icon-bar-holder { 2 | margin: 0; 3 | padding: 0; 4 | spacing: 0; 5 | } 6 | 7 | .q-icon-bar .q-icon-bar-holder .q-icon { 8 | padding: 4px; 9 | margin: 0 3px; 10 | } 11 | 12 | .q-icon-bar .q-icon-bar-holder .q-icon:active { 13 | border-image: none; 14 | border: none; 15 | } 16 | 17 | .qpopup-slider { 18 | height: 2em; 19 | min-width: 15em; 20 | -gradient-start: #b05b79; 21 | -gradient-end: #7DB9E8; 22 | 23 | -slider-height: 0.75em; 24 | -slider-border-color: rgba(0, 0, 0, 0.5); 25 | -slider-active-border-color: rgba(0, 0, 0, 0.5); 26 | -slider-border-width: 1px; 27 | -slider-handle-radius: 0.73em; 28 | } 29 | 30 | .qpopup-slider-label { 31 | min-width: 50px; 32 | text-align: right; 33 | } 34 | 35 | .qpopup-slider-info { 36 | min-width: 50px; 37 | text-align: left; 38 | font-size: 0.9em; 39 | } 40 | 41 | .q-text-bold { 42 | font-weight: bold; 43 | /*background: #b05b79;*/ 44 | } 45 | 46 | .q-text-medium { 47 | font-weight: normal; 48 | } 49 | 50 | .q-text-bigger { 51 | font-size: 1.15em; 52 | } 53 | 54 | .q-text-smaller { 55 | font-size: 0.9em; 56 | } 57 | 58 | .q-sun-bar { 59 | /*background: #500b28;*/ 60 | padding: 0; 61 | margin: 0; 62 | spacing: 0; 63 | } 64 | 65 | .q-sun-bar-city { 66 | /*background: rgba(176, 91, 121, 0.6);*/ 67 | font-weight: bold; 68 | min-width: 50px; 69 | } 70 | 71 | .q-sun-bar-left { 72 | 73 | } 74 | 75 | .q-sun-bar-right { 76 | /*background-color: rgba(255, 153, 0, 0.58);*/ 77 | spacing: 0.8em; 78 | padding: 0; 79 | margin: 0; 80 | } 81 | 82 | .q-sun-bar-item { 83 | margin: 0; 84 | spacing: 0.4em; 85 | border-radius: 2px; 86 | } 87 | 88 | .q-sun-bar-item:active { 89 | /*background-color: rgba(2, 2, 3, 0.9);*/ 90 | } 91 | 92 | .hide { 93 | height: 40px; 94 | } -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | qecho() { echo -n -e "\e[$2m$1\e[0m"; } 3 | 4 | SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) 5 | USER=$(logname) 6 | 7 | TARGET=~/.local/share/cinnamon/applets 8 | 9 | qecho "QRedshift Cinnamon Installation Script! \n" "1" 10 | 11 | if [ "$DESKTOP_SESSION" = 'cinnamon-wayland' ]; then 12 | qecho " => "; qecho "Applet not supported on Wayland, please run Cinnamon in X11!\n" "1;31" 13 | elif [ "$DESKTOP_SESSION" != 'cinnamon' ]; then 14 | qecho " => "; qecho "You not running Cinnamon\n" "1;31" 15 | exit 16 | fi 17 | 18 | LAST_VERSION_1=$(curl -sSL "https://api.github.com/repos/raphaelquintao/QRedshiftCinnamon/releases/latest" | sed -n -E 's/.+"tag_name"\s*:\s*"v(.+)".+/\1/p') 19 | LAST_VERSION_2=$(curl -sSL "https://quintao.ninja/qghs/raphaelquintao/QRedshiftCinnamon/releases/latest" | sed -n -E 's/.+"tag_name"\s*:\s*"v(.+)".+/\1/p') 20 | 21 | LAST_VERSION='' 22 | 23 | if [ "$LAST_VERSION_1" = '' ]; then 24 | if [ "$LAST_VERSION_2" = '' ]; then 25 | qecho " => "; qecho "Failed, check your internet connection.\n" "1;31" 26 | exit 27 | else 28 | LAST_VERSION=$LAST_VERSION_2 29 | fi 30 | else 31 | LAST_VERSION=$LAST_VERSION_1 32 | fi 33 | 34 | if [ "$LAST_VERSION" = '' ]; then 35 | qecho " => "; qecho "Failed, check your internet connection.\n" "1;31" 36 | exit 37 | fi 38 | 39 | FILE_NAME="qredshift@quintao_$LAST_VERSION.tar.gz" 40 | 41 | ZIP_URL="https://github.com/raphaelquintao/QRedshiftCinnamon/releases/download/v$LAST_VERSION/$FILE_NAME" 42 | 43 | qecho "Latest Version: " "1:33"; qecho "${LAST_VERSION}\n" "1;33"; 44 | 45 | 46 | #mkdir -p $TARGET 47 | 48 | PREVIOUS=false 49 | 50 | if [ -d $TARGET/qredshift@quintao ]; then 51 | rm -R $TARGET/qredshift@quintao 52 | PREVIOUS=true 53 | fi 54 | 55 | qecho " => " "1"; qecho "Downloading files..." "0;32" 56 | #curl --progress-bar -o $TARGET/master.tar.gz -L $ZIP 57 | if curl -s -o $TARGET/$LAST_VERSION.tar.gz -L $ZIP_URL; then 58 | qecho " Done!\n" "1" 59 | else 60 | qecho "\n => "; qecho "Failed to download, check your internet connection.\n" "1;31" 61 | exit 62 | fi 63 | 64 | qecho " => " "1"; qecho "Installing..." "0;32" 65 | tar -xzf $TARGET/$LAST_VERSION.tar.gz -C $TARGET 66 | rm $TARGET/$LAST_VERSION.tar.gz 67 | qecho " Done!\n" "1" 68 | 69 | 70 | if [ "$PREVIOUS" = true ] ; then 71 | qecho " => " "1"; qecho "Reloading Applet..." "0;32" 72 | dbus-send --session --dest=org.Cinnamon.LookingGlass --type=method_call /org/Cinnamon/LookingGlass org.Cinnamon.LookingGlass.ReloadExtension string:qredshift@quintao string:'APPLET' 73 | qecho " Done!\n" "1" 74 | else 75 | qecho " => " "1"; qecho "Opening Applets Settings..." "0;32" 76 | setsid cinnamon-settings applets &> /dev/null & 77 | qecho " Done!\n" "1" 78 | fi 79 | 80 | -------------------------------------------------------------------------------- /files/qredshift@quintao/icons/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 37 | 44 | 45 | 46 | 50 | 56 | 57 | 63 | /> 64 | 65 | 66 | 72 | 78 | 79 | 85 | 86 | 87 | 97 | 98 | 99 | 100 | 110 | 121 | 134 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /files/qredshift@quintao/icons/qredshift.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 37 | 44 | 45 | 46 | 50 | 56 | 57 | 63 | /> 64 | 65 | 66 | 72 | 78 | 79 | 85 | 86 | 87 | 97 | 98 | 99 | 100 | 110 | 121 | 134 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /files/qredshift@quintao/icons/qredshift-on-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 37 | 44 | 45 | 46 | 50 | 56 | 57 | 63 | /> 64 | 65 | 66 | 72 | 78 | 79 | 85 | 86 | 87 | 97 | 98 | 99 | 100 | 110 | 121 | 134 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /files/qredshift@quintao/icons/qredshift-off-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 37 | 44 | 45 | 46 | 50 | 56 | 57 | 63 | /> 64 | 65 | 66 | 72 | 78 | 79 | 85 | 86 | 87 | 97 | 98 | 99 | 100 | 110 | 121 | 134 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /files/qredshift@quintao/icons/qredshift-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 37 | 44 | 45 | 46 | 50 | 56 | 57 | 63 | /> 64 | 65 | 66 | 72 | 78 | 79 | 85 | 86 | 87 | 97 | 98 | 99 | 100 | 110 | 121 | 134 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /files/qredshift@quintao/lib/QSunCalc.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @see https://github.com/mourner/suncalc 3 | */ 4 | 5 | /** @exports QSunCalc.QSunCalc */ 6 | class SunCalc { 7 | constructor() { 8 | this.PI = Math.PI; 9 | this.sin = Math.sin; 10 | this.cos = Math.cos; 11 | this.tan = Math.tan; 12 | this.asin = Math.asin; 13 | this.atan = Math.atan2; 14 | this.acos = Math.acos; 15 | this.rad = this.PI / 180; 16 | this.dayMs = 1000 * 60 * 60 * 24; 17 | this.J1970 = 2440588; 18 | this.J2000 = 2451545; 19 | this.e = this.rad * 23.4397; // obliquity of the Earth 20 | this.J0 = 0.0009; 21 | 22 | this.times = [ 23 | [-0.833, 'sunrise', 'sunset'], 24 | [-0.3, 'sunriseEnd', 'sunsetStart'], 25 | [-6, 'dawn', 'dusk'], 26 | [-12, 'nauticalDawn', 'nauticalDusk'], 27 | [-18, 'nightEnd', 'night'], 28 | [6, 'goldenHourEnd', 'goldenHour'] 29 | ]; 30 | } 31 | 32 | toJulian(date) { 33 | return date.valueOf() / this.dayMs - 0.5 + this.J1970; 34 | } 35 | 36 | fromJulian(j) { 37 | return new Date((j + 0.5 - this.J1970) * this.dayMs); 38 | } 39 | 40 | toDays(date) { 41 | return this.toJulian(date) - this.J2000; 42 | } 43 | 44 | rightAscension(l, b) { 45 | return this.atan(this.sin(l) * this.cos(this.e) - this.tan(b) * this.sin(this.e), this.cos(l)); 46 | } 47 | 48 | declination(l, b) { 49 | return this.asin(this.sin(b) * this.cos(this.e) + this.cos(b) * this.sin(this.e) * this.sin(l)); 50 | } 51 | 52 | azimuth(H, phi, dec) { 53 | return this.atan(this.sin(H), this.cos(H) * this.sin(phi) - this.tan(dec) * this.cos(phi)); 54 | } 55 | 56 | altitude(H, phi, dec) { 57 | return this.asin(this.sin(phi) * this.sin(dec) + this.cos(phi) * this.cos(dec) * this.cos(H)); 58 | } 59 | 60 | siderealTime(d, lw) { 61 | return this.rad * (280.16 + 360.9856235 * d) - lw; 62 | } 63 | 64 | astroRefraction(h) { 65 | if (h < 0) h = 0; 66 | return 0.0002967 / Math.tan(h + 0.00312536 / (h + 0.08901179)); 67 | } 68 | 69 | solarMeanAnomaly(d) { 70 | return this.rad * (357.5291 + 0.98560028 * d); 71 | } 72 | 73 | eclipticLongitude(M) { 74 | const C = this.rad * (1.9148 * this.sin(M) + 0.02 * this.sin(2 * M) + 0.0003 * this.sin(3 * M)); 75 | const P = this.rad * 102.9372; 76 | return M + C + P + this.PI; 77 | } 78 | 79 | sunCoords(d) { 80 | const M = this.solarMeanAnomaly(d); 81 | const L = this.eclipticLongitude(M); 82 | return { 83 | dec: this.declination(L, 0), 84 | ra: this.rightAscension(L, 0) 85 | }; 86 | } 87 | 88 | getPosition(date, lat, lng) { 89 | const lw = this.rad * -lng; 90 | const phi = this.rad * lat; 91 | const d = this.toDays(date); 92 | const c = this.sunCoords(d); 93 | const H = this.siderealTime(d, lw) - c.ra; 94 | return { 95 | azimuth: this.azimuth(H, phi, c.dec), 96 | altitude: this.altitude(H, phi, c.dec) 97 | }; 98 | } 99 | 100 | addTime(angle, riseName, setName) { 101 | this.times.push([angle, riseName, setName]); 102 | } 103 | 104 | julianCycle(d, lw) { 105 | return Math.round(d - this.J0 - lw / (2 * this.PI)); 106 | } 107 | 108 | approxTransit(Ht, lw, n) { 109 | return this.J0 + (Ht + lw) / (2 * this.PI) + n; 110 | } 111 | 112 | solarTransitJ(ds, M, L) { 113 | return this.J2000 + ds + 0.0053 * this.sin(M) - 0.0069 * this.sin(2 * L); 114 | } 115 | 116 | hourAngle(h, phi, d) { 117 | return this.acos((this.sin(h) - this.sin(phi) * this.sin(d)) / (this.cos(phi) * this.cos(d))); 118 | } 119 | 120 | observerAngle(height) { 121 | return -2.076 * Math.sqrt(height) / 60; 122 | } 123 | 124 | getSetJ(h, lw, phi, dec, n, M, L) { 125 | const w = this.hourAngle(h, phi, dec); 126 | const a = this.approxTransit(w, lw, n); 127 | return this.solarTransitJ(a, M, L); 128 | } 129 | 130 | /** 131 | * calculates sun times for a given date 132 | * @param {Date} date 133 | * @param {number} lat latitude 134 | * @param {number} lng longitude 135 | * @param {number} height height (in meters) relative to the horizon 136 | * @return {{solarNoon:Date, nadir:Date, sunrise:Date, sunset:Date, sunriseEnd:Date, sunsetStart:Date, dawn:Date, dusk:Date, nauticalDawn:Date, nauticalDusk:Date, nightEnd:Date, night:Date, goldenHourEnd:Date, goldenHour:Date}} 137 | */ 138 | getTimes(date, lat, lng, height = 0) { 139 | const lw = this.rad * -lng; 140 | const phi = this.rad * lat; 141 | const dh = this.observerAngle(height); 142 | const d = this.toDays(date); 143 | const n = this.julianCycle(d, lw); 144 | const ds = this.approxTransit(0, lw, n); 145 | const M = this.solarMeanAnomaly(ds); 146 | const L = this.eclipticLongitude(M); 147 | const dec = this.declination(L, 0); 148 | const Jnoon = this.solarTransitJ(ds, M, L); 149 | 150 | const result = { 151 | solarNoon: this.fromJulian(Jnoon), 152 | nadir: this.fromJulian(Jnoon - 0.5) 153 | }; 154 | 155 | for (let i = 0, len = this.times.length; i < len; i += 1) { 156 | const time = this.times[i]; 157 | const h0 = (time[0] + dh) * this.rad; 158 | 159 | const Jset = this.getSetJ(h0, lw, phi, dec, n, M, L); 160 | const Jrise = Jnoon - (Jset - Jnoon); 161 | 162 | result[time[1]] = this.fromJulian(Jrise); 163 | result[time[2]] = this.fromJulian(Jset); 164 | } 165 | 166 | return result; 167 | } 168 | 169 | moonCoords(d) { 170 | const L = this.rad * (218.316 + 13.176396 * d); 171 | const M = this.rad * (134.963 + 13.064993 * d); 172 | const F = this.rad * (93.272 + 13.229350 * d); 173 | const l = L + this.rad * 6.289 * this.sin(M); 174 | const b = this.rad * 5.128 * this.sin(F); 175 | const dt = 385001 - 20905 * this.cos(M); 176 | 177 | return { 178 | ra: this.rightAscension(l, b), 179 | dec: this.declination(l, b), 180 | dist: dt 181 | }; 182 | } 183 | 184 | getMoonPosition(date, lat, lng) { 185 | const lw = this.rad * -lng; 186 | const phi = this.rad * lat; 187 | const d = this.toDays(date); 188 | const c = this.moonCoords(d); 189 | const H = this.siderealTime(d, lw) - c.ra; 190 | let h = this.altitude(H, phi, c.dec); 191 | h = h + this.astroRefraction(h); 192 | const pa = this.atan(this.sin(H), this.tan(phi) * this.cos(c.dec) - this.sin(c.dec) * this.cos(H)); 193 | 194 | return { 195 | azimuth: this.azimuth(H, phi, c.dec), 196 | altitude: h, 197 | distance: c.dist, 198 | parallacticAngle: pa 199 | }; 200 | } 201 | 202 | getMoonIllumination(date) { 203 | const d = this.toDays(date || new Date()); 204 | const s = this.sunCoords(d); 205 | const m = this.moonCoords(d); 206 | const sdist = 149598000; 207 | 208 | const phi = this.acos(this.sin(s.dec) * this.sin(m.dec) + this.cos(s.dec) * this.cos(m.dec) * this.cos(s.ra - m.ra)); 209 | const inc = this.atan(sdist * this.sin(phi), m.dist - sdist * this.cos(phi)); 210 | const angle = this.atan(this.cos(s.dec) * this.sin(s.ra - m.ra), this.sin(s.dec) * this.cos(m.dec) - this.cos(s.dec) * this.sin(m.dec) * this.cos(s.ra - m.ra)); 211 | 212 | return { 213 | fraction: (1 + this.cos(inc)) / 2, 214 | phase: 0.5 + 0.5 * inc * (angle < 0 ? -1 : 1) / this.PI, 215 | angle: angle 216 | }; 217 | } 218 | 219 | hoursLater(date, h) { 220 | return new Date(date.valueOf() + h * this.dayMs / 24); 221 | } 222 | } -------------------------------------------------------------------------------- /files/qredshift@quintao/po/ro.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-04 13:58-0300\n" 11 | "PO-Revision-Date: 2020-05-10 22:20+0200\n" 12 | "Language-Team: \n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "X-Generator: Poedit 2.0.6\n" 17 | "Last-Translator: \n" 18 | "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" 19 | "2:1));\n" 20 | "Language: ro\n" 21 | 22 | #: applet.js:115 23 | msgid "REDSHIFT NOT INSTALLED!" 24 | msgstr "REDSHIFT NU ESTE INSTALAT!" 25 | 26 | #: applet.js:116 27 | msgid "Requires Redshift: sudo apt-get install redshift" 28 | msgstr "Necesită Redshift: sudo apt-get install redshift" 29 | 30 | #: applet.js:119 applet.js:159 31 | msgid "Reload Applet" 32 | msgstr "Reîncarcă applet" 33 | 34 | #: applet.js:164 35 | msgid "Recompile Translations" 36 | msgstr "Recompilează traduceri" 37 | 38 | #. settings-schema.json->enabled->description 39 | #: applet.js:356 40 | msgid "Enabled" 41 | msgstr "Activat" 42 | 43 | #: applet.js:364 applet.js:410 44 | msgid "Temp:" 45 | msgstr "Temp:" 46 | 47 | #: applet.js:375 applet.js:421 48 | msgid "Bright:" 49 | msgstr "Luminos:" 50 | 51 | #: applet.js:387 applet.js:635 52 | msgid "Gamma:" 53 | msgstr "Gamma:" 54 | 55 | #. settings-schema.json->enabledNight->description 56 | #: applet.js:402 57 | msgid "Night Enabled" 58 | msgstr "Activat noaptea" 59 | 60 | #. settings-schema.json->iconLabel->description 61 | #: applet.js:464 62 | msgid "Show Label" 63 | msgstr "Arată eticheta" 64 | 65 | #: applet.js:618 66 | msgid "On" 67 | msgstr "Pornit" 68 | 69 | #: applet.js:618 applet.js:620 70 | msgid "Off" 71 | msgstr "Oprit" 72 | 73 | #: applet.js:626 74 | msgid "Day Temperature" 75 | msgstr "Temperatură ziua" 76 | 77 | #: applet.js:627 78 | msgid "Day Brightness" 79 | msgstr "Luminozitate ziua" 80 | 81 | #: applet.js:629 82 | msgid "Night Temperature" 83 | msgstr "Temperatură noapte" 84 | 85 | #: applet.js:630 86 | msgid "Night Brightness" 87 | msgstr "Luminozitate noapte" 88 | 89 | #. settings-schema.json->labelScrollAction->options 90 | #. settings-schema.json->dayTemp->description 91 | #. settings-schema.json->nightTemp->description 92 | #: applet.js:632 93 | msgid "Temperature" 94 | msgstr "Temperatură" 95 | 96 | #. settings-schema.json->dayBrightness->description 97 | #. settings-schema.json->nightBrightness->description 98 | #: applet.js:633 99 | msgid "Brightness" 100 | msgstr "Luminozitate" 101 | 102 | #. metadata.json->name 103 | msgid "QRedshift" 104 | msgstr "QRedshift" 105 | 106 | #. metadata.json->description 107 | msgid "" 108 | "Sets brightness, gamma levels and color temperature with Redshift.\n" 109 | "This applet conflicts with redshift-gtk, make sure you remove it." 110 | msgstr "" 111 | "Setează luminozitate, nivel gamma și temperatura culorii cu Redshift.\n" 112 | "Acest applet nu funcționează cu redshift-gtk, asigură-te că îl înlături." 113 | 114 | #. settings-schema.json->panel-options->title 115 | msgid "Settings" 116 | msgstr "Setări." 117 | 118 | #. settings-schema.json->panel-location->title 119 | msgid "Location" 120 | msgstr "Locație" 121 | 122 | #. settings-schema.json->panel-shortcuts->title 123 | msgid "Shortcuts" 124 | msgstr "Scurtături" 125 | 126 | #. settings-schema.json->info-section->title 127 | msgid "Tips" 128 | msgstr "Sfaturi" 129 | 130 | #. settings-schema.json->opt-section->title 131 | msgid "Options" 132 | msgstr "Opțiuni" 133 | 134 | #. settings-schema.json->day-section->title 135 | msgid "Day Settings" 136 | msgstr "Setări ziua" 137 | 138 | #. settings-schema.json->night-section->title 139 | msgid "Night Settings" 140 | msgstr "Setări noapte" 141 | 142 | #. settings-schema.json->keybind-section->title 143 | msgid "Key Bindings" 144 | msgstr "Legături taste" 145 | 146 | #. settings-schema.json->location-section->title 147 | msgid "Location Settings" 148 | msgstr "Setări locație" 149 | 150 | #. settings-schema.json->autoUpdate->description 151 | msgid "Auto Update" 152 | msgstr "Auto actualizare" 153 | 154 | #. settings-schema.json->autoUpdate->tooltip 155 | msgid "Continuously adjust color temperature" 156 | msgstr "Reglează continuu temperatura culorii" 157 | 158 | #. settings-schema.json->autoUpdateInterval->units 159 | msgid "Sec." 160 | msgstr "Sec." 161 | 162 | #. settings-schema.json->autoUpdateInterval->description 163 | msgid "Update interval" 164 | msgstr "Actualizare interval" 165 | 166 | #. settings-schema.json->adjustmentMethod->description 167 | msgid "Adjustment Method" 168 | msgstr "Metodă de ajustare" 169 | 170 | #. settings-schema.json->adjustmentMethod->options 171 | msgid "needload" 172 | msgstr "needload" 173 | 174 | #. settings-schema.json->adjustmentMethod->options 175 | msgid "randr" 176 | msgstr "randr" 177 | 178 | #. settings-schema.json->adjustmentMethod->options 179 | msgid "vidmode" 180 | msgstr "vidmode" 181 | 182 | #. settings-schema.json->adjustmentMethod->tooltip 183 | msgid "Method to use to set color temperature" 184 | msgstr "Metodă pentru setarea temperaturii culorii" 185 | 186 | #. settings-schema.json->labelScrollAction->description 187 | msgid "Icon Scroll Action" 188 | msgstr "Acțiune la derularea pe pictogramă." 189 | 190 | #. settings-schema.json->labelScrollAction->options 191 | msgid "Disabled" 192 | msgstr "Dezactivat" 193 | 194 | #. settings-schema.json->labelScrollAction->options 195 | #. settings-schema.json->keyToggle->description 196 | msgid "On/Off" 197 | msgstr "Pornit/Oprit" 198 | 199 | #. settings-schema.json->labelScrollAction->options 200 | msgid "Bright" 201 | msgstr "Luminos" 202 | 203 | #. settings-schema.json->labelScrollAction->options 204 | #. settings-schema.json->gammaMix->description 205 | msgid "Gamma" 206 | msgstr "Gamma" 207 | 208 | #. settings-schema.json->labelScrollAction->tooltip 209 | msgid "Action when scroll on applet icon." 210 | msgstr "Acțiune la derularea pe pictograma appletului." 211 | 212 | #. settings-schema.json->dayTemp->units 213 | #. settings-schema.json->nightTemp->units 214 | msgid "K" 215 | msgstr "K" 216 | 217 | #. settings-schema.json->dayBrightness->units 218 | #. settings-schema.json->nightBrightness->units 219 | msgid "%" 220 | msgstr "%" 221 | 222 | #. settings-schema.json->locationRemote->description 223 | msgid "Remote Location" 224 | msgstr "Locație la distanță" 225 | 226 | #. settings-schema.json->locationRemote->tooltip 227 | #. settings-schema.json->locationUpdate->tooltip 228 | msgid "Native geoclue on redshift can make the experience slow." 229 | msgstr "Geoclue nativ pentru redshift poate încetini experiența." 230 | 231 | #. settings-schema.json->locationUpdate->description 232 | msgid "Update Location" 233 | msgstr "Actualizare locație" 234 | 235 | #. settings-schema.json->locationLatitude->description 236 | msgid "Latitude" 237 | msgstr "Latitudine" 238 | 239 | #. settings-schema.json->locationLongitude->description 240 | msgid "Longitude" 241 | msgstr "Longitudine" 242 | 243 | #. settings-schema.json->aboutLocation->description 244 | msgid "" 245 | "Native geoclue on redshift can make the experience slow.\n" 246 | "Using: https://geolocation-db.com/" 247 | msgstr "" 248 | "Geoclue nativ pentru redshift poate încetini experiența.\n" 249 | "Se folosește: https://geolocation-db.com/" 250 | 251 | #. settings-schema.json->textTips->description 252 | msgid "* Right-click the sliders to reset the default (neutral) value." 253 | msgstr "* Click-dreapta pe slider pentru a reseta valoarea implicită (neutră)." 254 | 255 | #. settings-schema.json->textInfo->description 256 | msgid "" 257 | "If you like and use this applet take the time to visit it's page on Cinnamon " 258 | "Spices and give it a star. You only need a github account to do this." 259 | msgstr "" 260 | "Dacă îți place acest applet, te rog vizitează pagina sa pe Cinnamon Spices " 261 | "și dă-i o stea. Ai nevoie doar de un cont de github pentru a face asta." 262 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/bg.po: -------------------------------------------------------------------------------- 1 | # Bulgarian translation for qredshift@quintao. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Peyu Yovev , 2020. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-04 13:58-0300\n" 11 | "PO-Revision-Date: 2020-04-18 10:45+0300\n" 12 | "Language-Team: \n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "X-Generator: Poedit 2.2.1\n" 17 | "Last-Translator: Peyu Yovev \n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "Language: bg\n" 20 | 21 | #: applet.js 115 22 | msgid "REDSHIFT NOT INSTALLED!" 23 | msgstr "REDSHIFT НЕ Е ИНСТАЛИРАН!" 24 | 25 | #: applet.js 116 26 | msgid "Requires Redshift: sudo apt-get install redshift" 27 | msgstr "Изисква се Redshift: sudo apt-get install redshift" 28 | 29 | #: applet.js:119 applet.js:159 30 | msgid "Reload Applet" 31 | msgstr "Презареди аплета" 32 | 33 | #: applet.js 164 34 | msgid "Recompile Translations" 35 | msgstr "Прекомпилирай преводите" 36 | 37 | #. settings-schema.json->enabled->description 38 | #: applet.js 356 39 | msgid "Enabled" 40 | msgstr "Включен" 41 | 42 | #: applet.js:364 applet.js:410 43 | msgid "Temp:" 44 | msgstr "Темп:" 45 | 46 | #: applet.js:375 applet.js:421 47 | msgid "Bright:" 48 | msgstr "Яркост:" 49 | 50 | #: applet.js:387 applet.js:635 51 | msgid "Gamma:" 52 | msgstr "Гама:" 53 | 54 | #. settings-schema.json->enabledNight->description 55 | #: applet.js:402 56 | msgid "Night Enabled" 57 | msgstr "Нощен режим" 58 | 59 | #. settings-schema.json->iconLabel->description 60 | #: applet.js:464 61 | msgid "Show Label" 62 | msgstr "Покажи етикет" 63 | 64 | #: applet.js 618 65 | msgid "On" 66 | msgstr "Вкл." 67 | 68 | #: applet.js:618 applet.js 620 69 | msgid "Off" 70 | msgstr "Изкл." 71 | 72 | #: applet.js 626 73 | msgid "Day Temperature" 74 | msgstr "Дневна температура" 75 | 76 | #: applet.js 627 77 | msgid "Day Brightness" 78 | msgstr "Дневна яркост" 79 | 80 | #: applet.js 629 81 | msgid "Night Temperature" 82 | msgstr "Нощна температура" 83 | 84 | #: applet.js 630 85 | msgid "Night Brightness" 86 | msgstr "Нощна яркост" 87 | 88 | #. settings-schema.json->labelScrollAction->options 89 | #. settings-schema.json->dayTemp->description 90 | #. settings-schema.json->nightTemp->description 91 | #: applet.js 632 92 | msgid "Temperature" 93 | msgstr "Температура" 94 | 95 | #. settings-schema.json->dayBrightness->description 96 | #. settings-schema.json->nightBrightness->description 97 | #: applet.js:633 98 | msgid "Brightness" 99 | msgstr "Яркост" 100 | 101 | #. metadata.json->name 102 | msgid "QRedshift" 103 | msgstr "QRedshift" 104 | 105 | #. metadata.json->description 106 | msgid "" 107 | "Sets brightness, gamma levels and color temperature with Redshift.\n" 108 | "This applet conflicts with redshift-gtk, make sure you remove it." 109 | msgstr "" 110 | "Задаване нива на яркост, гама и цветова температура с Redshift.\n" 111 | "Този аплет е в конфликт с redshift-gtk, убедете се че сте го махнали." 112 | 113 | #. settings-schema.json->panel-options->title 114 | msgid "Settings" 115 | msgstr "Настройки" 116 | 117 | #. settings-schema.json->panel-location->title 118 | msgid "Location" 119 | msgstr "Локация" 120 | 121 | #. settings-schema.json->panel-shortcuts->title 122 | msgid "Shortcuts" 123 | msgstr "Бързи клавиши" 124 | 125 | #. settings-schema.json->info-section->title 126 | msgid "Tips" 127 | msgstr "Съвети" 128 | 129 | #. settings-schema.json->opt-section->title 130 | msgid "Options" 131 | msgstr "Опции" 132 | 133 | #. settings-schema.json->day-section->title 134 | msgid "Day Settings" 135 | msgstr "Дневни настройки" 136 | 137 | #. settings-schema.json->night-section->title 138 | msgid "Night Settings" 139 | msgstr "Нощни настройки" 140 | 141 | #. settings-schema.json->keybind-section->title 142 | msgid "Key Bindings" 143 | msgstr "Клавишни комбинаци" 144 | 145 | #. settings-schema.json->location-section->title 146 | msgid "Location Settings" 147 | msgstr "Настройки за локация" 148 | 149 | #. settings-schema.json->autoUpdate->description 150 | msgid "Auto Update" 151 | msgstr "Автоматично обновяване" 152 | 153 | #. settings-schema.json->autoUpdate->tooltip 154 | msgid "Continuously adjust color temperature" 155 | msgstr "Постоянно пренагласяне на цветовата температура" 156 | 157 | #. settings-schema.json->autoUpdateInterval->units 158 | msgid "Sec." 159 | msgstr "Сек." 160 | 161 | #. settings-schema.json->autoUpdateInterval->description 162 | msgid "Update interval" 163 | msgstr "Интервал на обновяване" 164 | 165 | #. settings-schema.json->adjustmentMethod->description 166 | msgid "Adjustment Method" 167 | msgstr "Метод на пренагласяне" 168 | 169 | #. settings-schema.json->adjustmentMethod->options 170 | msgid "needload" 171 | msgstr "needload" 172 | 173 | #. settings-schema.json->adjustmentMethod->options 174 | msgid "randr" 175 | msgstr "randr" 176 | 177 | #. settings-schema.json->adjustmentMethod->options 178 | msgid "vidmode" 179 | msgstr "vidmode" 180 | 181 | #. settings-schema.json->adjustmentMethod->tooltip 182 | msgid "Method to use to set color temperature" 183 | msgstr "Метод на използване за настройка на цветовата температура" 184 | 185 | #. settings-schema.json->labelScrollAction->description 186 | msgid "Icon Scroll Action" 187 | msgstr "Действие при скрол върху иконката" 188 | 189 | #. settings-schema.json->labelScrollAction->options 190 | msgid "Disabled" 191 | msgstr "Изключено" 192 | 193 | #. settings-schema.json->labelScrollAction->options 194 | #. settings-schema.json->keyToggle->description 195 | msgid "On/Off" 196 | msgstr "Вкл/Изкл" 197 | 198 | #. settings-schema.json->labelScrollAction->options 199 | msgid "Bright" 200 | msgstr "Яркост" 201 | 202 | #. settings-schema.json->labelScrollAction->options 203 | #. settings-schema.json->gammaMix->description 204 | msgid "Gamma" 205 | msgstr "Гама" 206 | 207 | #. settings-schema.json->labelScrollAction->tooltip 208 | msgid "Action when scroll on applet icon." 209 | msgstr "Действие, когато скролнете върху иконката." 210 | 211 | #. settings-schema.json->dayTemp->units 212 | #. settings-schema.json->nightTemp->units 213 | msgid "K" 214 | msgstr "K" 215 | 216 | #. settings-schema.json->dayBrightness->units 217 | #. settings-schema.json->nightBrightness->units 218 | msgid "%" 219 | msgstr "%" 220 | 221 | #. settings-schema.json->locationRemote->description 222 | msgid "Remote Location" 223 | msgstr "Далечна локация" 224 | 225 | #. settings-schema.json->locationRemote->tooltip 226 | #. settings-schema.json->locationUpdate->tooltip 227 | msgid "Native geoclue on redshift can make the experience slow." 228 | msgstr "Вградената геолокация на redshift може да доведе до забавяния." 229 | 230 | #. settings-schema.json->locationUpdate->description 231 | msgid "Update Location" 232 | msgstr "Обнови локацията" 233 | 234 | #. settings-schema.json->locationLatitude->description 235 | msgid "Latitude" 236 | msgstr "Ширина" 237 | 238 | #. settings-schema.json->locationLongitude->description 239 | msgid "Longitude" 240 | msgstr "Дължина" 241 | 242 | #. settings-schema.json->aboutLocation->description 243 | msgid "" 244 | "Native geoclue on redshift can make the experience slow.\n" 245 | "Using: https://geolocation-db.com/" 246 | msgstr "" 247 | "Вградената геолокация на redshift може да доведе до забавяния.\n" 248 | "Използване на: https://geolocation-db.com/" 249 | 250 | #. settings-schema.json->textTips->description 251 | msgid "* Right-click the sliders to reset the default (neutral) value." 252 | msgstr "" 253 | "*Десен клик на плъзгачите връща стойността по подразбиране (неутралната)." 254 | 255 | #. settings-schema.json->textInfo->description 256 | msgid "" 257 | "If you like and use this applet take the time to visit it's page on Cinnamon " 258 | "Spices and give it a star. You only need a github account to do this." 259 | msgstr "" 260 | "Ако сте харесали този аплет, намерете време да посетите страницата с аплети " 261 | "на Cinnamon и да му сложите звезда. За да сторите това, ще имате нужда само " 262 | "от github акаунт." 263 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/tr.po: -------------------------------------------------------------------------------- 1 | # Turkish translation for qredshift@quintao. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Gökhan Gökkaya , 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-04 13:58-0300\n" 11 | "PO-Revision-Date: 2020-01-07 03:25+0300\n" 12 | "Last-Translator: Gökhan Gökkaya \n" 13 | "Language-Team: \n" 14 | "Language: tr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Generator: Poedit 2.2\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: applet.js:115 22 | msgid "REDSHIFT NOT INSTALLED!" 23 | msgstr "REDSHIFT KURULU DEĞİL!" 24 | 25 | #: applet.js:116 26 | msgid "Requires Redshift: sudo apt-get install redshift" 27 | msgstr "Redshift gerekiyor: sudo apt-get install redshift" 28 | 29 | #: applet.js:119 applet.js:159 30 | msgid "Reload Applet" 31 | msgstr "Uygulamacığı Yeniden Yükle" 32 | 33 | #: applet.js:164 34 | msgid "Recompile Translations" 35 | msgstr "Çevirileri Yeniden Derle" 36 | 37 | #. settings-schema.json->enabled->description 38 | #: applet.js:356 39 | msgid "Enabled" 40 | msgstr "Etkin" 41 | 42 | #: applet.js:364 applet.js:410 43 | msgid "Temp:" 44 | msgstr "Sıcaklık:" 45 | 46 | #: applet.js:375 applet.js:421 47 | msgid "Bright:" 48 | msgstr "Parlaklık:" 49 | 50 | #: applet.js:387 applet.js:635 51 | msgid "Gamma:" 52 | msgstr "Gama:" 53 | 54 | #. settings-schema.json->enabledNight->description 55 | #: applet.js:402 56 | msgid "Night Enabled" 57 | msgstr "Gece Kipi Etkin" 58 | 59 | #. settings-schema.json->iconLabel->description 60 | #: applet.js:464 61 | msgid "Show Label" 62 | msgstr "Etiket Göster" 63 | 64 | #: applet.js:618 65 | msgid "On" 66 | msgstr "Açık" 67 | 68 | #: applet.js:618 applet.js:620 69 | msgid "Off" 70 | msgstr "Kapalı" 71 | 72 | #: applet.js:626 73 | msgid "Day Temperature" 74 | msgstr "Gün Sıcaklığı" 75 | 76 | #: applet.js:627 77 | msgid "Day Brightness" 78 | msgstr "Gün Parlaklığı" 79 | 80 | #: applet.js:629 81 | msgid "Night Temperature" 82 | msgstr "Gece Sıcaklığı" 83 | 84 | #: applet.js:630 85 | msgid "Night Brightness" 86 | msgstr "Gece Parlaklığı" 87 | 88 | #. settings-schema.json->labelScrollAction->options 89 | #. settings-schema.json->dayTemp->description 90 | #. settings-schema.json->nightTemp->description 91 | #: applet.js:632 92 | msgid "Temperature" 93 | msgstr "Sıcaklık" 94 | 95 | #. settings-schema.json->dayBrightness->description 96 | #. settings-schema.json->nightBrightness->description 97 | #: applet.js:633 98 | msgid "Brightness" 99 | msgstr "Parlaklık" 100 | 101 | #. metadata.json->name 102 | msgid "QRedshift" 103 | msgstr "QRedshift" 104 | 105 | #. metadata.json->description 106 | msgid "" 107 | "Sets brightness, gamma levels and color temperature with Redshift.\n" 108 | "This applet conflicts with redshift-gtk, make sure you remove it." 109 | msgstr "" 110 | "Redshift ile parlaklık, gama seviyesi ve renk sıcaklığını ayarlar.\n" 111 | "This applet conflicts with redshift-gtk, make sure you remove it." 112 | 113 | #. settings-schema.json->panel-options->title 114 | msgid "Settings" 115 | msgstr "Ayarlar" 116 | 117 | #. settings-schema.json->panel-location->title 118 | msgid "Location" 119 | msgstr "Konum" 120 | 121 | #. settings-schema.json->panel-shortcuts->title 122 | msgid "Shortcuts" 123 | msgstr "Kısayollar" 124 | 125 | #. settings-schema.json->info-section->title 126 | msgid "Tips" 127 | msgstr "İpuçları" 128 | 129 | #. settings-schema.json->opt-section->title 130 | msgid "Options" 131 | msgstr "Seçenekler" 132 | 133 | #. settings-schema.json->day-section->title 134 | msgid "Day Settings" 135 | msgstr "Gün Ayarları" 136 | 137 | #. settings-schema.json->night-section->title 138 | msgid "Night Settings" 139 | msgstr "Gece Ayarları" 140 | 141 | #. settings-schema.json->keybind-section->title 142 | msgid "Key Bindings" 143 | msgstr "Tuş Atamaları" 144 | 145 | #. settings-schema.json->location-section->title 146 | msgid "Location Settings" 147 | msgstr "Konum Ayarları" 148 | 149 | #. settings-schema.json->autoUpdate->description 150 | msgid "Auto Update" 151 | msgstr "Otomatik Güncelle" 152 | 153 | #. settings-schema.json->autoUpdate->tooltip 154 | msgid "Continuously adjust color temperature" 155 | msgstr "Renk sıcaklığını sürekli olarak ayarla" 156 | 157 | #. settings-schema.json->autoUpdateInterval->units 158 | msgid "Sec." 159 | msgstr "San." 160 | 161 | #. settings-schema.json->autoUpdateInterval->description 162 | msgid "Update interval" 163 | msgstr "Güncelleme aralığı" 164 | 165 | #. settings-schema.json->adjustmentMethod->description 166 | msgid "Adjustment Method" 167 | msgstr "Ayarlama Yöntemi" 168 | 169 | #. settings-schema.json->adjustmentMethod->options 170 | msgid "needload" 171 | msgstr "needload" 172 | 173 | #. settings-schema.json->adjustmentMethod->options 174 | msgid "randr" 175 | msgstr "randr" 176 | 177 | #. settings-schema.json->adjustmentMethod->options 178 | msgid "vidmode" 179 | msgstr "vidmode" 180 | 181 | #. settings-schema.json->adjustmentMethod->tooltip 182 | msgid "Method to use to set color temperature" 183 | msgstr "Renk sıcaklığını ayarlamak için kullanılacak yöntem" 184 | 185 | #. settings-schema.json->labelScrollAction->description 186 | msgid "Icon Scroll Action" 187 | msgstr "Simge Kaydırma Eylemi" 188 | 189 | #. settings-schema.json->labelScrollAction->options 190 | msgid "Disabled" 191 | msgstr "Pasif" 192 | 193 | #. settings-schema.json->labelScrollAction->options 194 | #. settings-schema.json->keyToggle->description 195 | msgid "On/Off" 196 | msgstr "Açık/Kapalı" 197 | 198 | #. settings-schema.json->labelScrollAction->options 199 | msgid "Bright" 200 | msgstr "Parlaklık" 201 | 202 | #. settings-schema.json->labelScrollAction->options 203 | #. settings-schema.json->gammaMix->description 204 | msgid "Gamma" 205 | msgstr "Gama" 206 | 207 | #. settings-schema.json->labelScrollAction->tooltip 208 | msgid "Action when scroll on applet icon." 209 | msgstr "Uygulamacık simgesi üstünde kaydırma eylemi." 210 | 211 | #. settings-schema.json->dayTemp->units 212 | #. settings-schema.json->nightTemp->units 213 | msgid "K" 214 | msgstr "K" 215 | 216 | #. settings-schema.json->dayBrightness->units 217 | #. settings-schema.json->nightBrightness->units 218 | msgid "%" 219 | msgstr "%" 220 | 221 | #. settings-schema.json->locationRemote->description 222 | msgid "Remote Location" 223 | msgstr "Uzak Konum" 224 | 225 | #. settings-schema.json->locationRemote->tooltip 226 | #. settings-schema.json->locationUpdate->tooltip 227 | msgid "Native geoclue on redshift can make the experience slow." 228 | msgstr "Doğal geoclue kullanımı Redshift deneyimini yavaşlatabilir." 229 | 230 | #. settings-schema.json->locationUpdate->description 231 | msgid "Update Location" 232 | msgstr "Konumu Güncelle" 233 | 234 | #. settings-schema.json->locationLatitude->description 235 | msgid "Latitude" 236 | msgstr "Enlem" 237 | 238 | #. settings-schema.json->locationLongitude->description 239 | msgid "Longitude" 240 | msgstr "Boylam" 241 | 242 | #. settings-schema.json->aboutLocation->description 243 | msgid "" 244 | "Native geoclue on redshift can make the experience slow.\n" 245 | "Using: https://geolocation-db.com/" 246 | msgstr "" 247 | "Doğal geoclue kullanımı Redshift deneyimini yavaşlatabilir.\n" 248 | "Kullanım: https://geolocation-db.com/" 249 | 250 | #. settings-schema.json->textTips->description 251 | msgid "* Right-click the sliders to reset the default (neutral) value." 252 | msgstr "" 253 | "* Varsayılan (nötr) değere sıfırlamak için kaydırma çubuklarına sağ tıklayın." 254 | 255 | #. settings-schema.json->textInfo->description 256 | msgid "" 257 | "If you like and use this applet take the time to visit it's page on Cinnamon " 258 | "Spices and give it a star. You only need a github account to do this." 259 | msgstr "" 260 | "Bu uygulamacığı beğendiyseniz ve kullanıyorsanız, Cinnamon Eklentileri " 261 | "sayfasını ziyaret edip bir yıldız verebilirsiniz. Bunu yapmak için sadece " 262 | "bir github hesabına ihtiyacınız var." 263 | 264 | #~ msgid "Temperature:" 265 | #~ msgstr "Sıcaklık:" 266 | 267 | #~ msgid "Brightness:" 268 | #~ msgstr "Parlaklık:" 269 | 270 | #~ msgid "Sec" 271 | #~ msgstr "San" 272 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/sv.po: -------------------------------------------------------------------------------- 1 | # Swedish translation for qredshift@quintao. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Åke Engelbrektson , 2019, 2020. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: qredshift@quintao\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-04 13:58-0300\n" 11 | "PO-Revision-Date: 2020-01-05 13:10+0100\n" 12 | "Last-Translator: Åke Engelbrektson \n" 13 | "Language-Team: Svenska Språkfiler \n" 14 | "Language: sv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Generator: Poedit 2.0.6\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: applet.js:115 22 | msgid "REDSHIFT NOT INSTALLED!" 23 | msgstr "REDSHIFT ÄR INTE INSTALLERAT!" 24 | 25 | #: applet.js:116 26 | msgid "Requires Redshift: sudo apt-get install redshift" 27 | msgstr "Kräver Redshift: sudo apt install redshift" 28 | 29 | #: applet.js:119 applet.js:159 30 | msgid "Reload Applet" 31 | msgstr "Uppdatera panelprogrammet" 32 | 33 | #: applet.js:164 34 | msgid "Recompile Translations" 35 | msgstr "Kompilera om översättningarna" 36 | 37 | #. settings-schema.json->enabled->description 38 | #: applet.js:356 39 | msgid "Enabled" 40 | msgstr "Aktiverad" 41 | 42 | #: applet.js:364 applet.js:410 43 | msgid "Temp:" 44 | msgstr "Temp:" 45 | 46 | #: applet.js:375 applet.js:421 47 | msgid "Bright:" 48 | msgstr "Ljusstyrka:" 49 | 50 | #: applet.js:387 applet.js:635 51 | msgid "Gamma:" 52 | msgstr "Gamma:" 53 | 54 | #. settings-schema.json->enabledNight->description 55 | #: applet.js:402 56 | msgid "Night Enabled" 57 | msgstr "Nattaktiv" 58 | 59 | #. settings-schema.json->iconLabel->description 60 | #: applet.js:464 61 | msgid "Show Label" 62 | msgstr "Visa etikett" 63 | 64 | #: applet.js:618 65 | msgid "On" 66 | msgstr "På" 67 | 68 | #: applet.js:618 applet.js:620 69 | msgid "Off" 70 | msgstr "Av" 71 | 72 | #: applet.js:626 73 | msgid "Day Temperature" 74 | msgstr "Temperatur dagtid" 75 | 76 | #: applet.js:627 77 | msgid "Day Brightness" 78 | msgstr "Ljusstyrka dagtid" 79 | 80 | #: applet.js:629 81 | msgid "Night Temperature" 82 | msgstr "Temperatur nattetid" 83 | 84 | #: applet.js:630 85 | msgid "Night Brightness" 86 | msgstr "Ljusstyrka nattetid" 87 | 88 | #. settings-schema.json->labelScrollAction->options 89 | #. settings-schema.json->dayTemp->description 90 | #. settings-schema.json->nightTemp->description 91 | #: applet.js:632 92 | msgid "Temperature" 93 | msgstr "Temperatur" 94 | 95 | #. settings-schema.json->dayBrightness->description 96 | #. settings-schema.json->nightBrightness->description 97 | #: applet.js:633 98 | msgid "Brightness" 99 | msgstr "Ljusstyrka" 100 | 101 | #. metadata.json->name 102 | msgid "QRedshift" 103 | msgstr "QRedshift" 104 | 105 | #. metadata.json->description 106 | msgid "" 107 | "Sets brightness, gamma levels and color temperature with Redshift.\n" 108 | "This applet conflicts with redshift-gtk, make sure you remove it." 109 | msgstr "" 110 | "Anger ljusstyrka, gammanivåer och färgtemperatur med Redshift.\n" 111 | "Detta panelprogram är inte kompatibelt med redshift-gtk. Du behöver ta bort " 112 | "det." 113 | 114 | #. settings-schema.json->panel-options->title 115 | msgid "Settings" 116 | msgstr "Inställningar" 117 | 118 | #. settings-schema.json->panel-location->title 119 | msgid "Location" 120 | msgstr "Plats" 121 | 122 | #. settings-schema.json->panel-shortcuts->title 123 | msgid "Shortcuts" 124 | msgstr "Genvägar" 125 | 126 | #. settings-schema.json->info-section->title 127 | msgid "Tips" 128 | msgstr "Tips" 129 | 130 | #. settings-schema.json->opt-section->title 131 | msgid "Options" 132 | msgstr "Alternativ" 133 | 134 | #. settings-schema.json->day-section->title 135 | msgid "Day Settings" 136 | msgstr "Daginställningar" 137 | 138 | #. settings-schema.json->night-section->title 139 | msgid "Night Settings" 140 | msgstr "Nattinställningar" 141 | 142 | #. settings-schema.json->keybind-section->title 143 | msgid "Key Bindings" 144 | msgstr "Snabbtangenter" 145 | 146 | #. settings-schema.json->location-section->title 147 | msgid "Location Settings" 148 | msgstr "Platsinställningar" 149 | 150 | #. settings-schema.json->autoUpdate->description 151 | msgid "Auto Update" 152 | msgstr "Uppdatera automatiskt" 153 | 154 | #. settings-schema.json->autoUpdate->tooltip 155 | msgid "Continuously adjust color temperature" 156 | msgstr "Justera färgtemperaturen kontinuerligt" 157 | 158 | #. settings-schema.json->autoUpdateInterval->units 159 | msgid "Sec." 160 | msgstr "Sek." 161 | 162 | #. settings-schema.json->autoUpdateInterval->description 163 | msgid "Update interval" 164 | msgstr "Uppdateringsintervall" 165 | 166 | #. settings-schema.json->adjustmentMethod->description 167 | msgid "Adjustment Method" 168 | msgstr "Justeringsmetod" 169 | 170 | #. settings-schema.json->adjustmentMethod->options 171 | msgid "needload" 172 | msgstr "needload" 173 | 174 | #. settings-schema.json->adjustmentMethod->options 175 | msgid "randr" 176 | msgstr "randr" 177 | 178 | #. settings-schema.json->adjustmentMethod->options 179 | msgid "vidmode" 180 | msgstr "vidmode" 181 | 182 | #. settings-schema.json->adjustmentMethod->tooltip 183 | msgid "Method to use to set color temperature" 184 | msgstr "Metod för att ange färgtemperatur" 185 | 186 | #. settings-schema.json->labelScrollAction->description 187 | msgid "Icon Scroll Action" 188 | msgstr "Skrolla på panelikonen" 189 | 190 | #. settings-schema.json->labelScrollAction->options 191 | msgid "Disabled" 192 | msgstr "Inaktiverad" 193 | 194 | #. settings-schema.json->labelScrollAction->options 195 | #. settings-schema.json->keyToggle->description 196 | msgid "On/Off" 197 | msgstr "På/Av" 198 | 199 | #. settings-schema.json->labelScrollAction->options 200 | msgid "Bright" 201 | msgstr "Ljusstyrka" 202 | 203 | #. settings-schema.json->labelScrollAction->options 204 | #. settings-schema.json->gammaMix->description 205 | msgid "Gamma" 206 | msgstr "Gamma" 207 | 208 | #. settings-schema.json->labelScrollAction->tooltip 209 | msgid "Action when scroll on applet icon." 210 | msgstr "Åtgärd vid skrollning på panelprogrammets ikon." 211 | 212 | #. settings-schema.json->dayTemp->units 213 | #. settings-schema.json->nightTemp->units 214 | msgid "K" 215 | msgstr "K" 216 | 217 | #. settings-schema.json->dayBrightness->units 218 | #. settings-schema.json->nightBrightness->units 219 | msgid "%" 220 | msgstr "%" 221 | 222 | #. settings-schema.json->locationRemote->description 223 | msgid "Remote Location" 224 | msgstr "Fjärrplats" 225 | 226 | #. settings-schema.json->locationRemote->tooltip 227 | #. settings-schema.json->locationUpdate->tooltip 228 | msgid "Native geoclue on redshift can make the experience slow." 229 | msgstr "Inbyggd geografisk lokalisering i Redshift, kan upplevas långsam." 230 | 231 | #. settings-schema.json->locationUpdate->description 232 | msgid "Update Location" 233 | msgstr "Uppdatera plats" 234 | 235 | #. settings-schema.json->locationLatitude->description 236 | msgid "Latitude" 237 | msgstr "Latitud" 238 | 239 | #. settings-schema.json->locationLongitude->description 240 | msgid "Longitude" 241 | msgstr "Longitud" 242 | 243 | #. settings-schema.json->aboutLocation->description 244 | msgid "" 245 | "Native geoclue on redshift can make the experience slow.\n" 246 | "Using: https://geolocation-db.com/" 247 | msgstr "" 248 | "Inbyggd geografisk lokalisering i Redshift, kan upplevas långsam.\n" 249 | "Använder: https://geolocation-db.com/" 250 | 251 | #. settings-schema.json->textTips->description 252 | msgid "* Right-click the sliders to reset the default (neutral) value." 253 | msgstr "" 254 | "* Högerklicka på skjutreglagen för att återställa standardvärden (neutrala)." 255 | 256 | #. settings-schema.json->textInfo->description 257 | msgid "" 258 | "If you like and use this applet take the time to visit it's page on Cinnamon " 259 | "Spices and give it a star. You only need a github account to do this." 260 | msgstr "" 261 | "Om du gillar det här panelprogrammet kanske du kan ta dig tid att besöka " 262 | "dess hemsida på Cinnamon Spices och ge det en stjärna. Du behöver bara ett " 263 | "GitHub-konto för att göra det." 264 | 265 | #~ msgid "Temperature:" 266 | #~ msgstr "Temperatur:" 267 | 268 | #~ msgid "Brightness:" 269 | #~ msgstr "Ljusstyrka:" 270 | 271 | #~ msgid "Sec" 272 | #~ msgstr "Sek." 273 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/es_MX.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-04 13:58-0300\n" 11 | "PO-Revision-Date: 2021-04-15 19:56-0500\n" 12 | "Language-Team: \n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "X-Generator: Poedit 2.3\n" 17 | "Last-Translator: \n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "Language: es_MX\n" 20 | 21 | #: applet.js:115 22 | msgid "REDSHIFT NOT INSTALLED!" 23 | msgstr "¡REDHISFT NO ESTÁ INSTALADO!" 24 | 25 | #: applet.js:116 26 | msgid "Requires Redshift: sudo apt-get install redshift" 27 | msgstr "Redshift requerido: sudo apt-get install redshift" 28 | 29 | #: applet.js:119 applet.js:159 30 | msgid "Reload Applet" 31 | msgstr "Recargar Applet" 32 | 33 | #: applet.js:164 34 | msgid "Recompile Translations" 35 | msgstr "Recompilar Traducciones" 36 | 37 | #. settings-schema.json->enabled->description 38 | #: applet.js:356 39 | msgid "Enabled" 40 | msgstr "Habilitado" 41 | 42 | #: applet.js:364 applet.js:410 43 | msgid "Temp:" 44 | msgstr "Temp:" 45 | 46 | #: applet.js:375 applet.js:421 47 | msgid "Bright:" 48 | msgstr "Brillo:" 49 | 50 | #: applet.js:387 applet.js:635 51 | msgid "Gamma:" 52 | msgstr "Gamma:" 53 | 54 | #. settings-schema.json->enabledNight->description 55 | #: applet.js:402 56 | msgid "Night Enabled" 57 | msgstr "Modo Nocturno Habilitado" 58 | 59 | #. settings-schema.json->iconLabel->description 60 | #: applet.js:464 61 | msgid "Show Label" 62 | msgstr "Mostrar Etiqueta" 63 | 64 | #: applet.js:618 65 | msgid "On" 66 | msgstr "Encendido" 67 | 68 | #: applet.js:618 applet.js:620 69 | msgid "Off" 70 | msgstr "Apagado" 71 | 72 | #: applet.js:626 73 | msgid "Day Temperature" 74 | msgstr "Temperatura diurna" 75 | 76 | #: applet.js:627 77 | msgid "Day Brightness" 78 | msgstr "Brillo diurno" 79 | 80 | #: applet.js:629 81 | msgid "Night Temperature" 82 | msgstr "Temperatura nocturna" 83 | 84 | #: applet.js:630 85 | msgid "Night Brightness" 86 | msgstr "Brillo nocturno" 87 | 88 | #. settings-schema.json->labelScrollAction->options 89 | #. settings-schema.json->dayTemp->description 90 | #. settings-schema.json->nightTemp->description 91 | #: applet.js:632 92 | msgid "Temperature" 93 | msgstr "Temperatura" 94 | 95 | #. settings-schema.json->dayBrightness->description 96 | #. settings-schema.json->nightBrightness->description 97 | #: applet.js:633 98 | msgid "Brightness" 99 | msgstr "Brillo" 100 | 101 | #. metadata.json->name 102 | msgid "QRedshift" 103 | msgstr "QRedshift" 104 | 105 | #. metadata.json->description 106 | msgid "" 107 | "Sets brightness, gamma levels and color temperature with Redshift. This " 108 | "applet conflicts with redshift-gtk, make sure you remove it." 109 | msgstr "" 110 | "Establece el brillo, nivel gama y temperatura de color con Redhsift. Este " 111 | "applet es incompatible con redshift-gtk, asegúrese de removerlo." 112 | 113 | #. settings-schema.json->panel-options->title 114 | msgid "Settings" 115 | msgstr "Configuración" 116 | 117 | #. settings-schema.json->panel-location->title 118 | msgid "Location" 119 | msgstr "Locación" 120 | 121 | #. settings-schema.json->panel-shortcuts->title 122 | msgid "Shortcuts" 123 | msgstr "Atajos" 124 | 125 | #. settings-schema.json->info-section->title 126 | msgid "Tips" 127 | msgstr "Consejos" 128 | 129 | #. settings-schema.json->opt-section->title 130 | msgid "Options" 131 | msgstr "Opciones" 132 | 133 | #. settings-schema.json->day-section->title 134 | msgid "Day Settings" 135 | msgstr "Configuración diurna" 136 | 137 | #. settings-schema.json->night-section->title 138 | msgid "Night Settings" 139 | msgstr "Configuración nocturna" 140 | 141 | #. settings-schema.json->keybind-section->title 142 | msgid "Key Bindings" 143 | msgstr "Atajos del teclado" 144 | 145 | #. settings-schema.json->location-section->title 146 | msgid "Location Settings" 147 | msgstr "Configuración de locación" 148 | 149 | #. settings-schema.json->autoUpdate->description 150 | msgid "Auto Update" 151 | msgstr "Autoactualizar" 152 | 153 | #. settings-schema.json->autoUpdate->tooltip 154 | msgid "Continuously adjust color temperature" 155 | msgstr "Ajustar color de temperatura continuamente" 156 | 157 | #. settings-schema.json->autoUpdateInterval->units 158 | msgid "Sec." 159 | msgstr "Seg." 160 | 161 | #. settings-schema.json->autoUpdateInterval->description 162 | msgid "Update interval" 163 | msgstr "Actualizar intervalo" 164 | 165 | #. settings-schema.json->adjustmentMethod->description 166 | msgid "Adjustment Method" 167 | msgstr "Método de Ajuste" 168 | 169 | #. settings-schema.json->adjustmentMethod->options 170 | msgid "needload" 171 | msgstr "needload" 172 | 173 | #. settings-schema.json->adjustmentMethod->options 174 | msgid "randr" 175 | msgstr "randr" 176 | 177 | #. settings-schema.json->adjustmentMethod->options 178 | msgid "vidmode" 179 | msgstr "vimode" 180 | 181 | #. settings-schema.json->adjustmentMethod->tooltip 182 | msgid "Method to use to set color temperature" 183 | msgstr "Método para establecer temperatura de color" 184 | 185 | #. settings-schema.json->labelScrollAction->description 186 | msgid "Icon Scroll Action" 187 | msgstr "Acción del icono de desplazamiento" 188 | 189 | #. settings-schema.json->labelScrollAction->options 190 | msgid "Disabled" 191 | msgstr "Deshabilidato" 192 | 193 | #. settings-schema.json->labelScrollAction->options 194 | #. settings-schema.json->keyToggle->description 195 | msgid "On/Off" 196 | msgstr "Encendido/Apagado" 197 | 198 | #. settings-schema.json->keyBrightnessUp->description 199 | msgid "Increase brightness level" 200 | msgstr "Aumentar brillo" 201 | 202 | #. settings-schema.json->keyBrightnessDown->description 203 | msgid "Decrease brightness level" 204 | msgstr "Decrementar brillo" 205 | 206 | #. settings-schema.json->keyTempUp->description 207 | msgid "Increase temperature level" 208 | msgstr "Incrementar temperatura" 209 | 210 | #. settings-schema.json->keyTempDown->description 211 | msgid "Decrease temperature level" 212 | msgstr "Decrementar temperatura" 213 | 214 | #. settings-schema.json->keyGammaUp->description 215 | msgid "Increase gamma level" 216 | msgstr "Incrementar gamma" 217 | 218 | #. settings-schema.json->keyGammaDown->description 219 | msgid "Decrease gamma level" 220 | msgstr "Decrementar gamma" 221 | 222 | #. settings-schema.json->labelScrollAction->options 223 | msgid "Bright" 224 | msgstr "Brillo" 225 | 226 | #. settings-schema.json->labelScrollAction->options 227 | #. settings-schema.json->gammaMix->description 228 | msgid "Gamma" 229 | msgstr "Gamma" 230 | 231 | #. settings-schema.json->labelScrollAction->tooltip 232 | msgid "Action when scroll on applet icon." 233 | msgstr "Acción cuando se desliza sobre el icono del applet" 234 | 235 | #. settings-schema.json->dayTemp->units 236 | #. settings-schema.json->nightTemp->units 237 | msgid "K" 238 | msgstr "K" 239 | 240 | #. settings-schema.json->dayBrightness->units 241 | #. settings-schema.json->nightBrightness->units 242 | msgid "%" 243 | msgstr "%" 244 | 245 | #. settings-schema.json->locationRemote->description 246 | msgid "Remote Location" 247 | msgstr "Locación remota" 248 | 249 | #. settings-schema.json->locationRemote->tooltip 250 | #. settings-schema.json->locationUpdate->tooltip 251 | msgid "Native geoclue on redshift can make the experience slow." 252 | msgstr "Geoclue nativo en redshift puede hacer lenta su experiencia." 253 | 254 | #. settings-schema.json->locationUpdate->description 255 | msgid "Update Location" 256 | msgstr "Actualizar locación" 257 | 258 | #. settings-schema.json->locationLatitude->description 259 | msgid "Latitude" 260 | msgstr "Latitud" 261 | 262 | #. settings-schema.json->locationLongitude->description 263 | msgid "Longitude" 264 | msgstr "Longitud" 265 | 266 | #. settings-schema.json->aboutLocation->description 267 | msgid "" 268 | "Native geoclue on redshift can make the experience slow.\n" 269 | "Using: https://geolocation-db.com/" 270 | msgstr "" 271 | "Geoclue nativo en redshift puede hacer su experiencia lenta. Usando: https://" 272 | "geolocation-db.com/" 273 | 274 | #. settings-schema.json->textTips->description 275 | msgid "* Right-click the sliders to reset the default (neutral) value." 276 | msgstr "" 277 | "* Click derecho en los desplazadores para restaurar el valor por defecto " 278 | "(neutral)." 279 | 280 | #. settings-schema.json->textInfo->description 281 | msgid "" 282 | "If you like and use this applet take the time to visit it's page on Cinnamon " 283 | "Spices and give it a star. You only need a github account to do this." 284 | msgstr "" 285 | "Si le gusta y usa este applet, tome el tiempo para visitar su página en " 286 | "Cinnamon Spices y dele una estrella. Solo necesita una cuenta de github para " 287 | "hacerlo." 288 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/pl.po: -------------------------------------------------------------------------------- 1 | # Translated into Polish for QRedshift. 2 | # Copyright (C) 2021 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR lukaszdabrowski80@gmail.com, 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-08-24 13:58-0300\n" 11 | "PO-Revision-Date: 2021-08-24 11:09+0200\n" 12 | "Last-Translator: FULL NAME lukaszdabrowski80@gmail.com\n" 13 | "Language: pl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language-Team: \n" 18 | "X-Generator: Poedit 3.0\n" 19 | 20 | #: applet.js:115 21 | msgid "REDSHIFT NOT INSTALLED!" 22 | msgstr "REDSHIFT NIE ZAINSTALOWANY!" 23 | 24 | #: applet.js:116 25 | msgid "Requires Redshift: sudo apt-get install redshift" 26 | msgstr "Wymaga Redshift: sudo apt-get install redshift" 27 | 28 | #: applet.js:119 applet.js:159 29 | msgid "Reload Applet" 30 | msgstr "Przeładuj aplet" 31 | 32 | #: applet.js:164 33 | msgid "Recompile Translations" 34 | msgstr "Rekompiluj tłumaczenia" 35 | 36 | #. settings-schema.json->enabled->description 37 | #: applet.js:356 38 | msgid "Enabled" 39 | msgstr "Włączone" 40 | 41 | #: applet.js:364 applet.js:410 42 | msgid "Temp:" 43 | msgstr "Temp:" 44 | 45 | #: applet.js:375 applet.js:421 46 | msgid "Bright:" 47 | msgstr "Jasność:" 48 | 49 | #: applet.js:387 applet.js:635 50 | msgid "Gamma:" 51 | msgstr "Gamma:" 52 | 53 | #. settings-schema.json->enabledNight->description 54 | #: applet.js:402 55 | msgid "Night Enabled" 56 | msgstr "Tryb nocny" 57 | 58 | #. settings-schema.json->iconLabel->description 59 | #: applet.js:464 60 | msgid "Show Label" 61 | msgstr "Pokaż etykietę" 62 | 63 | #: applet.js:618 64 | msgid "On" 65 | msgstr "Włączone" 66 | 67 | #: applet.js:618 applet.js:620 68 | msgid "Off" 69 | msgstr "Wyłączone" 70 | 71 | #: applet.js:626 72 | msgid "Day Temperature" 73 | msgstr "Temperatura w dzień" 74 | 75 | #: applet.js:627 76 | msgid "Day Brightness" 77 | msgstr "Jasność w dzień" 78 | 79 | #: applet.js:629 80 | msgid "Night Temperature" 81 | msgstr "Temperatura w nocy" 82 | 83 | #: applet.js:630 84 | msgid "Night Brightness" 85 | msgstr "Jasność w nocy" 86 | 87 | #. settings-schema.json->labelScrollAction->options 88 | #. settings-schema.json->dayTemp->description 89 | #. settings-schema.json->nightTemp->description 90 | #: applet.js:632 91 | msgid "Temperature" 92 | msgstr "Temperatura" 93 | 94 | #. settings-schema.json->dayBrightness->description 95 | #. settings-schema.json->nightBrightness->description 96 | #: applet.js:633 97 | msgid "Brightness" 98 | msgstr "Jasność" 99 | 100 | #. metadata.json->name 101 | msgid "QRedshift" 102 | msgstr "QRedshift" 103 | 104 | #. metadata.json->description 105 | msgid "" 106 | "Sets brightness, gamma levels and color temperature with Redshift. This applet conflicts with redshift-gtk, make " 107 | "sure you remove it." 108 | msgstr "" 109 | "Ustawia jasność, poziomy gamma i temperaturę kolorów za pomocą Redshift. Ten aplet jest w konflikcie z redshift-" 110 | "gtk, upewnij się, że go usunąłeś." 111 | 112 | #. settings-schema.json->panel-options->title 113 | msgid "Settings" 114 | msgstr "Ustawienia" 115 | 116 | #. settings-schema.json->panel-location->title 117 | msgid "Location" 118 | msgstr "Lokalizacja" 119 | 120 | #. settings-schema.json->panel-shortcuts->title 121 | msgid "Shortcuts" 122 | msgstr "Skróty" 123 | 124 | #. settings-schema.json->info-section->title 125 | msgid "Tips" 126 | msgstr "Porady" 127 | 128 | #. settings-schema.json->opt-section->title 129 | msgid "Options" 130 | msgstr "Opcje" 131 | 132 | #. settings-schema.json->day-section->title 133 | msgid "Day Settings" 134 | msgstr "Ustawienia dzienne" 135 | 136 | #. settings-schema.json->night-section->title 137 | msgid "Night Settings" 138 | msgstr "Ustawienia nocne" 139 | 140 | #. settings-schema.json->keybind-section->title 141 | msgid "Key Bindings" 142 | msgstr "Powiązania klawiszy" 143 | 144 | #. settings-schema.json->location-section->title 145 | msgid "Location Settings" 146 | msgstr "Ustawienia lokalizacji" 147 | 148 | #. settings-schema.json->autoUpdate->description 149 | msgid "Auto Update" 150 | msgstr "Automatyczna aktualizacja" 151 | 152 | #. settings-schema.json->autoUpdate->tooltip 153 | msgid "Continuously adjust color temperature" 154 | msgstr "Płynna regulacja temperatury barwowej" 155 | 156 | #. settings-schema.json->autoUpdateInterval->units 157 | msgid "Sec." 158 | msgstr "Sek." 159 | 160 | #. settings-schema.json->autoUpdateInterval->description 161 | msgid "Update interval" 162 | msgstr "Częstotliwość aktualizacji" 163 | 164 | #. settings-schema.json->adjustmentMethod->description 165 | msgid "Adjustment Method" 166 | msgstr "Metoda dostosowania" 167 | 168 | #. settings-schema.json->adjustmentMethod->options 169 | msgid "needload" 170 | msgstr "trzeba załadować" 171 | 172 | #. settings-schema.json->adjustmentMethod->options 173 | msgid "randr" 174 | msgstr "randr" 175 | 176 | #. settings-schema.json->adjustmentMethod->options 177 | msgid "vidmode" 178 | msgstr "vidmode" 179 | 180 | #. settings-schema.json->adjustmentMethod->tooltip 181 | msgid "Method to use to set color temperature" 182 | msgstr "Metoda ustawiania temperatury barwowej" 183 | 184 | #. settings-schema.json->labelScrollAction->description 185 | msgid "Icon Scroll Action" 186 | msgstr "Akcja przewijania ikony" 187 | 188 | #. settings-schema.json->labelScrollAction->options 189 | msgid "Disabled" 190 | msgstr "Wyłączone" 191 | 192 | #. settings-schema.json->labelScrollAction->options 193 | #. settings-schema.json->keyToggle->description 194 | msgid "On/Off" 195 | msgstr "Wł/Wył" 196 | 197 | #. settings-schema.json->keyBrightnessUp->description 198 | msgid "Increase brightness level" 199 | msgstr "Zwiększanie poziomu jasności" 200 | 201 | #. settings-schema.json->keyBrightnessDown->description 202 | msgid "Decrease brightness level" 203 | msgstr "Zmniejszanie poziomu jasności" 204 | 205 | #. settings-schema.json->keyTempUp->description 206 | msgid "Increase temperature level" 207 | msgstr "Zwiększenie poziomu temperatury" 208 | 209 | #. settings-schema.json->keyTempDown->description 210 | msgid "Decrease temperature level" 211 | msgstr "Obniżenie poziomu temperatury" 212 | 213 | #. settings-schema.json->keyGammaUp->description 214 | msgid "Increase gamma level" 215 | msgstr "Zwiększ poziom gamma" 216 | 217 | #. settings-schema.json->keyGammaDown->description 218 | msgid "Decrease gamma level" 219 | msgstr "Obniżenie poziomu gamma" 220 | 221 | #. settings-schema.json->labelScrollAction->options 222 | msgid "Bright" 223 | msgstr "Jasność" 224 | 225 | #. settings-schema.json->labelScrollAction->options 226 | #. settings-schema.json->gammaMix->description 227 | msgid "Gamma" 228 | msgstr "Gamma" 229 | 230 | #. settings-schema.json->labelScrollAction->tooltip 231 | msgid "Action when scroll on applet icon." 232 | msgstr "Akcja przy przewijaniu na ikonie apletu." 233 | 234 | #. settings-schema.json->dayTemp->units 235 | #. settings-schema.json->nightTemp->units 236 | msgid "K" 237 | msgstr "K" 238 | 239 | #. settings-schema.json->dayBrightness->units 240 | #. settings-schema.json->nightBrightness->units 241 | msgid "%" 242 | msgstr "%" 243 | 244 | #. settings-schema.json->locationRemote->description 245 | msgid "Remote Location" 246 | msgstr "Lokalizacja zdalna" 247 | 248 | #. settings-schema.json->locationRemote->tooltip 249 | #. settings-schema.json->locationUpdate->tooltip 250 | msgid "Native geoclue on redshift can make the experience slow." 251 | msgstr "Native geoclue na redshift może sprawić, że doświadczenie będzie powolne." 252 | 253 | #. settings-schema.json->locationUpdate->description 254 | msgid "Update Location" 255 | msgstr "Aktualizacja lokalizacji" 256 | 257 | #. settings-schema.json->locationLatitude->description 258 | msgid "Latitude" 259 | msgstr "Szerokość geograficzna" 260 | 261 | #. settings-schema.json->locationLongitude->description 262 | msgid "Longitude" 263 | msgstr "Długość geograficzna" 264 | 265 | #. settings-schema.json->aboutLocation->description 266 | msgid "" 267 | "Native geoclue on redshift can make the experience slow.\n" 268 | "Using: https://geolocation-db.com/" 269 | msgstr "" 270 | "Native geoclue na redshift może sprawić, że doświadczenie będzie powolne.\n" 271 | "Użyj: https://geolocation-db.com/" 272 | 273 | #. settings-schema.json->textTips->description 274 | msgid "* Right-click the sliders to reset the default (neutral) value." 275 | msgstr "* Kliknięcie prawym przyciskiem myszy na suwakach powoduje przywrócenie wartości domyślnej (neutralnej)." 276 | 277 | #. settings-schema.json->textInfo->description 278 | msgid "" 279 | "If you like and use this applet take the time to visit it's page on Cinnamon Spices and give it a star. You only " 280 | "need a github account to do this." 281 | msgstr "" 282 | "Jeśli lubisz i używasz tego apletu poświęć czas, aby odwiedzić jego stronę na Cinnamon Spices i daj mu gwiazdkę. " 283 | "Potrzebujesz tylko konta na githubie, aby to zrobić." 284 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/de.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-04 13:58-0300\n" 11 | "PO-Revision-Date: 2021-02-24 22:11+0100\n" 12 | "Last-Translator: \n" 13 | "Language-Team: \n" 14 | "Language: de\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Generator: Poedit 2.3\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: applet.js:115 22 | msgid "REDSHIFT NOT INSTALLED!" 23 | msgstr "REDSHIFT NICHT INSTALLIERT!" 24 | 25 | #: applet.js:116 26 | msgid "Requires Redshift: sudo apt-get install redshift" 27 | msgstr "Redshift wird benötigt: sudo apt-get install redshift" 28 | 29 | #: applet.js:119 applet.js:159 30 | msgid "Reload Applet" 31 | msgstr "Applet neuladen" 32 | 33 | #: applet.js:164 34 | msgid "Recompile Translations" 35 | msgstr "Übersetzungen neu kompilieren" 36 | 37 | #. settings-schema.json->enabled->description 38 | #: applet.js:356 39 | msgid "Enabled" 40 | msgstr "Aktiviert" 41 | 42 | #: applet.js:364 applet.js:410 43 | msgid "Temp:" 44 | msgstr "Temp:" 45 | 46 | #: applet.js:375 applet.js:421 47 | msgid "Bright:" 48 | msgstr "Helligkeit:" 49 | 50 | #: applet.js:387 applet.js:635 51 | msgid "Gamma:" 52 | msgstr "Gamma:" 53 | 54 | #. settings-schema.json->enabledNight->description 55 | #: applet.js:402 56 | msgid "Night Enabled" 57 | msgstr "Nachtmodus aktivieren" 58 | 59 | #. settings-schema.json->iconLabel->description 60 | #: applet.js:464 61 | msgid "Show Label" 62 | msgstr "Beschriftung anzeigen" 63 | 64 | #: applet.js:618 65 | msgid "On" 66 | msgstr "An" 67 | 68 | #: applet.js:618 applet.js:620 69 | msgid "Off" 70 | msgstr "Aus" 71 | 72 | #: applet.js:626 73 | msgid "Day Temperature" 74 | msgstr "Tages-Farbtemperatur" 75 | 76 | #: applet.js:627 77 | msgid "Day Brightness" 78 | msgstr "Tag-Helligkeit" 79 | 80 | #: applet.js:629 81 | msgid "Night Temperature" 82 | msgstr "Nacht-Farbtemperatur" 83 | 84 | #: applet.js:630 85 | msgid "Night Brightness" 86 | msgstr "Nacht-Helligkeit" 87 | 88 | #. settings-schema.json->labelScrollAction->options 89 | #. settings-schema.json->dayTemp->description 90 | #. settings-schema.json->nightTemp->description 91 | #: applet.js:632 92 | msgid "Temperature" 93 | msgstr "Farbtemperatur" 94 | 95 | #. settings-schema.json->dayBrightness->description 96 | #. settings-schema.json->nightBrightness->description 97 | #: applet.js:633 98 | msgid "Brightness" 99 | msgstr "Helligkeit" 100 | 101 | #. metadata.json->name 102 | msgid "QRedshift" 103 | msgstr "QRedshift" 104 | 105 | #. metadata.json->description 106 | msgid "" 107 | "Sets brightness, gamma levels and color temperature with Redshift. This " 108 | "applet conflicts with redshift-gtk, make sure you remove it." 109 | msgstr "" 110 | "Stellt Helligkeit, Gamma-Pegel und Farbtemperatur mit Redshift ein. Dieses " 111 | "Applet verursacht Konflikte mit »redshift-gtk«. Stellen Sie sicher, dass " 112 | "dieses Paket nicht installiert ist." 113 | 114 | #. settings-schema.json->panel-options->title 115 | msgid "Settings" 116 | msgstr "Einstellungen" 117 | 118 | #. settings-schema.json->panel-location->title 119 | msgid "Location" 120 | msgstr "Standort" 121 | 122 | #. settings-schema.json->panel-shortcuts->title 123 | msgid "Shortcuts" 124 | msgstr "Tastaturkürzel" 125 | 126 | #. settings-schema.json->info-section->title 127 | msgid "Tips" 128 | msgstr "Tipps" 129 | 130 | #. settings-schema.json->opt-section->title 131 | msgid "Options" 132 | msgstr "Optionen" 133 | 134 | #. settings-schema.json->day-section->title 135 | msgid "Day Settings" 136 | msgstr "Tagesmodus-Einstellungen" 137 | 138 | #. settings-schema.json->night-section->title 139 | msgid "Night Settings" 140 | msgstr "Nachtmodus-Einstellungen" 141 | 142 | #. settings-schema.json->keybind-section->title 143 | msgid "Key Bindings" 144 | msgstr "Tastenkürzel" 145 | 146 | #. settings-schema.json->location-section->title 147 | msgid "Location Settings" 148 | msgstr "Standort-Einstellungen" 149 | 150 | #. settings-schema.json->autoUpdate->description 151 | msgid "Auto Update" 152 | msgstr "Automatische Aktualisierung" 153 | 154 | #. settings-schema.json->autoUpdate->tooltip 155 | msgid "Continuously adjust color temperature" 156 | msgstr "Farbtemperatur kontinuierlich einstellen" 157 | 158 | #. settings-schema.json->autoUpdateInterval->units 159 | msgid "Sec." 160 | msgstr "Sek." 161 | 162 | #. settings-schema.json->autoUpdateInterval->description 163 | msgid "Update interval" 164 | msgstr "Aktualisierungsintervall" 165 | 166 | #. settings-schema.json->adjustmentMethod->description 167 | msgid "Adjustment Method" 168 | msgstr "Einstellmethode" 169 | 170 | #. settings-schema.json->adjustmentMethod->options 171 | msgid "needload" 172 | msgstr "needload" 173 | 174 | #. settings-schema.json->adjustmentMethod->options 175 | msgid "randr" 176 | msgstr "randr" 177 | 178 | #. settings-schema.json->adjustmentMethod->options 179 | msgid "vidmode" 180 | msgstr "vidmode" 181 | 182 | #. settings-schema.json->adjustmentMethod->tooltip 183 | msgid "Method to use to set color temperature" 184 | msgstr "Methode zur Einstellung der Farbtemperatur" 185 | 186 | #. settings-schema.json->labelScrollAction->description 187 | msgid "Icon Scroll Action" 188 | msgstr "Symbolbildlauf-Aktion" 189 | 190 | #. settings-schema.json->labelScrollAction->options 191 | msgid "Disabled" 192 | msgstr "Deaktiviert" 193 | 194 | #. settings-schema.json->labelScrollAction->options 195 | #. settings-schema.json->keyToggle->description 196 | msgid "On/Off" 197 | msgstr "An/Aus" 198 | 199 | #. settings-schema.json->keyBrightnessUp->description 200 | msgid "Increase brightness level" 201 | msgstr "Helligkeitsstufe erhöhen" 202 | 203 | #. settings-schema.json->keyBrightnessDown->description 204 | msgid "Decrease brightness level" 205 | msgstr "Helligkeitsstufe absenken" 206 | 207 | #. settings-schema.json->keyTempUp->description 208 | msgid "Increase temperature level" 209 | msgstr "Farbtemperaturstufe erhöhen" 210 | 211 | #. settings-schema.json->keyTempDown->description 212 | msgid "Decrease temperature level" 213 | msgstr "Farbtemperaturstufe absenken" 214 | 215 | #. settings-schema.json->keyGammaUp->description 216 | msgid "Increase gamma level" 217 | msgstr "Gamma-Pegel erhöhen" 218 | 219 | #. settings-schema.json->keyGammaDown->description 220 | msgid "Decrease gamma level" 221 | msgstr "Gamma-Pegel absenken" 222 | 223 | #. settings-schema.json->labelScrollAction->options 224 | msgid "Bright" 225 | msgstr "Helligkeit" 226 | 227 | #. settings-schema.json->labelScrollAction->options 228 | #. settings-schema.json->gammaMix->description 229 | msgid "Gamma" 230 | msgstr "Gammakorrektur" 231 | 232 | #. settings-schema.json->labelScrollAction->tooltip 233 | msgid "Action when scroll on applet icon." 234 | msgstr "Aktion beim Scrollen auf dem Appletsymbol." 235 | 236 | #. settings-schema.json->dayTemp->units 237 | #. settings-schema.json->nightTemp->units 238 | msgid "K" 239 | msgstr "K" 240 | 241 | #. settings-schema.json->dayBrightness->units 242 | #. settings-schema.json->nightBrightness->units 243 | msgid "%" 244 | msgstr "%" 245 | 246 | #. settings-schema.json->locationRemote->description 247 | msgid "Remote Location" 248 | msgstr "Standort aus Internet beziehen" 249 | 250 | #. settings-schema.json->locationRemote->tooltip 251 | #. settings-schema.json->locationUpdate->tooltip 252 | msgid "Native geoclue on redshift can make the experience slow." 253 | msgstr "" 254 | "Natives »geoclue« kann bei »redshift« die Benutzererfahrung verlangsamen." 255 | 256 | #. settings-schema.json->locationUpdate->description 257 | msgid "Update Location" 258 | msgstr "Standort aktualisieren" 259 | 260 | #. settings-schema.json->locationLatitude->description 261 | msgid "Latitude" 262 | msgstr "Breitengrad" 263 | 264 | #. settings-schema.json->locationLongitude->description 265 | msgid "Longitude" 266 | msgstr "Längengrad" 267 | 268 | #. settings-schema.json->aboutLocation->description 269 | msgid "" 270 | "Native geoclue on redshift can make the experience slow.\n" 271 | "Using: https://geolocation-db.com/" 272 | msgstr "" 273 | "Natives »geoclue« kann bei »redshift« die Benutzererfahrung verlangsamen.\n" 274 | "Benutze daher: https://geolocation-db.com/" 275 | 276 | #. settings-schema.json->textTips->description 277 | msgid "* Right-click the sliders to reset the default (neutral) value." 278 | msgstr "" 279 | "* Rechtsklicke den Schieberegeler um den Ursprungswert (Neutral) " 280 | "wiederherzustellen." 281 | 282 | #. settings-schema.json->textInfo->description 283 | msgid "" 284 | "If you like and use this applet take the time to visit it's page on Cinnamon " 285 | "Spices and give it a star. You only need a github account to do this." 286 | msgstr "" 287 | "Wenn Sie dieses Applet verwenden und mögen, nehmen Sie sich die Zeit die " 288 | "Cinnamon Spices-Webseite zu besuchen und dem Applet einen Stern zu geben. " 289 | "Sie benötigen dazu nur einen GitHub-Account." 290 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/zh_CN.po: -------------------------------------------------------------------------------- 1 | # Simplified Chinese translation for qredshift@quintao. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Slinet6056 , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2022-08-30 00:45-0300\n" 11 | "PO-Revision-Date: 2023-02-05 17:18+0800\n" 12 | "Last-Translator: Slinet6056 \n" 13 | "Language-Team: \n" 14 | "Language: zh_CN\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | "X-Generator: Poedit 3.2.2\n" 20 | 21 | #: applet.js:232 22 | msgid "Reload Applet" 23 | msgstr "重新加载小程序" 24 | 25 | #: applet.js:243 26 | msgid "Recompile Translations" 27 | msgstr "重新编译翻译" 28 | 29 | #: applet.js:296 30 | msgid "REDSHIFT NOT INSTALLED!" 31 | msgstr "没有安装红移!" 32 | 33 | #: applet.js:297 34 | msgid "Requires Redshift: sudo apt-get install redshift" 35 | msgstr "需要安装红移:sudo apt-get install redshift" 36 | 37 | #: applet.js:446 applet.js:467 38 | msgid "should be removed." 39 | msgstr "需要被删除。" 40 | 41 | #. settings-schema.json->enabled->description 42 | #: applet.js:629 43 | msgid "Enabled" 44 | msgstr "启用" 45 | 46 | #: applet.js:637 applet.js:682 47 | msgid "Temp:" 48 | msgstr "色温:" 49 | 50 | #: applet.js:648 applet.js:693 51 | msgid "Bright:" 52 | msgstr "亮度:" 53 | 54 | #: applet.js:659 applet.js:975 55 | msgid "Gamma:" 56 | msgstr "伽玛:" 57 | 58 | #. settings-schema.json->enabledNight->description 59 | #: applet.js:674 60 | msgid "Night Enabled" 61 | msgstr "启用夜间模式" 62 | 63 | #. settings-schema.json->iconLabel->description 64 | #: applet.js:736 65 | msgid "Show Label" 66 | msgstr "显示标签" 67 | 68 | #: applet.js:935 applet.js:958 69 | msgid "Transition to day" 70 | msgstr "过渡到日间模式" 71 | 72 | #: applet.js:936 applet.js:959 73 | msgid "Transition to night" 74 | msgstr "过渡到夜间模式" 75 | 76 | #: applet.js:937 applet.js:960 77 | msgid "Night" 78 | msgstr "夜间模式" 79 | 80 | #: applet.js:938 applet.js:961 81 | msgid "Day" 82 | msgstr "日间模式" 83 | 84 | #: applet.js:949 85 | msgid "On" 86 | msgstr "开启" 87 | 88 | #: applet.js:949 applet.js:951 89 | msgid "Off" 90 | msgstr "关闭" 91 | 92 | #: applet.js:966 93 | msgid "Day Temperature" 94 | msgstr "日间色温" 95 | 96 | #: applet.js:967 97 | msgid "Day Brightness" 98 | msgstr "日间亮度" 99 | 100 | #: applet.js:969 101 | msgid "Night Temperature" 102 | msgstr "夜间色温" 103 | 104 | #: applet.js:970 105 | msgid "Night Brightness" 106 | msgstr "夜间亮度" 107 | 108 | #. settings-schema.json->labelScrollAction->options 109 | #. settings-schema.json->dayTemp->description 110 | #. settings-schema.json->nightTemp->description 111 | #: applet.js:972 112 | msgid "Temperature" 113 | msgstr "色温" 114 | 115 | #. settings-schema.json->dayBrightness->description 116 | #. settings-schema.json->nightBrightness->description 117 | #: applet.js:973 118 | msgid "Brightness" 119 | msgstr "亮度" 120 | 121 | #. metadata.json->name 122 | msgid "QRedshift" 123 | msgstr "QRedshift" 124 | 125 | #. metadata.json->description 126 | msgid "" 127 | "It makes the color of your computer's display adapt to the time of day, warm " 128 | "at night and like sunlight during the day." 129 | msgstr "它使您电脑显示屏的颜色适应一天中的时间,晚上是暖色调,白天则像阳光。" 130 | 131 | #. settings-schema.json->panel-options->title 132 | msgid "Settings" 133 | msgstr "设置" 134 | 135 | #. settings-schema.json->panel-location->title 136 | msgid "Location" 137 | msgstr "位置" 138 | 139 | #. settings-schema.json->panel-shortcuts->title 140 | msgid "Shortcuts" 141 | msgstr "快捷键" 142 | 143 | #. settings-schema.json->info-section->title 144 | msgid "Tips" 145 | msgstr "提示" 146 | 147 | #. settings-schema.json->opt-section->title 148 | msgid "Options" 149 | msgstr "选项" 150 | 151 | #. settings-schema.json->day-section->title 152 | msgid "Day Settings" 153 | msgstr "日间模式设置" 154 | 155 | #. settings-schema.json->night-section->title 156 | msgid "Night Settings" 157 | msgstr "夜间模式设置" 158 | 159 | #. settings-schema.json->keybind-section->title 160 | msgid "Key Bindings" 161 | msgstr "按键绑定" 162 | 163 | #. settings-schema.json->location-section->title 164 | msgid "Location Settings" 165 | msgstr "位置设置" 166 | 167 | #. settings-schema.json->autoUpdate->description 168 | msgid "Auto Update" 169 | msgstr "自动更新" 170 | 171 | #. settings-schema.json->autoUpdate->tooltip 172 | msgid "Continuously adjust color temperature" 173 | msgstr "连续调整色温" 174 | 175 | #. settings-schema.json->autoUpdateInterval->units 176 | msgid "Seconds" 177 | msgstr "秒" 178 | 179 | #. settings-schema.json->autoUpdateInterval->description 180 | msgid "Update interval" 181 | msgstr "更新间隔" 182 | 183 | #. settings-schema.json->adjustmentMethod->description 184 | msgid "Adjustment Method" 185 | msgstr "色温调整方法" 186 | 187 | #. settings-schema.json->adjustmentMethod->options 188 | msgid "needload" 189 | msgstr "needload" 190 | 191 | #. settings-schema.json->adjustmentMethod->options 192 | msgid "randr" 193 | msgstr "randr" 194 | 195 | #. settings-schema.json->adjustmentMethod->options 196 | msgid "vidmode" 197 | msgstr "vidmode" 198 | 199 | #. settings-schema.json->adjustmentMethod->tooltip 200 | msgid "Method to use to set color temperature" 201 | msgstr "用于设置色温的方法" 202 | 203 | #. settings-schema.json->labelScrollAction->description 204 | msgid "Icon Scroll Action" 205 | msgstr "图标滚动动作" 206 | 207 | #. settings-schema.json->labelScrollAction->options 208 | msgid "Disabled" 209 | msgstr "禁用" 210 | 211 | #. settings-schema.json->labelScrollAction->options 212 | #. settings-schema.json->keyToggle->description 213 | msgid "On/Off" 214 | msgstr "开/关" 215 | 216 | #. settings-schema.json->labelScrollAction->options 217 | msgid "Bright" 218 | msgstr "亮度" 219 | 220 | #. settings-schema.json->labelScrollAction->options 221 | #. settings-schema.json->gammaMix->description 222 | msgid "Gamma" 223 | msgstr "伽马" 224 | 225 | #. settings-schema.json->labelScrollAction->tooltip 226 | msgid "Action when scroll on applet icon." 227 | msgstr "在小程序图标上滚动鼠标滚轮时的动作。" 228 | 229 | #. settings-schema.json->symbolicIcon->description 230 | msgid "Use symbolic icon" 231 | msgstr "使用符号图标" 232 | 233 | #. settings-schema.json->keyBrightnessUp->description 234 | msgid "Increase brightness level" 235 | msgstr "提高亮度" 236 | 237 | #. settings-schema.json->keyBrightnessDown->description 238 | msgid "Decrease brightness level" 239 | msgstr "降低亮度" 240 | 241 | #. settings-schema.json->keyTempUp->description 242 | msgid "Increase temperature level" 243 | msgstr "提高色温" 244 | 245 | #. settings-schema.json->keyTempDown->description 246 | msgid "Decrease temperature level" 247 | msgstr "降低色温" 248 | 249 | #. settings-schema.json->keyGammaUp->description 250 | msgid "Increase gamma level" 251 | msgstr "提高伽马值" 252 | 253 | #. settings-schema.json->keyGammaDown->description 254 | msgid "Decrease gamma level" 255 | msgstr "降低伽马值" 256 | 257 | #. settings-schema.json->dayTemp->units 258 | #. settings-schema.json->nightTemp->units 259 | msgid "K" 260 | msgstr "K" 261 | 262 | #. settings-schema.json->dayBrightness->units 263 | #. settings-schema.json->nightBrightness->units 264 | msgid "%" 265 | msgstr "%" 266 | 267 | #. settings-schema.json->smoothTransition->description 268 | msgid "Smooth transition between day and night" 269 | msgstr "在日间模式和夜间模式之间平滑过渡" 270 | 271 | #. settings-schema.json->transitionDuration->units 272 | msgid "Minutes" 273 | msgstr "分钟" 274 | 275 | #. settings-schema.json->transitionDuration->description 276 | msgid "Transition Duration" 277 | msgstr "过渡时间" 278 | 279 | #. settings-schema.json->manualNightTime->description 280 | msgid "Use Manual Night Time" 281 | msgstr "使用自定夜间模式时间" 282 | 283 | #. settings-schema.json->nightTimeStart->description 284 | msgid "Choose Start Time" 285 | msgstr "选择开始时间" 286 | 287 | #. settings-schema.json->nightTimeEnd->description 288 | msgid "Choose End Time" 289 | msgstr "选择结束时间" 290 | 291 | #. settings-schema.json->locationRemote->description 292 | msgid "Remote Location" 293 | msgstr "远程位置" 294 | 295 | #. settings-schema.json->locationRemote->tooltip 296 | #. settings-schema.json->locationUpdate->tooltip 297 | msgid "Native geoclue on redshift can make the experience slow." 298 | msgstr "红移上的原生 geoclue 服务会使小程序变得缓慢。" 299 | 300 | #. settings-schema.json->locationUpdate->description 301 | msgid "Update Location" 302 | msgstr "更新位置" 303 | 304 | #. settings-schema.json->locationLatitude->description 305 | msgid "Latitude" 306 | msgstr "纬度" 307 | 308 | #. settings-schema.json->locationLongitude->description 309 | msgid "Longitude" 310 | msgstr "经度" 311 | 312 | #. settings-schema.json->aboutLocation->description 313 | msgid "" 314 | "Native geoclue on redshift can make the experience slow.\n" 315 | "Using: https://geolocation-db.com/" 316 | msgstr "" 317 | "红移上的原生 geoclue 服务会使小程序变得缓慢。\n" 318 | "使用:https://geolocation-db.com/" 319 | 320 | #. settings-schema.json->textTips->description 321 | msgid "* Right-click the sliders to reset the default (neutral) value." 322 | msgstr "* 右键单击滑块以重置默认 (中性) 值。" 323 | 324 | #. settings-schema.json->textHelp->description 325 | msgid "" 326 | "When updating to a new version make sure you reset the configs to default by " 327 | "deleting the ~/.cinnamon/configs/qredshift@quintao/qredshift@quintao.json.\n" 328 | "You will lost all your configs." 329 | msgstr "" 330 | "当更新到一个新的版本时,确保通过删除 ~/.cinnamon/configs/qredshift@quintao/" 331 | "qredshift@quintao.json,将配置重置为默认值。\n" 332 | "您将失去所有的配置。" 333 | 334 | #. settings-schema.json->textInfo->description 335 | msgid "" 336 | "If you like and use this applet take the time to visit it's page on Cinnamon " 337 | "Spices and give it a star. You only need a github account to do this." 338 | msgstr "" 339 | "如果您使用并喜欢这个小程序,请花费一点时间访问它在 Cinnamon Spices 上的页面并" 340 | "给它一颗星,您只需要一个 GitHub 账户就可以做到这一点。" 341 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/oc.po: -------------------------------------------------------------------------------- 1 | # Occitan translation file. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Quentin PAGÈS, 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2022-08-30 00:45-0300\n" 11 | "PO-Revision-Date: 2023-03-29 21:02+0200\n" 12 | "Last-Translator: Quentin PAGÈS\n" 13 | "Language-Team: \n" 14 | "Language: oc\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Generator: Poedit 3.2.2\n" 19 | 20 | #: applet.js:232 21 | msgid "Reload Applet" 22 | msgstr "Recargar l’applet" 23 | 24 | #: applet.js:243 25 | msgid "Recompile Translations" 26 | msgstr "Traduccions recompiladas" 27 | 28 | #: applet.js:296 29 | msgid "REDSHIFT NOT INSTALLED!" 30 | msgstr "REDSHIFT ES PAS INSTALLAT !" 31 | 32 | #: applet.js:297 33 | msgid "Requires Redshift: sudo apt-get install redshift" 34 | msgstr "Redshift es requerit : sudo apt-get install redshift" 35 | 36 | #: applet.js:446 applet.js:467 37 | msgid "should be removed." 38 | msgstr "deu èsser suprimit." 39 | 40 | #. settings-schema.json->enabled->description 41 | #: applet.js:629 42 | msgid "Enabled" 43 | msgstr "Activat" 44 | 45 | #: applet.js:637 applet.js:682 46 | msgid "Temp:" 47 | msgstr "Temp. :" 48 | 49 | #: applet.js:648 applet.js:693 50 | msgid "Bright:" 51 | msgstr "Luminositat :" 52 | 53 | #: applet.js:659 applet.js:975 54 | msgid "Gamma:" 55 | msgstr "Gamma :" 56 | 57 | #. settings-schema.json->enabledNight->description 58 | #: applet.js:674 59 | msgid "Night Enabled" 60 | msgstr "Nuèch activada" 61 | 62 | #. settings-schema.json->iconLabel->description 63 | #: applet.js:736 64 | msgid "Show Label" 65 | msgstr "Afichar lo label" 66 | 67 | #: applet.js:935 applet.js:958 68 | msgid "Transition to day" 69 | msgstr "Transicion al jorn" 70 | 71 | #: applet.js:936 applet.js:959 72 | msgid "Transition to night" 73 | msgstr "Transicion a la nuèch" 74 | 75 | #: applet.js:937 applet.js:960 76 | msgid "Night" 77 | msgstr "Nuèch" 78 | 79 | #: applet.js:938 applet.js:961 80 | msgid "Day" 81 | msgstr "Jorn" 82 | 83 | #: applet.js:949 84 | msgid "On" 85 | msgstr "Activada" 86 | 87 | #: applet.js:949 applet.js:951 88 | msgid "Off" 89 | msgstr "Desactivada" 90 | 91 | #: applet.js:966 92 | msgid "Day Temperature" 93 | msgstr "Temperatura lo jorn" 94 | 95 | #: applet.js:967 96 | msgid "Day Brightness" 97 | msgstr "Luminositat lo jorn" 98 | 99 | #: applet.js:969 100 | msgid "Night Temperature" 101 | msgstr "Temperatura lo nuèch" 102 | 103 | #: applet.js:970 104 | msgid "Night Brightness" 105 | msgstr "Luminositat la nuèch" 106 | 107 | #. settings-schema.json->labelScrollAction->options 108 | #. settings-schema.json->dayTemp->description 109 | #. settings-schema.json->nightTemp->description 110 | #: applet.js:972 111 | msgid "Temperature" 112 | msgstr "Temperatura" 113 | 114 | #. settings-schema.json->dayBrightness->description 115 | #. settings-schema.json->nightBrightness->description 116 | #: applet.js:973 117 | msgid "Brightness" 118 | msgstr "Luminositat" 119 | 120 | #. metadata.json->name 121 | msgid "QRedshift" 122 | msgstr "QRedshift" 123 | 124 | #. metadata.json->description 125 | msgid "" 126 | "It makes the color of your computer's display adapt to the time of day, warm " 127 | "at night and like sunlight during the day." 128 | msgstr "" 129 | "Permet d’adaptar las colors d’afichatge de l’ordenador segon lo moment del " 130 | "jorn, caud lo ser e coma un rai de solelh lo jorn." 131 | 132 | #. settings-schema.json->panel-options->title 133 | msgid "Settings" 134 | msgstr "Paramètres" 135 | 136 | #. settings-schema.json->panel-location->title 137 | msgid "Location" 138 | msgstr "Emplaçament" 139 | 140 | #. settings-schema.json->panel-shortcuts->title 141 | msgid "Shortcuts" 142 | msgstr "Acorchis de clavièr" 143 | 144 | #. settings-schema.json->info-section->title 145 | msgid "Tips" 146 | msgstr "Astúcias" 147 | 148 | #. settings-schema.json->opt-section->title 149 | msgid "Options" 150 | msgstr "Opcions" 151 | 152 | #. settings-schema.json->day-section->title 153 | msgid "Day Settings" 154 | msgstr "Paramètres del jorn" 155 | 156 | #. settings-schema.json->night-section->title 157 | msgid "Night Settings" 158 | msgstr "Paramètres de la nuèch" 159 | 160 | #. settings-schema.json->keybind-section->title 161 | msgid "Key Bindings" 162 | msgstr "Acorchis de clavièr" 163 | 164 | #. settings-schema.json->location-section->title 165 | msgid "Location Settings" 166 | msgstr "Paramètres de localizacion" 167 | 168 | #. settings-schema.json->autoUpdate->description 169 | msgid "Auto Update" 170 | msgstr "Mesa a jorn automatica" 171 | 172 | #. settings-schema.json->autoUpdate->tooltip 173 | msgid "Continuously adjust color temperature" 174 | msgstr "Ajustar de contunha la temperatura de las colors" 175 | 176 | #. settings-schema.json->autoUpdateInterval->units 177 | msgid "Seconds" 178 | msgstr "Segondas" 179 | 180 | #. settings-schema.json->autoUpdateInterval->description 181 | msgid "Update interval" 182 | msgstr "Interval de mesa a jorn" 183 | 184 | #. settings-schema.json->adjustmentMethod->description 185 | msgid "Adjustment Method" 186 | msgstr "Metòde d’ajustament" 187 | 188 | #. settings-schema.json->adjustmentMethod->options 189 | msgid "needload" 190 | msgstr "needload" 191 | 192 | #. settings-schema.json->adjustmentMethod->options 193 | msgid "randr" 194 | msgstr "randr" 195 | 196 | #. settings-schema.json->adjustmentMethod->options 197 | msgid "vidmode" 198 | msgstr "vidmode" 199 | 200 | #. settings-schema.json->adjustmentMethod->tooltip 201 | msgid "Method to use to set color temperature" 202 | msgstr "Metòde d’utilizar per definir la temperatura de la color" 203 | 204 | #. settings-schema.json->labelScrollAction->description 205 | msgid "Icon Scroll Action" 206 | msgstr "Accion al defilament per l’icòna" 207 | 208 | #. settings-schema.json->labelScrollAction->options 209 | msgid "Disabled" 210 | msgstr "Desactivada" 211 | 212 | #. settings-schema.json->labelScrollAction->options 213 | #. settings-schema.json->keyToggle->description 214 | msgid "On/Off" 215 | msgstr "Activar/Desactivar" 216 | 217 | #. settings-schema.json->labelScrollAction->options 218 | msgid "Bright" 219 | msgstr "Luminositat" 220 | 221 | #. settings-schema.json->labelScrollAction->options 222 | #. settings-schema.json->gammaMix->description 223 | msgid "Gamma" 224 | msgstr "Gamma" 225 | 226 | #. settings-schema.json->labelScrollAction->tooltip 227 | msgid "Action when scroll on applet icon." 228 | msgstr "Accion en defilant per l’icòna de l’applet." 229 | 230 | #. settings-schema.json->symbolicIcon->description 231 | msgid "Use symbolic icon" 232 | msgstr "Utilizar una icòna simbolica" 233 | 234 | #. settings-schema.json->keyBrightnessUp->description 235 | msgid "Increase brightness level" 236 | msgstr "Aumentar lo nivèl de luminositat" 237 | 238 | #. settings-schema.json->keyBrightnessDown->description 239 | msgid "Decrease brightness level" 240 | msgstr "Redusir lo nivèl de luminositat" 241 | 242 | #. settings-schema.json->keyTempUp->description 243 | msgid "Increase temperature level" 244 | msgstr "Aumentar lo nivèl de temperatura" 245 | 246 | #. settings-schema.json->keyTempDown->description 247 | msgid "Decrease temperature level" 248 | msgstr "Redusir lo nivèl de temperatura" 249 | 250 | #. settings-schema.json->keyGammaUp->description 251 | msgid "Increase gamma level" 252 | msgstr "Aumentar lo nivèl de gamma" 253 | 254 | #. settings-schema.json->keyGammaDown->description 255 | msgid "Decrease gamma level" 256 | msgstr "Redusir lo nivèl de gamma" 257 | 258 | #. settings-schema.json->dayTemp->units 259 | #. settings-schema.json->nightTemp->units 260 | msgid "K" 261 | msgstr "K" 262 | 263 | #. settings-schema.json->dayBrightness->units 264 | #. settings-schema.json->nightBrightness->units 265 | msgid "%" 266 | msgstr " %" 267 | 268 | #. settings-schema.json->smoothTransition->description 269 | msgid "Smooth transition between day and night" 270 | msgstr "Transicion doça entre lo jorn e la nuèch" 271 | 272 | #. settings-schema.json->transitionDuration->units 273 | msgid "Minutes" 274 | msgstr "Minutas" 275 | 276 | #. settings-schema.json->transitionDuration->description 277 | msgid "Transition Duration" 278 | msgstr "Durada de transicion" 279 | 280 | #. settings-schema.json->manualNightTime->description 281 | msgid "Use Manual Night Time" 282 | msgstr "Utilizar l’ora de nuèch manuala" 283 | 284 | #. settings-schema.json->nightTimeStart->description 285 | msgid "Choose Start Time" 286 | msgstr "Causir l’ora de debuta" 287 | 288 | #. settings-schema.json->nightTimeEnd->description 289 | msgid "Choose End Time" 290 | msgstr "Causir l’ora de fin" 291 | 292 | #. settings-schema.json->locationRemote->description 293 | msgid "Remote Location" 294 | msgstr "Emplaçament distant" 295 | 296 | #. settings-schema.json->locationRemote->tooltip 297 | #. settings-schema.json->locationUpdate->tooltip 298 | msgid "Native geoclue on redshift can make the experience slow." 299 | msgstr "" 300 | 301 | #. settings-schema.json->locationUpdate->description 302 | msgid "Update Location" 303 | msgstr "Actualizar l’emplaçament" 304 | 305 | #. settings-schema.json->locationLatitude->description 306 | msgid "Latitude" 307 | msgstr "Latitud" 308 | 309 | #. settings-schema.json->locationLongitude->description 310 | msgid "Longitude" 311 | msgstr "Longitud" 312 | 313 | #. settings-schema.json->aboutLocation->description 314 | msgid "" 315 | "Native geoclue on redshift can make the experience slow.\n" 316 | "Using: https://geolocation-db.com/" 317 | msgstr "" 318 | 319 | #. settings-schema.json->textTips->description 320 | msgid "* Right-click the sliders to reset the default (neutral) value." 321 | msgstr "" 322 | 323 | #. settings-schema.json->textHelp->description 324 | msgid "" 325 | "When updating to a new version make sure you reset the configs to default by " 326 | "deleting the ~/.cinnamon/configs/qredshift@quintao/qredshift@quintao.json.\n" 327 | "You will lost all your configs." 328 | msgstr "" 329 | 330 | #. settings-schema.json->textInfo->description 331 | msgid "" 332 | "If you like and use this applet take the time to visit it's page on Cinnamon " 333 | "Spices and give it a star. You only need a github account to do this." 334 | msgstr "" 335 | -------------------------------------------------------------------------------- /files/qredshift@quintao/lib/QUtils.js: -------------------------------------------------------------------------------- 1 | const Cairo = imports.cairo; 2 | const Clutter = imports.gi.Clutter; 3 | const Gtk = imports.gi.Gtk; 4 | // const Lang = imports.lang; 5 | const Cinnamon = imports.gi.Cinnamon; 6 | 7 | const St = imports.gi.St; 8 | const Gio = imports.gi.Gio; 9 | 10 | // const BoxPointer = imports.ui.boxpointer; 11 | // const DND = imports.ui.dnd; 12 | // const Main = imports.ui.main; 13 | // const SignalManager = imports.misc.signalManager; 14 | // const Tweener = imports.ui.tweener; 15 | // const CheckBox = imports.ui.checkBox; 16 | // const RadioButton = imports.ui.radioButton; 17 | 18 | const ByteArray = imports.byteArray; 19 | const GLib = imports.gi.GLib; 20 | const Util = imports.misc.util; 21 | 22 | const MessageTray = imports.ui.main.messageTray; 23 | const Tray = imports.ui.messageTray; 24 | 25 | // /** @type QGui */ 26 | // const QGui = require('./lib/QGui.js'); 27 | 28 | /** 29 | * @typedef QUtils 30 | * @exports QUtils 31 | */ 32 | 33 | /** @exports QUtils.delay */ 34 | function delay(ms) { 35 | return new Promise(resolve => setTimeout(resolve, ms)); 36 | } 37 | 38 | /** @exports QUtils.get_envs */ 39 | function get_envs() { 40 | let tmp = spawn_command_line_sync_string_response('env'); 41 | if(tmp.success) { 42 | return tmp.stdout.trim().split('\n').reduce((p, c) => { 43 | let [k, v] = c.split("="); 44 | p[k] = v; 45 | return p; 46 | }, {}); 47 | } 48 | 49 | return {}; 50 | } 51 | 52 | /** @exports QUtils.is_wayland */ 53 | function is_wayland() { 54 | // let envs = get_envs(); 55 | return get_envs()['XDG_SESSION_TYPE'] == 'wayland'; 56 | } 57 | 58 | /** @exports QUtils.architeture */ 59 | function architeture() { 60 | return spawn_command_line_sync_string_response('uname -m').stdout.trim(); 61 | } 62 | 63 | /** @exports QUtils.is_arch_linux */ 64 | function is_arch_linux() { 65 | // All Arch-based distributions have the /etc/arch-release file, 66 | // even if it's empty. 67 | return Gio.file_new_for_path("/etc/arch-release").query_exists(null); 68 | } 69 | 70 | /** @exports QUtils.lerp */ 71 | function lerp(if_t_zero, if_t_one, t) { 72 | return (if_t_zero + (if_t_one - if_t_zero) * t); 73 | } 74 | 75 | /** 76 | * @exports QUtils.byte_array_to_string 77 | * @param {Number[]} data 78 | * @return {string} 79 | */ 80 | function byte_array_to_string(data) { 81 | if (ByteArray.hasOwnProperty("toString")) { 82 | return "" + ByteArray.toString(data); 83 | } 84 | return "" + data; 85 | } 86 | 87 | /** 88 | * @param {string|array} command 89 | * @return {{success: boolean, stdout: string, stderr: string, wait_status: number}} 90 | * @exports QUtils.spawn_command_line_sync_string_response 91 | */ 92 | function spawn_command_line_sync_string_response(command) { 93 | try { 94 | qLOG('SYNC', command, typeof command); 95 | 96 | let params = null; 97 | 98 | if (typeof command == "string") { 99 | let [success, argv] = GLib.shell_parse_argv(command); 100 | params = argv; 101 | } 102 | // var [result, standard_output, standard_error, exit_status, wait_status] = GLib.spawn_command_line_sync(command); 103 | 104 | 105 | let spawn_flags = GLib.SpawnFlags.SEARCH_PATH; 106 | let [result, stdout, stderr, wait_status] = GLib.spawn_sync(null, params, null, spawn_flags, null); 107 | 108 | 109 | return { 110 | success: result, 111 | stdout: byte_array_to_string(stdout), 112 | stderr: byte_array_to_string(stderr), 113 | wait_status: wait_status 114 | }; 115 | 116 | } catch (e) { 117 | return { 118 | success: false, 119 | stdout: '', 120 | stderr: e, 121 | wait_status: 1 122 | }; 123 | } 124 | } 125 | 126 | /** 127 | * @return {Promise} 128 | * @exports QUtils.spawn_command_line_async_promise 129 | */ 130 | function spawn_command_line_async_promise(command, work_dir = null, watch = true) { 131 | function _parse(fd) { 132 | let output = ''; 133 | let output_stream_out = new Gio.DataInputStream({base_stream: new Gio.UnixInputStream({fd: fd, close_fd: true})}); 134 | 135 | let [line, size] = output_stream_out.read_line(null); 136 | while (line !== null) { 137 | output += line + '\n'; 138 | [line, size] = output_stream_out.read_line(null); 139 | } 140 | 141 | return output; 142 | } 143 | 144 | return new Promise((resolve, reject) => { 145 | try { 146 | let [success, argv] = GLib.shell_parse_argv(command); 147 | if (!success) { 148 | reject("Failed to parse command"); 149 | } 150 | 151 | let spawn_flags = GLib.SpawnFlags.SEARCH_PATH; 152 | if (watch) spawn_flags = spawn_flags | GLib.SpawnFlags.DO_NOT_REAP_CHILD; 153 | 154 | let [result, pid, stdin, stdout, stderr] = GLib.spawn_async_with_pipes(work_dir, argv, null, spawn_flags, null); 155 | 156 | if (watch) GLib.child_watch_add(GLib.PRIORITY_DEFAULT, pid, function (pid, status) { 157 | GLib.spawn_close_pid(pid); 158 | }); 159 | 160 | let output = _parse(stdout); 161 | let output_err = _parse(stderr); 162 | 163 | // if (output_err) reject(output_err); 164 | // else resolve(output); 165 | if (result) { 166 | resolve(output); 167 | } else { 168 | reject({error: true, output, output_err}); 169 | } 170 | 171 | } catch (e) { 172 | reject({error: true, message: 'command not found'}); 173 | } 174 | 175 | }); 176 | } 177 | 178 | 179 | /** 180 | * @exports QUtils.show_notification 181 | */ 182 | function show_notification(title, message, icon_name, icon_path = undefined) { 183 | let icon = new St.Icon({ 184 | icon_type: St.IconType.SYMBOLIC, 185 | icon_size: 25 186 | }); 187 | 188 | if (icon_path) { 189 | try { 190 | let file = Gio.file_new_for_path(icon_path); 191 | let ficon = new Gio.FileIcon({file: file}); 192 | icon = new St.Icon({icon_size: 25}); 193 | icon.set_gicon(ficon); 194 | } catch (e) { 195 | global.log(e); 196 | } 197 | } else { 198 | icon.set_icon_name(icon_name); 199 | } 200 | 201 | 202 | const source = new Tray.SystemNotificationSource('qredshift@quintao'); 203 | MessageTray.add(source); 204 | 205 | const notification = new Tray.Notification(source, title, message, {icon: icon, silent: false}); 206 | source.notify(notification); 207 | } 208 | 209 | /** 210 | * @exports QUtils.show_error_notification 211 | */ 212 | function show_error_notification(message) { 213 | this.show_notification('QRedshift', message, 'dialog-error'); 214 | } 215 | 216 | /** 217 | * @exports QUtils.show_warning_notification 218 | */ 219 | function show_warning_notification(message) { 220 | this.show_notification('QRedshift', message, 'dialog-warning'); 221 | } 222 | 223 | /** 224 | * @exports QUtils.show_info_notification 225 | */ 226 | function show_info_notification(message) { 227 | this.show_notification('QRedshift', message, 'dialog-information'); 228 | } 229 | 230 | 231 | /** @exports QUtils.qLOG */ 232 | function qLOG(msg, ...data) { 233 | if (global.DEBUG == false) return; 234 | 235 | let str = `\n${msg}: `; 236 | 237 | if (data.length > 0) { 238 | let tmp = []; 239 | data.forEach(value => { 240 | tmp.push(formatLogArgument(value)); 241 | }); 242 | 243 | str += tmp.join(', '); 244 | // str += formatLogArgument(data); 245 | } else { 246 | // str = JSON.stringify(`${msg}`, null, 4); 247 | str = `\n${msg}`; 248 | } 249 | 250 | // global.log(str); 251 | global.logWarning(str); 252 | 253 | 254 | 255 | function formatLogArgument(arg = '', recursion = 0, depth = 4) { 256 | // global.logWarning(typeof arg); 257 | const GObject = imports.gi.GObject; 258 | // Make sure falsey values are clearly indicated. 259 | if (arg === null) { 260 | arg = 'null'; 261 | } else if (arg === undefined) { 262 | arg = 'undefined'; 263 | // Ensure strings are distinguishable. 264 | } else if (typeof arg === 'string' && recursion > 0) { 265 | arg = '\'' + arg + '\''; 266 | } else if (['boolean', 'number'].includes(typeof arg)) { 267 | arg = '' + arg; 268 | } 269 | // Check if we reached the depth threshold 270 | if (recursion + 1 > depth) { 271 | try { 272 | arg = JSON.stringify(arg); 273 | } catch (e) { 274 | arg = byte_array_to_string(arg); 275 | } 276 | return arg; 277 | } 278 | let isGObject = arg instanceof GObject.Object; 279 | 280 | let space = ''; 281 | for (let i = 0; i < recursion + 1; i++) { 282 | space += ' '; 283 | } 284 | if (typeof arg === 'object') { 285 | let isArray = Array.isArray(arg); 286 | let brackets = isArray ? ['[', ']'] : ['{', '}']; 287 | if (isGObject) { 288 | arg = Util.getGObjectPropertyValues(arg); 289 | if (Object.keys(arg).length === 0) { 290 | return byte_array_to_string(arg); 291 | } 292 | } 293 | let array = isArray ? arg : Object.keys(arg); 294 | // Add beginning bracket with indentation 295 | let string = brackets[0] + (recursion + 1 > depth ? '' : '\n'); 296 | for (let j = 0, len = array.length; j < len; j++) { 297 | if (isArray) { 298 | string += space + formatLogArgument(arg[j], recursion + 1, depth) + ',\n'; 299 | } else { 300 | string += space + array[j] + ': ' + formatLogArgument(arg[array[j]], recursion + 1, depth) + ',\n'; 301 | } 302 | } 303 | // Remove one level of indentation and add the closing bracket. 304 | space = space.substr(4, space.length); 305 | arg = string + space + brackets[1]; 306 | // Functions, numbers, etc. 307 | } else if (typeof arg === 'function') { 308 | let array = arg.toString().split('\n'); 309 | for (let i = 0; i < array.length; i++) { 310 | if (i === 0) continue; 311 | array[i] = space + array[i]; 312 | } 313 | arg = array.join('\n'); 314 | } else if (typeof arg !== 'string' || isGObject) { 315 | arg = byte_array_to_string(arg); 316 | } 317 | return arg; 318 | } 319 | 320 | 321 | } 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/sk.po: -------------------------------------------------------------------------------- 1 | # Slovak translation of Qredshift applet. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Dušan Kazik , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2023-03-11 18:08+0100\n" 11 | "PO-Revision-Date: 2023-03-11 20:58+0100\n" 12 | "Last-Translator: Dušan Kazik \n" 13 | "Language-Team: \n" 14 | "Language: sk\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" 19 | "X-Generator: Poedit 3.2.2\n" 20 | 21 | #: applet.js:232 22 | msgid "Reload Applet" 23 | msgstr "Znovu načítať aplet" 24 | 25 | #: applet.js:243 26 | msgid "Recompile Translations" 27 | msgstr "Prekompilovať preklady" 28 | 29 | #: applet.js:296 30 | msgid "REDSHIFT NOT INSTALLED!" 31 | msgstr "PROGRAM REDSHIFT NIE JE NAINŠTALOVANÝ!" 32 | 33 | #: applet.js:297 34 | msgid "Requires Redshift: sudo apt-get install redshift" 35 | msgstr "Vyžaduje sa program Redshift: sudo apt-get install redshift" 36 | 37 | #: applet.js:448 applet.js:469 38 | msgid "should be removed." 39 | msgstr "by mal byť odstránený." 40 | 41 | #. settings-schema.json->enabled->description 42 | #: applet.js:631 43 | msgid "Enabled" 44 | msgstr "Povolené" 45 | 46 | #: applet.js:639 applet.js:684 47 | msgid "Temp:" 48 | msgstr "Teplota:" 49 | 50 | #: applet.js:650 applet.js:695 51 | msgid "Bright:" 52 | msgstr "Jas:" 53 | 54 | #: applet.js:661 applet.js:993 55 | msgid "Gamma:" 56 | msgstr "Gama:" 57 | 58 | #. settings-schema.json->enabledNight->description 59 | #: applet.js:676 60 | msgid "Night Enabled" 61 | msgstr "Nočný režim povolený" 62 | 63 | #. settings-schema.json->iconLabel->description 64 | #: applet.js:738 65 | msgid "Show Label" 66 | msgstr "Zobraziť menovku" 67 | 68 | #: applet.js:951 applet.js:976 69 | msgid "Transition to day" 70 | msgstr "Prechod na deň" 71 | 72 | #: applet.js:952 applet.js:977 73 | msgid "Transition to night" 74 | msgstr "Prechod na noc" 75 | 76 | #: applet.js:953 applet.js:978 77 | msgid "Night" 78 | msgstr "Noc" 79 | 80 | #: applet.js:954 applet.js:979 81 | msgid "Day" 82 | msgstr "Deň" 83 | 84 | #: applet.js:968 85 | msgid "On" 86 | msgstr "Zapnuté" 87 | 88 | #: applet.js:968 applet.js:970 89 | msgid "Off" 90 | msgstr "Vypnuté" 91 | 92 | #: applet.js:984 93 | msgid "Day Temperature" 94 | msgstr "Teplota počas dňa" 95 | 96 | #: applet.js:985 97 | msgid "Day Brightness" 98 | msgstr "Jas počas dňa" 99 | 100 | #: applet.js:987 101 | msgid "Night Temperature" 102 | msgstr "Teplota počas noci" 103 | 104 | #: applet.js:988 105 | msgid "Night Brightness" 106 | msgstr "Jas počas noci" 107 | 108 | #. settings-schema.json->labelScrollAction->options 109 | #. settings-schema.json->dayTemp->description 110 | #. settings-schema.json->nightTemp->description 111 | #: applet.js:990 112 | msgid "Temperature" 113 | msgstr "Teplota" 114 | 115 | #. settings-schema.json->dayBrightness->description 116 | #. settings-schema.json->nightBrightness->description 117 | #: applet.js:991 118 | msgid "Brightness" 119 | msgstr "Jas" 120 | 121 | #. metadata.json->name 122 | msgid "QRedshift" 123 | msgstr "QRedshift" 124 | 125 | #. metadata.json->description 126 | msgid "" 127 | "It makes the color of your computer's display adapt to the time of day, warm " 128 | "at night and like sunlight during the day." 129 | msgstr "" 130 | "Zmení teplotu displeja vášho počítača podľa aktuálneho času, teplú v noci a " 131 | "chladnú počas dňa." 132 | 133 | #. settings-schema.json->panel-options->title 134 | msgid "Settings" 135 | msgstr "Nastavenia" 136 | 137 | #. settings-schema.json->panel-location->title 138 | msgid "Location" 139 | msgstr "Umiestnenie" 140 | 141 | #. settings-schema.json->panel-shortcuts->title 142 | msgid "Shortcuts" 143 | msgstr "Klávesové skratky" 144 | 145 | #. settings-schema.json->info-section->title 146 | msgid "Tips" 147 | msgstr "Tipy" 148 | 149 | #. settings-schema.json->opt-section->title 150 | msgid "Options" 151 | msgstr "Voľby" 152 | 153 | #. settings-schema.json->day-section->title 154 | msgid "Day Settings" 155 | msgstr "Denné nastavenia" 156 | 157 | #. settings-schema.json->night-section->title 158 | msgid "Night Settings" 159 | msgstr "Nočné nastavenia" 160 | 161 | #. settings-schema.json->keybind-section->title 162 | msgid "Key Bindings" 163 | msgstr "Priradenia kláves" 164 | 165 | #. settings-schema.json->location-section->title 166 | msgid "Location Settings" 167 | msgstr "Nastavenia umiestnenia" 168 | 169 | #. settings-schema.json->autoUpdate->description 170 | msgid "Auto Update" 171 | msgstr "Automatická aktualizácia" 172 | 173 | #. settings-schema.json->autoUpdate->tooltip 174 | msgid "Continuously adjust color temperature" 175 | msgstr "Nepretržitá úprava teploty farieb" 176 | 177 | #. settings-schema.json->autoUpdateInterval->units 178 | msgid "Seconds" 179 | msgstr "Sekundy" 180 | 181 | #. settings-schema.json->autoUpdateInterval->description 182 | msgid "Update interval" 183 | msgstr "Interval aktualizácie" 184 | 185 | #. settings-schema.json->adjustmentMethod->description 186 | msgid "Adjustment Method" 187 | msgstr "Spôsob úpravy" 188 | 189 | #. settings-schema.json->adjustmentMethod->options 190 | msgid "needload" 191 | msgstr "needload" 192 | 193 | #. settings-schema.json->adjustmentMethod->options 194 | msgid "randr" 195 | msgstr "randr" 196 | 197 | #. settings-schema.json->adjustmentMethod->options 198 | msgid "vidmode" 199 | msgstr "vidmode" 200 | 201 | #. settings-schema.json->adjustmentMethod->tooltip 202 | msgid "Method to use to set color temperature" 203 | msgstr "Spôsob, ktorý sa má použiť na nastavenie teploty farieb" 204 | 205 | #. settings-schema.json->labelScrollAction->description 206 | msgid "Icon Scroll Action" 207 | msgstr "Akcia pre rolovanie ikony" 208 | 209 | #. settings-schema.json->labelScrollAction->options 210 | msgid "Disabled" 211 | msgstr "Zakázané" 212 | 213 | #. settings-schema.json->labelScrollAction->options 214 | #. settings-schema.json->keyToggle->description 215 | msgid "On/Off" 216 | msgstr "Zapnúť/Vypnúť" 217 | 218 | #. settings-schema.json->labelScrollAction->options 219 | msgid "Bright" 220 | msgstr "Jas" 221 | 222 | #. settings-schema.json->labelScrollAction->options 223 | #. settings-schema.json->gammaMix->description 224 | msgid "Gamma" 225 | msgstr "Gama" 226 | 227 | #. settings-schema.json->labelScrollAction->tooltip 228 | msgid "Action when scroll on applet icon." 229 | msgstr "Akcia pri rolovaní na ikone apletu." 230 | 231 | #. settings-schema.json->symbolicIcon->description 232 | msgid "Use symbolic icon" 233 | msgstr "Použiť symbolickú ikonu" 234 | 235 | #. settings-schema.json->keyBrightnessUp->description 236 | msgid "Increase brightness level" 237 | msgstr "Zvýšenie úrovne jasu" 238 | 239 | #. settings-schema.json->keyBrightnessDown->description 240 | msgid "Decrease brightness level" 241 | msgstr "Zníženie úrovne jasu" 242 | 243 | #. settings-schema.json->keyTempUp->description 244 | msgid "Increase temperature level" 245 | msgstr "Zvýšenie úrovne teploty" 246 | 247 | #. settings-schema.json->keyTempDown->description 248 | msgid "Decrease temperature level" 249 | msgstr "Zníženie úrovne teploty" 250 | 251 | #. settings-schema.json->keyGammaUp->description 252 | msgid "Increase gamma level" 253 | msgstr "Zvýšenie úrovne gamy" 254 | 255 | #. settings-schema.json->keyGammaDown->description 256 | msgid "Decrease gamma level" 257 | msgstr "Zníženie úrovne gamy" 258 | 259 | #. settings-schema.json->dayTemp->units 260 | #. settings-schema.json->nightTemp->units 261 | msgid "K" 262 | msgstr "K" 263 | 264 | #. settings-schema.json->dayBrightness->units 265 | #. settings-schema.json->nightBrightness->units 266 | msgid "%" 267 | msgstr "%" 268 | 269 | #. settings-schema.json->smoothTransition->description 270 | msgid "Smooth transition between day and night" 271 | msgstr "Jemný prechod medzi dňom a nocou" 272 | 273 | #. settings-schema.json->transitionDuration->units 274 | msgid "Minutes" 275 | msgstr "Minúty" 276 | 277 | #. settings-schema.json->transitionDuration->description 278 | msgid "Transition Duration" 279 | msgstr "Trvanie prechodu" 280 | 281 | #. settings-schema.json->manualNightTime->description 282 | msgid "Use Manual Night Time" 283 | msgstr "Nastaviť nočný čas ručne" 284 | 285 | #. settings-schema.json->nightTimeStart->description 286 | msgid "Choose Start Time" 287 | msgstr "Zvoľte čas začiatku" 288 | 289 | #. settings-schema.json->nightTimeEnd->description 290 | msgid "Choose End Time" 291 | msgstr "Zvoľte čas ukončenia" 292 | 293 | #. settings-schema.json->locationRemote->description 294 | msgid "Remote Location" 295 | msgstr "Vzdialené umiestnenie" 296 | 297 | #. settings-schema.json->locationRemote->tooltip 298 | #. settings-schema.json->locationUpdate->tooltip 299 | msgid "Native geoclue on redshift can make the experience slow." 300 | msgstr "" 301 | 302 | #. settings-schema.json->locationUpdate->description 303 | msgid "Update Location" 304 | msgstr "Aktualizovať umiestnenie" 305 | 306 | #. settings-schema.json->locationLatitude->description 307 | msgid "Latitude" 308 | msgstr "Zemepisná šírka" 309 | 310 | #. settings-schema.json->locationLongitude->description 311 | msgid "Longitude" 312 | msgstr "Zemepisná dĺžka" 313 | 314 | #. settings-schema.json->aboutLocation->description 315 | msgid "" 316 | "Native geoclue on redshift can make the experience slow.\n" 317 | "Using: https://geolocation-db.com/" 318 | msgstr "" 319 | 320 | #. settings-schema.json->textTips->description 321 | msgid "* Right-click the sliders to reset the default (neutral) value." 322 | msgstr "" 323 | "* Kliknutím pravým tlačidlom na posúvače obnovíte predvolené (neutrálne) " 324 | "hodnoty." 325 | 326 | #. settings-schema.json->textHelp->description 327 | msgid "" 328 | "When updating to a new version make sure you reset the configs to default by " 329 | "deleting the ~/.cinnamon/configs/qredshift@quintao/qredshift@quintao.json.\n" 330 | "You will lost all your configs." 331 | msgstr "" 332 | "Po aktualizácii na novú verziu sa uistite, že ste obnovili konfigurácie na " 333 | "predvolené hodnoty, odstránením súboru ~/.cinnamon/configs/qredshift@quintao/" 334 | "qredshift@quintao.json.\n" 335 | "Stratíte všetky vaše konfigurácie." 336 | 337 | #. settings-schema.json->textInfo->description 338 | msgid "" 339 | "If you like and use this applet take the time to visit it's page on Cinnamon " 340 | "Spices and give it a star. You only need a github account to do this." 341 | msgstr "" 342 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/ru.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2023-07-16 04:01+0200\n" 11 | "PO-Revision-Date: 2023-11-27 14:40-0500\n" 12 | "Last-Translator: \n" 13 | "Language-Team: \n" 14 | "Language: ru\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Generator: Poedit 3.4\n" 20 | 21 | #: applet.js:236 22 | msgid "Reload Applet" 23 | msgstr "Перезапустить апплет" 24 | 25 | #: applet.js:247 26 | msgid "Recompile Translations" 27 | msgstr "Перекомпиляция переводов" 28 | 29 | #: applet.js:299 30 | msgid "REDSHIFT NOT INSTALLED!" 31 | msgstr "REDHISFT НЕ УСТАНОВЛЕН!" 32 | 33 | #: applet.js:302 34 | #, fuzzy 35 | #| msgid "Requires Redshift: sudo apt-get install redshift" 36 | msgid "Requires Redshift: yay -S redshift-minimal" 37 | msgstr "Зависимости Redshift: sudo apt-get install redshift" 38 | 39 | #: applet.js:305 40 | msgid "Requires Redshift: sudo apt-get install redshift" 41 | msgstr "Зависимости Redshift: sudo apt-get install redshift" 42 | 43 | #: applet.js:457 applet.js:486 44 | msgid "should be removed." 45 | msgstr "" 46 | 47 | #: applet.js:479 48 | msgid "should be replaced by redshift-minimal" 49 | msgstr "" 50 | 51 | #. settings-schema.json->enabled->description 52 | #: applet.js:649 53 | msgid "Enabled" 54 | msgstr "Активно" 55 | 56 | #: applet.js:657 applet.js:702 57 | msgid "Temp:" 58 | msgstr "Температура:" 59 | 60 | #: applet.js:668 applet.js:713 61 | msgid "Bright:" 62 | msgstr "Яркость:" 63 | 64 | #: applet.js:679 applet.js:1011 65 | msgid "Gamma:" 66 | msgstr "Гамма:" 67 | 68 | #. settings-schema.json->enabledNight->description 69 | #: applet.js:694 70 | msgid "Night Enabled" 71 | msgstr "Ночной режим активен" 72 | 73 | #. settings-schema.json->iconLabel->description 74 | #: applet.js:756 75 | msgid "Show Label" 76 | msgstr "Показать ярлык" 77 | 78 | #: applet.js:969 applet.js:994 79 | msgid "Transition to day" 80 | msgstr "" 81 | 82 | #: applet.js:970 applet.js:995 83 | msgid "Transition to night" 84 | msgstr "" 85 | 86 | #: applet.js:971 applet.js:996 87 | #, fuzzy 88 | #| msgid "Bright" 89 | msgid "Night" 90 | msgstr "Brillo" 91 | 92 | #: applet.js:972 applet.js:997 93 | msgid "Day" 94 | msgstr "" 95 | 96 | #: applet.js:986 97 | msgid "On" 98 | msgstr "Вкл." 99 | 100 | #: applet.js:986 applet.js:988 101 | msgid "Off" 102 | msgstr "Выкл." 103 | 104 | #: applet.js:1002 105 | msgid "Day Temperature" 106 | msgstr "Дневная температура" 107 | 108 | #: applet.js:1003 109 | msgid "Day Brightness" 110 | msgstr "Дневная яркость" 111 | 112 | #: applet.js:1005 113 | msgid "Night Temperature" 114 | msgstr "Ночная температура" 115 | 116 | #: applet.js:1006 117 | msgid "Night Brightness" 118 | msgstr "Ночная яркость" 119 | 120 | #. settings-schema.json->labelScrollAction->options 121 | #. settings-schema.json->dayTemp->description 122 | #. settings-schema.json->nightTemp->description 123 | #: applet.js:1008 124 | msgid "Temperature" 125 | msgstr "Температура" 126 | 127 | #. settings-schema.json->dayBrightness->description 128 | #. settings-schema.json->nightBrightness->description 129 | #: applet.js:1009 130 | msgid "Brightness" 131 | msgstr "Яркость" 132 | 133 | #. metadata.json->name 134 | msgid "QRedshift" 135 | msgstr "QRedshift" 136 | 137 | #. metadata.json->description 138 | msgid "" 139 | "It makes the color of your computer's display adapt to the time of day, warm " 140 | "at night and like sunlight during the day." 141 | msgstr "" 142 | 143 | #. settings-schema.json->panel-options->title 144 | msgid "Settings" 145 | msgstr "Настройки" 146 | 147 | #. settings-schema.json->panel-location->title 148 | msgid "Location" 149 | msgstr "Местоположение" 150 | 151 | #. settings-schema.json->panel-shortcuts->title 152 | msgid "Shortcuts" 153 | msgstr "Клавиша быстрого доступа" 154 | 155 | #. settings-schema.json->info-section->title 156 | msgid "Tips" 157 | msgstr "Подсказки" 158 | 159 | #. settings-schema.json->opt-section->title 160 | msgid "Options" 161 | msgstr "Опции" 162 | 163 | #. settings-schema.json->day-section->title 164 | msgid "Day Settings" 165 | msgstr "Настройки дневного режима" 166 | 167 | #. settings-schema.json->night-section->title 168 | msgid "Night Settings" 169 | msgstr "Настройки ночного режима" 170 | 171 | #. settings-schema.json->keybind-section->title 172 | msgid "Key Bindings" 173 | msgstr "Клавиатурные сокращения" 174 | 175 | #. settings-schema.json->location-section->title 176 | msgid "Location Settings" 177 | msgstr "Настройки местоположения" 178 | 179 | #. settings-schema.json->autoUpdate->description 180 | msgid "Auto Update" 181 | msgstr "Автоматическое обновление" 182 | 183 | #. settings-schema.json->autoUpdate->tooltip 184 | msgid "Continuously adjust color temperature" 185 | msgstr "Плавная регулировка цветовой температуры" 186 | 187 | #. settings-schema.json->autoUpdateInterval->units 188 | msgid "Seconds" 189 | msgstr "" 190 | 191 | #. settings-schema.json->autoUpdateInterval->description 192 | msgid "Update interval" 193 | msgstr "Интервал обновления" 194 | 195 | #. settings-schema.json->adjustmentMethod->description 196 | msgid "Adjustment Method" 197 | msgstr "Способ регулировки" 198 | 199 | #. settings-schema.json->adjustmentMethod->options 200 | msgid "needload" 201 | msgstr "needload" 202 | 203 | #. settings-schema.json->adjustmentMethod->options 204 | msgid "randr" 205 | msgstr "randr" 206 | 207 | #. settings-schema.json->adjustmentMethod->options 208 | msgid "vidmode" 209 | msgstr "vimode" 210 | 211 | #. settings-schema.json->adjustmentMethod->tooltip 212 | msgid "Method to use to set color temperature" 213 | msgstr "Способ установки цветовой температуры" 214 | 215 | #. settings-schema.json->labelScrollAction->description 216 | msgid "Icon Scroll Action" 217 | msgstr "Действие прокрутки значка" 218 | 219 | #. settings-schema.json->labelScrollAction->options 220 | msgid "Disabled" 221 | msgstr "Отключен" 222 | 223 | #. settings-schema.json->labelScrollAction->options 224 | #. settings-schema.json->keyToggle->description 225 | msgid "On/Off" 226 | msgstr "Вкл./Выкл." 227 | 228 | #. settings-schema.json->labelScrollAction->options 229 | msgid "Bright" 230 | msgstr "Brillo" 231 | 232 | #. settings-schema.json->labelScrollAction->options 233 | #. settings-schema.json->gammaMix->description 234 | msgid "Gamma" 235 | msgstr "Гамма" 236 | 237 | #. settings-schema.json->labelScrollAction->tooltip 238 | msgid "Action when scroll on applet icon." 239 | msgstr "Действие при прокрутке значка апплета." 240 | 241 | #. settings-schema.json->symbolicIcon->description 242 | msgid "Use symbolic icon" 243 | msgstr "В виде символьных иконок" 244 | 245 | #. settings-schema.json->keyBrightnessUp->description 246 | msgid "Increase brightness level" 247 | msgstr "Увеличить яркость" 248 | 249 | #. settings-schema.json->keyBrightnessDown->description 250 | msgid "Decrease brightness level" 251 | msgstr "Уменьшить яркость" 252 | 253 | #. settings-schema.json->keyTempUp->description 254 | msgid "Increase temperature level" 255 | msgstr "Увеличить температуру цвета" 256 | 257 | #. settings-schema.json->keyTempDown->description 258 | msgid "Decrease temperature level" 259 | msgstr "Уменьшить температуру цвета" 260 | 261 | #. settings-schema.json->keyGammaUp->description 262 | msgid "Increase gamma level" 263 | msgstr "Увеличить цветовую гамму" 264 | 265 | #. settings-schema.json->keyGammaDown->description 266 | msgid "Decrease gamma level" 267 | msgstr "Уменьшить цветовую гамму" 268 | 269 | #. settings-schema.json->dayTemp->units 270 | #. settings-schema.json->nightTemp->units 271 | msgid "K" 272 | msgstr "K" 273 | 274 | #. settings-schema.json->dayBrightness->units 275 | #. settings-schema.json->nightBrightness->units 276 | msgid "%" 277 | msgstr "%" 278 | 279 | #. settings-schema.json->smoothTransition->description 280 | msgid "Smooth transition between day and night" 281 | msgstr "" 282 | 283 | #. settings-schema.json->transitionDuration->units 284 | msgid "Minutes" 285 | msgstr "" 286 | 287 | #. settings-schema.json->transitionDuration->description 288 | msgid "Transition Duration" 289 | msgstr "" 290 | 291 | #. settings-schema.json->manualNightTime->description 292 | msgid "Use Manual Night Time" 293 | msgstr "Установить ночное время вручную" 294 | 295 | #. settings-schema.json->nightTimeStart->description 296 | msgid "Choose Start Time" 297 | msgstr "Выберите начальное время" 298 | 299 | #. settings-schema.json->nightTimeEnd->description 300 | msgid "Choose End Time" 301 | msgstr "Выберите конечное время" 302 | 303 | #. settings-schema.json->locationRemote->description 304 | msgid "Remote Location" 305 | msgstr "Удалённое определение местоположения" 306 | 307 | #. settings-schema.json->locationRemote->tooltip 308 | #. settings-schema.json->locationUpdate->tooltip 309 | msgid "Native geoclue on redshift can make the experience slow." 310 | msgstr "Активный сервис Geoclue может замедлить работу." 311 | 312 | #. settings-schema.json->locationUpdate->description 313 | msgid "Update Location" 314 | msgstr "Обновить местоположение" 315 | 316 | #. settings-schema.json->locationLatitude->description 317 | msgid "Latitude" 318 | msgstr "Широта" 319 | 320 | #. settings-schema.json->locationLongitude->description 321 | msgid "Longitude" 322 | msgstr "Долгота" 323 | 324 | #. settings-schema.json->aboutLocation->description 325 | msgid "" 326 | "Native geoclue on redshift can make the experience slow.\n" 327 | "Using: https://geolocation-db.com/" 328 | msgstr "" 329 | "Native geoclue может замедлить работу. \n" 330 | "Использование: https://geolocation-db.com/" 331 | 332 | #. settings-schema.json->textTips->description 333 | msgid "* Right-click the sliders to reset the default (neutral) value." 334 | msgstr "" 335 | "* Щелкните правой кнопкой мыши по ползунку, чтобы сбросить значение по " 336 | "умолчанию (нейтральное)." 337 | 338 | #. settings-schema.json->textHelp->description 339 | #, fuzzy 340 | #| msgid "" 341 | #| "When updating to a new version make sure you reset the configs to default " 342 | #| "by deleting the ~/.cinnamon/configs/qredshift@quintao/qredshift@quintao." 343 | #| "json.\n" 344 | #| " You will lost all your configs." 345 | msgid "" 346 | "When updating to a new version make sure you reset the configs to default by " 347 | "deleting the ~/.cinnamon/configs/qredshift@quintao/qredshift@quintao.json.\n" 348 | "You will lost all your configs." 349 | msgstr "" 350 | "При обновлении до новой версии убедитесь, что вы сбросили настройки по " 351 | "умолчанию, удалив ~/.cinnamon/configs/qredshift@quintao/qredshift@quintao." 352 | "json.\n" 353 | " Вы потеряете все свои настройки." 354 | 355 | #. settings-schema.json->textInfo->description 356 | msgid "" 357 | "If you like and use this applet take the time to visit it's page on Cinnamon " 358 | "Spices and give it a star. You only need a github account to do this." 359 | msgstr "" 360 | "Если вам нравится и вы пользуетесь этим апплетом, найдите время, чтобы " 361 | "посетить его страницу, посвященную Cinnamon, чтобы поставьте ему звездочку. " 362 | "Для этого вам нужна только учетная запись на github." 363 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | QRedshift Cinnamon 2 | === 3 | A Cinnamon applet that makes the color of your computer's display adapt to the time of day, warm at night and like sunlight during the day. 4 | 5 | Original Repository: [https://github.com/raphaelquintao/QRedshiftCinnamon](https://github.com/raphaelquintao/QRedshiftCinnamon) 6 | 7 | ## Installation 8 | 9 | ```shell 10 | curl https://github.com/raphaelquintao/QRedshiftCinnamon/raw/master/install.sh -sSfL | bash 11 | ``` 12 | 13 | ## Buy me a coffee 14 | 15 | - [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZLHQD3GQ5YNR6&source=url) 16 | - Bitcoin: `1PxRoGDq32FNdzk6jq8DGgaRY5uRVtLjHN` 17 | 18 | ## Features 19 | 20 | * Powerfull Interface. 21 | * Scroll actions on panel icon. 22 | * Keyboard Shortcuts. 23 | * Temperature from 1000k to 12000k. 24 | * Gamma from 0.5 to 5. 25 | * Smooth transition between day and night. 26 | * Independent of redshift package. 27 | 28 | ## Changelog 29 | * 2.0.4 30 | * Fixed a bug when changing latitude/longitude manually. 31 | * Clicking and dragging the slider now follows the step parameter. 32 | * Added support for the most common architectures 33 | - x86_64 - 64-bit x86 34 | - i386, i486, i586, i686 - 32-bit x86 35 | - aarch64 - 64-bit ARM 36 | - armv7l - 32-bit ARM 37 | - armv5tel - ARMv5 38 | - mips64el - 64-bit MIPS (Little Endian) 39 | - mipsel - 32-bit MIPS (Little Endian) 40 | - powerpc64le - 64-bit PowerPC (Little Endian) 41 | - s390x - IBM System/390 (64-bit) 42 | * Updated Danish and Portuguese(Brazil) Translations 43 | * 2.0.3 44 | * Max temperature increased to 12000k 45 | * 2.0.2 46 | * Added auto-update based on GitHub releases. 47 | * New icons for sunset and sunrise. 48 | * 2.0.1 49 | * New icons. 50 | * Improved interface. 51 | * Architecture check and notify. 52 | * Location is back and better. 53 | * 2.0.0 54 | * Original repository renamed to [QRedshiftCinnamon](https://github.com/raphaelquintao/QRedshiftCinnamon). 55 | * Completely disabled on Wayland (wayland cinnamon compositor don't support gamma ramps yet). 56 | * Removed remote location option (I don't think anyone uses it. Can be implemented in the future if there are enough requests). 57 | * Removed dependency of redshift package. 58 | * Extension now uses its own backend application: [QRedshift Terminal Application](https://github.com/raphaelquintao/QRedshift). 59 | * Added an option to configure step for shortcuts. 60 | 61 |
62 | Old 63 | 64 | * 1.7.7 65 | - Added smooth transition to brightness. 66 | * 1.7.6 67 | - Added option to activate as soon as Cinnamon starts up. 68 | * 1.7.5 69 | - Update messages on Arch. 70 | - Add icons for Cinnamon 5.8 71 | * 1.7.4 72 | - Added new translations. 73 | * 1.7.3 74 | - Fixed small bug on smooth transition. 75 | - Fixed messages when not using manual night time. 76 | * 1.7.2 77 | - Fixed sliders on Cinnamon 5.4 78 | - Automatically check for redshift-gtk and notify to remove it. 79 | - Smooth transition between day and night. 80 | * 1.7.1 81 | - Auto update is only used when night is enabled. 82 | * 1.7.0 83 | - Fixed issues with asynchronous command calls. 84 | - Main redshift call reverted to synchronous, so the cinnamon will show the annoying message again: ***This applet contains function calls that could potentially cause Cinnamon to crash or freeze***. 85 | - I noticed that on some (slow?) computers many asynchronous calls cause the application to freeze. 86 | * 1.6.0 87 | - Added manual night time option. 88 | - Fixed some issues with Debian. 89 | * 1.5.5 90 | - Fixed icon blinking when using symbolic icon. 91 | * 1.5.4 92 | - ~~Fixed: "This applet contains function calls that could potentially cause Cinnamon to crash or freeze."~~ 93 | * 1.5.3 94 | - Fixed some issues with Debian. 95 | - Automatically disable redshift default service. 96 | - Removed default keyboard shortcuts. 97 | * 1.5.2 98 | - Added keyboard shortcut to increase brightness `Page_Up` 99 | - Added keyboard shortcut to decrease brightness `Page_Down` 100 | - Added keyboard shortcut to increase temperature `Page_Up` 101 | - Added keyboard shortcut to decrease temperature `Page_Down` 102 | - Added support to lower gamma. 103 | - Added option to use a symbolic icon. 104 | * 1.5.1 105 | - Update night brightness on scrolling. 106 | - Added support to version 4.6. 107 | * 1.5 108 | - Added keyboard shortcut to toggle On/Off `End` 109 | - Added localization support. 110 | * 1.4 111 | - Fixed icon scale. 112 | - Added support to version 4.3 and 4.4 113 | 114 |
115 | 116 | ## Translations 117 | 118 | If you want to submit some translations please make it on the original repository. It's a lot easier to me keep it synced. 119 | 120 | 121 | | Flag | Language | Code | Translator | 122 | |:----------------------------------------------------------------------------------------------------------------------------:|-----------------------|---------|-------------------------------------------------------------------------------------------------------------------| 123 | | | Bulgarian | `bg` | @spacy01 | 124 | | | Danish | `da` | @Alan01 | 125 | | | German | `de` | @OzzieIsaacs | 126 | | | Spanish (Spain) | `es` | @haggen88 | 127 | | | Spanish (Mexico) | `es_MX` | @RichLuna | 128 | | | French | `fr` | @claudiux | 129 | | | Hungarian | `hu` | @kami911 | 130 | | | Italian | `it` | @eperulli | 131 | | | Dutch | `nl` | @Vistaus | 132 | | | Occitan | `oc` | @Mejans | 133 | | | Polish | `pl` | @szedar14 | 134 | | | Portuguese (Portugal) | `pt` | @hugok79 | 135 | | | Portuguese (Brazil) | `pt_BR` | @raphaelquintao | 136 | | | Romanian | `ro` | @AndreiMiculita | 137 | | | Russian | `ru` | @aivazoff | 138 | | | Slovak | `sk` | @prescott66 | 139 | | | Swedish | `sv` | @eson57 | 140 | | | Turkish | `tr` | @kelebek333 | 141 | | | Chinese | `zh_CN` | @Slinet6056 | 142 | 143 | ## Screenshots 144 | 145 | 146 | 147 | ![](https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/master/screenshots/screenshot.png) 148 | ![](https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/master/screenshots/config_1.png) 149 | ![](https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/master/screenshots/config_2.png) 150 | ![](https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/master/screenshots/config_3.png) 151 | ![](https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/master/screenshots/config_4.png) 152 | ![](https://raw.githubusercontent.com/raphaelquintao/QRedshiftCinnamon/master/screenshots/config_5.png) 153 | 154 | 155 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/it.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: qredshift@quintao\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2023-07-16 04:01+0200\n" 11 | "PO-Revision-Date: 2023-10-29 17:09+0100\n" 12 | "Last-Translator: Dragone2 \n" 13 | "Language-Team: \n" 14 | "Language: it\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Generator: Poedit 3.0.1\n" 19 | 20 | #: applet.js:236 21 | msgid "Reload Applet" 22 | msgstr "Ricarica Applet" 23 | 24 | #: applet.js:247 25 | msgid "Recompile Translations" 26 | msgstr "Ricompila le traduzioni" 27 | 28 | #: applet.js:299 29 | msgid "REDSHIFT NOT INSTALLED!" 30 | msgstr "REDSHIT NON INSTALLATO!" 31 | 32 | #: applet.js:302 33 | msgid "Requires Redshift: yay -S redshift-minimal" 34 | msgstr "Richiede Redshift: yay -S redshift-minimal" 35 | 36 | #: applet.js:305 37 | msgid "Requires Redshift: sudo apt-get install redshift" 38 | msgstr "Richiede Redshift: sudo apt-get install redshift" 39 | 40 | #: applet.js:457 applet.js:486 41 | msgid "should be removed." 42 | msgstr "dovrebbe essere rimosso." 43 | 44 | #: applet.js:479 45 | msgid "should be replaced by redshift-minimal" 46 | msgstr "dovrebbe essere sostituito da redshift-minimal" 47 | 48 | #. settings-schema.json->enabled->description 49 | #: applet.js:649 50 | msgid "Enabled" 51 | msgstr "Abilita" 52 | 53 | #: applet.js:657 applet.js:702 54 | msgid "Temp:" 55 | msgstr "Temp. :" 56 | 57 | #: applet.js:668 applet.js:713 58 | msgid "Bright:" 59 | msgstr "Luminosità:" 60 | 61 | #: applet.js:679 applet.js:1011 62 | msgid "Gamma:" 63 | msgstr "Gamma:" 64 | 65 | #. settings-schema.json->enabledNight->description 66 | #: applet.js:694 67 | msgid "Night Enabled" 68 | msgstr "Abilita i parametri notturni" 69 | 70 | #. settings-schema.json->iconLabel->description 71 | #: applet.js:756 72 | msgid "Show Label" 73 | msgstr "Mostra l'etichetta dei parametri correnti" 74 | 75 | #: applet.js:969 applet.js:994 76 | msgid "Transition to day" 77 | msgstr "Transizione al giorno" 78 | 79 | #: applet.js:970 applet.js:995 80 | msgid "Transition to night" 81 | msgstr "Transizione alla notte" 82 | 83 | #: applet.js:971 applet.js:996 84 | msgid "Night" 85 | msgstr "Notte" 86 | 87 | #: applet.js:972 applet.js:997 88 | msgid "Day" 89 | msgstr "Giorno" 90 | 91 | #: applet.js:986 92 | msgid "On" 93 | msgstr "Attivo" 94 | 95 | #: applet.js:986 applet.js:988 96 | msgid "Off" 97 | msgstr "Non attivo" 98 | 99 | #: applet.js:1002 100 | msgid "Day Temperature" 101 | msgstr "Temperatura diurna" 102 | 103 | #: applet.js:1003 104 | msgid "Day Brightness" 105 | msgstr "Luminosità  diurna" 106 | 107 | #: applet.js:1005 108 | msgid "Night Temperature" 109 | msgstr "Temperatura notturna" 110 | 111 | #: applet.js:1006 112 | msgid "Night Brightness" 113 | msgstr "Luminosità notturna" 114 | 115 | #. settings-schema.json->labelScrollAction->options 116 | #. settings-schema.json->dayTemp->description 117 | #. settings-schema.json->nightTemp->description 118 | #: applet.js:1008 119 | msgid "Temperature" 120 | msgstr "Temperatura" 121 | 122 | #. settings-schema.json->dayBrightness->description 123 | #. settings-schema.json->nightBrightness->description 124 | #: applet.js:1009 125 | msgid "Brightness" 126 | msgstr "Luminosità" 127 | 128 | #. metadata.json->name 129 | msgid "QRedshift" 130 | msgstr "QRedshift" 131 | 132 | #. metadata.json->description 133 | msgid "" 134 | "It makes the color of your computer's display adapt to the time of day, warm " 135 | "at night and like sunlight during the day." 136 | msgstr "" 137 | "Fa adattare il colore del display del tuo computer all'ora del giorno, caldo " 138 | "di notte e come la luce del sole durante il giorno." 139 | 140 | #. settings-schema.json->panel-options->title 141 | msgid "Settings" 142 | msgstr "Impostazioni" 143 | 144 | #. settings-schema.json->panel-location->title 145 | msgid "Location" 146 | msgstr "Geolocalizzazione" 147 | 148 | #. settings-schema.json->panel-shortcuts->title 149 | msgid "Shortcuts" 150 | msgstr "Scorciatoie" 151 | 152 | #. settings-schema.json->info-section->title 153 | msgid "Tips" 154 | msgstr "Suggerimenti" 155 | 156 | #. settings-schema.json->opt-section->title 157 | msgid "Options" 158 | msgstr "Opzioni" 159 | 160 | #. settings-schema.json->day-section->title 161 | msgid "Day Settings" 162 | msgstr "Parametri diurni" 163 | 164 | #. settings-schema.json->night-section->title 165 | msgid "Night Settings" 166 | msgstr "Parametri notturni" 167 | 168 | #. settings-schema.json->keybind-section->title 169 | msgid "Key Bindings" 170 | msgstr "Scorciatoie da tastiera" 171 | 172 | #. settings-schema.json->location-section->title 173 | msgid "Location Settings" 174 | msgstr "Impostazioni di geolocalizzazione" 175 | 176 | #. settings-schema.json->autoUpdate->description 177 | msgid "Auto Update" 178 | msgstr "Ciclo continuo giorno-notte e notte-giorno" 179 | 180 | #. settings-schema.json->autoUpdate->tooltip 181 | msgid "Continuously adjust color temperature" 182 | msgstr "Regola continuamente la temperatura del colore" 183 | 184 | #. settings-schema.json->autoUpdateInterval->units 185 | msgid "Seconds" 186 | msgstr "Secondi" 187 | 188 | #. settings-schema.json->autoUpdateInterval->description 189 | msgid "Update interval" 190 | msgstr "Intervallo" 191 | 192 | #. settings-schema.json->adjustmentMethod->description 193 | msgid "Adjustment Method" 194 | msgstr "Metodo di regolazione" 195 | 196 | #. settings-schema.json->adjustmentMethod->options 197 | msgid "needload" 198 | msgstr "needload" 199 | 200 | #. settings-schema.json->adjustmentMethod->options 201 | msgid "randr" 202 | msgstr "randr" 203 | 204 | #. settings-schema.json->adjustmentMethod->options 205 | msgid "vidmode" 206 | msgstr "vidmode" 207 | 208 | #. settings-schema.json->adjustmentMethod->tooltip 209 | msgid "Method to use to set color temperature" 210 | msgstr "Metodo utilizzato per la regolazione della temperatura del colore" 211 | 212 | #. settings-schema.json->labelScrollAction->description 213 | msgid "Icon Scroll Action" 214 | msgstr "Scorrimento sull'icona" 215 | 216 | #. settings-schema.json->labelScrollAction->options 217 | msgid "Disabled" 218 | msgstr "Nessuna azione" 219 | 220 | #. settings-schema.json->labelScrollAction->options 221 | #. settings-schema.json->keyToggle->description 222 | msgid "On/Off" 223 | msgstr "Attiva/Disattiva" 224 | 225 | #. settings-schema.json->labelScrollAction->options 226 | msgid "Bright" 227 | msgstr "Regola luminosità" 228 | 229 | #. settings-schema.json->labelScrollAction->options 230 | #. settings-schema.json->gammaMix->description 231 | msgid "Gamma" 232 | msgstr "Regola gamma" 233 | 234 | #. settings-schema.json->labelScrollAction->tooltip 235 | msgid "Action when scroll on applet icon." 236 | msgstr "" 237 | "Definsice l'azione della rotellina del mouse quando si scorre sull'icona." 238 | 239 | #. settings-schema.json->symbolicIcon->description 240 | msgid "Use symbolic icon" 241 | msgstr "Usa un'icona simbolica" 242 | 243 | #. settings-schema.json->keyBrightnessUp->description 244 | msgid "Increase brightness level" 245 | msgstr "Aumenta luminosità" 246 | 247 | #. settings-schema.json->keyBrightnessDown->description 248 | msgid "Decrease brightness level" 249 | msgstr "Diminuisci luminosità" 250 | 251 | #. settings-schema.json->keyTempUp->description 252 | msgid "Increase temperature level" 253 | msgstr "Aumenta temperatua del colore" 254 | 255 | #. settings-schema.json->keyTempDown->description 256 | msgid "Decrease temperature level" 257 | msgstr "Diminuisci temperatura del colore" 258 | 259 | #. settings-schema.json->keyGammaUp->description 260 | msgid "Increase gamma level" 261 | msgstr "Aumenta gamma" 262 | 263 | #. settings-schema.json->keyGammaDown->description 264 | msgid "Decrease gamma level" 265 | msgstr "Diminuisci gamma" 266 | 267 | #. settings-schema.json->dayTemp->units 268 | #. settings-schema.json->nightTemp->units 269 | msgid "K" 270 | msgstr "K" 271 | 272 | #. settings-schema.json->dayBrightness->units 273 | #. settings-schema.json->nightBrightness->units 274 | msgid "%" 275 | msgstr "%" 276 | 277 | #. settings-schema.json->smoothTransition->description 278 | msgid "Smooth transition between day and night" 279 | msgstr "Transizione fluida tra il giorno e la notte" 280 | 281 | #. settings-schema.json->transitionDuration->units 282 | msgid "Minutes" 283 | msgstr "Minuti" 284 | 285 | #. settings-schema.json->transitionDuration->description 286 | msgid "Transition Duration" 287 | msgstr "Durata Transizione" 288 | 289 | #. settings-schema.json->manualNightTime->description 290 | msgid "Use Manual Night Time" 291 | msgstr "Usa l'ora notturna manuale" 292 | 293 | #. settings-schema.json->nightTimeStart->description 294 | msgid "Choose Start Time" 295 | msgstr "Scegli orario di Inizio" 296 | 297 | #. settings-schema.json->nightTimeEnd->description 298 | msgid "Choose End Time" 299 | msgstr "Scegli orario di Fine" 300 | 301 | #. settings-schema.json->locationRemote->description 302 | msgid "Remote Location" 303 | msgstr "Servizio di geolocalizzazione" 304 | 305 | #. settings-schema.json->locationRemote->tooltip 306 | #. settings-schema.json->locationUpdate->tooltip 307 | msgid "Native geoclue on redshift can make the experience slow." 308 | msgstr "" 309 | "La geolocalizzazione integrata di redshift potrebbe causare rallentamenti." 310 | 311 | #. settings-schema.json->locationUpdate->description 312 | msgid "Update Location" 313 | msgstr "Aggiorna geolocalizzazione" 314 | 315 | #. settings-schema.json->locationLatitude->description 316 | msgid "Latitude" 317 | msgstr "Latitudine" 318 | 319 | #. settings-schema.json->locationLongitude->description 320 | msgid "Longitude" 321 | msgstr "Longitudine" 322 | 323 | #. settings-schema.json->aboutLocation->description 324 | msgid "" 325 | "Native geoclue on redshift can make the experience slow.\n" 326 | "Using: https://geolocation-db.com/" 327 | msgstr "" 328 | "La geolocalizzazione integrata di redshift potrebbe causare rallentamenti.\n" 329 | "Viene utilizzato il servizio https://geolocation-db.com" 330 | 331 | #. settings-schema.json->textTips->description 332 | msgid "* Right-click the sliders to reset the default (neutral) value." 333 | msgstr "" 334 | "* Clicca col tasto destro del mouse sulle barre di scorrimento per riportare " 335 | "al valore predefinito (valore neutrale)." 336 | 337 | #. settings-schema.json->textHelp->description 338 | msgid "" 339 | "When updating to a new version make sure you reset the configs to default by " 340 | "deleting the ~/.cinnamon/configs/qredshift@quintao/qredshift@quintao.json.\n" 341 | "You will lost all your configs." 342 | msgstr "" 343 | "Quando esegui l'aggiornamento a una nuova versione, assicurati di " 344 | "ripristinare le impostazioni predefinite eliminando il file ~/.cinnamon/" 345 | "configs/qredshift@quintao/qredshift@quintao.json.\n" 346 | "Perderai tutte le tue configurazioni." 347 | 348 | #. settings-schema.json->textInfo->description 349 | msgid "" 350 | "If you like and use this applet take the time to visit it's page on Cinnamon " 351 | "Spices and give it a star. You only need a github account to do this." 352 | msgstr "" 353 | "Se apprezzi e utilizzi quest'applet, visita la pagina dedicata su Cinnamon " 354 | "Spices e dalle una stella. Per farlo, è richiesto semplicemente un account " 355 | "github." 356 | 357 | #~ msgid "" 358 | #~ "Sets brightness, gamma levels and color temperature with Redshift. This " 359 | #~ "applet conflicts with redshift-gtk, make sure you remove it." 360 | #~ msgstr "" 361 | #~ "Regola luminosità, gamma e temperatura del colore con Redshift. L'applet " 362 | #~ "va in conflitto con il pacchetto redshift-gtk. Assicurarsi di rimuoverlo." 363 | 364 | #~ msgid "Sec." 365 | #~ msgstr "Sec." 366 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2019 Raphael Quintão 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/es.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-01-16 03:29-0100\n" 11 | "PO-Revision-Date: 2024-01-16 13:17-0300\n" 12 | "Last-Translator: \n" 13 | "Language-Team: \n" 14 | "Language: es\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Generator: Poedit 3.4\n" 20 | 21 | #: applet.js:239 22 | msgid "Reload Applet" 23 | msgstr "Recargar Applet" 24 | 25 | #: applet.js:250 26 | msgid "Recompile Translations" 27 | msgstr "Recompilar traducciones" 28 | 29 | #: applet.js:302 30 | msgid "REDSHIFT NOT INSTALLED!" 31 | msgstr "¡REDHISFT NO ESTÁ INSTALADO!" 32 | 33 | #: applet.js:305 34 | msgid "Requires Redshift: yay -S redshift-minimal" 35 | msgstr "Requiere Redshift: yay -S redshift-minimal" 36 | 37 | #: applet.js:308 38 | msgid "Requires Redshift: sudo apt-get install redshift" 39 | msgstr "Requiere Redshift: sudo apt-get install redshift" 40 | 41 | #: applet.js:460 applet.js:489 42 | msgid "should be removed." 43 | msgstr "debe ser eliminado." 44 | 45 | #: applet.js:482 46 | msgid "should be replaced by redshift-minimal" 47 | msgstr "debe sustituirse por redshift-minimal" 48 | 49 | #. settings-schema.json->enabled->description 50 | #: applet.js:652 51 | msgid "Enabled" 52 | msgstr "Habilitado" 53 | 54 | #: applet.js:660 applet.js:705 55 | msgid "Temp:" 56 | msgstr "Temperatura:" 57 | 58 | #: applet.js:671 applet.js:716 59 | msgid "Bright:" 60 | msgstr "Brillo:" 61 | 62 | #: applet.js:682 applet.js:1018 63 | msgid "Gamma:" 64 | msgstr "Gamma:" 65 | 66 | #. settings-schema.json->enabledNight->description 67 | #: applet.js:697 68 | msgid "Night Enabled" 69 | msgstr "Modo nocturno habilitado" 70 | 71 | #. settings-schema.json->iconLabel->description 72 | #: applet.js:759 73 | msgid "Show Label" 74 | msgstr "Mostrar etiqueta" 75 | 76 | #: applet.js:976 applet.js:1001 77 | msgid "Transition to day" 78 | msgstr "Transición al día" 79 | 80 | #: applet.js:977 applet.js:1002 81 | msgid "Transition to night" 82 | msgstr "Transición a la noche" 83 | 84 | #: applet.js:978 applet.js:1003 85 | msgid "Night" 86 | msgstr "Noche" 87 | 88 | #: applet.js:979 applet.js:1004 89 | msgid "Day" 90 | msgstr "Día" 91 | 92 | #: applet.js:993 93 | msgid "On" 94 | msgstr "Ecendido" 95 | 96 | #: applet.js:993 applet.js:995 97 | msgid "Off" 98 | msgstr "Apagado" 99 | 100 | #: applet.js:1009 101 | msgid "Day Temperature" 102 | msgstr "Temperatura diurna" 103 | 104 | #: applet.js:1010 105 | msgid "Day Brightness" 106 | msgstr "Brillo diurno" 107 | 108 | #: applet.js:1012 109 | msgid "Night Temperature" 110 | msgstr "Temperatura nocturna" 111 | 112 | #: applet.js:1013 113 | msgid "Night Brightness" 114 | msgstr "Brillo nocturno" 115 | 116 | #. settings-schema.json->labelScrollAction->options 117 | #. settings-schema.json->dayTemp->description 118 | #. settings-schema.json->nightTemp->description 119 | #: applet.js:1015 120 | msgid "Temperature" 121 | msgstr "Temperatura" 122 | 123 | #. settings-schema.json->dayBrightness->description 124 | #. settings-schema.json->nightBrightness->description 125 | #: applet.js:1016 126 | msgid "Brightness" 127 | msgstr "Brillo" 128 | 129 | #. metadata.json->name 130 | msgid "QRedshift" 131 | msgstr "QRedshift" 132 | 133 | #. metadata.json->description 134 | msgid "" 135 | "It makes the color of your computer's display adapt to the time of day, warm " 136 | "at night and like sunlight during the day." 137 | msgstr "" 138 | "Hace que el color de la pantalla del ordenador se adapte a la hora del día, " 139 | "cálido por la noche y luz del sol durante el día." 140 | 141 | #. settings-schema.json->panel-options->title 142 | msgid "Settings" 143 | msgstr "Configuración" 144 | 145 | #. settings-schema.json->panel-location->title 146 | msgid "Location" 147 | msgstr "Ubicación" 148 | 149 | #. settings-schema.json->panel-shortcuts->title 150 | msgid "Shortcuts" 151 | msgstr "Atajos" 152 | 153 | #. settings-schema.json->info-section->title 154 | msgid "Tips" 155 | msgstr "Consejos" 156 | 157 | #. settings-schema.json->opt-section->title 158 | msgid "Options" 159 | msgstr "Opciones" 160 | 161 | #. settings-schema.json->day-section->title 162 | msgid "Day Settings" 163 | msgstr "Configuración diurna" 164 | 165 | #. settings-schema.json->night-section->title 166 | msgid "Night Settings" 167 | msgstr "Configuración nocturna" 168 | 169 | #. settings-schema.json->keybind-section->title 170 | msgid "Key Bindings" 171 | msgstr "Atajos del teclado" 172 | 173 | #. settings-schema.json->location-section->title 174 | msgid "Location Settings" 175 | msgstr "Configuración de ubicación" 176 | 177 | #. settings-schema.json->enabled->tooltip 178 | msgid "" 179 | "Automatically disabled under Wayland due to redshift not being yet supported " 180 | "by Wayland" 181 | msgstr "" 182 | "Desactivado automáticamente en Wayland debido a que redshift aún no es " 183 | "compatible con Wayland" 184 | 185 | #. settings-schema.json->enableAtStartup->description 186 | msgid "Reactivate QRedshift as soon as Cinnamon starts up" 187 | msgstr "Reactivar QRedshift en cuanto se inicie Cinnamon" 188 | 189 | #. settings-schema.json->enableAtStartup->tooltip 190 | msgid "" 191 | "Won't work under Wayland due to redshift not being yet supported by Wayland" 192 | msgstr "" 193 | "No funcionará en Wayland debido a que redshift aún no está soportado por " 194 | "Wayland" 195 | 196 | #. settings-schema.json->autoUpdate->description 197 | msgid "Auto Update" 198 | msgstr "Actualización automática" 199 | 200 | #. settings-schema.json->autoUpdate->tooltip 201 | msgid "Continuously adjust color temperature" 202 | msgstr "Ajuste continuo de la temperatura del color" 203 | 204 | #. settings-schema.json->autoUpdateInterval->units 205 | msgid "Seconds" 206 | msgstr "Segundos" 207 | 208 | #. settings-schema.json->autoUpdateInterval->description 209 | msgid "Update interval" 210 | msgstr "Intervalo de actualización" 211 | 212 | #. settings-schema.json->adjustmentMethod->description 213 | msgid "Adjustment Method" 214 | msgstr "Método de Ajuste" 215 | 216 | #. settings-schema.json->adjustmentMethod->options 217 | msgid "needload" 218 | msgstr "needload" 219 | 220 | #. settings-schema.json->adjustmentMethod->options 221 | msgid "randr" 222 | msgstr "randr" 223 | 224 | #. settings-schema.json->adjustmentMethod->options 225 | msgid "vidmode" 226 | msgstr "vimode" 227 | 228 | #. settings-schema.json->adjustmentMethod->tooltip 229 | msgid "Method to use to set color temperature" 230 | msgstr "Método para ajustar la temperatura del color" 231 | 232 | #. settings-schema.json->labelScrollAction->description 233 | msgid "Icon Scroll Action" 234 | msgstr "Acción del icono de desplazamiento" 235 | 236 | #. settings-schema.json->labelScrollAction->options 237 | msgid "Disabled" 238 | msgstr "Deshabilidato" 239 | 240 | #. settings-schema.json->labelScrollAction->options 241 | #. settings-schema.json->keyToggle->description 242 | msgid "On/Off" 243 | msgstr "Encendido/Apagado" 244 | 245 | #. settings-schema.json->labelScrollAction->options 246 | msgid "Bright" 247 | msgstr "Brillo" 248 | 249 | #. settings-schema.json->labelScrollAction->options 250 | #. settings-schema.json->gammaMix->description 251 | msgid "Gamma" 252 | msgstr "Gamma" 253 | 254 | #. settings-schema.json->labelScrollAction->tooltip 255 | msgid "Action when scroll on applet icon." 256 | msgstr "Acción al desplazarse sobre el icono del applet." 257 | 258 | #. settings-schema.json->symbolicIcon->description 259 | msgid "Use symbolic icon" 260 | msgstr "Usar iconos simbólicos" 261 | 262 | #. settings-schema.json->keyBrightnessUp->description 263 | msgid "Increase brightness level" 264 | msgstr "Aumentar el nivel de brillo" 265 | 266 | #. settings-schema.json->keyBrightnessDown->description 267 | msgid "Decrease brightness level" 268 | msgstr "Disminuir el nivel de brillo" 269 | 270 | #. settings-schema.json->keyTempUp->description 271 | msgid "Increase temperature level" 272 | msgstr "Aumentar el nivel de temperatura" 273 | 274 | #. settings-schema.json->keyTempDown->description 275 | msgid "Decrease temperature level" 276 | msgstr "Disminuir el nivel de temperatura" 277 | 278 | #. settings-schema.json->keyGammaUp->description 279 | msgid "Increase gamma level" 280 | msgstr "Aumentar el nivel de gamma" 281 | 282 | #. settings-schema.json->keyGammaDown->description 283 | msgid "Decrease gamma level" 284 | msgstr "Disminuir el nivel de gamma" 285 | 286 | #. settings-schema.json->dayTemp->units 287 | #. settings-schema.json->nightTemp->units 288 | msgid "K" 289 | msgstr "K" 290 | 291 | #. settings-schema.json->dayBrightness->units 292 | #. settings-schema.json->nightBrightness->units 293 | msgid "%" 294 | msgstr "%" 295 | 296 | #. settings-schema.json->smoothTransition->description 297 | msgid "Smooth transition between day and night" 298 | msgstr "Transición suave entre el día y la noche" 299 | 300 | #. settings-schema.json->transitionDuration->units 301 | msgid "Minutes" 302 | msgstr "Minutos" 303 | 304 | #. settings-schema.json->transitionDuration->description 305 | msgid "Transition Duration" 306 | msgstr "Duración de la transición" 307 | 308 | #. settings-schema.json->manualNightTime->description 309 | msgid "Use Manual Night Time" 310 | msgstr "Usar horario nocturno manual" 311 | 312 | #. settings-schema.json->nightTimeStart->description 313 | msgid "Choose Start Time" 314 | msgstr "Seleccione hora de inicio" 315 | 316 | #. settings-schema.json->nightTimeEnd->description 317 | msgid "Choose End Time" 318 | msgstr "Seleccione hora de término" 319 | 320 | #. settings-schema.json->locationRemote->description 321 | msgid "Remote Location" 322 | msgstr "Ubicación remota" 323 | 324 | #. settings-schema.json->locationRemote->tooltip 325 | #. settings-schema.json->locationUpdate->tooltip 326 | msgid "Native geoclue on redshift can make the experience slow." 327 | msgstr "Geoclue nativo en redshift puede hacer lenta su experiencia." 328 | 329 | #. settings-schema.json->locationUpdate->description 330 | msgid "Update Location" 331 | msgstr "Actualizar la ubicación" 332 | 333 | #. settings-schema.json->locationLatitude->description 334 | msgid "Latitude" 335 | msgstr "Latitud" 336 | 337 | #. settings-schema.json->locationLongitude->description 338 | msgid "Longitude" 339 | msgstr "Longitud" 340 | 341 | #. settings-schema.json->aboutLocation->description 342 | msgid "" 343 | "Native geoclue on redshift can make the experience slow.\n" 344 | "Using: https://geolocation-db.com/" 345 | msgstr "" 346 | "Geoclue nativo en redshift puede hacer su experiencia lenta. \n" 347 | "Utilizando: https://geolocation-db.com/" 348 | 349 | #. settings-schema.json->textTips->description 350 | msgid "* Right-click the sliders to reset the default (neutral) value." 351 | msgstr "" 352 | "* Haga clic con el botón derecho en los controles deslizantes para " 353 | "restablecer el valor predeterminado (neutro)." 354 | 355 | #. settings-schema.json->textHelp->description 356 | msgid "" 357 | "When updating to a new version make sure you reset the configs to default by " 358 | "deleting the ~/.cinnamon/configs/qredshift@quintao/qredshift@quintao.json.\n" 359 | "You will lost all your configs." 360 | msgstr "" 361 | "Cuando actualice a una nueva versión, asegúrese de restablecer la " 362 | "configuración por defecto borrando el archivo ~/.cinnamon/configs/" 363 | "qredshift@quintao/qredshift@quintao.json.\n" 364 | " Perderá todas sus configuraciones." 365 | 366 | #. settings-schema.json->textInfo->description 367 | msgid "" 368 | "If you like and use this applet take the time to visit it's page on Cinnamon " 369 | "Spices and give it a star. You only need a github account to do this." 370 | msgstr "" 371 | "Si te gusta y usas este applet tómate el tiempo de visitar su página en " 372 | "Cinnamon Spices y dale una estrella. Sólo necesitas una cuenta de github " 373 | "para hacerlo." 374 | 375 | #~ msgid "(even if it has previously been deactivated)" 376 | #~ msgstr "(aunque se haya desactivado previamente)" 377 | -------------------------------------------------------------------------------- /files/qredshift@quintao/po/qredshift@quintao.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2024-07-12 06:02-0300\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: applet.js:308 21 | msgid "Reload Applet" 22 | msgstr "" 23 | 24 | #: applet.js:314 25 | msgid "Generate .POT file" 26 | msgstr "" 27 | 28 | #: applet.js:319 29 | msgid "Recompile Translations" 30 | msgstr "" 31 | 32 | #: applet.js:378 applet.js:379 33 | msgid "Something went wrong!" 34 | msgstr "" 35 | 36 | #: applet.js:424 applet.js:430 37 | msgid "New Version Available" 38 | msgstr "" 39 | 40 | #: applet.js:431 applet.js:434 41 | msgid "Click to Update" 42 | msgstr "" 43 | 44 | #: applet.js:445 45 | msgid "You are running the latest version." 46 | msgstr "" 47 | 48 | #: applet.js:451 49 | msgid "Failed to check updates" 50 | msgstr "" 51 | 52 | #: applet.js:451 53 | msgid "Api Limit Exceeded" 54 | msgstr "" 55 | 56 | #: applet.js:468 57 | msgid "Updating! Your system may freeze for a few seconds." 58 | msgstr "" 59 | 60 | #: applet.js:469 61 | msgid "Downloading files..." 62 | msgstr "" 63 | 64 | #: applet.js:473 65 | msgid "Installing..." 66 | msgstr "" 67 | 68 | #: applet.js:479 69 | msgid "Reloading Applet..." 70 | msgstr "" 71 | 72 | #: applet.js:481 73 | msgid "Updated successfully" 74 | msgstr "" 75 | 76 | #: applet.js:481 77 | msgid "Version installed" 78 | msgstr "" 79 | 80 | #: applet.js:486 applet.js:491 81 | msgid "Update failed" 82 | msgstr "" 83 | 84 | #: applet.js:495 85 | msgid "Failed to download update!" 86 | msgstr "" 87 | 88 | #: applet.js:632 89 | msgid "package can be removed." 90 | msgstr "" 91 | 92 | #: applet.js:635 93 | msgid "Old Redshift package is no longer required and can be safely removed." 94 | msgstr "" 95 | 96 | #: applet.js:654 applet.js:658 97 | msgid "Not supported on wayland!" 98 | msgstr "" 99 | 100 | #: applet.js:661 101 | msgid "" 102 | "Automatically disabled under Wayland due to cinnamon compositor not yet " 103 | "support gamma ramps change." 104 | msgstr "" 105 | 106 | #: applet.js:667 applet.js:673 107 | msgid "Unsupported architecture" 108 | msgstr "" 109 | 110 | #: applet.js:676 111 | msgid "Unsupported architecture, click here to report." 112 | msgstr "" 113 | 114 | #: applet.js:718 115 | msgid "Error searching for your location" 116 | msgstr "" 117 | 118 | #. settings-schema.json->nightTimeStart->description 119 | #: applet.js:864 120 | msgid "Sunset" 121 | msgstr "" 122 | 123 | #. settings-schema.json->nightTimeEnd->description 124 | #: applet.js:865 125 | msgid "Sunrise" 126 | msgstr "" 127 | 128 | #. settings-schema.json->enabled->description 129 | #: applet.js:879 130 | msgid "Enabled" 131 | msgstr "" 132 | 133 | #: applet.js:887 applet.js:932 134 | msgid "Temp:" 135 | msgstr "" 136 | 137 | #: applet.js:898 applet.js:943 138 | msgid "Bright:" 139 | msgstr "" 140 | 141 | #: applet.js:909 applet.js:1233 142 | msgid "Gamma:" 143 | msgstr "" 144 | 145 | #. settings-schema.json->enabledNight->description 146 | #: applet.js:924 147 | msgid "Night Enabled" 148 | msgstr "" 149 | 150 | #. settings-schema.json->iconLabel->description 151 | #: applet.js:988 152 | msgid "Show Label" 153 | msgstr "" 154 | 155 | #: applet.js:1183 applet.js:1209 156 | msgid "Transition to day" 157 | msgstr "" 158 | 159 | #: applet.js:1184 applet.js:1210 160 | msgid "Transition to night" 161 | msgstr "" 162 | 163 | #: applet.js:1185 applet.js:1211 164 | msgid "Night" 165 | msgstr "" 166 | 167 | #: applet.js:1186 applet.js:1212 168 | msgid "Day" 169 | msgstr "" 170 | 171 | #: applet.js:1202 172 | msgid "On" 173 | msgstr "" 174 | 175 | #: applet.js:1202 applet.js:1203 176 | msgid "Off" 177 | msgstr "" 178 | 179 | #: applet.js:1224 180 | msgid "Day Temperature" 181 | msgstr "" 182 | 183 | #: applet.js:1225 184 | msgid "Day Brightness" 185 | msgstr "" 186 | 187 | #: applet.js:1227 188 | msgid "Night Temperature" 189 | msgstr "" 190 | 191 | #: applet.js:1228 192 | msgid "Night Brightness" 193 | msgstr "" 194 | 195 | #. settings-schema.json->labelScrollAction->options 196 | #. settings-schema.json->dayTemp->description 197 | #. settings-schema.json->nightTemp->description 198 | #. settings-schema.json->stepTemp->description 199 | #: applet.js:1230 200 | msgid "Temperature" 201 | msgstr "" 202 | 203 | #. settings-schema.json->dayBrightness->description 204 | #. settings-schema.json->nightBrightness->description 205 | #. settings-schema.json->stepBright->description 206 | #: applet.js:1231 207 | msgid "Brightness" 208 | msgstr "" 209 | 210 | #. metadata.json->name 211 | msgid "QRedshift" 212 | msgstr "" 213 | 214 | #. metadata.json->description 215 | msgid "" 216 | "It makes the color of your computer's display adapt to the time of day, warm" 217 | " at night and like sunlight during the day." 218 | msgstr "" 219 | 220 | #. settings-schema.json->panel-general->title 221 | msgid "General" 222 | msgstr "" 223 | 224 | #. settings-schema.json->panel-temperature->title 225 | msgid "Temperatures" 226 | msgstr "" 227 | 228 | #. settings-schema.json->panel-location->title 229 | msgid "Location" 230 | msgstr "" 231 | 232 | #. settings-schema.json->panel-shortcuts->title 233 | msgid "Shortcuts" 234 | msgstr "" 235 | 236 | #. settings-schema.json->panel-help->title 237 | msgid "Help" 238 | msgstr "" 239 | 240 | #. settings-schema.json->section-options->title 241 | msgid "Options" 242 | msgstr "" 243 | 244 | #. settings-schema.json->section-behavior->title 245 | msgid "Behavior" 246 | msgstr "" 247 | 248 | #. settings-schema.json->day-section->title 249 | msgid "Day Settings" 250 | msgstr "" 251 | 252 | #. settings-schema.json->night-section->title 253 | msgid "Night Settings" 254 | msgstr "" 255 | 256 | #. settings-schema.json->keybind-section->title 257 | msgid "Key Bindings" 258 | msgstr "" 259 | 260 | #. settings-schema.json->step-section->title 261 | msgid "Step" 262 | msgstr "" 263 | 264 | #. settings-schema.json->location-section->title 265 | msgid "Location Settings" 266 | msgstr "" 267 | 268 | #. settings-schema.json->section-tips->title 269 | msgid "Tips" 270 | msgstr "" 271 | 272 | #. settings-schema.json->section-project->title 273 | msgid "More about QRedshift" 274 | msgstr "" 275 | 276 | #. settings-schema.json->section-update->title 277 | msgid "Update" 278 | msgstr "" 279 | 280 | #. settings-schema.json->section-debug->title 281 | #. settings-schema.json->debugToggle->description 282 | msgid "Debug" 283 | msgstr "" 284 | 285 | #. settings-schema.json->enableAtStartup->description 286 | #. settings-schema.json->enableAtStartup->tooltip 287 | msgid "Reactivate QRedshift as soon as Cinnamon starts up" 288 | msgstr "" 289 | 290 | #. settings-schema.json->autoUpdate->description 291 | msgid "Auto Update" 292 | msgstr "" 293 | 294 | #. settings-schema.json->autoUpdate->tooltip 295 | msgid "Continuously adjust color temperature" 296 | msgstr "" 297 | 298 | #. settings-schema.json->autoUpdateInterval->units 299 | msgid "Seconds" 300 | msgstr "" 301 | 302 | #. settings-schema.json->autoUpdateInterval->description 303 | msgid "Update interval" 304 | msgstr "" 305 | 306 | #. settings-schema.json->labelScrollAction->description 307 | msgid "Icon Scroll Action" 308 | msgstr "" 309 | 310 | #. settings-schema.json->labelScrollAction->options 311 | msgid "Disabled" 312 | msgstr "" 313 | 314 | #. settings-schema.json->labelScrollAction->options 315 | #. settings-schema.json->keyToggle->description 316 | msgid "On/Off" 317 | msgstr "" 318 | 319 | #. settings-schema.json->labelScrollAction->options 320 | msgid "Bright" 321 | msgstr "" 322 | 323 | #. settings-schema.json->labelScrollAction->options 324 | #. settings-schema.json->gammaMix->description 325 | #. settings-schema.json->stepGamma->description 326 | msgid "Gamma" 327 | msgstr "" 328 | 329 | #. settings-schema.json->labelScrollAction->tooltip 330 | msgid "Action when scroll on applet icon." 331 | msgstr "" 332 | 333 | #. settings-schema.json->symbolicIcon->description 334 | msgid "Use symbolic icon" 335 | msgstr "" 336 | 337 | #. settings-schema.json->smoothTransition->description 338 | msgid "Smooth transition between day and night" 339 | msgstr "" 340 | 341 | #. settings-schema.json->transitionDuration->units 342 | msgid "Minutes" 343 | msgstr "" 344 | 345 | #. settings-schema.json->transitionDuration->description 346 | msgid "Transition Duration" 347 | msgstr "" 348 | 349 | #. settings-schema.json->dayTemp->units 350 | #. settings-schema.json->nightTemp->units 351 | msgid "K" 352 | msgstr "" 353 | 354 | #. settings-schema.json->dayBrightness->units 355 | #. settings-schema.json->nightBrightness->units 356 | msgid "%" 357 | msgstr "" 358 | 359 | #. settings-schema.json->manualNightTime->description 360 | msgid "Use Manual Night Time" 361 | msgstr "" 362 | 363 | #. settings-schema.json->keyBrightnessUp->description 364 | msgid "Increase brightness level" 365 | msgstr "" 366 | 367 | #. settings-schema.json->keyBrightnessDown->description 368 | msgid "Decrease brightness level" 369 | msgstr "" 370 | 371 | #. settings-schema.json->keyTempUp->description 372 | msgid "Increase temperature level" 373 | msgstr "" 374 | 375 | #. settings-schema.json->keyTempDown->description 376 | msgid "Decrease temperature level" 377 | msgstr "" 378 | 379 | #. settings-schema.json->keyGammaUp->description 380 | msgid "Increase gamma level" 381 | msgstr "" 382 | 383 | #. settings-schema.json->keyGammaDown->description 384 | msgid "Decrease gamma level" 385 | msgstr "" 386 | 387 | #. settings-schema.json->stepBright->tooltip 388 | #. settings-schema.json->stepGamma->tooltip 389 | msgid "Step when changing by shortcuts" 390 | msgstr "" 391 | 392 | #. settings-schema.json->stepTemp->tooltip 393 | msgid "Step when changing value by shortcuts" 394 | msgstr "" 395 | 396 | #. settings-schema.json->locationRemote->description 397 | msgid "Remote Location" 398 | msgstr "" 399 | 400 | #. settings-schema.json->locationUpdate->description 401 | msgid "Update Location" 402 | msgstr "" 403 | 404 | #. settings-schema.json->locationCity->description 405 | msgid "City" 406 | msgstr "" 407 | 408 | #. settings-schema.json->locationCity->tooltip 409 | msgid "Current City" 410 | msgstr "" 411 | 412 | #. settings-schema.json->locationLatitude->description 413 | msgid "Latitude" 414 | msgstr "" 415 | 416 | #. settings-schema.json->locationLongitude->description 417 | msgid "Longitude" 418 | msgstr "" 419 | 420 | #. settings-schema.json->aboutLocation->description 421 | msgid "" 422 | "This location is approximate! If it is wrong or if you want a more precise " 423 | "calculation, enter it manually." 424 | msgstr "" 425 | 426 | #. settings-schema.json->textTips->description 427 | msgid "Right-click the sliders to reset the default (neutral) value." 428 | msgstr "" 429 | 430 | #. settings-schema.json->textHelp->description 431 | msgid "" 432 | "When updating to a new version make sure you reset the configs to default by deleting the ~/.cinnamon/configs/qredshift@quintao/qredshift@quintao.json.\n" 433 | "You will lost all your configs." 434 | msgstr "" 435 | 436 | #. settings-schema.json->textInfo->description 437 | msgid "" 438 | "If you like and use this applet take the time to visit it's page on Github " 439 | "and give it a star." 440 | msgstr "" 441 | 442 | #. settings-schema.json->btnOpenGithub->description 443 | msgid "QRedshift at GitHub" 444 | msgstr "" 445 | 446 | #. settings-schema.json->btnOpenGithubIssue->description 447 | msgid "Submit an Issue" 448 | msgstr "" 449 | 450 | #. settings-schema.json->autoCheckUpdate->description 451 | msgid "Automatically check for updates" 452 | msgstr "" 453 | 454 | #. settings-schema.json->checkUpdateInterval->units 455 | msgid "minutes" 456 | msgstr "" 457 | 458 | #. settings-schema.json->checkUpdateInterval->description 459 | msgid "Check update interval" 460 | msgstr "" 461 | 462 | #. settings-schema.json->btnUpdate->description 463 | msgid "Check For Updates" 464 | msgstr "" 465 | --------------------------------------------------------------------------------