├── .editorconfig ├── .github └── workflows │ ├── compress-images.yml │ ├── gettext.yml │ ├── lint.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── com.github.cassidyjames.ideogram.yml ├── data ├── Application.css ├── com.github.cassidyjames.ideogram.appdata.xml.in ├── gresource.xml ├── icons │ ├── 128.svg │ ├── 16.svg │ ├── 24.svg │ ├── 32.svg │ ├── 48.svg │ ├── 64.svg │ └── symbolic.svg ├── launcher.desktop.in ├── meson.build └── 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.ideogram.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 ├── MainWindow.vala └── Settings └── CustomShortcutSettings.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,*.css}] 15 | tab_width = 2 16 | 17 | -------------------------------------------------------------------------------- /.github/workflows/compress-images.yml: -------------------------------------------------------------------------------- 1 | name: Compress images 2 | on: pull_request 3 | jobs: 4 | build: 5 | name: calibreapp/image-actions 6 | runs-on: ubuntu-latest 7 | steps: 8 | - uses: actions/checkout@master 9 | - name: calibreapp/image-actions 10 | uses: docker://calibreapp/github-image-actions 11 | env: 12 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 13 | -------------------------------------------------------------------------------- /.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 | GITHUB_TOKEN: ${{ secrets.GIT_USER_TOKEN }} 13 | with: 14 | translation_branch: 'main' 15 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- 1 | name: Lint 2 | 3 | on: [pull_request, push] 4 | 5 | jobs: 6 | lint: 7 | 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - uses: actions/checkout@v1 12 | - uses: elementary/actions/vala-lint@master 13 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | flatpak: 7 | name: Flatpak 8 | runs-on: ubuntu-latest 9 | 10 | strategy: 11 | matrix: 12 | arch: [x86_64, aarch64] 13 | # Don't fail the whole workflow if one architecture fails 14 | fail-fast: false 15 | 16 | container: 17 | image: ghcr.io/elementary/flatpak-platform/runtime:6-${{ matrix.arch }} 18 | options: --privileged 19 | 20 | steps: 21 | - name: Checkout 22 | uses: actions/checkout@v2 23 | 24 | - name: Set up QEMU for aarch64 emulation 25 | if: ${{ matrix.arch != 'x86_64' }} 26 | uses: docker/setup-qemu-action@v1 27 | with: 28 | platforms: arm64 29 | 30 | - name: Build 31 | uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 32 | with: 33 | bundle: com.github.cassidyjames.ideogram.flatpak 34 | manifest-path: com.github.cassidyjames.ideogram.yml 35 | run-tests: true 36 | repository-name: appcenter 37 | repository-url: https://flatpak.elementary.io/repo.flatpakrepo 38 | cache-key: "flatpak-builder-${{ github.sha }}" 39 | arch: ${{ matrix.arch }} 40 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | on: 3 | pull_request: 4 | branches: main 5 | types: closed 6 | jobs: 7 | release: 8 | runs-on: ubuntu-latest 9 | if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') 10 | steps: 11 | - uses: actions/checkout@v1 12 | - uses: elementary/actions/release@master 13 | env: 14 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 15 | with: 16 | release_branch: 'hera' 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | .flatpak-builder/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Build Status](https://travis-ci.com/cassidyjames/ideogram.svg?branch=master)](https://travis-ci.com/cassidyjames/ideogram) 2 | 3 |

4 | Icon 5 |

6 |

Ideogram

7 |

8 | Get it on AppCenter 9 |

