├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ ├── gettext.yml │ └── release.yml ├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── com.github.cassidyjames.principles.yml ├── data ├── Application.css ├── com.github.cassidyjames.principles.appdata.xml.in ├── gresource.xml ├── gschema.xml ├── icons │ ├── 128.svg │ ├── 16.svg │ ├── 24.svg │ ├── 32.svg │ ├── 48.svg │ └── 64.svg ├── launcher.desktop.in ├── meson.build ├── screenshot-dark.png └── screenshot.png ├── meson.build ├── meson └── post_install.py ├── po ├── LINGUAS ├── POTFILES.in ├── README.md ├── aa.po ├── ab.po ├── ae.po ├── af.po ├── ak.po ├── am.po ├── an.po ├── ar.po ├── as.po ├── ast.po ├── av.po ├── ay.po ├── az.po ├── ba.po ├── be.po ├── bg.po ├── bh.po ├── bi.po ├── bm.po ├── bn.po ├── bo.po ├── br.po ├── bs.po ├── ca.po ├── ce.po ├── ch.po ├── ckb.po ├── co.po ├── com.github.cassidyjames.principles.pot ├── cr.po ├── cs.po ├── cu.po ├── cv.po ├── cy.po ├── da.po ├── de.po ├── dv.po ├── dz.po ├── ee.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── ff.po ├── fi.po ├── fj.po ├── fo.po ├── fr.po ├── fr_CA.po ├── fy.po ├── ga.po ├── gd.po ├── gl.po ├── gn.po ├── gu.po ├── gv.po ├── ha.po ├── he.po ├── hi.po ├── ho.po ├── hr.po ├── ht.po ├── hu.po ├── hy.po ├── hz.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── ii.po ├── ik.po ├── io.po ├── is.po ├── it.po ├── iu.po ├── ja.po ├── jv.po ├── ka.po ├── kg.po ├── ki.po ├── kj.po ├── kk.po ├── kl.po ├── km.po ├── kn.po ├── ko.po ├── kr.po ├── ks.po ├── ku.po ├── kv.po ├── kw.po ├── ky.po ├── la.po ├── lb.po ├── lg.po ├── li.po ├── ln.po ├── lo.po ├── lt.po ├── lu.po ├── lv.po ├── meson.build ├── mg.po ├── mh.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mo.po ├── mr.po ├── ms.po ├── mt.po ├── my.po ├── na.po ├── nb.po ├── nd.po ├── ne.po ├── ng.po ├── nl.po ├── nn.po ├── no.po ├── nr.po ├── nv.po ├── ny.po ├── oc.po ├── oj.po ├── om.po ├── or.po ├── os.po ├── pa.po ├── pi.po ├── pl.po ├── ps.po ├── pt.po ├── pt_BR.po ├── qu.po ├── rm.po ├── rn.po ├── ro.po ├── ru.po ├── rue.po ├── rw.po ├── sa.po ├── sc.po ├── sd.po ├── se.po ├── sg.po ├── si.po ├── sk.po ├── sl.po ├── sm.po ├── sma.po ├── sn.po ├── so.po ├── sq.po ├── sr.po ├── ss.po ├── st.po ├── su.po ├── sv.po ├── sw.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── ti.po ├── tk.po ├── tl.po ├── tn.po ├── to.po ├── tr.po ├── ts.po ├── tt.po ├── tw.po ├── ty.po ├── ug.po ├── uk.po ├── ur.po ├── uz.po ├── ve.po ├── vi.po ├── vo.po ├── wa.po ├── wo.po ├── xh.po ├── yi.po ├── yo.po ├── za.po ├── zh.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po └── src ├── Application.vala ├── Content.vala └── MainWindow.vala /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig 2 | root = true 3 | 4 | # elementary defaults 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = tab 9 | indent_style = space 10 | insert_final_newline = true 11 | max_line_length = 80 12 | tab_width = 4 13 | 14 | [{*.xml,*.xml.in,*.yml}] 15 | tab_width = 2 16 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | pull_request: 5 | types: 6 | - opened 7 | - reopened 8 | - synchronize 9 | 10 | jobs: 11 | flatpak: 12 | name: Flatpak 13 | runs-on: ubuntu-latest 14 | 15 | container: 16 | image: ghcr.io/elementary/flatpak-platform/runtime:daily 17 | options: --privileged 18 | 19 | steps: 20 | - name: Checkout 21 | uses: actions/checkout@v2 22 | 23 | - name: Build 24 | uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3 25 | with: 26 | bundle: principles.flatpak 27 | manifest-path: com.github.cassidyjames.principles.yml 28 | run-tests: true 29 | repository-name: appcenter 30 | repository-url: https://flatpak.elementary.io/repo.flatpakrepo 31 | cache-key: "flatpak-builder-${{ github.sha }}" 32 | 33 | lint: 34 | name: Lint 35 | runs-on: ubuntu-latest 36 | 37 | container: 38 | image: valalang/lint 39 | 40 | steps: 41 | - name: Checkout 42 | uses: actions/checkout@v2 43 | 44 | - name: Lint 45 | run: io.elementary.vala-lint -d . 46 | -------------------------------------------------------------------------------- /.github/workflows/gettext.yml: -------------------------------------------------------------------------------- 1 | name: Gettext updates 2 | on: 3 | push: 4 | branches: main 5 | jobs: 6 | gettext_template: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v1 10 | - uses: elementary/actions/gettext-template@master 11 | env: 12 | GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" 13 | GIT_USER_NAME: "cassidyjames" 14 | GIT_USER_EMAIL: "c@ssidyjam.es" 15 | with: 16 | translation_branch: 'main' 17 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | name: Release 4 | 5 | on: 6 | pull_request: 7 | branches: main 8 | types: closed 9 | 10 | jobs: 11 | create_release: 12 | name: Create Release 13 | runs-on: ubuntu-latest 14 | 15 | if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') 16 | 17 | steps: 18 | - name: Checkout 19 | uses: actions/checkout@v2 20 | 21 | - name: Release 22 | uses: elementary/actions/release@master 23 | env: 24 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 25 | with: 26 | release_branch: 'odin' 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | .flatpak-builder/ 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Cassidy James Blaede 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Icon 3 |

