├── .gitignore ├── po ├── extra │ ├── POTFILES │ ├── meson.build │ ├── aa.po │ ├── ab.po │ ├── ae.po │ ├── am.po │ ├── an.po │ ├── as.po │ ├── ast.po │ ├── av.po │ ├── ay.po │ ├── ba.po │ ├── bh.po │ ├── bi.po │ ├── bm.po │ ├── bo.po │ ├── br.po │ ├── ce.po │ ├── ch.po │ ├── co.po │ ├── cr.po │ ├── cu.po │ ├── cy.po │ ├── dv.po │ ├── dz.po │ ├── ee.po │ ├── ff.po │ ├── fil.po │ ├── fj.po │ ├── fo.po │ ├── fy.po │ ├── gd.po │ ├── gn.po │ └── gu.po ├── POTFILES ├── meson.build ├── aa.po ├── ab.po ├── ae.po ├── af.po ├── ak.po ├── am.po ├── an.po ├── as.po ├── ast.po ├── av.po ├── ay.po ├── ba.po ├── bh.po ├── bi.po ├── bm.po ├── bo.po ├── br.po ├── ce.po ├── ch.po ├── co.po ├── cr.po ├── cu.po ├── cv.po ├── cy.po ├── dv.po ├── dz.po ├── ee.po ├── el.po ├── en_AU.po ├── eu.po ├── fa.po ├── ff.po ├── fj.po ├── fy.po ├── ga.po ├── gd.po ├── gn.po ├── gu.po ├── gv.po ├── ha.po ├── ho.po ├── ht.po ├── hy.po ├── hz.po ├── ia.po ├── ie.po ├── ig.po ├── ii.po ├── ik.po ├── io.po ├── is.po ├── iu.po ├── jv.po ├── kg.po ├── ki.po ├── kj.po ├── kk.po ├── kl.po ├── km.po ├── kn.po ├── kr.po ├── ks.po ├── kv.po ├── kw.po ├── ky.po ├── la.po ├── lb.po ├── lg.po ├── li.po ├── ln.po ├── lo.po ├── lu.po ├── mg.po ├── mh.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── ms.po ├── mt.po ├── my.po ├── na.po ├── nd.po ├── ne.po ├── ng.po ├── nr.po ├── nv.po ├── ny.po ├── oc.po ├── oj.po ├── om.po ├── or.po ├── os.po ├── pi.po ├── ps.po ├── qu.po ├── rm.po ├── rn.po ├── rue.po ├── rw.po ├── sa.po ├── sc.po ├── sd.po ├── se.po ├── sg.po ├── sm.po ├── sma.po ├── sn.po ├── so.po ├── sq.po ├── ss.po ├── st.po ├── su.po ├── sw.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── ti.po ├── tk.po ├── tl.po ├── tn.po ├── to.po ├── ts.po ├── tt.po ├── tw.po ├── ty.po ├── ug.po ├── ur.po ├── uz.po ├── ve.po ├── vo.po ├── wa.po ├── wo.po ├── xh.po ├── yi.po ├── yo.po ├── za.po ├── zh.po ├── zu.po ├── bg.po ├── fo.po ├── no.po ├── lv.po ├── ro.po ├── be.po ├── ku.po ├── fil.po ├── pap.po ├── en_ZA.po ├── sr@latin.po ├── ca@valencia.po ├── ckb.po ├── io.elementary.panel.nightlight.pot ├── ka.po ├── pa.po ├── zh_CN.po ├── zh_TW.po ├── ja.po ├── sk.po └── ko.po ├── data ├── screenshot.png └── meson.build ├── src └── Config.vala.in ├── .github ├── dependabot.yml └── workflows │ ├── gettext.yml │ ├── release.yml │ └── main.yml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/nightlight.metainfo.xml.in 2 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/panel-nightlight/HEAD/data/screenshot.png -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Indicator.vala 2 | src/Services/ColorInterface.vala 3 | src/Widgets/PopoverWidget.vala 4 | -------------------------------------------------------------------------------- /src/Config.vala.in: -------------------------------------------------------------------------------- 1 | public const string GETTEXT_PACKAGE = @GETTEXT_PACKAGE@; 2 | public const string LOCALEDIR = @LOCALEDIR@; 3 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: '--directory=' + meson.project_source_root(), 3 | preset: 'glib', 4 | install: false, 5 | ) 6 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(gettext_name, 2 | args: '--directory=' + meson.project_source_root(), 3 | preset: 'glib' 4 | ) 5 | 6 | subdir('extra') 7 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | i18n.merge_file( 2 | input: 'nightlight.metainfo.xml.in', 3 | output: gettext_name + '.metainfo.xml', 4 | po_dir: meson.project_source_root() / 'po' / 'extra', 5 | type: 'xml', 6 | install: true, 7 | install_dir: get_option('datadir') / 'metainfo' 8 | ) 9 | -------------------------------------------------------------------------------- /.github/workflows/gettext.yml: -------------------------------------------------------------------------------- 1 | name: Gettext Updates 2 | on: 3 | push: 4 | branches: [main] 5 | 6 | jobs: 7 | gettext_template: 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - name: Clone repository 12 | uses: actions/checkout@v6 13 | with: 14 | token: ${{ secrets.GIT_USER_TOKEN }} 15 | 16 | - name: Update Translation Files 17 | uses: elementary/actions/gettext-template@main 18 | env: 19 | GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} 20 | GIT_USER_NAME: "elementaryBot" 21 | GIT_USER_EMAIL: "builds@elementary.io" 22 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | pull_request: 5 | branches: [master] 6 | types: [closed] 7 | jobs: 8 | release: 9 | runs-on: ubuntu-latest 10 | if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') 11 | steps: 12 | - uses: actions/checkout@v6 13 | - uses: elementary/actions/release@main 14 | env: 15 | GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" 16 | GIT_USER_NAME: "elementaryBot" 17 | GIT_USER_EMAIL: "builds@elementary.io" 18 | with: 19 | release_branch: "horus" 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wingpanel Nightlight Indicator 2 | [![Translation status](https://l10n.elementaryos.org/widget/wingpanel/nightlight/svg-badge.svg)](https://l10n.elementaryos.org/engage/wingpanel/) 3 | 4 | ![Screenshot](data/screenshot.png?raw=true) 5 | 6 | ## Building and Installation 7 | 8 | You'll need the following dependencies: 9 | 10 | libglib2.0-dev 11 | libgranite-7-dev 12 | libgtk-4-dev 13 | libwingpanel-8-dev 14 | meson >= 0.58.0 15 | valac 16 | 17 | Run `meson` to configure the build environment and then `ninja` to build 18 | 19 | meson build --prefix=/usr 20 | cd build 21 | ninja 22 | 23 | To install, use `ninja install` 24 | 25 | sudo ninja install 26 | -------------------------------------------------------------------------------- /po/aa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ab.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ae.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ak.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/av.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ay.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ba.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/bh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/bi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/bm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/bo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ce.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ch.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/co.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/cr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/cu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/cv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/dv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ee.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ff.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/fj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/gd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/gn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/gv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ho.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ht.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/hz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ii.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ik.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/io.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/iu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/kg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ki.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/kj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/kl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/kr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/kv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/kw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/lb.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/lg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ln.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/lu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/mh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/mt.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/na.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/nd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ng.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/nr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/nv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ny.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/oj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/om.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/os.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/pi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/qu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/rm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/rn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/rue.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/sa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/sd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/se.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/sg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/sm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/sma.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/sn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/so.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ss.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/st.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/su.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/sw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ti.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/tk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/tl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/tn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/to.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ts.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/tw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ty.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/ve.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/vo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/wo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/yi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/yo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/za.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/zu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:106 9 | msgid "Night Light is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:107 13 | msgid "Middle-click to snooze" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:110 17 | msgid "Night Light is snoozed" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:111 21 | msgid "Middle-click to enable" 22 | msgstr "" 23 | 24 | #: src/Widgets/PopoverWidget.vala:17 25 | msgid "Disabled until sunrise" 26 | msgstr "" 27 | 28 | #: src/Widgets/PopoverWidget.vala:19 29 | msgid "Disabled until tomorrow" 30 | msgstr "" 31 | 32 | #: src/Widgets/PopoverWidget.vala:44 33 | msgid "Snooze Night Light" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:77 37 | msgid "Night Light Settings…" 38 | msgstr "" 39 | -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 8 | 9 | #: src/Indicator.vala:106 10 | msgid "Night Light is on" 11 | msgstr "" 12 | 13 | #: src/Indicator.vala:107 14 | msgid "Middle-click to snooze" 15 | msgstr "" 16 | 17 | #: src/Indicator.vala:110 18 | msgid "Night Light is snoozed" 19 | msgstr "" 20 | 21 | #: src/Indicator.vala:111 22 | msgid "Middle-click to enable" 23 | msgstr "" 24 | 25 | #: src/Widgets/PopoverWidget.vala:17 26 | msgid "Disabled until sunrise" 27 | msgstr "" 28 | 29 | #: src/Widgets/PopoverWidget.vala:19 30 | msgid "Disabled until tomorrow" 31 | msgstr "" 32 | 33 | #: src/Widgets/PopoverWidget.vala:44 34 | msgid "Snooze Night Light" 35 | msgstr "" 36 | 37 | #: src/Widgets/PopoverWidget.vala:77 38 | msgid "Night Light Settings…" 39 | msgstr "" 40 | -------------------------------------------------------------------------------- /po/fo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 8 | 9 | #: src/Indicator.vala:106 10 | msgid "Night Light is on" 11 | msgstr "" 12 | 13 | #: src/Indicator.vala:107 14 | msgid "Middle-click to snooze" 15 | msgstr "" 16 | 17 | #: src/Indicator.vala:110 18 | msgid "Night Light is snoozed" 19 | msgstr "" 20 | 21 | #: src/Indicator.vala:111 22 | msgid "Middle-click to enable" 23 | msgstr "" 24 | 25 | #: src/Widgets/PopoverWidget.vala:17 26 | msgid "Disabled until sunrise" 27 | msgstr "" 28 | 29 | #: src/Widgets/PopoverWidget.vala:19 30 | msgid "Disabled until tomorrow" 31 | msgstr "" 32 | 33 | #: src/Widgets/PopoverWidget.vala:44 34 | msgid "Snooze Night Light" 35 | msgstr "" 36 | 37 | #: src/Widgets/PopoverWidget.vala:77 38 | msgid "Night Light Settings…" 39 | msgstr "" 40 | -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 8 | 9 | #: src/Indicator.vala:106 10 | msgid "Night Light is on" 11 | msgstr "" 12 | 13 | #: src/Indicator.vala:107 14 | msgid "Middle-click to snooze" 15 | msgstr "" 16 | 17 | #: src/Indicator.vala:110 18 | msgid "Night Light is snoozed" 19 | msgstr "" 20 | 21 | #: src/Indicator.vala:111 22 | msgid "Middle-click to enable" 23 | msgstr "" 24 | 25 | #: src/Widgets/PopoverWidget.vala:17 26 | msgid "Disabled until sunrise" 27 | msgstr "" 28 | 29 | #: src/Widgets/PopoverWidget.vala:19 30 | msgid "Disabled until tomorrow" 31 | msgstr "" 32 | 33 | #: src/Widgets/PopoverWidget.vala:44 34 | msgid "Snooze Night Light" 35 | msgstr "" 36 | 37 | #: src/Widgets/PopoverWidget.vala:77 38 | msgid "Night Light Settings…" 39 | msgstr "" 40 | -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" 8 | 9 | #: src/Indicator.vala:106 10 | msgid "Night Light is on" 11 | msgstr "" 12 | 13 | #: src/Indicator.vala:107 14 | msgid "Middle-click to snooze" 15 | msgstr "" 16 | 17 | #: src/Indicator.vala:110 18 | msgid "Night Light is snoozed" 19 | msgstr "" 20 | 21 | #: src/Indicator.vala:111 22 | msgid "Middle-click to enable" 23 | msgstr "" 24 | 25 | #: src/Widgets/PopoverWidget.vala:17 26 | msgid "Disabled until sunrise" 27 | msgstr "" 28 | 29 | #: src/Widgets/PopoverWidget.vala:19 30 | msgid "Disabled until tomorrow" 31 | msgstr "" 32 | 33 | #: src/Widgets/PopoverWidget.vala:44 34 | msgid "Snooze Night Light" 35 | msgstr "" 36 | 37 | #: src/Widgets/PopoverWidget.vala:77 38 | msgid "Night Light Settings…" 39 | msgstr "" 40 | -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " 8 | "20)) ? 1 : 2;\n" 9 | 10 | #: src/Indicator.vala:106 11 | msgid "Night Light is on" 12 | msgstr "" 13 | 14 | #: src/Indicator.vala:107 15 | msgid "Middle-click to snooze" 16 | msgstr "" 17 | 18 | #: src/Indicator.vala:110 19 | msgid "Night Light is snoozed" 20 | msgstr "" 21 | 22 | #: src/Indicator.vala:111 23 | msgid "Middle-click to enable" 24 | msgstr "" 25 | 26 | #: src/Widgets/PopoverWidget.vala:17 27 | msgid "Disabled until sunrise" 28 | msgstr "" 29 | 30 | #: src/Widgets/PopoverWidget.vala:19 31 | msgid "Disabled until tomorrow" 32 | msgstr "" 33 | 34 | #: src/Widgets/PopoverWidget.vala:44 35 | msgid "Snooze Night Light" 36 | msgstr "" 37 | 38 | #: src/Widgets/PopoverWidget.vala:77 39 | msgid "Night Light Settings…" 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " 8 | "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 9 | 10 | #: src/Indicator.vala:106 11 | msgid "Night Light is on" 12 | msgstr "" 13 | 14 | #: src/Indicator.vala:107 15 | msgid "Middle-click to snooze" 16 | msgstr "" 17 | 18 | #: src/Indicator.vala:110 19 | msgid "Night Light is snoozed" 20 | msgstr "" 21 | 22 | #: src/Indicator.vala:111 23 | msgid "Middle-click to enable" 24 | msgstr "" 25 | 26 | #: src/Widgets/PopoverWidget.vala:17 27 | msgid "Disabled until sunrise" 28 | msgstr "" 29 | 30 | #: src/Widgets/PopoverWidget.vala:19 31 | msgid "Disabled until tomorrow" 32 | msgstr "" 33 | 34 | #: src/Widgets/PopoverWidget.vala:44 35 | msgid "Snooze Night Light" 36 | msgstr "" 37 | 38 | #: src/Widgets/PopoverWidget.vala:77 39 | msgid "Night Light Settings…" 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: [master] 6 | pull_request: 7 | types: 8 | - opened 9 | - reopened 10 | - synchronize 11 | 12 | jobs: 13 | build: 14 | runs-on: ubuntu-latest 15 | 16 | strategy: 17 | fail-fast: false 18 | matrix: 19 | version: [stable, unstable, development-target] 20 | container: 21 | image: ghcr.io/elementary/docker:${{ matrix.version }} 22 | 23 | steps: 24 | - uses: actions/checkout@v6 25 | - name: Install Dependencies 26 | run: | 27 | apt update 28 | apt install -y libglib2.0-dev libgranite-7-dev libgtk-4-dev libwingpanel-8-dev meson valac 29 | - name: Build 30 | env: 31 | DESTDIR: out 32 | run: | 33 | meson build 34 | ninja -C build 35 | ninja -C build install 36 | 37 | lint: 38 | runs-on: ubuntu-latest 39 | 40 | container: 41 | image: valalang/lint 42 | 43 | steps: 44 | - uses: actions/checkout@v6 45 | - name: Lint 46 | run: io.elementary.vala-lint -d . 47 | -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "PO-Revision-Date: 2018-02-11 00:11+0000\n" 6 | "Last-Translator: Rokar \n" 7 | "Language-Team: Kurdish \n" 9 | "Language: ku\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Generator: Weblate 2.18\n" 15 | 16 | #: src/Indicator.vala:106 17 | #, fuzzy 18 | #| msgid "Nightlight" 19 | msgid "Night Light is on" 20 | msgstr "nightlight" 21 | 22 | #: src/Indicator.vala:107 23 | msgid "Middle-click to snooze" 24 | msgstr "" 25 | 26 | #: src/Indicator.vala:110 27 | msgid "Night Light is snoozed" 28 | msgstr "" 29 | 30 | #: src/Indicator.vala:111 31 | msgid "Middle-click to enable" 32 | msgstr "" 33 | 34 | #: src/Widgets/PopoverWidget.vala:17 35 | msgid "Disabled until sunrise" 36 | msgstr "" 37 | 38 | #: src/Widgets/PopoverWidget.vala:19 39 | msgid "Disabled until tomorrow" 40 | msgstr "" 41 | 42 | #: src/Widgets/PopoverWidget.vala:44 43 | msgid "Snooze Night Light" 44 | msgstr "" 45 | 46 | #: src/Widgets/PopoverWidget.vala:77 47 | msgid "Night Light Settings…" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/fil.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 nightlight-indicator package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: nightlight-indicator\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fil\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/Indicator.vala:106 20 | msgid "Night Light is on" 21 | msgstr "" 22 | 23 | #: src/Indicator.vala:107 24 | msgid "Middle-click to snooze" 25 | msgstr "" 26 | 27 | #: src/Indicator.vala:110 28 | msgid "Night Light is snoozed" 29 | msgstr "" 30 | 31 | #: src/Indicator.vala:111 32 | msgid "Middle-click to enable" 33 | msgstr "" 34 | 35 | #: src/Widgets/PopoverWidget.vala:17 36 | msgid "Disabled until sunrise" 37 | msgstr "" 38 | 39 | #: src/Widgets/PopoverWidget.vala:19 40 | msgid "Disabled until tomorrow" 41 | msgstr "" 42 | 43 | #: src/Widgets/PopoverWidget.vala:44 44 | msgid "Snooze Night Light" 45 | msgstr "" 46 | 47 | #: src/Widgets/PopoverWidget.vala:77 48 | msgid "Night Light Settings…" 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /po/pap.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 nightlight-indicator package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: nightlight-indicator\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: pap\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/Indicator.vala:106 20 | msgid "Night Light is on" 21 | msgstr "" 22 | 23 | #: src/Indicator.vala:107 24 | msgid "Middle-click to snooze" 25 | msgstr "" 26 | 27 | #: src/Indicator.vala:110 28 | msgid "Night Light is snoozed" 29 | msgstr "" 30 | 31 | #: src/Indicator.vala:111 32 | msgid "Middle-click to enable" 33 | msgstr "" 34 | 35 | #: src/Widgets/PopoverWidget.vala:17 36 | msgid "Disabled until sunrise" 37 | msgstr "" 38 | 39 | #: src/Widgets/PopoverWidget.vala:19 40 | msgid "Disabled until tomorrow" 41 | msgstr "" 42 | 43 | #: src/Widgets/PopoverWidget.vala:44 44 | msgid "Snooze Night Light" 45 | msgstr "" 46 | 47 | #: src/Widgets/PopoverWidget.vala:77 48 | msgid "Night Light Settings…" 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /po/en_ZA.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 nightlight-indicator package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: nightlight-indicator\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: en_ZA\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/Indicator.vala:106 20 | msgid "Night Light is on" 21 | msgstr "" 22 | 23 | #: src/Indicator.vala:107 24 | msgid "Middle-click to snooze" 25 | msgstr "" 26 | 27 | #: src/Indicator.vala:110 28 | msgid "Night Light is snoozed" 29 | msgstr "" 30 | 31 | #: src/Indicator.vala:111 32 | msgid "Middle-click to enable" 33 | msgstr "" 34 | 35 | #: src/Widgets/PopoverWidget.vala:17 36 | msgid "Disabled until sunrise" 37 | msgstr "" 38 | 39 | #: src/Widgets/PopoverWidget.vala:19 40 | msgid "Disabled until tomorrow" 41 | msgstr "" 42 | 43 | #: src/Widgets/PopoverWidget.vala:44 44 | msgid "Snooze Night Light" 45 | msgstr "" 46 | 47 | #: src/Widgets/PopoverWidget.vala:77 48 | msgid "Night Light Settings…" 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /po/sr@latin.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 nightlight-indicator package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: nightlight-indicator\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sr@latin\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/Indicator.vala:106 20 | msgid "Night Light is on" 21 | msgstr "" 22 | 23 | #: src/Indicator.vala:107 24 | msgid "Middle-click to snooze" 25 | msgstr "" 26 | 27 | #: src/Indicator.vala:110 28 | msgid "Night Light is snoozed" 29 | msgstr "" 30 | 31 | #: src/Indicator.vala:111 32 | msgid "Middle-click to enable" 33 | msgstr "" 34 | 35 | #: src/Widgets/PopoverWidget.vala:17 36 | msgid "Disabled until sunrise" 37 | msgstr "" 38 | 39 | #: src/Widgets/PopoverWidget.vala:19 40 | msgid "Disabled until tomorrow" 41 | msgstr "" 42 | 43 | #: src/Widgets/PopoverWidget.vala:44 44 | msgid "Snooze Night Light" 45 | msgstr "" 46 | 47 | #: src/Widgets/PopoverWidget.vala:77 48 | msgid "Night Light Settings…" 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /po/ca@valencia.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 nightlight-indicator package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: nightlight-indicator\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ca@valencia\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/Indicator.vala:106 20 | msgid "Night Light is on" 21 | msgstr "" 22 | 23 | #: src/Indicator.vala:107 24 | msgid "Middle-click to snooze" 25 | msgstr "" 26 | 27 | #: src/Indicator.vala:110 28 | msgid "Night Light is snoozed" 29 | msgstr "" 30 | 31 | #: src/Indicator.vala:111 32 | msgid "Middle-click to enable" 33 | msgstr "" 34 | 35 | #: src/Widgets/PopoverWidget.vala:17 36 | msgid "Disabled until sunrise" 37 | msgstr "" 38 | 39 | #: src/Widgets/PopoverWidget.vala:19 40 | msgid "Disabled until tomorrow" 41 | msgstr "" 42 | 43 | #: src/Widgets/PopoverWidget.vala:44 44 | msgid "Snooze Night Light" 45 | msgstr "" 46 | 47 | #: src/Widgets/PopoverWidget.vala:77 48 | msgid "Night Light Settings…" 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /po/ckb.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "PO-Revision-Date: 2022-09-21 06:14+0000\n" 6 | "Last-Translator: Aga Ismael \n" 7 | "Language-Team: Kurdish (Central) \n" 9 | "Language: ckb\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Generator: Weblate 4.4.2\n" 15 | 16 | #: src/Indicator.vala:106 17 | msgid "Night Light is on" 18 | msgstr "ڕووناکی شەو کارایە" 19 | 20 | #: src/Indicator.vala:107 21 | msgid "Middle-click to snooze" 22 | msgstr "کرتەی ناوەڕاست بۆ وەستاندن" 23 | 24 | #: src/Indicator.vala:110 25 | msgid "Night Light is snoozed" 26 | msgstr "ڕووناکی شەو وەستێنرا" 27 | 28 | #: src/Indicator.vala:111 29 | msgid "Middle-click to enable" 30 | msgstr "کرتەی ناوەڕاست بۆ کاراکردنی" 31 | 32 | #: src/Widgets/PopoverWidget.vala:17 33 | msgid "Disabled until sunrise" 34 | msgstr "تا خۆرهەڵاتن وەستێنرا" 35 | 36 | #: src/Widgets/PopoverWidget.vala:19 37 | msgid "Disabled until tomorrow" 38 | msgstr "تا سبەی وەستێنرا" 39 | 40 | #: src/Widgets/PopoverWidget.vala:44 41 | msgid "Snooze Night Light" 42 | msgstr "وەستاندنی ڕووناکی شەو" 43 | 44 | #: src/Widgets/PopoverWidget.vala:77 45 | msgid "Night Light Settings…" 46 | msgstr "ڕێکخستنەکان…" 47 | -------------------------------------------------------------------------------- /po/io.elementary.panel.nightlight.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 io.elementary.panel.nightlight package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: io.elementary.panel.nightlight\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-06-09 19:07+0000\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 | #: src/Indicator.vala:106 21 | msgid "Night Light is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:107 25 | msgid "Middle-click to snooze" 26 | msgstr "" 27 | 28 | #: src/Indicator.vala:110 29 | msgid "Night Light is snoozed" 30 | msgstr "" 31 | 32 | #: src/Indicator.vala:111 33 | msgid "Middle-click to enable" 34 | msgstr "" 35 | 36 | #: src/Widgets/PopoverWidget.vala:17 37 | msgid "Disabled until sunrise" 38 | msgstr "" 39 | 40 | #: src/Widgets/PopoverWidget.vala:19 41 | msgid "Disabled until tomorrow" 42 | msgstr "" 43 | 44 | #: src/Widgets/PopoverWidget.vala:44 45 | msgid "Snooze Night Light" 46 | msgstr "" 47 | 48 | #: src/Widgets/PopoverWidget.vala:77 49 | msgid "Night Light Settings…" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "PO-Revision-Date: 2023-07-14 06:07+0000\n" 6 | "Last-Translator: NorwayFun \n" 7 | "Language-Team: Georgian \n" 9 | "Language: ka\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Generator: Weblate 4.17\n" 15 | 16 | #: src/Indicator.vala:106 17 | msgid "Night Light is on" 18 | msgstr "ღამის სინათლე ჩართულია" 19 | 20 | #: src/Indicator.vala:107 21 | msgid "Middle-click to snooze" 22 | msgstr "შუა-წკაპი გადასატანად" 23 | 24 | #: src/Indicator.vala:110 25 | msgid "Night Light is snoozed" 26 | msgstr "ღამის სინათლე გაჩუმდა" 27 | 28 | #: src/Indicator.vala:111 29 | msgid "Middle-click to enable" 30 | msgstr "შუა-წკაპი ჩასართავად" 31 | 32 | #: src/Widgets/PopoverWidget.vala:17 33 | msgid "Disabled until sunrise" 34 | msgstr "გათიშულია აისამდე" 35 | 36 | #: src/Widgets/PopoverWidget.vala:19 37 | msgid "Disabled until tomorrow" 38 | msgstr "გათიშულია ხვალამდე" 39 | 40 | #: src/Widgets/PopoverWidget.vala:44 41 | msgid "Snooze Night Light" 42 | msgstr "ღამის სინათლის დროებით გამორთვა" 43 | 44 | #: src/Widgets/PopoverWidget.vala:77 45 | msgid "Night Light Settings…" 46 | msgstr "ღამის სინათლის მორგება…" 47 | -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "PO-Revision-Date: 2021-08-01 17:35+0000\n" 6 | "Last-Translator: elSolus \n" 7 | "Language-Team: Punjabi \n" 9 | "Language: pa\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 14 | "X-Generator: Weblate 4.4.2\n" 15 | 16 | #: src/Indicator.vala:106 17 | msgid "Night Light is on" 18 | msgstr "ਰਾਤ ਵਾਲ਼ੀ ਰੌਸ਼ਨੀ ਚਾਲੂ ਕਰੋ" 19 | 20 | #: src/Indicator.vala:107 21 | msgid "Middle-click to snooze" 22 | msgstr "ਟਾਲਣ ਲਈ ਵਿਚਕਾਰਲੀ-ਕਲਿੱਕ" 23 | 24 | #: src/Indicator.vala:110 25 | msgid "Night Light is snoozed" 26 | msgstr "ਰਾਤ ਵਾਲ਼ੀ ਰੌਸ਼ਨੀ ਟਾਲੀ ਹੋਈ ਹੈ" 27 | 28 | #: src/Indicator.vala:111 29 | msgid "Middle-click to enable" 30 | msgstr "ਚਾਲੂ ਕਰਨ ਲਈ ਵਿਚਕਾਰਲੀ-ਕਲਿੱਕ" 31 | 32 | #: src/Widgets/PopoverWidget.vala:17 33 | msgid "Disabled until sunrise" 34 | msgstr "ਸੂਰਜ ਚੜ੍ਹਨ ਤੱਕ ਬੰਦ ਕਰੋ" 35 | 36 | #: src/Widgets/PopoverWidget.vala:19 37 | msgid "Disabled until tomorrow" 38 | msgstr "ਕੱਲ੍ਹ ਤੱਕ ਬੰਦ ਕਰੋ" 39 | 40 | #: src/Widgets/PopoverWidget.vala:44 41 | msgid "Snooze Night Light" 42 | msgstr "ਰਾਤ ਵਾਲ਼ੀ ਰੌਸ਼ਨੀ ਟਾਲੋ" 43 | 44 | #: src/Widgets/PopoverWidget.vala:77 45 | msgid "Night Light Settings…" 46 | msgstr "ਰਾਤ ਵਾਲ਼ੀ ਰੌਸ਼ਨੀ ਦੀਆਂ ਸੈਟਿੰਗਾਂ…" 47 | -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "PO-Revision-Date: 2021-02-20 08:09+0000\n" 6 | "Last-Translator: colindemian \n" 7 | "Language-Team: Chinese (Simplified) \n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Generator: Weblate 4.4.2\n" 15 | 16 | #: src/Indicator.vala:106 17 | msgid "Night Light is on" 18 | msgstr "夜灯已启用" 19 | 20 | #: src/Indicator.vala:107 21 | msgid "Middle-click to snooze" 22 | msgstr "单击鼠标中键暂停" 23 | 24 | #: src/Indicator.vala:110 25 | msgid "Night Light is snoozed" 26 | msgstr "夜灯已暂停" 27 | 28 | #: src/Indicator.vala:111 29 | msgid "Middle-click to enable" 30 | msgstr "单击鼠标中键恢复" 31 | 32 | #: src/Widgets/PopoverWidget.vala:17 33 | msgid "Disabled until sunrise" 34 | msgstr "停用直至日出" 35 | 36 | #: src/Widgets/PopoverWidget.vala:19 37 | msgid "Disabled until tomorrow" 38 | msgstr "停用直至明天" 39 | 40 | #: src/Widgets/PopoverWidget.vala:44 41 | msgid "Snooze Night Light" 42 | msgstr "暂停夜灯" 43 | 44 | #: src/Widgets/PopoverWidget.vala:77 45 | msgid "Night Light Settings…" 46 | msgstr "夜灯设置…" 47 | 48 | #~ msgid "Nightlight" 49 | #~ msgstr "夜灯模式" 50 | 51 | #~ msgid "The Nightlight indicator" 52 | #~ msgstr "夜灯指示器" 53 | -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "PO-Revision-Date: 2024-09-05 16:16+0000\n" 6 | "Last-Translator: Kisaragi Hiu \n" 7 | "Language-Team: Chinese (Traditional) \n" 9 | "Language: zh_TW\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Generator: Weblate 5.6.2\n" 15 | 16 | #: src/Indicator.vala:106 17 | msgid "Night Light is on" 18 | msgstr "夜光已開啟" 19 | 20 | #: src/Indicator.vala:107 21 | msgid "Middle-click to snooze" 22 | msgstr "中鍵點擊來暫時停用" 23 | 24 | #: src/Indicator.vala:110 25 | msgid "Night Light is snoozed" 26 | msgstr "夜光已暫時停用" 27 | 28 | #: src/Indicator.vala:111 29 | msgid "Middle-click to enable" 30 | msgstr "中鍵點擊來啟用" 31 | 32 | #: src/Widgets/PopoverWidget.vala:17 33 | msgid "Disabled until sunrise" 34 | msgstr "到日出停用" 35 | 36 | #: src/Widgets/PopoverWidget.vala:19 37 | msgid "Disabled until tomorrow" 38 | msgstr "到明天停用" 39 | 40 | #: src/Widgets/PopoverWidget.vala:44 41 | msgid "Snooze Night Light" 42 | msgstr "暫時停用夜光" 43 | 44 | #: src/Widgets/PopoverWidget.vala:77 45 | msgid "Night Light Settings…" 46 | msgstr "夜光設定值…" 47 | 48 | #~ msgid "Nightlight" 49 | #~ msgstr "夜光" 50 | 51 | #~ msgid "The Nightlight indicator" 52 | #~ msgstr "夜光指示器" 53 | -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "PO-Revision-Date: 2025-08-30 22:55+0000\n" 6 | "Last-Translator: Ryo Nakano \n" 7 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Generator: Weblate 5.11.4\n" 15 | 16 | #: src/Indicator.vala:106 17 | msgid "Night Light is on" 18 | msgstr "夜間モードは有効です" 19 | 20 | #: src/Indicator.vala:107 21 | msgid "Middle-click to snooze" 22 | msgstr "一時的に無効にするには中クリックしてください" 23 | 24 | #: src/Indicator.vala:110 25 | msgid "Night Light is snoozed" 26 | msgstr "夜間モードは無効です" 27 | 28 | #: src/Indicator.vala:111 29 | msgid "Middle-click to enable" 30 | msgstr "有効にするには中クリックしてください" 31 | 32 | #: src/Widgets/PopoverWidget.vala:17 33 | msgid "Disabled until sunrise" 34 | msgstr "日の出まで無効" 35 | 36 | #: src/Widgets/PopoverWidget.vala:19 37 | msgid "Disabled until tomorrow" 38 | msgstr "明日まで無効" 39 | 40 | #: src/Widgets/PopoverWidget.vala:44 41 | msgid "Snooze Night Light" 42 | msgstr "夜間モードを一時的に無効にする" 43 | 44 | #: src/Widgets/PopoverWidget.vala:77 45 | msgid "Night Light Settings…" 46 | msgstr "夜間モード設定…" 47 | 48 | #~ msgid "Nightlight" 49 | #~ msgstr "夜間モード" 50 | 51 | #~ msgid "The Nightlight indicator" 52 | #~ msgstr "夜間モード インジケーター" 53 | -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "PO-Revision-Date: 2021-08-20 01:13+0000\n" 6 | "Last-Translator: janko mrkvicka <6aby74rto@relay.firefox.com>\n" 7 | "Language-Team: Slovak \n" 9 | "Language: sk\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 14 | "X-Generator: Weblate 4.4.2\n" 15 | 16 | #: src/Indicator.vala:106 17 | msgid "Night Light is on" 18 | msgstr "Nočné svetlo je zapnuté" 19 | 20 | #: src/Indicator.vala:107 21 | msgid "Middle-click to snooze" 22 | msgstr "Stlačením kolieska odložiť" 23 | 24 | #: src/Indicator.vala:110 25 | msgid "Night Light is snoozed" 26 | msgstr "Nočné svetlo je odložené" 27 | 28 | #: src/Indicator.vala:111 29 | msgid "Middle-click to enable" 30 | msgstr "Stlačením kolieska zapnúť" 31 | 32 | #: src/Widgets/PopoverWidget.vala:17 33 | msgid "Disabled until sunrise" 34 | msgstr "Vypnuté do východu slnka" 35 | 36 | #: src/Widgets/PopoverWidget.vala:19 37 | msgid "Disabled until tomorrow" 38 | msgstr "Vypnuté do zajtra" 39 | 40 | #: src/Widgets/PopoverWidget.vala:44 41 | msgid "Snooze Night Light" 42 | msgstr "Odložiť Nočné svetlo" 43 | 44 | #: src/Widgets/PopoverWidget.vala:77 45 | msgid "Night Light Settings…" 46 | msgstr "Nastavenia Nočného svetla…" 47 | -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 5 | "PO-Revision-Date: 2022-08-06 10:54+0000\n" 6 | "Last-Translator: Jung-Kyu Park \n" 7 | "Language-Team: Korean \n" 9 | "Language: ko\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Generator: Weblate 4.4.2\n" 15 | 16 | #: src/Indicator.vala:106 17 | msgid "Night Light is on" 18 | msgstr "낮은 색온도 설정" 19 | 20 | #: src/Indicator.vala:107 21 | msgid "Middle-click to snooze" 22 | msgstr "마우스 가운데 버튼 클릭으로 일시 중지" 23 | 24 | #: src/Indicator.vala:110 25 | msgid "Night Light is snoozed" 26 | msgstr "낮은 색온도를 잠시 껐습니다" 27 | 28 | #: src/Indicator.vala:111 29 | msgid "Middle-click to enable" 30 | msgstr "마우스 가운데 버튼 클릭으로 활성화" 31 | 32 | #: src/Widgets/PopoverWidget.vala:17 33 | msgid "Disabled until sunrise" 34 | msgstr "해 뜰 때까지 사용 안 함" 35 | 36 | #: src/Widgets/PopoverWidget.vala:19 37 | msgid "Disabled until tomorrow" 38 | msgstr "내일까지 사용 안 함" 39 | 40 | #: src/Widgets/PopoverWidget.vala:44 41 | msgid "Snooze Night Light" 42 | msgstr "낮은 색온도 일시 중지" 43 | 44 | #: src/Widgets/PopoverWidget.vala:77 45 | msgid "Night Light Settings…" 46 | msgstr "낮은 색온도 설정…" 47 | 48 | #~ msgid "Nightlight" 49 | #~ msgstr "낮은 색온도" 50 | 51 | #~ msgid "The Nightlight indicator" 52 | #~ msgstr "낮은 색온도 알림" 53 | -------------------------------------------------------------------------------- /po/extra/aa.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: aa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/ab.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ab\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/ae.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ae\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/am.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: am\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/an.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: an\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/as.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: as\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/ast.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ast\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/av.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: av\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/ay.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ay\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/ba.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ba\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/bh.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/bi.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/bm.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bm\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/bo.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/br.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: br\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/ce.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ce\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/ch.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ch\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/co.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: co\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/cr.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/cu.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/cy.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cy\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/dv.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: dv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/dz.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: dz\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/ee.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ee\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/ff.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ff\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/fil.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fil\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/fj.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fj\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/fo.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/fy.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fy\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/gd.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gd\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/gn.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/extra/gu.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-06-09 19:07+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/nightlight.metainfo.xml.in:12 20 | msgid "Night Light Indicator" 21 | msgstr "" 22 | 23 | #: data/nightlight.metainfo.xml.in:13 24 | msgid "Easily snooze or adjust the temperature of Night Light from the Panel" 25 | msgstr "" 26 | 27 | #: data/nightlight.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/nightlight.metainfo.xml.in:36 data/nightlight.metainfo.xml.in:43 32 | #: data/nightlight.metainfo.xml.in:52 data/nightlight.metainfo.xml.in:60 33 | #: data/nightlight.metainfo.xml.in:66 34 | msgid "Updated translations" 35 | msgstr "" 36 | 37 | #: data/nightlight.metainfo.xml.in:42 38 | msgid "Increase the maximum possible display warmth" 39 | msgstr "" 40 | 41 | #: data/nightlight.metainfo.xml.in:58 42 | msgid "Show tooltip on hover" 43 | msgstr "" 44 | 45 | #: data/nightlight.metainfo.xml.in:59 46 | msgid "Performance improvements" 47 | msgstr "" 48 | --------------------------------------------------------------------------------