├── .gitlab-ci.yml ├── AUTHORS ├── LICENSES └── LGPL-2.1-or-later.txt ├── NEWS ├── README.md ├── docs ├── dev-notes.md ├── faq.md ├── gspell.next.md ├── more-information.md └── reference │ ├── gspell-docs.xml │ ├── gspell-sections.txt │ ├── intro.xml │ ├── meson.build │ └── xml │ ├── gtkdocentities.ent.in │ └── meson.build ├── gspell-app ├── gspell-app.c └── meson.build ├── gspell.doap ├── gspell ├── gconstructor.h ├── gspell-checker-dialog.c ├── gspell-checker-dialog.h ├── gspell-checker-private.h ├── gspell-checker.c ├── gspell-checker.h ├── gspell-context-menu.c ├── gspell-context-menu.h ├── gspell-current-word-policy.c ├── gspell-current-word-policy.h ├── gspell-entry-buffer.c ├── gspell-entry-buffer.h ├── gspell-entry-private.h ├── gspell-entry-utils.c ├── gspell-entry-utils.h ├── gspell-entry.c ├── gspell-entry.h ├── gspell-icu.c ├── gspell-icu.h ├── gspell-init.c ├── gspell-inline-checker-text-buffer.c ├── gspell-inline-checker-text-buffer.h ├── gspell-language-chooser-button.c ├── gspell-language-chooser-button.h ├── gspell-language-chooser-dialog.c ├── gspell-language-chooser-dialog.h ├── gspell-language-chooser.c ├── gspell-language-chooser.h ├── gspell-language.c ├── gspell-language.h ├── gspell-navigator-text-view.c ├── gspell-navigator-text-view.h ├── gspell-navigator.c ├── gspell-navigator.h ├── gspell-osx.c ├── gspell-osx.h ├── gspell-text-buffer.c ├── gspell-text-buffer.h ├── gspell-text-iter.c ├── gspell-text-iter.h ├── gspell-text-view.c ├── gspell-text-view.h ├── gspell-utils.c ├── gspell-utils.h ├── gspell.h ├── gspellregion.c ├── gspellregion.h ├── meson.build ├── resources │ ├── checker-dialog.ui │ ├── gspell.gresource.xml │ ├── language-dialog.ui │ └── meson.build ├── symbol.map └── update-sourceregion.sh ├── logo.png ├── meson.build ├── meson_options.txt ├── po ├── LINGUAS ├── POTFILES.in ├── ab.po ├── ar.po ├── be.po ├── bg.po ├── ca.po ├── ca@valencia.po ├── ckb.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_GB.po ├── eo.po ├── es.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fur.po ├── gd.po ├── gl.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── id.po ├── ie.po ├── is.po ├── it.po ├── ja.po ├── ka.po ├── kab.po ├── kk.po ├── ko.po ├── lt.po ├── lv.po ├── meson.build ├── mjw.po ├── ml.po ├── ms.po ├── nb.po ├── ne.po ├── nl.po ├── oc.po ├── pa.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── sk.po ├── sl.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── th.po ├── tr.po ├── ug.po ├── uk.po ├── uz.po ├── vi.po ├── zh_CN.po └── zh_TW.po └── tests ├── interactive-tests ├── meson.build ├── test-entry.c ├── test-text-view-basic.c └── test-text-view.c ├── meson.build └── unit-tests ├── gspell.test.in ├── meson.build ├── test-checker.c ├── test-entry.c ├── test-icu.c ├── test-inline-checker-text-buffer.c ├── test-text-iter.c └── test-utils.c /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/LICENSES/LGPL-2.1-or-later.txt -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/README.md -------------------------------------------------------------------------------- /docs/dev-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/dev-notes.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/gspell.next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/gspell.next.md -------------------------------------------------------------------------------- /docs/more-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/more-information.md -------------------------------------------------------------------------------- /docs/reference/gspell-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/reference/gspell-docs.xml -------------------------------------------------------------------------------- /docs/reference/gspell-sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/reference/gspell-sections.txt -------------------------------------------------------------------------------- /docs/reference/intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/reference/intro.xml -------------------------------------------------------------------------------- /docs/reference/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/reference/meson.build -------------------------------------------------------------------------------- /docs/reference/xml/gtkdocentities.ent.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/reference/xml/gtkdocentities.ent.in -------------------------------------------------------------------------------- /docs/reference/xml/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/docs/reference/xml/meson.build -------------------------------------------------------------------------------- /gspell-app/gspell-app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell-app/gspell-app.c -------------------------------------------------------------------------------- /gspell-app/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell-app/meson.build -------------------------------------------------------------------------------- /gspell.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell.doap -------------------------------------------------------------------------------- /gspell/gconstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gconstructor.h -------------------------------------------------------------------------------- /gspell/gspell-checker-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-checker-dialog.c -------------------------------------------------------------------------------- /gspell/gspell-checker-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-checker-dialog.h -------------------------------------------------------------------------------- /gspell/gspell-checker-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-checker-private.h -------------------------------------------------------------------------------- /gspell/gspell-checker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-checker.c -------------------------------------------------------------------------------- /gspell/gspell-checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-checker.h -------------------------------------------------------------------------------- /gspell/gspell-context-menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-context-menu.c -------------------------------------------------------------------------------- /gspell/gspell-context-menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-context-menu.h -------------------------------------------------------------------------------- /gspell/gspell-current-word-policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-current-word-policy.c -------------------------------------------------------------------------------- /gspell/gspell-current-word-policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-current-word-policy.h -------------------------------------------------------------------------------- /gspell/gspell-entry-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-entry-buffer.c -------------------------------------------------------------------------------- /gspell/gspell-entry-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-entry-buffer.h -------------------------------------------------------------------------------- /gspell/gspell-entry-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-entry-private.h -------------------------------------------------------------------------------- /gspell/gspell-entry-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-entry-utils.c -------------------------------------------------------------------------------- /gspell/gspell-entry-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-entry-utils.h -------------------------------------------------------------------------------- /gspell/gspell-entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-entry.c -------------------------------------------------------------------------------- /gspell/gspell-entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-entry.h -------------------------------------------------------------------------------- /gspell/gspell-icu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-icu.c -------------------------------------------------------------------------------- /gspell/gspell-icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-icu.h -------------------------------------------------------------------------------- /gspell/gspell-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-init.c -------------------------------------------------------------------------------- /gspell/gspell-inline-checker-text-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-inline-checker-text-buffer.c -------------------------------------------------------------------------------- /gspell/gspell-inline-checker-text-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-inline-checker-text-buffer.h -------------------------------------------------------------------------------- /gspell/gspell-language-chooser-button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-language-chooser-button.c -------------------------------------------------------------------------------- /gspell/gspell-language-chooser-button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-language-chooser-button.h -------------------------------------------------------------------------------- /gspell/gspell-language-chooser-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-language-chooser-dialog.c -------------------------------------------------------------------------------- /gspell/gspell-language-chooser-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-language-chooser-dialog.h -------------------------------------------------------------------------------- /gspell/gspell-language-chooser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-language-chooser.c -------------------------------------------------------------------------------- /gspell/gspell-language-chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-language-chooser.h -------------------------------------------------------------------------------- /gspell/gspell-language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-language.c -------------------------------------------------------------------------------- /gspell/gspell-language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-language.h -------------------------------------------------------------------------------- /gspell/gspell-navigator-text-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-navigator-text-view.c -------------------------------------------------------------------------------- /gspell/gspell-navigator-text-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-navigator-text-view.h -------------------------------------------------------------------------------- /gspell/gspell-navigator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-navigator.c -------------------------------------------------------------------------------- /gspell/gspell-navigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-navigator.h -------------------------------------------------------------------------------- /gspell/gspell-osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-osx.c -------------------------------------------------------------------------------- /gspell/gspell-osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-osx.h -------------------------------------------------------------------------------- /gspell/gspell-text-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-text-buffer.c -------------------------------------------------------------------------------- /gspell/gspell-text-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-text-buffer.h -------------------------------------------------------------------------------- /gspell/gspell-text-iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-text-iter.c -------------------------------------------------------------------------------- /gspell/gspell-text-iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-text-iter.h -------------------------------------------------------------------------------- /gspell/gspell-text-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-text-view.c -------------------------------------------------------------------------------- /gspell/gspell-text-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-text-view.h -------------------------------------------------------------------------------- /gspell/gspell-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-utils.c -------------------------------------------------------------------------------- /gspell/gspell-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell-utils.h -------------------------------------------------------------------------------- /gspell/gspell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspell.h -------------------------------------------------------------------------------- /gspell/gspellregion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspellregion.c -------------------------------------------------------------------------------- /gspell/gspellregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/gspellregion.h -------------------------------------------------------------------------------- /gspell/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/meson.build -------------------------------------------------------------------------------- /gspell/resources/checker-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/resources/checker-dialog.ui -------------------------------------------------------------------------------- /gspell/resources/gspell.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/resources/gspell.gresource.xml -------------------------------------------------------------------------------- /gspell/resources/language-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/resources/language-dialog.ui -------------------------------------------------------------------------------- /gspell/resources/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/resources/meson.build -------------------------------------------------------------------------------- /gspell/symbol.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/symbol.map -------------------------------------------------------------------------------- /gspell/update-sourceregion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/gspell/update-sourceregion.sh -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/logo.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/meson_options.txt -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/ab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ab.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ckb.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/es.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/fur.po -------------------------------------------------------------------------------- /po/gd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/gd.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/kab.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | I18N.gettext( 2 | GETTEXT_PACKAGE_NAME, 3 | preset: 'glib' 4 | ) 5 | -------------------------------------------------------------------------------- /po/mjw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/mjw.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /tests/interactive-tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/interactive-tests/meson.build -------------------------------------------------------------------------------- /tests/interactive-tests/test-entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/interactive-tests/test-entry.c -------------------------------------------------------------------------------- /tests/interactive-tests/test-text-view-basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/interactive-tests/test-text-view-basic.c -------------------------------------------------------------------------------- /tests/interactive-tests/test-text-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/interactive-tests/test-text-view.c -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/meson.build -------------------------------------------------------------------------------- /tests/unit-tests/gspell.test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/unit-tests/gspell.test.in -------------------------------------------------------------------------------- /tests/unit-tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/unit-tests/meson.build -------------------------------------------------------------------------------- /tests/unit-tests/test-checker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/unit-tests/test-checker.c -------------------------------------------------------------------------------- /tests/unit-tests/test-entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/unit-tests/test-entry.c -------------------------------------------------------------------------------- /tests/unit-tests/test-icu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/unit-tests/test-icu.c -------------------------------------------------------------------------------- /tests/unit-tests/test-inline-checker-text-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/unit-tests/test-inline-checker-text-buffer.c -------------------------------------------------------------------------------- /tests/unit-tests/test-text-iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/unit-tests/test-text-iter.c -------------------------------------------------------------------------------- /tests/unit-tests/test-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/gspell/HEAD/tests/unit-tests/test-utils.c --------------------------------------------------------------------------------