4 |

Principles

5 |

6 | Get it on AppCenter 7 |

8 | 9 | | ![Screenshot](data/screenshot.png) | ![Screenshot](data/screenshot-dark.png) | 10 | | -------------------------------------------- | ------------------------------------------------- | 11 | | ![Screenshot](data/screenshot-wallpaper.png) | ![Screenshot](data/screenshot-wallpaper-dark.png) | 12 | 13 | ## Remember Dieter Rams' ten principles of good design 14 | 15 | According to Rams, good design: 16 | 17 | 1. **is innovative** – The possibilities for progression are not, by any means, exhausted. Technological development is always offering new opportunities for original designs. But imaginative design always develops in tandem with improving technology, and can never be an end in itself. 18 | 19 | 2. **makes a product useful** – A product is bought to be used. It has to satisfy not only functional, but also psychological and aesthetic criteria. Good design emphasizes the usefulness of a product whilst disregarding anything that could detract from it. 20 | 21 | 3. **is aesthetic** – The aesthetic quality of a product is integral to its usefulness because products are used every day and have an effect on people and their well-being. Only well-executed objects can be beautiful. 22 | 23 | 4. **makes a product understandable** – It clarifies the product’s structure. Better still, it can make the product clearly express its function by making use of the user's intuition. At best, it is self-explanatory. 24 | 25 | 5. **is unobtrusive** – Products fulfilling a purpose are like tools. They are neither decorative objects nor works of art. Their design should therefore be both neutral and restrained, to leave room for the user's self-expression. 26 | 27 | 6. **is honest** – It does not make a product appear more innovative, powerful or valuable than it really is. It does not attempt to manipulate the consumer with promises that cannot be kept. 28 | 29 | 7. **is long-lasting** – It avoids being fashionable and therefore never appears antiquated. Unlike fashionable design, it lasts many years – even in today's throwaway society. 30 | 31 | 8. **is thorough down to the last detail** – Nothing must be arbitrary or left to chance. Care and accuracy in the design process show respect towards the consumer. 32 | 33 | 9. **is environmentally friendly** – Design makes an important contribution to the preservation of the environment. It conserves resources and minimizes physical and visual pollution throughout the lifecycle of the product. 34 | 35 | 10. **is as little design as possible** – Less, but better – because it concentrates on the essential aspects, and the products are not burdened with non-essentials. Back to purity, back to simplicity. 36 | 37 | Get a simple reminder of one of these principles each time you open the app. 38 | 39 | ## Made for [elementary OS](https://elementary.io) 40 | 41 | Principles is designed and developed on and for [elementary OS](https://elementary.io). Purchasing through AppCenter directly supports the development and ensures instant updates straight from me. Get it on AppCenter for the best experience. 42 | 43 | [![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.cassidyjames.principles) 44 | 45 | Versions of Principles may have been built and made available elsewhere by third-parties. These builds may have modifications or changes and **are not provided nor supported by me**. The only supported version is distributed via AppCenter on elementary OS. 46 | 47 | ## Developing and Building 48 | 49 | If you want to hack on and build Principles yourself, you'll need the following dependencies: 50 | 51 | - libgtk-3-dev 52 | - meson 53 | - valac 54 | - libgranite-dev 55 | 56 | Run `meson build` to configure the build environment and run `ninja test` to build and run automated tests 57 | 58 | meson build --prefix=/usr 59 | cd build 60 | ninja test 61 | 62 | To install, use `ninja install`, then execute with `com.github.cassidyjames.principles` 63 | 64 | sudo ninja install 65 | com.github.cassidyjames.principles 66 | 67 | ## Other Platforms 68 | 69 | Principles is made for elementary OS, but may have been built and made available elsewhere by community members. These builds may have modifications or changes and **are not provided or supported by me**. 70 | 71 | ## Special Thanks 72 | 73 | - [Micah Ilbery](https://github.com/micahilbery) for the shiny icons 74 | - [Daniel Foré](https://github.com/danrabbit) for his apps to use as code examples 75 | 76 | ----- 77 | 78 | [![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.cassidyjames.principles) 79 | -------------------------------------------------------------------------------- /com.github.cassidyjames.principles.yml: -------------------------------------------------------------------------------- 1 | app-id: com.github.cassidyjames.principles 2 | runtime: io.elementary.Platform 3 | runtime-version: '6' 4 | sdk: io.elementary.Sdk 5 | command: com.github.cassidyjames.principles 6 | finish-args: 7 | - '--share=ipc' 8 | - '--socket=fallback-x11' 9 | - '--socket=wayland' 10 | modules: 11 | - name: principles 12 | buildsystem: meson 13 | sources: 14 | - type: dir 15 | path: . 16 | -------------------------------------------------------------------------------- /data/Application.css: -------------------------------------------------------------------------------- 1 | .principles, 2 | .default-decoration { 3 | transition: 500ms ease; 4 | } 5 | 6 | .principles { 7 | color: black; 8 | text-shadow: 0 0 0.5em rgba(255, 255, 255, 0.75); 9 | } 10 | 11 | .principles.dark { 12 | color: white; 13 | text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.75); 14 | } 15 | 16 | .principles:backdrop { 17 | background: transparent; 18 | } 19 | 20 | .principles:backdrop .default-decoration { 21 | opacity: 0; 22 | } 23 | 24 | .principles:backdrop * { 25 | border-color: transparent; 26 | box-shadow: 0 0 transparent; 27 | } 28 | 29 | .principle-title { 30 | font-size: 2.5em; 31 | font-weight: 800; 32 | } 33 | 34 | .principle-description { 35 | font-size: 1.25em; 36 | } 37 | 38 | .principle-number { 39 | font-size: 10em; 40 | font-weight: 300; 41 | letter-spacing: -0.125em; 42 | margin-top: -0.2em; 43 | } 44 | -------------------------------------------------------------------------------- /data/gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Application.css 5 | 6 | 7 | -------------------------------------------------------------------------------- /data/gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | If on a dark background 7 | If on a dark background 8 | 9 | 10 | -1 11 | Most recent x position 12 | Most recent x position 13 | 14 | 15 | -1 16 | Most recent y position 17 | Most recent y position 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /data/icons/16.svg: -------------------------------------------------------------------------------- 1 | 2 | 13 | 15 | 24 | 26 | 30 | 34 | 38 | 42 | 43 | 45 | 49 | 53 | 57 | 61 | 62 | 72 | 73 | 75 | 76 | 78 | image/svg+xml 79 | 81 | 82 | 83 | 84 | 85 | 87 | 90 | 99 | 106 | 115 | 116 | 118 | 124 | 126 | 130 | 134 | 138 | 139 | 140 | 144 | 148 | 152 | 156 | 160 | 161 | 162 | -------------------------------------------------------------------------------- /data/launcher.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Principles 3 | GenericName=Design Principles Viewer 4 | Comment=Remember Dieter Rams' ten principles of good design 5 | Categories=Utility;Graphics; 6 | Exec=com.github.cassidyjames.principles 7 | Icon=com.github.cassidyjames.principles 8 | Terminal=false 9 | Type=Application 10 | X-GNOME-Gettext-Domain=com.github.cassidyjames.principles 11 | Keywords=dieter;rams;design;aesthetic;guidelines; 12 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | icon_sizes = ['16', '24', '32', '48', '64', '128'] 2 | 3 | foreach i : icon_sizes 4 | install_data( 5 | join_paths('icons', i + '.svg'), 6 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps'), 7 | rename: meson.project_name() + '.svg' 8 | ) 9 | install_data( 10 | join_paths('icons', i + '.svg'), 11 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps'), 12 | rename: meson.project_name() + '.svg' 13 | ) 14 | endforeach 15 | 16 | install_data ( 17 | 'gschema.xml', 18 | install_dir: join_paths (get_option ('datadir'), 'glib-2.0', 'schemas'), 19 | rename: meson.project_name() + '.gschema.xml' 20 | ) 21 | 22 | i18n.merge_file( 23 | input: 'launcher.desktop.in', 24 | output: meson.project_name() + '.desktop', 25 | po_dir: join_paths(meson.source_root(), 'po'), 26 | type: 'desktop', 27 | install: true, 28 | install_dir: join_paths(get_option('datadir'), 'applications') 29 | ) 30 | 31 | i18n.merge_file( 32 | input: meson.project_name() + '.appdata.xml.in', 33 | output: meson.project_name() + '.appdata.xml', 34 | po_dir: join_paths(meson.source_root(), 'po'), 35 | type: 'xml', 36 | install: true, 37 | install_dir: join_paths(get_option('datadir'), 'metainfo') 38 | ) 39 | -------------------------------------------------------------------------------- /data/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassidyjames/principles/cddc1b85a1359fbb3662884695dd0755d04d488d/data/screenshot-dark.png -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassidyjames/principles/cddc1b85a1359fbb3662884695dd0755d04d488d/data/screenshot.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project( 2 | 'com.github.cassidyjames.principles', 3 | 'vala', 'c', 4 | version: '2.0.1' 5 | ) 6 | 7 | gnome = import('gnome') 8 | i18n = import('i18n') 9 | 10 | add_global_arguments('-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()), language:'c') 11 | 12 | asresources = gnome.compile_resources( 13 | 'as-resources', 'data/gresource.xml', 14 | source_dir: 'data', 15 | c_name: 'as' 16 | ) 17 | 18 | executable( 19 | meson.project_name(), 20 | asresources, 21 | 'src' / 'Application.vala', 22 | 'src' / 'Content.vala', 23 | 'src' / 'MainWindow.vala', 24 | dependencies: [ 25 | dependency('glib-2.0', version: '>=2.64'), 26 | dependency('granite', version: '>=6.1'), 27 | dependency('gtk+-3.0', version: '>=3.24'), 28 | dependency('libhandy-1', version: '>= 1.0'), 29 | ], 30 | install: true 31 | ) 32 | 33 | subdir('data') 34 | subdir('po') 35 | 36 | meson.add_install_script('meson/post_install.py') 37 | -------------------------------------------------------------------------------- /meson/post_install.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import os 4 | import subprocess 5 | 6 | prefix = os.environ.get('MESON_INSTALL_PREFIX', '/usr/local') 7 | datadir = os.path.join(prefix, 'share') 8 | schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas') 9 | 10 | # Packaging tools define DESTDIR and this isn't needed for them 11 | if 'DESTDIR' not in os.environ: 12 | print('Updating icon cache...') 13 | icon_cache_dir = os.path.join(datadir, 'icons', 'hicolor') 14 | if not os.path.exists(icon_cache_dir): 15 | os.makedirs(icon_cache_dir) 16 | subprocess.call(['gtk-update-icon-cache', '-qtf', icon_cache_dir]) 17 | 18 | print('Updating desktop database...') 19 | desktop_database_dir = os.path.join(datadir, 'applications') 20 | if not os.path.exists(desktop_database_dir): 21 | os.makedirs(desktop_database_dir) 22 | subprocess.call(['update-desktop-database', '-q', desktop_database_dir]) 23 | 24 | print('Compiling gsettings schemas...') 25 | subprocess.call(['glib-compile-schemas', schemadir]) 26 | 27 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | aa 2 | ab 3 | ae 4 | af 5 | ak 6 | am 7 | an 8 | ar 9 | as 10 | ast 11 | av 12 | ay 13 | az 14 | ba 15 | be 16 | bg 17 | bh 18 | bi 19 | bm 20 | bn 21 | bo 22 | br 23 | bs 24 | ca 25 | ce 26 | ch 27 | ckb 28 | co 29 | cr 30 | cs 31 | cu 32 | cv 33 | cy 34 | da 35 | de 36 | dv 37 | dz 38 | ee 39 | el 40 | en_AU 41 | en_CA 42 | en_GB 43 | eo 44 | es 45 | et 46 | eu 47 | fa 48 | ff 49 | fi 50 | fj 51 | fo 52 | fr 53 | fr_CA 54 | fy 55 | ga 56 | gd 57 | gl 58 | gn 59 | gu 60 | gv 61 | ha 62 | he 63 | hi 64 | ho 65 | hr 66 | ht 67 | hu 68 | hy 69 | hz 70 | ia 71 | id 72 | ie 73 | ig 74 | ii 75 | ik 76 | io 77 | is 78 | it 79 | iu 80 | ja 81 | jv 82 | ka 83 | kg 84 | ki 85 | kj 86 | kk 87 | kl 88 | km 89 | kn 90 | ko 91 | kr 92 | ks 93 | ku 94 | kv 95 | kw 96 | ky 97 | la 98 | lb 99 | lg 100 | li 101 | ln 102 | lo 103 | lt 104 | lu 105 | lv 106 | mg 107 | mh 108 | mi 109 | mk 110 | ml 111 | mn 112 | mo 113 | mr 114 | ms 115 | mt 116 | my 117 | na 118 | nb 119 | nd 120 | ne 121 | ng 122 | nl 123 | nn 124 | no 125 | nr 126 | nv 127 | ny 128 | oc 129 | oj 130 | om 131 | or 132 | os 133 | pa 134 | pi 135 | pl 136 | ps 137 | pt 138 | pt_BR 139 | qu 140 | rm 141 | rn 142 | ro 143 | ru 144 | rue 145 | rw 146 | sa 147 | sc 148 | sd 149 | se 150 | sg 151 | si 152 | sk 153 | sl 154 | sm 155 | sma 156 | sn 157 | so 158 | sq 159 | sr 160 | ss 161 | st 162 | su 163 | sv 164 | sw 165 | ta 166 | te 167 | tg 168 | th 169 | ti 170 | tk 171 | tl 172 | tn 173 | to 174 | tr 175 | ts 176 | tt 177 | tw 178 | ty 179 | ug 180 | uk 181 | ur 182 | uz 183 | ve 184 | vi 185 | vo 186 | wa 187 | wo 188 | xh 189 | yi 190 | yo 191 | za 192 | zh 193 | zh_CN 194 | zh_HK 195 | zh_TW 196 | zu 197 | -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | data/com.github.cassidyjames.principles.appdata.xml.in 2 | data/launcher.desktop.in 3 | src/Application.vala 4 | src/MainWindow.vala 5 | src/Content.vala 6 | -------------------------------------------------------------------------------- /po/README.md: -------------------------------------------------------------------------------- 1 | # Translating Principles 2 | 3 | Anyone may propose translations for Principles. You can do so by editing the relevant `.po` file for your language above. Many translation tools can help automate this process. When your translation is ready, propose it as a pull request against this project and it will be reviewed. If it looks sane and builds correctly, it will be merged in, and your GitHub account will be credited for the translation in the next release's release notes. 4 | 5 | When translating you may encounter a situation where you have to decide between several ways of saying the same thing. In these situations we refer to the Ubuntu [general translator guide](https://help.launchpad.net/Translations/Guide), and for language specific issues we follow Ubuntu's [team translation guidelines](https://translations.launchpad.net/+groups/ubuntu-translators). Following these guides ensure uniform translations, while also allowing anyone to contribute. 6 | 7 | -------------------------------------------------------------------------------- /po/aa.po: -------------------------------------------------------------------------------- 1 | # Afar translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/ak.po: -------------------------------------------------------------------------------- 1 | # Akan translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ak\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/cr.po: -------------------------------------------------------------------------------- 1 | # Cree translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- 1 | # Welsh translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/ee.po: -------------------------------------------------------------------------------- 1 | # Ewe translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/ff.po: -------------------------------------------------------------------------------- 1 | # Fulah translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/gv.po: -------------------------------------------------------------------------------- 1 | # Manx translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gv\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | # Hausa translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ha\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: hi\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- 1 | # Igbo translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ig\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/kg.po: -------------------------------------------------------------------------------- 1 | # Kongo translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kg\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/kv.po: -------------------------------------------------------------------------------- 1 | # Komi translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kv\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- 1 | # Latin translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: la\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/lg.po: -------------------------------------------------------------------------------- 1 | # Ganda translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: lg\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | args: [ 3 | '--directory=' + meson.source_root(), 4 | '--from-code=UTF-8' 5 | ], 6 | preset: 'glib', 7 | ) 8 | 9 | -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- 1 | # Maori translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: mi\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- 1 | # Malay translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ms\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/na.po: -------------------------------------------------------------------------------- 1 | # Nauru translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: na\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- 1 | # Oriya translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: or\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/pi.po: -------------------------------------------------------------------------------- 1 | # Pali translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: pi\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/sg.po: -------------------------------------------------------------------------------- 1 | # Sango translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sg\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/sn.po: -------------------------------------------------------------------------------- 1 | # Shona translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sn\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- 1 | # Tamil translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ta\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- 1 | # Tajik translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tg\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- 1 | # Thai translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: th\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/to.po: -------------------------------------------------------------------------------- 1 | # Tonga translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: to\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | # Tatar translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tt\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/tw.po: -------------------------------------------------------------------------------- 1 | # Twi translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tw\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- 1 | # Urdu translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ur\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- 1 | # Uzbek translations for com.github.cassidyjames.principles package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.principles'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.principles package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.principles\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-01-29 18:32-0700\n" 11 | "PO-Revision-Date: 2019-01-24 15:55-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: uz\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/com.github.cassidyjames.principles.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:31 21 | msgid "Principles" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.principles.appdata.xml.in:8 25 | #: data/launcher.desktop.in:5 26 | msgid "Remember Dieter Rams' ten principles of good design" 27 | msgstr "" 28 | 29 | #: data/com.github.cassidyjames.principles.appdata.xml.in:10 30 | msgid "" 31 | "According to Dieter Rams, good design is innovative, makes a product useful, " 32 | "is aesthetic, makes a product understandable, is unobtrusive, is honest, is " 33 | "long-lasting, is thorough down to the last detail, is environmentally-" 34 | "friendly, and is as little design as possible." 35 | msgstr "" 36 | 37 | #: data/com.github.cassidyjames.principles.appdata.xml.in:11 38 | msgid "" 39 | "Get a simple reminder of one of these principles each time you open the app." 40 | msgstr "" 41 | 42 | #: data/com.github.cassidyjames.principles.appdata.xml.in:13 43 | msgid "Choose between a light or dark style" 44 | msgstr "" 45 | 46 | #: data/com.github.cassidyjames.principles.appdata.xml.in:14 47 | msgid "Applet stays on the bottom on all workspaces" 48 | msgstr "" 49 | 50 | #: data/com.github.cassidyjames.principles.appdata.xml.in:15 51 | msgid "Automatically goes transparent when not focused" 52 | msgstr "" 53 | 54 | #: data/com.github.cassidyjames.principles.appdata.xml.in:17 55 | msgid "Set to automatically start in System Settings → Applications → Startup" 56 | msgstr "" 57 | 58 | #: data/com.github.cassidyjames.principles.appdata.xml.in:112 59 | msgid "Cassidy James Blaede" 60 | msgstr "" 61 | 62 | #: data/launcher.desktop.in:4 63 | msgid "Design Principles Viewer" 64 | msgstr "" 65 | 66 | #: data/launcher.desktop.in:8 67 | msgid "com.github.cassidyjames.principles" 68 | msgstr "" 69 | 70 | #: data/launcher.desktop.in:12 71 | msgid "dieter;rams;design;aesthetic;guidelines;" 72 | msgstr "" 73 | 74 | #: src/MainWindow.vala:46 75 | msgid "Load a random principle" 76 | msgstr "" 77 | 78 | #: src/MainWindow.vala:55 79 | msgid "Light background" 80 | msgstr "" 81 | 82 | #: src/MainWindow.vala:56 83 | msgid "Dark background" 84 | msgstr "" 85 | 86 | #: src/Content.vala:30 87 | msgid "Good design is innovative" 88 | msgstr "" 89 | 90 | #: src/Content.vala:31 91 | msgid "" 92 | "The possibilities for innovation are not, by any means, exhausted. " 93 | "Technological development is always offering new opportunities for " 94 | "innovative design. But innovative design always develops in tandem with " 95 | "innovative technology, and can never be an end in itself." 96 | msgstr "" 97 | 98 | #: src/Content.vala:34 99 | msgid "Good design makes a product useful" 100 | msgstr "" 101 | 102 | #: src/Content.vala:35 103 | msgid "" 104 | "A product is bought to be used. It has to satisfy certain criteria, not only " 105 | "functional, but also psychological and aesthetic. Good design emphasizes the " 106 | "usefulness of a product whilst disregarding anything that could possibly " 107 | "detract from it." 108 | msgstr "" 109 | 110 | #: src/Content.vala:38 111 | msgid "Good design is aesthetic" 112 | msgstr "" 113 | 114 | #: src/Content.vala:39 115 | msgid "" 116 | "The aesthetic quality of a product is integral to its usefulness because " 117 | "products we use every day affect our person and our well-being. But only " 118 | "well-executed objects can be beautiful." 119 | msgstr "" 120 | 121 | #: src/Content.vala:42 122 | msgid "Good design makes a product understandable" 123 | msgstr "" 124 | 125 | #: src/Content.vala:43 126 | msgid "" 127 | "It clarifies the product’s structure. Better still, it can make the product " 128 | "talk. At best, it is self-explanatory." 129 | msgstr "" 130 | 131 | #: src/Content.vala:46 132 | msgid "Good design is unobtrusive" 133 | msgstr "" 134 | 135 | #: src/Content.vala:47 136 | msgid "" 137 | "Products fulfilling a purpose are like tools. They are neither decorative " 138 | "objects nor works of art. Their design should therefore be both neutral and " 139 | "restrained, to leave room for the user’s self-expression." 140 | msgstr "" 141 | 142 | #: src/Content.vala:50 143 | msgid "Good design is honest" 144 | msgstr "" 145 | 146 | #: src/Content.vala:51 147 | msgid "" 148 | "It does not make a product more innovative, powerful or valuable than it " 149 | "really is. It does not attempt to manipulate the consumer with promises that " 150 | "cannot be kept." 151 | msgstr "" 152 | 153 | #: src/Content.vala:54 154 | msgid "Good design is long-lasting" 155 | msgstr "" 156 | 157 | #: src/Content.vala:55 158 | msgid "" 159 | "It avoids being fashionable and therefore never appears antiquated. Unlike " 160 | "fashionable design, it lasts many years—even in today’s throwaway society." 161 | msgstr "" 162 | 163 | #: src/Content.vala:58 164 | msgid "Good design is thorough down to the last detail" 165 | msgstr "" 166 | 167 | #: src/Content.vala:59 168 | msgid "" 169 | "Nothing must be arbitrary or left to chance. Care and accuracy in the design " 170 | "process show respect towards the user." 171 | msgstr "" 172 | 173 | #: src/Content.vala:62 174 | msgid "Good design is environmentally-friendly" 175 | msgstr "" 176 | 177 | #: src/Content.vala:63 178 | msgid "" 179 | "Design makes an important contribution to the preservation of the " 180 | "environment. It conserves resources and minimizes physical and visual " 181 | "pollution throughout the lifecycle of the product." 182 | msgstr "" 183 | 184 | #: src/Content.vala:66 185 | msgid "Good design is as little design as possible" 186 | msgstr "" 187 | 188 | #: src/Content.vala:67 189 | msgid "" 190 | "Less, but better—because it concentrates on the essential aspects, and the " 191 | "products are not burdened with non-essentials. Back to purity, back to " 192 | "simplicity." 193 | msgstr "" 194 | -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2018–2021 Cassidy James Blaede (https://cassidyjames.com) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Cassidy James Blaede 20 | */ 21 | 22 | public class Principles : Gtk.Application { 23 | public static GLib.Settings settings; 24 | 25 | public Principles () { 26 | Object ( 27 | application_id: "com.github.cassidyjames.principles", 28 | flags: ApplicationFlags.FLAGS_NONE 29 | ); 30 | } 31 | 32 | public static Principles _instance = null; 33 | public static Principles instance { 34 | get { 35 | if (_instance == null) { 36 | _instance = new Principles (); 37 | } 38 | return _instance; 39 | } 40 | } 41 | 42 | static construct { 43 | settings = new Settings (Principles.instance.application_id); 44 | } 45 | 46 | protected override void activate () { 47 | if (get_windows ().length () > 0) { 48 | get_windows ().data.present (); 49 | return; 50 | } 51 | 52 | var main_window = new MainWindow (this); 53 | 54 | var window_x = settings.get_int ("window-x"); 55 | var window_y = settings.get_int ("window-y"); 56 | 57 | if (window_x != -1 || window_y != -1) { 58 | main_window.move (window_x, window_y); 59 | } 60 | 61 | main_window.show_all (); 62 | 63 | var quit_action = new SimpleAction ("quit", null); 64 | 65 | add_action (quit_action); 66 | set_accels_for_action ("app.quit", {"Escape"}); 67 | 68 | quit_action.activate.connect (() => { 69 | if (main_window != null) { 70 | main_window.destroy (); 71 | } 72 | }); 73 | } 74 | 75 | private static int main (string[] args) { 76 | Gtk.init (ref args); 77 | 78 | var app = new Principles (); 79 | return app.run (args); 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /src/Content.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2018–2021 Cassidy James Blaede (https://cassidyjames.com) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Cassidy James Blaede 20 | */ 21 | 22 | public class ContentStack : Gtk.Stack { 23 | private struct Content { 24 | string title; 25 | string description; 26 | } 27 | 28 | static Content[] content = { 29 | Content () { 30 | title = _("Good design is innovative"), 31 | description = _("The possibilities for innovation are not, by any means, exhausted. Technological development is always offering new opportunities for innovative design. But innovative design always develops in tandem with innovative technology, and can never be an end in itself.") 32 | }, 33 | Content () { 34 | title = _("Good design makes a product useful"), 35 | description = _("A product is bought to be used. It has to satisfy certain criteria, not only functional, but also psychological and aesthetic. Good design emphasizes the usefulness of a product whilst disregarding anything that could possibly detract from it.") 36 | }, 37 | Content () { 38 | title = _("Good design is aesthetic"), 39 | description = _("The aesthetic quality of a product is integral to its usefulness because products we use every day affect our person and our well-being. But only well-executed objects can be beautiful.") 40 | }, 41 | Content () { 42 | title = _("Good design makes a product understandable"), 43 | description = _("It clarifies the product’s structure. Better still, it can make the product talk. At best, it is self-explanatory.") 44 | }, 45 | Content () { 46 | title = _("Good design is unobtrusive"), 47 | description = _("Products fulfilling a purpose are like tools. They are neither decorative objects nor works of art. Their design should therefore be both neutral and restrained, to leave room for the user’s self-expression.") 48 | }, 49 | Content () { 50 | title = _("Good design is honest"), 51 | description = _("It does not make a product more innovative, powerful or valuable than it really is. It does not attempt to manipulate the consumer with promises that cannot be kept.") 52 | }, 53 | Content () { 54 | title = _("Good design is long-lasting"), 55 | description = _("It avoids being fashionable and therefore never appears antiquated. Unlike fashionable design, it lasts many years—even in today’s throwaway society.") 56 | }, 57 | Content () { 58 | title = _("Good design is thorough down to the last detail"), 59 | description = _("Nothing must be arbitrary or left to chance. Care and accuracy in the design process show respect towards the user.") 60 | }, 61 | Content () { 62 | title = _("Good design is environmentally-friendly"), 63 | description = _("Design makes an important contribution to the preservation of the environment. It conserves resources and minimizes physical and visual pollution throughout the lifecycle of the product.") 64 | }, 65 | Content () { 66 | title = _("Good design is as little design as possible"), 67 | description = _("Less, but better—because it concentrates on the essential aspects, and the products are not burdened with non-essentials. Back to purity, back to simplicity.") 68 | } 69 | }; 70 | 71 | public ContentStack () { 72 | Object ( 73 | border_width: 6, 74 | margin_bottom: 24, 75 | transition_type: Gtk.StackTransitionType.CROSSFADE 76 | ); 77 | } 78 | 79 | construct { 80 | int i = 1; 81 | foreach (var principle in content) { 82 | var number = new Gtk.Label (i.to_string ()); 83 | number.margin_start = 12; 84 | number.margin_end = 24; 85 | number.valign = Gtk.Align.START; 86 | number.get_style_context ().add_class ("principle-number"); 87 | 88 | var title = new Gtk.Label (principle.title); 89 | title.max_width_chars = 22; 90 | title.valign = Gtk.Align.END; 91 | title.wrap = true; 92 | title.xalign = 0; 93 | title.get_style_context ().add_class ("principle-title"); 94 | 95 | var description = new Gtk.Label (principle.description); 96 | description.max_width_chars = 36; 97 | description.wrap = true; 98 | description.valign = Gtk.Align.START; 99 | description.xalign = 0; 100 | description.get_style_context ().add_class ("principle-description"); 101 | 102 | var grid = new Gtk.Grid (); 103 | grid.column_spacing = grid.row_spacing = 12; 104 | grid.halign = Gtk.Align.CENTER; 105 | 106 | grid.attach (number, 0, 0, 1, 2); 107 | grid.attach (title, 1, 0); 108 | grid.attach (description, 1, 1); 109 | 110 | add_named (grid, i.to_string ()); 111 | 112 | i++; 113 | } 114 | 115 | var rand = Random.int_range (1, 11); 116 | visible_child_name = rand.to_string (); 117 | } 118 | } 119 | -------------------------------------------------------------------------------- /src/MainWindow.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2018–2021 Cassidy James Blaede (https://cassidyjames.com) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Cassidy James Blaede 20 | */ 21 | 22 | public class MainWindow : Hdy.Window { 23 | private ContentStack stack; 24 | 25 | public MainWindow (Gtk.Application application) { 26 | Object ( 27 | application: application, 28 | icon_name: "com.github.cassidyjames.principles", 29 | resizable: false, 30 | skip_taskbar_hint: true, 31 | title: _("Principles"), 32 | window_position: Gtk.WindowPosition.CENTER 33 | ); 34 | } 35 | 36 | static construct { 37 | Hdy.init (); 38 | } 39 | 40 | construct { 41 | var randomize_button = new Gtk.Button.from_icon_name ("media-playlist-shuffle-symbolic"); 42 | randomize_button.margin_end = 12; 43 | randomize_button.tooltip_text = _("Load a random principle"); 44 | 45 | var gtk_settings = Gtk.Settings.get_default (); 46 | 47 | var mode_switch = new Granite.ModeSwitch.from_icon_name ( 48 | "display-brightness-symbolic", 49 | "weather-clear-night-symbolic" 50 | ); 51 | mode_switch.margin_end = 6; 52 | mode_switch.primary_icon_tooltip_text = _("Light background"); 53 | mode_switch.secondary_icon_tooltip_text = _("Dark background"); 54 | mode_switch.valign = Gtk.Align.CENTER; 55 | mode_switch.bind_property ("active", gtk_settings, "gtk_application_prefer_dark_theme"); 56 | 57 | stack = new ContentStack (); 58 | 59 | var context = get_style_context (); 60 | context.add_class ("principles"); 61 | context.add_class (Gtk.STYLE_CLASS_FLAT); 62 | 63 | var provider = new Gtk.CssProvider (); 64 | provider.load_from_resource ("/com/github/cassidyjames/principles/Application.css"); 65 | Gtk.StyleContext.add_provider_for_screen ( 66 | Gdk.Screen.get_default (), 67 | provider, 68 | Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION 69 | ); 70 | 71 | mode_switch.notify["active"].connect (() => { 72 | if (gtk_settings.gtk_application_prefer_dark_theme) { 73 | context.add_class ("dark"); 74 | } else { 75 | context.remove_class ("dark"); 76 | } 77 | }); 78 | 79 | randomize_button.clicked.connect (() => randomize_principle (stack) ); 80 | 81 | Principles.settings.bind ("dark", mode_switch, "active", GLib.SettingsBindFlags.DEFAULT); 82 | 83 | var header = new Hdy.HeaderBar () { 84 | has_subtitle = false, 85 | show_close_button = true, 86 | title = _("Principles") 87 | }; 88 | header.pack_end (mode_switch); 89 | header.pack_end (randomize_button); 90 | 91 | var header_context = header.get_style_context (); 92 | header_context.add_class ("default-decoration"); 93 | header_context.add_class (Gtk.STYLE_CLASS_FLAT); 94 | 95 | var grid = new Gtk.Grid () { 96 | orientation = Gtk.Orientation.VERTICAL 97 | }; 98 | grid.add (header); 99 | grid.add (stack); 100 | 101 | set_keep_below (true); 102 | stick (); 103 | 104 | add (grid); 105 | 106 | stack.realize.connect (() => { 107 | randomize_principle (stack, true); 108 | }); 109 | } 110 | 111 | private void randomize_principle (ContentStack stack, bool allow_current = false) { 112 | int rand = Random.int_range (1, 11); 113 | int current = int.parse (stack.visible_child_name); 114 | 115 | if (allow_current || rand != current) { 116 | stack.visible_child_name = rand.to_string (); 117 | return; 118 | } 119 | 120 | randomize_principle (stack); 121 | } 122 | 123 | public override bool configure_event (Gdk.EventConfigure event) { 124 | int root_x, root_y; 125 | get_position (out root_x, out root_y); 126 | Principles.settings.set_int ("window-x", root_x); 127 | Principles.settings.set_int ("window-y", root_y); 128 | 129 | return base.configure_event (event); 130 | } 131 | } 132 | --------------------------------------------------------------------------------