10 | 11 | ![Screenshot](data/screenshot.png?raw=true) 12 | 13 | ## Insert emoji anywhere, even in non-native apps 14 | 15 | Quickly insert emoji anywhere you can paste text, including non-native apps. Hit ⌘+E to open the emoji picker, choose the emoji you want, and it's instantly pasted. 👍 Change the shortcut in System Settings → Keyboard → Shortcuts → Custom. 16 | 17 | ## About the Emoji Picker 18 | 19 | The emoji picker that Ideogram uses is designed and provided by [GTK](https://gitlab.gnome.org/GNOME/gtk). **Anything about the emoji picker itself is outside of the scope of this app, and outside of my control.** For example, the Unicode emoji that are presented, the font used, the scrolling performance, the search, the keywords, etc. If you have issues with the emoji picker, please file them with GTK so it can be improved not just for Ideogram, but for all apps and platforms that use GTK. 20 | 21 | Ideogram simply wraps the existing emoji picker up in a simple app that lets you summon it by a global keyboard shortcut, and then inserts the selected emoji wherever your cursor is via the clipboard. 22 | 23 | ## Made for [elementary OS](https://elementary.io) 24 | 25 | Ideogram is designed and developed by me 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. 26 | 27 | [![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.cassidyjames.ideogram) 28 | 29 | Versions of Ideogram 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. Similarly, building and installing Ideogram on anything other than elementary OS is unsupported—I do not have the time and resources to support other OSes and desktop environments. 30 | 31 | ## Developing and Building 32 | 33 | If you want to hack on and build Ideogram yourself, you'll need the following dependencies: 34 | 35 | * libgtk-3-dev 36 | * meson 37 | * valac 38 | 39 | Run `meson build` to configure the build environment and run `ninja test` to build and run automated tests 40 | 41 | meson build --prefix=/usr 42 | cd build 43 | ninja test 44 | 45 | To install, use `ninja install`, then execute with `com.github.cassidyjames.ideogram` 46 | 47 | sudo ninja install 48 | com.github.cassidyjames.ideogram 49 | 50 | ----- 51 | 52 | [![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.cassidyjames.ideogram) 53 | -------------------------------------------------------------------------------- /com.github.cassidyjames.ideogram.yml: -------------------------------------------------------------------------------- 1 | app-id: com.github.cassidyjames.ideogram 2 | runtime: io.elementary.Platform 3 | runtime-version: '6' 4 | sdk: io.elementary.Sdk 5 | command: com.github.cassidyjames.ideogram 6 | finish-args: 7 | - '--share=ipc' 8 | - '--socket=fallback-x11' 9 | - '--socket=wayland' 10 | modules: 11 | - name: ideogram 12 | buildsystem: meson 13 | sources: 14 | - type: dir 15 | path: . 16 | -------------------------------------------------------------------------------- /data/Application.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2018–2019 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 2 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 | @define-color colorAccent @BANANA_700; 23 | 24 | .ideogram { 25 | background: alpha(@theme_bg_color, 0); 26 | } 27 | 28 | .hidden, 29 | .titlebar { 30 | background: alpha(@theme_bg_color, 0); 31 | border: none; 32 | color: alpha(@theme_bg_color, 0); 33 | font-size: 0.001px; 34 | margin: 0; 35 | opacity: 0; 36 | padding: 0; 37 | } 38 | 39 | decoration { 40 | box-shadow: 41 | 0 0 0 1px alpha(@theme_bg_color, 0), 42 | 0 14px 28px alpha(@theme_bg_color, 0), 43 | 0 10px 10px alpha(@theme_bg_color, 0); 44 | } 45 | 46 | .fake-window { 47 | background: @theme_bg_color; 48 | border-radius: 4px; 49 | box-shadow: 50 | 0 0 0 1px @decoration_border_color, 51 | 0 14px 28px alpha(black, 0.35), 52 | 0 10px 10px alpha(black, 0.22); 53 | margin: 0 12px 12px; 54 | padding: 12px 6px; 55 | } 56 | 57 | .h1 { 58 | font-family: Raleway, sans-serif; 59 | font-weight: 200; 60 | font-size: 2.5em; 61 | } 62 | -------------------------------------------------------------------------------- /data/gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Application.css 5 | 6 | 7 | -------------------------------------------------------------------------------- /data/icons/symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 24 | 26 | 30 | 34 | 35 | -------------------------------------------------------------------------------- /data/launcher.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Ideogram 3 | GenericName=Emoji Input 4 | Comment=Insert emoji anywhere 5 | Categories=Utility; 6 | Exec=com.github.cassidyjames.ideogram 7 | Icon=com.github.cassidyjames.ideogram 8 | Terminal=false 9 | Type=Application 10 | X-GNOME-Gettext-Domain=com.github.cassidyjames.ideogram 11 | Keywords=emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺; 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 | i18n.merge_file( 17 | input: 'launcher.desktop.in', 18 | output: meson.project_name() + '.desktop', 19 | po_dir: join_paths(meson.source_root(), 'po'), 20 | type: 'desktop', 21 | install: true, 22 | install_dir: join_paths(get_option('datadir'), 'applications') 23 | ) 24 | 25 | i18n.merge_file( 26 | input: meson.project_name() + '.appdata.xml.in', 27 | output: meson.project_name() + '.appdata.xml', 28 | po_dir: join_paths(meson.source_root(), 'po'), 29 | type: 'xml', 30 | install: true, 31 | install_dir: join_paths(get_option('datadir'), 'metainfo') 32 | ) 33 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassidyjames/ideogram/8c591ed6cd00de0b6a8ef9c7293d9b00653d2f62/data/screenshot.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project( 2 | 'com.github.cassidyjames.ideogram', 3 | 'vala', 'c', 4 | version: '1.3.3' 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', join_paths('data', 'gresource.xml'), 14 | source_dir: 'data', 15 | c_name: 'as' 16 | ) 17 | 18 | executable( 19 | meson.project_name(), 20 | asresources, 21 | join_paths('src', 'Application.vala'), 22 | join_paths('src', 'MainWindow.vala'), 23 | join_paths('src', 'Settings', 'CustomShortcutSettings.vala'), 24 | dependencies: [ 25 | dependency('gdk-x11-3.0'), 26 | dependency('glib-2.0'), 27 | dependency('granite'), 28 | dependency('gtk+-3.0'), 29 | dependency('x11'), 30 | dependency('xtst'), 31 | meson.get_compiler('vala').find_library('posix'), 32 | ], 33 | install: true 34 | ) 35 | 36 | subdir('data') 37 | subdir('po') 38 | 39 | meson.add_install_script(join_paths('meson', 'post_install.py')) 40 | -------------------------------------------------------------------------------- /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.ideogram.appdata.xml.in 2 | data/launcher.desktop.in 3 | src/Application.vala 4 | src/MainWindow.vala 5 | src/Settings/CustomShortcutSettings.vala 6 | -------------------------------------------------------------------------------- /po/README.md: -------------------------------------------------------------------------------- 1 | # Translating Ideogram 2 | 3 | Anyone may propose translations for Ideogram. 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.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ak.po: -------------------------------------------------------------------------------- 1 | # Akan translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- 1 | # Arabic translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ar\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/av.po: -------------------------------------------------------------------------------- 1 | # Avaric translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: av\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ay.po: -------------------------------------------------------------------------------- 1 | # Aymara translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ay\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/bh.po: -------------------------------------------------------------------------------- 1 | # Bihari translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- 1 | # Breton translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: br\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/cr.po: -------------------------------------------------------------------------------- 1 | # Cree translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- 1 | # Welsh translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/dv.po: -------------------------------------------------------------------------------- 1 | # Divehi translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: dv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ee.po: -------------------------------------------------------------------------------- 1 | # Ewe translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- 1 | # Basque translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: eu\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ff.po: -------------------------------------------------------------------------------- 1 | # Fulah translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/fj.po: -------------------------------------------------------------------------------- 1 | # Fijian translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fj\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/gv.po: -------------------------------------------------------------------------------- 1 | # Manx translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | # Hausa translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/hz.po: -------------------------------------------------------------------------------- 1 | # Herero translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: hz\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- 1 | # Igbo translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/kg.po: -------------------------------------------------------------------------------- 1 | # Kongo translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ki.po: -------------------------------------------------------------------------------- 1 | # Kikuyu translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ki\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- 1 | # Kazakh translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kk\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/kr.po: -------------------------------------------------------------------------------- 1 | # Kanuri translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kr\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/kv.po: -------------------------------------------------------------------------------- 1 | # Komi translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- 1 | # Latin translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/lg.po: -------------------------------------------------------------------------------- 1 | # Ganda translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /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.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- 1 | # Malay translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/na.po: -------------------------------------------------------------------------------- 1 | # Nauru translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- 1 | # Nepali translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ne\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ng.po: -------------------------------------------------------------------------------- 1 | # Ndonga translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ng\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/nv.po: -------------------------------------------------------------------------------- 1 | # Navajo translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: nv\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ny.po: -------------------------------------------------------------------------------- 1 | # Nyanja translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ny\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/oj.po: -------------------------------------------------------------------------------- 1 | # Ojibwa translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: oj\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- 1 | # Oriya translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/pi.po: -------------------------------------------------------------------------------- 1 | # Pali translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- 1 | # Pashto translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ps\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/sd.po: -------------------------------------------------------------------------------- 1 | # Sindhi translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sd\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/sg.po: -------------------------------------------------------------------------------- 1 | # Sango translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/sm.po: -------------------------------------------------------------------------------- 1 | # Samoan translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sm\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/sn.po: -------------------------------------------------------------------------------- 1 | # Shona translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/so.po: -------------------------------------------------------------------------------- 1 | # Somali translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: so\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- 1 | # Tamil translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- 1 | # Telugu translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: te\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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- 1 | # Tajik translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- 1 | # Thai translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/to.po: -------------------------------------------------------------------------------- 1 | # Tonga translations for com.github.cassidyjames.ideogram package. 2 | # Copyright (C) 2019 THE com.github.cassidyjames.ideogram'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.cassidyjames.ideogram package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.cassidyjames.ideogram\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-06 20:45+0000\n" 11 | "PO-Revision-Date: 2019-01-25 19:01-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.ideogram.appdata.xml.in:7 20 | #: data/launcher.desktop.in:3 src/MainWindow.vala:33 21 | msgid "Ideogram" 22 | msgstr "" 23 | 24 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:8 25 | msgid "Insert emoji anywhere 🎉" 26 | msgstr "" 27 | 28 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:10 29 | msgid "" 30 | "Quickly insert emoji anywhere you can paste text, including non-native apps. " 31 | "Hit ⌘+E to open the emoji picker, choose the emoji you want, and it’s " 32 | "instantly copied and pasted into any focused text input. 👍" 33 | msgstr "" 34 | 35 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:11 36 | msgid "" 37 | "Not feeling the default keyboard shortcut? Head to System Settings → " 38 | "Keyboard → Shortcuts → Custom to set it to anything you’d like." 39 | msgstr "" 40 | 41 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:20 42 | msgid "Code cleanup" 43 | msgstr "" 44 | 45 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:22 46 | msgid "Fixed GTK_CSD issue on other OSes" 47 | msgstr "" 48 | 49 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:23 50 | msgid "Improved code style" 51 | msgstr "" 52 | 53 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:25 54 | msgid "Translation updates" 55 | msgstr "" 56 | 57 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:27 58 | msgid "Dutch translations thanks to Heimen Stoffels" 59 | msgstr "" 60 | 61 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:28 62 | msgid "Italian translations thanks to Mirko Brombin" 63 | msgstr "" 64 | 65 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:29 66 | msgid "Galacian translations thanks to @riesp" 67 | msgstr "" 68 | 69 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:35 70 | msgid "¡Hola! Spanish translations thanks to Alain (@alainm23)" 71 | msgstr "" 72 | 73 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:40 74 | msgid "Bonjour! French translations thanks to @NathanBnm" 75 | msgstr "" 76 | 77 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:45 78 | msgid "Ideogram is now translatable." 79 | msgstr "" 80 | 81 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:50 82 | msgid "Happy new year! This release contains AppData fixes." 83 | msgstr "" 84 | 85 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:55 86 | msgid "More reliable styling" 87 | msgstr "" 88 | 89 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:60 90 | msgid "ℹ More descriptive in-app copy and a yellow accent color." 91 | msgstr "" 92 | 93 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:65 94 | msgid "⌨ Set a default keyboard shortcut (⌘+E)." 95 | msgstr "" 96 | 97 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:70 98 | msgid "🎉 Initial release for AppCenter" 99 | msgstr "" 100 | 101 | #: data/com.github.cassidyjames.ideogram.appdata.xml.in:108 102 | msgid "Cassidy James Blaede" 103 | msgstr "" 104 | 105 | #: data/launcher.desktop.in:4 106 | msgid "Emoji Input" 107 | msgstr "" 108 | 109 | #: data/launcher.desktop.in:5 110 | msgid "Insert emoji anywhere" 111 | msgstr "" 112 | 113 | #: data/launcher.desktop.in:8 114 | msgid "com.github.cassidyjames.ideogram" 115 | msgstr "" 116 | 117 | #: data/launcher.desktop.in:12 118 | msgid "" 119 | "emoji;insert;copy;paste;emoticons;smiley;smilies;pictures;icons;keyboard;☺;" 120 | msgstr "" 121 | 122 | #: src/MainWindow.vala:50 123 | msgid "Select Emoji to Insert" 124 | msgstr "" 125 | 126 | #: src/MainWindow.vala:53 127 | msgid "" 128 | "Selecting will copy the emoji to the clipboard and paste into any focused " 129 | "text input." 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2018–2019 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 2 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 Ideogram : Gtk.Application { 23 | public const string SHORTCUT = "e"; 24 | public const string ID = "com.github.cassidyjames.ideogram"; 25 | 26 | public Ideogram () { 27 | Object ( 28 | application_id: ID, 29 | flags: ApplicationFlags.FLAGS_NONE 30 | ); 31 | } 32 | 33 | protected override void activate () { 34 | if (get_windows ().length () > 0) { 35 | get_windows ().data.present (); 36 | return; 37 | } 38 | 39 | var main_window = new MainWindow (this); 40 | 41 | var quit_action = new SimpleAction ("quit", null); 42 | 43 | add_action (quit_action); 44 | set_accels_for_action ("app.quit", {"Escape"}); 45 | 46 | quit_action.activate.connect (() => { 47 | if (main_window != null) { 48 | main_window.destroy (); 49 | } 50 | }); 51 | 52 | var granite_settings = Granite.Settings.get_default (); 53 | var gtk_settings = Gtk.Settings.get_default (); 54 | 55 | gtk_settings.gtk_application_prefer_dark_theme = ( 56 | granite_settings.prefers_color_scheme == Granite.Settings.ColorScheme.DARK 57 | ); 58 | 59 | granite_settings.notify["prefers-color-scheme"].connect (() => { 60 | gtk_settings.gtk_application_prefer_dark_theme = ( 61 | granite_settings.prefers_color_scheme == Granite.Settings.ColorScheme.DARK 62 | ); 63 | }); 64 | 65 | // CSS provider 66 | var provider = new Gtk.CssProvider (); 67 | provider.load_from_resource ("/com/github/cassidyjames/ideogram/Application.css"); 68 | Gtk.StyleContext.add_provider_for_screen ( 69 | Gdk.Screen.get_default (), 70 | provider, 71 | Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION 72 | ); 73 | 74 | main_window.show_all (); 75 | 76 | // Set shortcut 77 | CustomShortcutSettings.init (); 78 | bool has_shortcut = false; 79 | foreach (var shortcut in CustomShortcutSettings.list_custom_shortcuts ()) { 80 | if (shortcut.command == ID) { 81 | // CustomShortcutSettings.edit_shortcut (shortcut.relocatable_schema, SHORTCUT); 82 | has_shortcut = true; 83 | return; 84 | } 85 | } 86 | if (!has_shortcut) { 87 | var shortcut = CustomShortcutSettings.create_shortcut (); 88 | if (shortcut != null) { 89 | CustomShortcutSettings.edit_shortcut (shortcut, SHORTCUT); 90 | CustomShortcutSettings.edit_command (shortcut, ID); 91 | } 92 | } 93 | } 94 | 95 | private static int main (string[] args) { 96 | // NOTE: Workaround for https://github.com/cassidyjames/ideogram/issues/26 97 | // Without GTK_CSD set, the fake window won't be styled correctly. 98 | 99 | GLib.Environment.set_variable ("GTK_CSD", "1", true); 100 | 101 | Gtk.init (ref args); 102 | 103 | var app = new Ideogram (); 104 | return app.run (args); 105 | } 106 | } 107 | --------------------------------------------------------------------------------