Compare commits
46 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c4890f31af | |||
| c44245189a | |||
| c7b8e4a30d | |||
| 20fe1a7e30 | |||
| 25931758f7 | |||
| daf57ef22c | |||
| 1d2d727fa2 | |||
| 11bd7107d2 | |||
| 95d33047fa | |||
| 523b896053 | |||
| 9152455227 | |||
| c0fdaca4d0 | |||
| 8312a842c1 | |||
| 07138197cb | |||
| ed78ffc248 | |||
| 4add36f5ca | |||
| 40e63150a6 | |||
| 4dba0ec0cd | |||
| e6f780c38b | |||
| 0f7f73a6a0 | |||
| aa71d02036 | |||
| f873fcee11 | |||
| 51ef3de672 | |||
| 13976b7235 | |||
| c6049ef5f3 | |||
| c8c1922060 | |||
| c8304ce7c0 | |||
| 8ff9c70d29 | |||
| 26cca56c34 | |||
| 803404aa48 | |||
| fa77d76aa5 | |||
| 75b2d482eb | |||
| 78ef51d01f | |||
| b24744b22b | |||
| 73ddc18114 | |||
| 1862de64ee | |||
| fde43df2d0 | |||
| a9739dba1a | |||
| dfa572b453 | |||
| 45dd30f7f6 | |||
| 495bcca185 | |||
| 475dfb70ed | |||
| 9bdb7510c9 | |||
| 06cd376cd4 | |||
| c510f5a45c | |||
| 935ba33081 |
@@ -102,3 +102,4 @@ po/insert-header.sed
|
|||||||
!/help/C/*.xml
|
!/help/C/*.xml
|
||||||
/help/*/*.mo
|
/help/*/*.mo
|
||||||
/help/*/*.stamp
|
/help/*/*.stamp
|
||||||
|
.aider*
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ This repository is a screen reader. Prioritize accessibility, correctness, and s
|
|||||||
- variables: `camelCase`
|
- variables: `camelCase`
|
||||||
- functions/methods: `snake_case`
|
- functions/methods: `snake_case`
|
||||||
- classes: `PascalCase`
|
- classes: `PascalCase`
|
||||||
|
- Keep changes clean and well-structured; avoid layering short-term workarounds when a focused fix is possible.
|
||||||
- Add debug logs where helpful for troubleshooting. When adding timestamps to logs, use: `"Message [timestamp]"` (message first).
|
- Add debug logs where helpful for troubleshooting. When adding timestamps to logs, use: `"Message [timestamp]"` (message first).
|
||||||
|
|
||||||
## Accessibility requirements (high priority)
|
## Accessibility requirements (high priority)
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ toolkit, OpenOffice/LibreOffice, Gecko, WebKitGtk, and KDE Qt toolkit.
|
|||||||
- **Extensible architecture**: Plugin system using pluggy framework
|
- **Extensible architecture**: Plugin system using pluggy framework
|
||||||
- **Hot-reloadable plugins**: Add functionality without restarting
|
- **Hot-reloadable plugins**: Add functionality without restarting
|
||||||
- **Community plugins**: User and system plugin directories
|
- **Community plugins**: User and system plugin directories
|
||||||
|
- **Plugin preferences**: Plugins can provide preferences pages that appear only when the plugin is active
|
||||||
|
|
||||||
### Remote Control
|
### Remote Control
|
||||||
- **D-Bus interface**: External control via D-Bus service
|
- **D-Bus interface**: External control via D-Bus service
|
||||||
@@ -83,6 +84,13 @@ The `PluginSystemManager` module provides **session-only** plugin control (no pr
|
|||||||
- `SetPluginActive` (parameterized)
|
- `SetPluginActive` (parameterized)
|
||||||
- `RescanPlugins`
|
- `RescanPlugins`
|
||||||
|
|
||||||
|
### Plugin Preferences Pages
|
||||||
|
|
||||||
|
Plugins can add their own Preferences tab without modifying Cthulhu core code.
|
||||||
|
Implement `getPreferencesGUI()` to return a Gtk widget (or `(widget, label)`),
|
||||||
|
and `getPreferencesFromGUI()` to return a settings dict. The tab appears only
|
||||||
|
when the plugin is active.
|
||||||
|
|
||||||
### More Documentation
|
### More Documentation
|
||||||
|
|
||||||
See `README-REMOTE-CONTROLLER.md` and `REMOTE-CONTROLLER-COMMANDS.md` for the full D-Bus API
|
See `README-REMOTE-CONTROLLER.md` and `REMOTE-CONTROLLER-COMMANDS.md` for the full D-Bus API
|
||||||
|
|||||||
@@ -8,13 +8,11 @@ set -e # Exit on error
|
|||||||
|
|
||||||
# Colors for output (only if stdout is a terminal)
|
# Colors for output (only if stdout is a terminal)
|
||||||
if [[ -t 1 ]]; then
|
if [[ -t 1 ]]; then
|
||||||
RED='\033[0;31m'
|
|
||||||
GREEN='\033[0;32m'
|
GREEN='\033[0;32m'
|
||||||
YELLOW='\033[1;33m'
|
YELLOW='\033[1;33m'
|
||||||
BLUE='\033[0;34m'
|
BLUE='\033[0;34m'
|
||||||
NC='\033[0m' # No Color
|
NC='\033[0m' # No Color
|
||||||
else
|
else
|
||||||
RED=''
|
|
||||||
GREEN=''
|
GREEN=''
|
||||||
YELLOW=''
|
YELLOW=''
|
||||||
BLUE=''
|
BLUE=''
|
||||||
@@ -56,12 +54,6 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|||||||
|
|
||||||
# Remove data files
|
# Remove data files
|
||||||
|
|
||||||
# Remove desktop files
|
|
||||||
if [[ -f "$HOME/.local/share/applications/cthulhu-autostart.desktop" ]]; then
|
|
||||||
rm -f "$HOME/.local/share/applications/cthulhu-autostart.desktop"
|
|
||||||
echo " Removed: ~/.local/share/applications/cthulhu-autostart.desktop"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Remove icons
|
# Remove icons
|
||||||
for size in 16x16 22x22 24x24 32x32 48x48 256x256 scalable symbolic; do
|
for size in 16x16 22x22 24x24 32x32 48x48 256x256 scalable symbolic; do
|
||||||
icon_path="$HOME/.local/share/icons/hicolor/$size/apps"
|
icon_path="$HOME/.local/share/icons/hicolor/$size/apps"
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Cthulhu Screen Reader
|
|
||||||
Exec=cthulhu
|
|
||||||
NoDisplay=true
|
|
||||||
# Desktop-neutral autostart - no GNOME-specific conditions
|
|
||||||
# Users can enable/disable via their desktop environment's accessibility settings
|
|
||||||
# or by adding/removing this file from ~/.config/autostart/
|
|
||||||
X-GNOME-AutoRestart=true
|
|
||||||
Categories=Accessibility;
|
|
||||||
Keywords=screen;reader;accessibility;speech;braille;
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
# Maintainer: Storm Dragon <storm_dragon@stormux.org>
|
# Maintainer: Storm Dragon <storm_dragon@stormux.org>
|
||||||
|
|
||||||
pkgname=cthulhu
|
pkgname=cthulhu
|
||||||
pkgver=2026.01.12
|
pkgver=2026.03.02
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Desktop-agnostic screen reader with plugin system, forked from Orca"
|
pkgdesc="Desktop-agnostic screen reader with plugin system, forked from Orca"
|
||||||
url="https://git.stormux.org/storm/cthulhu"
|
url="https://git.stormux.org/storm/cthulhu"
|
||||||
@@ -27,6 +27,7 @@ depends=(
|
|||||||
|
|
||||||
# Plugin system and D-Bus remote control
|
# Plugin system and D-Bus remote control
|
||||||
python-pluggy
|
python-pluggy
|
||||||
|
python-tomlkit
|
||||||
python-dasbus
|
python-dasbus
|
||||||
|
|
||||||
# AI Assistant dependencies (for screenshots, HTTP requests, and actions)
|
# AI Assistant dependencies (for screenshots, HTTP requests, and actions)
|
||||||
@@ -83,7 +84,7 @@ makedepends=(
|
|||||||
)
|
)
|
||||||
install=cthulhu.install
|
install=cthulhu.install
|
||||||
source=(
|
source=(
|
||||||
"git+https://git.stormux.org/storm/cthulhu.git"
|
"git+https://git.stormux.org/storm/cthulhu.git#tag=${pkgver}"
|
||||||
"cthulhu.install"
|
"cthulhu.install"
|
||||||
)
|
)
|
||||||
b2sums=(
|
b2sums=(
|
||||||
@@ -91,11 +92,6 @@ b2sums=(
|
|||||||
'SKIP'
|
'SKIP'
|
||||||
)
|
)
|
||||||
|
|
||||||
pkgver() {
|
|
||||||
cd cthulhu
|
|
||||||
grep "^version = " src/cthulhu/cthulhuVersion.py | sed 's/version = "\(.*\)"/\1/'
|
|
||||||
}
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd cthulhu
|
cd cthulhu
|
||||||
arch-meson _build
|
arch-meson _build
|
||||||
|
|||||||
@@ -0,0 +1,46 @@
|
|||||||
|
# Cthulhu Logging Guidelines
|
||||||
|
|
||||||
|
This document defines the preferred format for debug logging in Cthulhu.
|
||||||
|
The goal is to keep logs consistent, searchable, and easy to scan.
|
||||||
|
|
||||||
|
## Helpers
|
||||||
|
|
||||||
|
Use the helpers in `cthulhu.debug` for new logs:
|
||||||
|
|
||||||
|
- `debug.print_log(level, prefix, message, reason=None, timestamp=False, stack=False)`
|
||||||
|
- `debug.print_log_tokens(level, prefix, tokens, reason=None, timestamp=False, stack=False)`
|
||||||
|
|
||||||
|
These helpers ensure the prefix and optional reason tag are formatted consistently.
|
||||||
|
Timestamps are appended at the end of the message when enabled.
|
||||||
|
|
||||||
|
## Prefixes
|
||||||
|
|
||||||
|
Use short, uppercase prefixes that identify the subsystem:
|
||||||
|
|
||||||
|
- `EVENT MANAGER`
|
||||||
|
- `FOCUS MANAGER`
|
||||||
|
- `INPUT EVENT`
|
||||||
|
- `SCRIPT MANAGER`
|
||||||
|
- `WEB`
|
||||||
|
|
||||||
|
## Messages
|
||||||
|
|
||||||
|
- Keep messages short and action-focused.
|
||||||
|
- Do not include the prefix in the message.
|
||||||
|
- Prefer consistent verbs (e.g., "Not using …", "Setting …", "Ignoring …").
|
||||||
|
|
||||||
|
## Reason Tags
|
||||||
|
|
||||||
|
Use reason tags to explain decisions or early exits.
|
||||||
|
|
||||||
|
- Lowercase with hyphens (e.g., `focus-mode`, `no-active-script`).
|
||||||
|
- Use a short phrase rather than a full sentence.
|
||||||
|
- If a human-readable reason is already available, it can be used directly.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
```text
|
||||||
|
WEB: Not using caret navigation (reason=disabled)
|
||||||
|
FOCUS MANAGER: Setting locus of focus to existing locus of focus (reason=no-change)
|
||||||
|
SCRIPT MANAGER: Setting active script to [script] (reason=focus: active-window)
|
||||||
|
```
|
||||||
+1
-1
@@ -290,7 +290,7 @@ toggle the reading of tables, either by single cell or whole row.
|
|||||||
.B Cthulhu
|
.B Cthulhu
|
||||||
user preferences directory
|
user preferences directory
|
||||||
.TP
|
.TP
|
||||||
.BI ~/.local/share/cthulhu/user-settings.conf
|
.BI ~/.local/share/cthulhu/user-settings.toml
|
||||||
.B Cthulhu
|
.B Cthulhu
|
||||||
user preferences configuration file.
|
user preferences configuration file.
|
||||||
.TP
|
.TP
|
||||||
|
|||||||
+6
-12
@@ -1,5 +1,5 @@
|
|||||||
project('cthulhu',
|
project('cthulhu',
|
||||||
version: '2026.01.12-master',
|
version: '2026.03.02-master',
|
||||||
meson_version: '>= 1.0.0',
|
meson_version: '>= 1.0.0',
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -28,6 +28,11 @@ if not json_result.found()
|
|||||||
error('json module is required')
|
error('json module is required')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
pluggy_result = python.find_installation('python3', modules:['pluggy'], required: false)
|
||||||
|
if not pluggy_result.found()
|
||||||
|
error('pluggy module is required')
|
||||||
|
endif
|
||||||
|
|
||||||
# End users might not have the Gtk development libraries installed, making pkg-config fail.
|
# End users might not have the Gtk development libraries installed, making pkg-config fail.
|
||||||
# Therefore, check this dependency via python.
|
# Therefore, check this dependency via python.
|
||||||
gtk_major_version = '3'
|
gtk_major_version = '3'
|
||||||
@@ -50,7 +55,6 @@ optional_modules = {
|
|||||||
'brlapi': 'braille output',
|
'brlapi': 'braille output',
|
||||||
'louis': 'contracted braille',
|
'louis': 'contracted braille',
|
||||||
'speechd': 'speech output',
|
'speechd': 'speech output',
|
||||||
'pluggy': 'plugin system',
|
|
||||||
'dasbus': 'D-Bus remote controller',
|
'dasbus': 'D-Bus remote controller',
|
||||||
'psutil': 'system information commands',
|
'psutil': 'system information commands',
|
||||||
'gi.repository.Wnck': 'mouse review',
|
'gi.repository.Wnck': 'mouse review',
|
||||||
@@ -89,16 +93,6 @@ else
|
|||||||
summary += {'sound support': 'no (missing gstreamer)'}
|
summary += {'sound support': 'no (missing gstreamer)'}
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Integration with session startup
|
|
||||||
i18n.merge_file(
|
|
||||||
input: 'cthulhu-autostart.desktop.in',
|
|
||||||
output: '@BASENAME@',
|
|
||||||
type: 'desktop',
|
|
||||||
po_dir: meson.project_source_root() / 'po',
|
|
||||||
install: true,
|
|
||||||
install_dir: get_option('sysconfdir') / 'xdg' / 'autostart',
|
|
||||||
)
|
|
||||||
|
|
||||||
# Update icon cache manually (desktop-neutral) - optional, ignore failures
|
# Update icon cache manually (desktop-neutral) - optional, ignore failures
|
||||||
gtk_update_icon_cache = find_program('gtk4-update-icon-cache', required: false)
|
gtk_update_icon_cache = find_program('gtk4-update-icon-cache', required: false)
|
||||||
if gtk_update_icon_cache.found()
|
if gtk_update_icon_cache.found()
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
# List of source files containing translatable strings.
|
# List of source files containing translatable strings.
|
||||||
# Please keep this file sorted alphabetically.
|
# Please keep this file sorted alphabetically.
|
||||||
cthulhu-autostart.desktop.in
|
|
||||||
src/cthulhu/braille_rolenames.py
|
src/cthulhu/braille_rolenames.py
|
||||||
src/cthulhu/brltablenames.py
|
src/cthulhu/brltablenames.py
|
||||||
src/cthulhu/chnames.py
|
src/cthulhu/chnames.py
|
||||||
|
|||||||
@@ -13,11 +13,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-DamnedLies-Scope: partial\n"
|
"X-DamnedLies-Scope: partial\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 1.6.10\n"
|
"X-Generator: Poedit 1.6.10\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Lector de pantalla Cthulhu"
|
msgstr "Lector de pantalla Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "lector de pantalla; fabla; braille;"
|
msgstr "lector de pantalla; fabla; braille;"
|
||||||
|
|||||||
@@ -24,11 +24,9 @@ msgstr ""
|
|||||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||||
"X-Poedit-Language: Arabic\n"
|
"X-Poedit-Language: Arabic\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "قارئ الشاشة Cthulhu"
|
msgstr "قارئ الشاشة Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "شاشة;قارئ;إمكانية الوصول;كلام;برايل;"
|
msgstr "شاشة;قارئ;إمكانية الوصول;كلام;برايل;"
|
||||||
|
|
||||||
|
|||||||
@@ -19,11 +19,9 @@ msgstr ""
|
|||||||
"X-Poedit-Language: Asturian\n"
|
"X-Poedit-Language: Asturian\n"
|
||||||
"X-Poedit-SourceCharset: utf-8\n"
|
"X-Poedit-SourceCharset: utf-8\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Llector de pantalla d'Cthulhu"
|
msgstr "Llector de pantalla d'Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -17,11 +17,9 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Чытач з экрана Cthulhu"
|
msgstr "Чытач з экрана Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "чытач з экрана;экран;голас;маўленне;Брайль;"
|
msgstr "чытач з экрана;экран;голас;маўленне;Брайль;"
|
||||||
|
|||||||
@@ -23,11 +23,9 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu — екранен четец"
|
msgstr "Cthulhu — екранен четец"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "екран;четец;достъпност;говор;брайл;"
|
msgstr "екран;четец;достъпност;говор;брайл;"
|
||||||
|
|
||||||
|
|||||||
@@ -21,12 +21,10 @@ msgstr ""
|
|||||||
"X-Generator: KBabel 1.9.1\n"
|
"X-Generator: KBabel 1.9.1\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "অর্কা স্ক্রীন রিডার / বিবর্ধন"
|
msgstr "অর্কা স্ক্রীন রিডার / বিবর্ধন"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,12 +18,10 @@ msgstr ""
|
|||||||
"X-Generator: KBabel 1.9.1\n"
|
"X-Generator: KBabel 1.9.1\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu'র বৈশিষ্ট্য"
|
msgstr "Cthulhu'র বৈশিষ্ট্য"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -15,11 +15,9 @@ msgstr ""
|
|||||||
"X-Launchpad-Export-Date: 2015-02-05 06:46+0000\n"
|
"X-Launchpad-Export-Date: 2015-02-05 06:46+0000\n"
|
||||||
"X-Generator: Poedit 1.7.4\n"
|
"X-Generator: Poedit 1.7.4\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu čitač ekrana"
|
msgstr "Cthulhu čitač ekrana"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "čitač ekrana;govor;brailleovo pismo;"
|
msgstr "čitač ekrana;govor;brailleovo pismo;"
|
||||||
|
|
||||||
|
|||||||
@@ -27,11 +27,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Lector de pantalla Cthulhu"
|
msgstr "Lector de pantalla Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "pantalla;lector;accessibilitat;veu;braille;"
|
msgstr "pantalla;lector;accessibilitat;veu;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -27,11 +27,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Poedit 1.8.11\n"
|
"X-Generator: Poedit 1.8.11\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Lector de pantalla Cthulhu"
|
msgstr "Lector de pantalla Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "lector de pantalla;pronunciació;braille;"
|
msgstr "lector de pantalla;pronunciació;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -19,12 +19,10 @@ msgstr ""
|
|||||||
"X-Launchpad-Export-Date: 2020-05-04 21:32+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-04 21:32+0000\n"
|
||||||
"X-Generator: Poedit 2.3\n"
|
"X-Generator: Poedit 2.3\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "خوێنەری پەردەی ئۆرکا"
|
msgstr "خوێنەری پەردەی ئۆرکا"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -24,11 +24,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Čtečka obrazovky Cthulhu"
|
msgstr "Čtečka obrazovky Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "obrazovka;čtečka;přístupnost;řeč;braille;"
|
msgstr "obrazovka;čtečka;přístupnost;řeč;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -17,12 +17,10 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
|
"Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
|
||||||
"11) ? 2 : 3;\n"
|
"11) ? 2 : 3;\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Hoffterau Cthulhu"
|
msgstr "Hoffterau Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -32,11 +32,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 3.0.1\n"
|
"X-Generator: Poedit 3.0.1\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Skærmlæseren Cthulhu"
|
msgstr "Skærmlæseren Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "skærm;læser;tilgængelighed;tale;braille;"
|
msgstr "skærm;læser;tilgængelighed;tale;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -37,11 +37,9 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu-Bildschirmleser"
|
msgstr "Cthulhu-Bildschirmleser"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "bildschirm;leser;barrierefreiheit;sprache;braille;"
|
msgstr "bildschirm;leser;barrierefreiheit;sprache;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -20,12 +20,10 @@ msgstr ""
|
|||||||
"X-Poedit-SourceCharset: utf-8\n"
|
"X-Poedit-SourceCharset: utf-8\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n!=1)\n"
|
"Plural-Forms: nplurals=2; plural=(n!=1)\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "ཨོར་ཀ་གསལ་གཞི་ལྷག་བྱེད་/ཆེ་ཤེལ་"
|
msgstr "ཨོར་ཀ་གསལ་གཞི་ལྷག་བྱེད་/ཆེ་ཤེལ་"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -28,11 +28,9 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 2.3\n"
|
"X-Generator: Poedit 2.3\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Αναγνώστης οθόνης Cthulhu"
|
msgstr "Αναγνώστης οθόνης Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "οθόνη;αναγνώστης;προσβασιμότητα;ομιλία;μπράιγ;"
|
msgstr "οθόνη;αναγνώστης;προσβασιμότητα;ομιλία;μπράιγ;"
|
||||||
|
|
||||||
|
|||||||
@@ -17,11 +17,9 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -21,11 +21,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Gtranslator 45.3\n"
|
"X-Generator: Gtranslator 45.3\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu Screen Reader"
|
msgstr "Cthulhu Screen Reader"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "screen reader;speech;braille;"
|
msgstr "screen reader;speech;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -21,11 +21,9 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 3.2.2\n"
|
"X-Generator: Poedit 3.2.2\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Ekranlegilo Orko"
|
msgstr "Ekranlegilo Orko"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "ekranlegilo;parolo;brajlo;"
|
msgstr "ekranlegilo;parolo;brajlo;"
|
||||||
|
|||||||
@@ -28,11 +28,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
"X-Generator: Gtranslator 45.alpha0\n"
|
"X-Generator: Gtranslator 45.alpha0\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Lector de pantalla Cthulhu"
|
msgstr "Lector de pantalla Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "lector;pantalla;accesibilidad;voz;braille;"
|
msgstr "lector;pantalla;accesibilidad;voz;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -20,12 +20,10 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu ekraanilugeja ja luup"
|
msgstr "Cthulhu ekraanilugeja ja luup"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -20,11 +20,9 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu pantaila-irakurlea"
|
msgstr "Cthulhu pantaila-irakurlea"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "pantaila;irakurlea;irisgarritasuna;mintzamena;braillea;"
|
msgstr "pantaila;irakurlea;irisgarritasuna;mintzamena;braillea;"
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 3.4\n"
|
"X-Generator: Poedit 3.4\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "صفحهخوان اورکا"
|
msgstr "صفحهخوان اورکا"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -27,11 +27,9 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
"X-Poedit-Bookmarks: 814,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
|
"X-Poedit-Bookmarks: 814,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu-näytönlukija"
|
msgstr "Cthulhu-näytönlukija"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "näyttö;lukija;saavutettavuus;puhe;pistekirjoitus;"
|
msgstr "näyttö;lukija;saavutettavuus;puhe;pistekirjoitus;"
|
||||||
|
|
||||||
|
|||||||
@@ -31,11 +31,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Lecteur d’écran Cthulhu"
|
msgstr "Lecteur d’écran Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "lecteur;écran;accessibilité;parole;braille;"
|
msgstr "lecteur;écran;accessibilité;parole;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 2.0.3\n"
|
"X-Generator: Poedit 2.0.3\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,12 +18,10 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=5; plural=n==1 ? 0 : (n%10==1 || n%10==2) ? 1 : "
|
"Plural-Forms: nplurals=5; plural=n==1 ? 0 : (n%10==1 || n%10==2) ? 1 : "
|
||||||
"(n%10>=3 && n%10<= 6) ? 2 : ((n%10>=7 && n%10<=9) || n==10) ? 3 : 4;\n"
|
"(n%10>=3 && n%10<= 6) ? 2 : ((n%10>=7 && n%10<=9) || n==10) ? 3 : 4;\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Léitheoir Scáileáin agus Formhéadaitheoir Cthulhu"
|
msgstr "Léitheoir Scáileáin agus Formhéadaitheoir Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -34,11 +34,9 @@ msgstr ""
|
|||||||
"X-DL-Domain: po\n"
|
"X-DL-Domain: po\n"
|
||||||
"X-DL-State: Translating\n"
|
"X-DL-State: Translating\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Lector da pantalla Cthulhu"
|
msgstr "Lector da pantalla Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "pantalla;lector;accesibilidade;fala;braille;"
|
msgstr "pantalla;lector;accesibilidade;fala;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -33,12 +33,10 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu સ્ક્રીન વાંચક અને વિસ્તૃતકારક"
|
msgstr "Cthulhu સ્ક્રીન વાંચક અને વિસ્તૃતકારક"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -14,11 +14,9 @@ msgstr ""
|
|||||||
"2 : 3);\n"
|
"2 : 3);\n"
|
||||||
"X-Generator: Poedit 3.4.1\n"
|
"X-Generator: Poedit 3.4.1\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "מקריא המסך Cthulhu"
|
msgstr "מקריא המסך Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "מסך;קורא;נגישות;דיבור;ברייל;"
|
msgstr "מסך;קורא;נגישות;דיבור;ברייל;"
|
||||||
|
|
||||||
|
|||||||
@@ -22,11 +22,9 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"X-Generator: Lokalize 1.5\n"
|
"X-Generator: Lokalize 1.5\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu स्क्रीन वाचक"
|
msgstr "Cthulhu स्क्रीन वाचक"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "स्क्रीन रीडर;भाषण;ब्रेल;"
|
msgstr "स्क्रीन रीडर;भाषण;ब्रेल;"
|
||||||
|
|||||||
@@ -20,11 +20,9 @@ msgstr ""
|
|||||||
"X-Launchpad-Export-Date: 2016-09-15 12:40+0000\n"
|
"X-Launchpad-Export-Date: 2016-09-15 12:40+0000\n"
|
||||||
"X-Generator: Poedit 1.6.10\n"
|
"X-Generator: Poedit 1.6.10\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu čitač zaslona"
|
msgstr "Cthulhu čitač zaslona"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "čitač zaslona;govor;brajica;"
|
msgstr "čitač zaslona;govor;brajica;"
|
||||||
|
|
||||||
|
|||||||
@@ -22,11 +22,9 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 2.3\n"
|
"X-Generator: Poedit 2.3\n"
|
||||||
|
|
||||||
# Megjegyzés: Mivel mindenhol régóta Gáborral egyeztetve az Cthulhu nevet magyarosan Orkaként írjuk a fordításban, így a fordítást megváltoztattam Orka képernyőolvasóra az Cthulhu képernyőolvasó helyett.
|
# Megjegyzés: Mivel mindenhol régóta Gáborral egyeztetve az Cthulhu nevet magyarosan Orkaként írjuk a fordításban, így a fordítást megváltoztattam Orka képernyőolvasóra az Cthulhu képernyőolvasó helyett.
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Orka képernyőolvasó"
|
msgstr "Orka képernyőolvasó"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "képernyő;olvasó;akadálymentesítés;beszéd;braille;"
|
msgstr "képernyő;olvasó;akadálymentesítés;beszéd;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -20,11 +20,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Pembaca Layar Cthulhu"
|
msgstr "Pembaca Layar Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "layar;pembaca;aksesibilitas;ucapan;braille;"
|
msgstr "layar;pembaca;aksesibilitas;ucapan;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -17,11 +17,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Lokalize 1.5\n"
|
"X-Generator: Lokalize 1.5\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu skjálestur"
|
msgstr "Cthulhu skjálestur"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -39,11 +39,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
"X-Generator: Gtranslator 42.0\n"
|
"X-Generator: Gtranslator 42.0\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Lettore schermo Cthulhu"
|
msgstr "Lettore schermo Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "lettore;schermo;accessibilità;voce;braille;"
|
msgstr "lettore;schermo;accessibilità;voce;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -25,11 +25,9 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu スクリーンリーダー"
|
msgstr "Cthulhu スクリーンリーダー"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "スクリーン;リーダー;アクセシビリティ;音声;点字;"
|
msgstr "スクリーン;リーダー;アクセシビリティ;音声;点字;"
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu - ეკრანის მკითხველი"
|
msgstr "Cthulhu - ეკრანის მკითხველი"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "ეკრანი;მკითხველი;ხელმისაწვდომობა;მეტყველება;ბრაილი;"
|
msgstr "ეკრანი;მკითხველი;ხელმისაწვდომობა;მეტყველება;ბრაილი;"
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
"X-Generator: Poedit 3.0\n"
|
"X-Generator: Poedit 3.0\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu экраннан оқитын қолданбасы"
|
msgstr "Cthulhu экраннан оқитын қолданбасы"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,12 +18,10 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: KBabel 1.11.4\n"
|
"X-Generator: KBabel 1.11.4\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "ಆದ್ಯತೆಗಳು"
|
msgstr "ಆದ್ಯತೆಗಳು"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -15,11 +15,9 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu 화면 낭독기"
|
msgstr "Cthulhu 화면 낭독기"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "화면;리더;접근성;음성;점자;"
|
msgstr "화면;리더;접근성;음성;점자;"
|
||||||
|
|
||||||
|
|||||||
@@ -25,11 +25,9 @@ msgstr ""
|
|||||||
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu ekrano skaityklė"
|
msgstr "Cthulhu ekrano skaityklė"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "ekrano skaityklė;kalba;brailio raštas;"
|
msgstr "ekrano skaityklė;kalba;brailio raštas;"
|
||||||
|
|
||||||
|
|||||||
@@ -23,11 +23,9 @@ msgstr ""
|
|||||||
"2);\n"
|
"2);\n"
|
||||||
"X-Generator: Lokalize 21.12.3\n"
|
"X-Generator: Lokalize 21.12.3\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu ekrāna lasītājs"
|
msgstr "Cthulhu ekrāna lasītājs"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "ekrāna lasītājs;runa;Brails;"
|
msgstr "ekrāna lasītājs;runa;Brails;"
|
||||||
|
|
||||||
|
|||||||
@@ -19,12 +19,10 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu स्क्रीन पाठक / आवर्द्धक"
|
msgstr "Cthulhu स्क्रीन पाठक / आवर्द्धक"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1\n"
|
"Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1\n"
|
||||||
"X-Generator: KBabel 1.11.4\n"
|
"X-Generator: KBabel 1.11.4\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu читач на екранот"
|
msgstr "Cthulhu читач на екранот"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -22,12 +22,10 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 2.0.1\n"
|
"X-Generator: Poedit 2.0.1\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "സ്ക്രീന് വായന അവസാനിപ്പിക്കാം."
|
msgstr "സ്ക്രീന് വായന അവസാനിപ്പിക്കാം."
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,12 +18,10 @@ msgstr ""
|
|||||||
"X-Generator: KBabel 1.9.1\n"
|
"X-Generator: KBabel 1.9.1\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "वर्धक भिंग"
|
msgstr "वर्धक भिंग"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 2.0.6\n"
|
"X-Generator: Poedit 2.0.6\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Pembaca skrin Cthulhu"
|
msgstr "Pembaca skrin Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "skrin;pembaca;kebolehcapaian;pertuturan;braille;"
|
msgstr "skrin;pembaca;kebolehcapaian;pertuturan;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -19,11 +19,9 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu skjermleser"
|
msgstr "Cthulhu skjermleser"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "skjerm;leser;tilgjengelighet;tale;blindeskrift;"
|
msgstr "skjerm;leser;tilgjengelighet;tale;blindeskrift;"
|
||||||
|
|
||||||
|
|||||||
@@ -13,11 +13,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 3.0.1\n"
|
"X-Generator: Poedit 3.0.1\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "ओर्का दृष्टि वाचक"
|
msgstr "ओर्का दृष्टि वाचक"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "दृष्टि वाचक; वाचन;ब्रेल;"
|
msgstr "दृष्टि वाचक; वाचन;ब्रेल;"
|
||||||
|
|
||||||
|
|||||||
@@ -31,11 +31,9 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 3.2.2\n"
|
"X-Generator: Poedit 3.2.2\n"
|
||||||
|
|
||||||
# vergrootglas/loep
|
# vergrootglas/loep
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu schermlezer"
|
msgstr "Cthulhu schermlezer"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "scherm;lezer;toegankelijkheid;spraak;braille;"
|
msgstr "scherm;lezer;toegankelijkheid;spraak;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -18,12 +18,10 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu skjermlesar og forstørringsglas"
|
msgstr "Cthulhu skjermlesar og forstørringsglas"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -23,11 +23,9 @@ msgstr ""
|
|||||||
"X-Launchpad-Export-Date: 2015-05-21 18:05+0000\n"
|
"X-Launchpad-Export-Date: 2015-05-21 18:05+0000\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Lector d'ecran Cthulhu"
|
msgstr "Lector d'ecran Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"lector d'ecran;oral;braille;votz;sintèsi vocala;sintesi vocala;lector "
|
"lector d'ecran;oral;braille;votz;sintèsi vocala;sintesi vocala;lector "
|
||||||
|
|||||||
@@ -22,12 +22,10 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "ଓର୍କା ସ୍କ୍ରିନ ପାଠକ /ଛୋଟକୁ ବଡ ଦେଖଉଥିବା ଉପକରଣ "
|
msgstr "ଓର୍କା ସ୍କ୍ରିନ ପାଠକ /ଛୋଟକୁ ବଡ ଦେଖଉଥିବା ଉପକରଣ "
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -24,11 +24,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Poedit-Bookmarks: 589,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
|
"X-Poedit-Bookmarks: 589,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "ਓਰਕਾ ਸਕਰੀਨ ਰੀਡਰ"
|
msgstr "ਓਰਕਾ ਸਕਰੀਨ ਰੀਡਰ"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -24,11 +24,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||||
"|| n%100>=20) ? 1 : 2);\n"
|
"|| n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Czytnik ekranowy Cthulhu"
|
msgstr "Czytnik ekranowy Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "czytnik;ekran;dostępność;mowa;braille;"
|
msgstr "czytnik;ekran;dostępność;mowa;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -28,11 +28,9 @@ msgstr ""
|
|||||||
"X-Source-Language: C\n"
|
"X-Source-Language: C\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Leitor de ecrã Cthulhu"
|
msgstr "Leitor de ecrã Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "leitor;ecrã;acessibilidade;voz;braille;"
|
msgstr "leitor;ecrã;acessibilidade;voz;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -49,11 +49,9 @@ msgstr ""
|
|||||||
"X-DL-Domain: po\n"
|
"X-DL-Domain: po\n"
|
||||||
"X-DL-State: Translating\n"
|
"X-DL-State: Translating\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Leitor de tela Cthulhu"
|
msgstr "Leitor de tela Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "leitor;tela;acessibilidade;voz;braille;"
|
msgstr "leitor;tela;acessibilidade;voz;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -24,11 +24,9 @@ msgstr ""
|
|||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
"X-Poedit-SourceCharset: UTF-8\n"
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cititorul de ecran Cthulhu"
|
msgstr "Cititorul de ecran Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "ecran;cititor;accesibilitate;vorbire;braille;"
|
msgstr "ecran;cititor;accesibilitate;vorbire;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -22,11 +22,9 @@ msgstr ""
|
|||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Экранный диктор Cthulhu"
|
msgstr "Экранный диктор Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "экран;чтец;доступность;речь;брайль;"
|
msgstr "экран;чтец;доступность;речь;брайль;"
|
||||||
|
|
||||||
|
|||||||
@@ -24,11 +24,9 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: KBabel 1.11.4\n"
|
"X-Generator: KBabel 1.11.4\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -19,11 +19,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n"
|
||||||
"X-Generator: Gtranslator 2.91.7\n"
|
"X-Generator: Gtranslator 2.91.7\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Ukončí čítačku obrazovky"
|
msgstr "Ukončí čítačku obrazovky"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -22,11 +22,9 @@ msgstr ""
|
|||||||
"X-Poedit-SourceCharset: utf-8\n"
|
"X-Poedit-SourceCharset: utf-8\n"
|
||||||
"X-Generator: Poedit 3.0.1\n"
|
"X-Generator: Poedit 3.0.1\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Zaslonski bralnik Orka"
|
msgstr "Zaslonski bralnik Orka"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "govor;zaslonski bralnik;Braillova pisava;brajica;povečevalnik"
|
msgstr "govor;zaslonski bralnik;Braillova pisava;brajica;povečevalnik"
|
||||||
|
|
||||||
|
|||||||
@@ -17,12 +17,10 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Ekrani Zmadhues (Lupë)"
|
msgstr "Ekrani Zmadhues (Lupë)"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -21,11 +21,9 @@ msgstr ""
|
|||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
"X-Generator: Poedit 3.1.1\n"
|
"X-Generator: Poedit 3.1.1\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Читач екрана Орка"
|
msgstr "Читач екрана Орка"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "читач екрана;говор;брајева азбука;"
|
msgstr "читач екрана;говор;брајева азбука;"
|
||||||
|
|
||||||
|
|||||||
@@ -20,11 +20,9 @@ msgstr ""
|
|||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
"X-Generator: Poedit 2.0.3\n"
|
"X-Generator: Poedit 2.0.3\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Čitač ekrana Orka"
|
msgstr "Čitač ekrana Orka"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "čitač ekrana;govor;brajeva azbuka;"
|
msgstr "čitač ekrana;govor;brajeva azbuka;"
|
||||||
|
|
||||||
|
|||||||
@@ -20,11 +20,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu skärmläsare"
|
msgstr "Cthulhu skärmläsare"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "skärm;läsare;tillgänglighet;tal;punktskrift;"
|
msgstr "skärm;läsare;tillgänglighet;tal;punktskrift;"
|
||||||
|
|
||||||
|
|||||||
@@ -24,11 +24,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n!=1);\\n\n"
|
"Plural-Forms: nplurals=2; plural=(n!=1);\\n\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "ஆர்கா திரை படிப்பி "
|
msgstr "ஆர்கா திரை படிப்பி "
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "திரைபடிப்பான்;பேசுதல்;ப்ரெய்ல்;"
|
msgstr "திரைபடிப்பான்;பேசுதல்;ப்ரெய்ல்;"
|
||||||
|
|||||||
@@ -23,11 +23,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
|
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
|
||||||
"X-Generator: KBabel 1.11.4\n"
|
"X-Generator: KBabel 1.11.4\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "ఓర్కా తెరచదువరి"
|
msgstr "ఓర్కా తెరచదువరి"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 1.6.3\n"
|
"X-Generator: Poedit 1.6.3\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Хонандаи экрани Cthulhu"
|
msgstr "Хонандаи экрани Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "хонандаи экран;нутқ;брайл;"
|
msgstr "хонандаи экран;нутқ;брайл;"
|
||||||
|
|||||||
@@ -19,11 +19,9 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "โปรแกรมอ่านหน้าจอ Cthulhu"
|
msgstr "โปรแกรมอ่านหน้าจอ Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "หน้าจอ;อ่าน;การเข้าถึง;เสียงพูด;อักษรเบรลล์;"
|
msgstr "หน้าจอ;อ่าน;การเข้าถึง;เสียงพูด;อักษรเบรลล์;"
|
||||||
|
|
||||||
|
|||||||
@@ -27,11 +27,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 3.4\n"
|
"X-Generator: Poedit 3.4\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu Ekran Okuyucu"
|
msgstr "Cthulhu Ekran Okuyucu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "ekran;okuyucu;erişilebilirlik;konuşma;braille;"
|
msgstr "ekran;okuyucu;erişilebilirlik;konuşma;braille;"
|
||||||
|
|
||||||
|
|||||||
@@ -20,11 +20,9 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu ئېكران ئوقۇغۇ"
|
msgstr "Cthulhu ئېكران ئوقۇغۇ"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "screen reader;speech;braille;ئېكران ئوقۇغۇچ;تاۋۇش;ئەمالار ئېلىپبەسى;"
|
msgstr "screen reader;speech;braille;ئېكران ئوقۇغۇچ;تاۋۇش;ئەمالار ئېلىپبەسى;"
|
||||||
|
|||||||
@@ -26,11 +26,9 @@ msgstr ""
|
|||||||
"n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
"n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Lokalize 20.12.0\n"
|
"X-Generator: Lokalize 20.12.0\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Інструмент читання з екрана «Cthulhu»"
|
msgstr "Інструмент читання з екрана «Cthulhu»"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "екран;читач;доступність;мовлення;брайль;"
|
msgstr "екран;читач;доступність;мовлення;брайль;"
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: LocFactoryEditor 1.8\n"
|
"X-Generator: LocFactoryEditor 1.8\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Trình đọc màn hình Cthulhu"
|
msgstr "Trình đọc màn hình Cthulhu"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "màn hình;đọc;trợ năng;giọng nói;chữ nổi;"
|
msgstr "màn hình;đọc;trợ năng;giọng nói;chữ nổi;"
|
||||||
|
|
||||||
|
|||||||
@@ -29,11 +29,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 3.3.2\n"
|
"X-Generator: Poedit 3.3.2\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu 屏幕阅读器"
|
msgstr "Cthulhu 屏幕阅读器"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "屏幕;阅读器;无障碍;语音;盲文;"
|
msgstr "屏幕;阅读器;无障碍;语音;盲文;"
|
||||||
|
|
||||||
|
|||||||
@@ -20,11 +20,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 1.6.5\n"
|
"X-Generator: Poedit 1.6.5\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu 螢幕閱讀器"
|
msgstr "Cthulhu 螢幕閱讀器"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "screen reader;speech;braille;螢幕閱讀器;語音;點字;"
|
msgstr "screen reader;speech;braille;螢幕閱讀器;語音;點字;"
|
||||||
|
|||||||
@@ -20,11 +20,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 1.8.12\n"
|
"X-Generator: Poedit 1.8.12\n"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:3
|
|
||||||
msgid "Cthulhu Screen Reader"
|
msgid "Cthulhu Screen Reader"
|
||||||
msgstr "Cthulhu 螢幕閱讀器"
|
msgstr "Cthulhu 螢幕閱讀器"
|
||||||
|
|
||||||
#: cthulhu-autostart.desktop.in:11
|
|
||||||
msgid "screen;reader;accessibility;speech;braille;"
|
msgid "screen;reader;accessibility;speech;braille;"
|
||||||
msgstr "螢幕;閱讀器;無障礙;語音;點字;"
|
msgstr "螢幕;閱讀器;無障礙;語音;點字;"
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ requires-python = ">=3.9"
|
|||||||
license = { text = "LGPL-2.1-or-later" }
|
license = { text = "LGPL-2.1-or-later" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"pygobject>=3.18",
|
"pygobject>=3.18",
|
||||||
|
"pluggy",
|
||||||
|
"tomlkit",
|
||||||
"brlapi; extra == 'braille'",
|
"brlapi; extra == 'braille'",
|
||||||
"python-speechd; extra == 'speech'",
|
"python-speechd; extra == 'speech'",
|
||||||
"piper-tts; extra == 'piper'",
|
"piper-tts; extra == 'piper'",
|
||||||
@@ -25,3 +27,4 @@ path = "src/cthulhu/__init__.py"
|
|||||||
|
|
||||||
[tool.hatch.build.targets.wheel]
|
[tool.hatch.build.targets.wheel]
|
||||||
packages = ["src/cthulhu"]
|
packages = ["src/cthulhu"]
|
||||||
|
include = ["src/cthulhu/*.ui"]
|
||||||
|
|||||||
+1
-1
@@ -368,7 +368,7 @@ def main():
|
|||||||
debug.printMessage(debug.LEVEL_INFO, "INFO: Preparing to launch.", True)
|
debug.printMessage(debug.LEVEL_INFO, "INFO: Preparing to launch.", True)
|
||||||
|
|
||||||
from cthulhu import cthulhu
|
from cthulhu import cthulhu
|
||||||
manager = cthulhu.getSettingsManager()
|
manager = cthulhu.cthulhuApp.settingsManager
|
||||||
|
|
||||||
if not manager:
|
if not manager:
|
||||||
print(messages.CLI_SETTINGS_MANAGER_ERROR)
|
print(messages.CLI_SETTINGS_MANAGER_ERROR)
|
||||||
|
|||||||
+13
-6
@@ -88,12 +88,19 @@ class ACSS(dict):
|
|||||||
def __eq__(self, other):
|
def __eq__(self, other):
|
||||||
if not isinstance(other, ACSS):
|
if not isinstance(other, ACSS):
|
||||||
return False
|
return False
|
||||||
if self.get(ACSS.FAMILY) != other.get(ACSS.FAMILY):
|
compareKeys = (
|
||||||
return False
|
ACSS.FAMILY,
|
||||||
if self.get(ACSS.RATE) != other.get(ACSS.RATE):
|
ACSS.RATE,
|
||||||
return False
|
ACSS.AVERAGE_PITCH,
|
||||||
if self.get(ACSS.AVERAGE_PITCH) != other.get(ACSS.AVERAGE_PITCH):
|
ACSS.GAIN,
|
||||||
return False
|
ACSS.PITCH_RANGE,
|
||||||
|
ACSS.STRESS,
|
||||||
|
ACSS.RICHNESS,
|
||||||
|
ACSS.PUNCTUATIONS,
|
||||||
|
)
|
||||||
|
for key in compareKeys:
|
||||||
|
if self.get(key) != other.get(key):
|
||||||
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def __setitem__ (self, key, value):
|
def __setitem__ (self, key, value):
|
||||||
|
|||||||
@@ -145,7 +145,7 @@ class AXComponent:
|
|||||||
return not(rect.width or rect.height)
|
return not(rect.width or rect.height)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def has_no_size_or_invalid_rect(obj: Atspi.Accessible) -> bool:
|
def has_no_size_or_invalid_rect(obj: Atspi.Accessible, clear_cache: bool = True) -> bool:
|
||||||
"""Returns True if the rect associated with obj is sizeless or invalid."""
|
"""Returns True if the rect associated with obj is sizeless or invalid."""
|
||||||
|
|
||||||
rect = AXComponent.get_rect(obj)
|
rect = AXComponent.get_rect(obj)
|
||||||
@@ -158,7 +158,8 @@ class AXComponent:
|
|||||||
if (rect.width < -1 or rect.height < -1):
|
if (rect.width < -1 or rect.height < -1):
|
||||||
tokens = ["WARNING: ", obj, "has a broken rect:", rect]
|
tokens = ["WARNING: ", obj, "has a broken rect:", rect]
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
AXObject.clear_cache(obj)
|
if clear_cache:
|
||||||
|
AXObject.clear_cache(obj)
|
||||||
rect = AXComponent.get_rect(obj)
|
rect = AXComponent.get_rect(obj)
|
||||||
if (rect.width < -1 or rect.height < -1):
|
if (rect.width < -1 or rect.height < -1):
|
||||||
msg = "AXComponent: Clearing cache did not fix the rect"
|
msg = "AXComponent: Clearing cache did not fix the rect"
|
||||||
|
|||||||
+30
-28
@@ -109,13 +109,14 @@ class AXUtilities:
|
|||||||
AXTable.clear_cache_now(reason)
|
AXTable.clear_cache_now(reason)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def can_be_active_window(window: Atspi.Accessible) -> bool:
|
def can_be_active_window(window: Atspi.Accessible, clear_cache: bool = True) -> bool:
|
||||||
"""Returns True if window can be the active window based on its state."""
|
"""Returns True if window can be the active window based on its state."""
|
||||||
|
|
||||||
if window is None:
|
if window is None:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
AXObject.clear_cache(window, False, "Checking if window can be the active window")
|
if clear_cache:
|
||||||
|
AXObject.clear_cache(window, False, "Checking if window can be the active window")
|
||||||
app = AXUtilitiesApplication.get_application(window)
|
app = AXUtilitiesApplication.get_application(window)
|
||||||
tokens = ["AXUtilities:", window, "from", app]
|
tokens = ["AXUtilities:", window, "from", app]
|
||||||
|
|
||||||
@@ -129,6 +130,11 @@ class AXUtilities:
|
|||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
if not AXUtilitiesState.is_visible(window):
|
||||||
|
tokens.append("lacks visible state")
|
||||||
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
|
return False
|
||||||
|
|
||||||
if AXUtilitiesState.is_iconified(window):
|
if AXUtilitiesState.is_iconified(window):
|
||||||
tokens.append("is iconified")
|
tokens.append("is iconified")
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
@@ -174,35 +180,27 @@ class AXUtilities:
|
|||||||
tokens = ["AXUtilities: These windows all claim to be active:", candidates]
|
tokens = ["AXUtilities: These windows all claim to be active:", candidates]
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
|
|
||||||
# Some electron apps running in the background claim to be active even when they
|
focused_candidates = []
|
||||||
# are not. These are the ones we know about. We can add others as we go.
|
|
||||||
suspect_apps = ["slack",
|
|
||||||
"discord",
|
|
||||||
"outline-client",
|
|
||||||
"whatsapp-desktop-linux"]
|
|
||||||
filtered = []
|
|
||||||
for frame in candidates:
|
for frame in candidates:
|
||||||
if AXObject.get_name(AXUtilitiesApplication.get_application(frame)) in suspect_apps:
|
if AXUtilitiesState.is_focused(frame):
|
||||||
tokens = ["AXUtilities: Suspecting", frame, "is a non-active Electron app"]
|
focused_candidates.append(frame)
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
continue
|
||||||
else:
|
focused = AXUtilities.get_focused_object(frame)
|
||||||
filtered.append(frame)
|
if focused is not None:
|
||||||
|
focused_candidates.append(frame)
|
||||||
|
|
||||||
if len(filtered) == 1:
|
if len(focused_candidates) == 1:
|
||||||
tokens = ["AXUtilities: Active window is believed to be", filtered[0]]
|
tokens = ["AXUtilities: Active window has focus:", focused_candidates[0]]
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
return filtered[0]
|
return focused_candidates[0]
|
||||||
|
|
||||||
guess: Optional[Atspi.Accessible] = None
|
if not focused_candidates and len(candidates) > 1:
|
||||||
if filtered:
|
tokens = ["AXUtilities: No focused active window found"]
|
||||||
tokens = ["AXUtilities: Still have multiple active windows:", filtered]
|
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
guess = filtered[0]
|
return None
|
||||||
|
|
||||||
if guess is not None:
|
guess = focused_candidates[0] if focused_candidates else candidates[0]
|
||||||
tokens = ["AXUtilities: Returning", guess, "as active window"]
|
tokens = ["AXUtilities: Returning", guess, "as active window"]
|
||||||
else:
|
|
||||||
tokens = ["AXUtilities: No active window found"]
|
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
return guess
|
return guess
|
||||||
|
|
||||||
@@ -811,11 +809,13 @@ class AXUtilities:
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
def is_on_screen(
|
def is_on_screen(
|
||||||
obj: Atspi.Accessible,
|
obj: Atspi.Accessible,
|
||||||
bounding_box: Optional[Atspi.Rect] = None
|
bounding_box: Optional[Atspi.Rect] = None,
|
||||||
|
clear_cache: bool = True
|
||||||
) -> bool:
|
) -> bool:
|
||||||
"""Returns true if obj should be treated as being on screen."""
|
"""Returns true if obj should be treated as being on screen."""
|
||||||
|
|
||||||
AXObject.clear_cache(obj, False, "Updating to check if object is on screen.")
|
if clear_cache:
|
||||||
|
AXObject.clear_cache(obj, False, "Updating to check if object is on screen.")
|
||||||
|
|
||||||
tokens = ["AXUtilities: Checking if", obj, "is showing and visible...."]
|
tokens = ["AXUtilities: Checking if", obj, "is showing and visible...."]
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
@@ -836,7 +836,7 @@ class AXUtilities:
|
|||||||
tokens = ["AXUtilities:", obj, "is not hidden. Checking size and rect..."]
|
tokens = ["AXUtilities:", obj, "is not hidden. Checking size and rect..."]
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
|
|
||||||
if AXComponent.has_no_size_or_invalid_rect(obj):
|
if AXComponent.has_no_size_or_invalid_rect(obj, clear_cache=clear_cache):
|
||||||
tokens = ["AXUtilities: Rect of", obj, "is unhelpful. Treating as on screen."]
|
tokens = ["AXUtilities: Rect of", obj, "is unhelpful. Treating as on screen."]
|
||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
return True
|
return True
|
||||||
@@ -975,6 +975,8 @@ class AXUtilities:
|
|||||||
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
debug.print_tokens(debug.LEVEL_INFO, tokens, True)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
# Dynamically expose helper methods for compatibility with older callers.
|
||||||
|
# Keep side effects explicit in the underlying helpers (e.g., clear_cache flags).
|
||||||
for method_name, method in inspect.getmembers(AXUtilitiesApplication, predicate=inspect.isfunction):
|
for method_name, method in inspect.getmembers(AXUtilitiesApplication, predicate=inspect.isfunction):
|
||||||
setattr(AXUtilities, method_name, method)
|
setattr(AXUtilities, method_name, method)
|
||||||
|
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ from gi.repository import Atspi
|
|||||||
|
|
||||||
from . import debug
|
from . import debug
|
||||||
from . import object_properties
|
from . import object_properties
|
||||||
|
from . import role_keys
|
||||||
from .ax_object import AXObject
|
from .ax_object import AXObject
|
||||||
from .ax_utilities_state import AXUtilitiesState
|
from .ax_utilities_state import AXUtilitiesState
|
||||||
|
|
||||||
@@ -386,7 +387,7 @@ class AXUtilitiesRole:
|
|||||||
return object_properties.ROLE_PROLOGUE
|
return object_properties.ROLE_PROLOGUE
|
||||||
if AXUtilitiesRole.is_dpub_toc(obj, role):
|
if AXUtilitiesRole.is_dpub_toc(obj, role):
|
||||||
return object_properties.ROLE_TOC
|
return object_properties.ROLE_TOC
|
||||||
elif role == "ROLE_DPUB_SECTION":
|
elif role == role_keys.ROLE_DPUB_SECTION:
|
||||||
if AXUtilitiesRole.is_dpub_abstract(obj, role):
|
if AXUtilitiesRole.is_dpub_abstract(obj, role):
|
||||||
return object_properties.ROLE_ABSTRACT
|
return object_properties.ROLE_ABSTRACT
|
||||||
if AXUtilitiesRole.is_dpub_colophon(obj, role):
|
if AXUtilitiesRole.is_dpub_colophon(obj, role):
|
||||||
|
|||||||
@@ -1,219 +0,0 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
#
|
|
||||||
# Copyright (c) 2024 Stormux
|
|
||||||
# Copyright (c) 2010-2012 The Orca Team
|
|
||||||
# Copyright (c) 2012 Igalia, S.L.
|
|
||||||
# Copyright (c) 2005-2010 Sun Microsystems Inc.
|
|
||||||
#
|
|
||||||
# This library is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU Lesser General Public
|
|
||||||
# License as published by the Free Software Foundation; either
|
|
||||||
# version 2.1 of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This library is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# Lesser General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU Lesser General Public
|
|
||||||
# License along with this library; if not, write to the
|
|
||||||
# Free Software Foundation, Inc., Franklin Street, Fifth Floor,
|
|
||||||
# Boston MA 02110-1301 USA.
|
|
||||||
#
|
|
||||||
# Forked from Orca screen reader.
|
|
||||||
# Cthulhu project: https://git.stormux.org/storm/cthulhu
|
|
||||||
|
|
||||||
"""JSON backend for Cthulhu settings"""
|
|
||||||
|
|
||||||
__id__ = "$Id$"
|
|
||||||
__version__ = "$Revision$"
|
|
||||||
__date__ = "$Date$"
|
|
||||||
__copyright__ = "Copyright (c) 2010-2011 Consorcio Fernando de los Rios."
|
|
||||||
__license__ = "LGPL"
|
|
||||||
|
|
||||||
from json import load, dump
|
|
||||||
import os
|
|
||||||
from cthulhu import settings, acss
|
|
||||||
|
|
||||||
class Backend:
|
|
||||||
|
|
||||||
def __init__(self, prefsDir):
|
|
||||||
""" Initialize the JSON Backend.
|
|
||||||
"""
|
|
||||||
self.general = {}
|
|
||||||
self.pronunciations = {}
|
|
||||||
self.keybindings = {}
|
|
||||||
self.profiles = {}
|
|
||||||
self.settingsFile = os.path.join(prefsDir, "user-settings.conf")
|
|
||||||
self.appPrefsDir = os.path.join(prefsDir, "app-settings")
|
|
||||||
|
|
||||||
self._defaultProfiles = {'default': { 'profile': settings.profile,
|
|
||||||
'pronunciations': {},
|
|
||||||
'keybindings': {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def saveDefaultSettings(self, general, pronunciations, keybindings):
|
|
||||||
""" Save default settings for all the properties from
|
|
||||||
cthulhu.settings. """
|
|
||||||
prefs = {'general': general,
|
|
||||||
'profiles': self._defaultProfiles,
|
|
||||||
'pronunciations': pronunciations,
|
|
||||||
'keybindings': keybindings}
|
|
||||||
|
|
||||||
self.general = general
|
|
||||||
self.profiles = self._defaultProfiles
|
|
||||||
self.pronunciations = pronunciations
|
|
||||||
self.keybindings = keybindings
|
|
||||||
|
|
||||||
settingsFile = open(self.settingsFile, 'w')
|
|
||||||
dump(prefs, settingsFile, indent=4)
|
|
||||||
settingsFile.close()
|
|
||||||
|
|
||||||
def getAppSettings(self, appName):
|
|
||||||
fileName = os.path.join(self.appPrefsDir, f"{appName}.conf")
|
|
||||||
if os.path.exists(fileName):
|
|
||||||
settingsFile = open(fileName, 'r')
|
|
||||||
prefs = load(settingsFile)
|
|
||||||
settingsFile.close()
|
|
||||||
else:
|
|
||||||
prefs = {}
|
|
||||||
|
|
||||||
return prefs
|
|
||||||
|
|
||||||
def saveAppSettings(self, appName, profile, general, pronunciations, keybindings):
|
|
||||||
prefs = self.getAppSettings(appName)
|
|
||||||
profiles = prefs.get('profiles', {})
|
|
||||||
profiles[profile] = {'general': general,
|
|
||||||
'pronunciations': pronunciations,
|
|
||||||
'keybindings': keybindings}
|
|
||||||
prefs['profiles'] = profiles
|
|
||||||
|
|
||||||
fileName = os.path.join(self.appPrefsDir, f"{appName}.conf")
|
|
||||||
settingsFile = open(fileName, 'w')
|
|
||||||
dump(prefs, settingsFile, indent=4)
|
|
||||||
settingsFile.close()
|
|
||||||
|
|
||||||
def saveProfileSettings(self, profile, general,
|
|
||||||
pronunciations, keybindings):
|
|
||||||
""" Save minimal subset defined in the profile against current
|
|
||||||
defaults. """
|
|
||||||
if profile is None:
|
|
||||||
profile = 'default'
|
|
||||||
|
|
||||||
general['pronunciations'] = pronunciations
|
|
||||||
general['keybindings'] = keybindings
|
|
||||||
|
|
||||||
with open(self.settingsFile, 'r+') as settingsFile:
|
|
||||||
prefs = load(settingsFile)
|
|
||||||
prefs['profiles'][profile] = general
|
|
||||||
settingsFile.seek(0)
|
|
||||||
settingsFile.truncate()
|
|
||||||
dump(prefs, settingsFile, indent=4)
|
|
||||||
|
|
||||||
def _getSettings(self):
|
|
||||||
""" Load from config file all settings """
|
|
||||||
settingsFile = open(self.settingsFile)
|
|
||||||
try:
|
|
||||||
prefs = load(settingsFile)
|
|
||||||
except ValueError:
|
|
||||||
return
|
|
||||||
self.general = prefs['general'].copy()
|
|
||||||
self.pronunciations = prefs['pronunciations']
|
|
||||||
self.keybindings = prefs['keybindings']
|
|
||||||
self.profiles = prefs['profiles'].copy()
|
|
||||||
|
|
||||||
def getGeneral(self, profile=None):
|
|
||||||
""" Get general settings from default settings and
|
|
||||||
override with profile values. """
|
|
||||||
self._getSettings()
|
|
||||||
generalSettings = self.general.copy()
|
|
||||||
defaultProfile = generalSettings.get('startingProfile',
|
|
||||||
['Default', 'default'])
|
|
||||||
if profile is None:
|
|
||||||
profile = defaultProfile[1]
|
|
||||||
profileSettings = self.profiles[profile].copy()
|
|
||||||
for key, value in profileSettings.items():
|
|
||||||
if key == 'voices':
|
|
||||||
for voiceType, voiceDef in value.items():
|
|
||||||
value[voiceType] = acss.ACSS(voiceDef)
|
|
||||||
if key not in ['startingProfile', 'activeProfile']:
|
|
||||||
generalSettings[key] = value
|
|
||||||
try:
|
|
||||||
generalSettings['activeProfile'] = profileSettings['profile']
|
|
||||||
except KeyError:
|
|
||||||
generalSettings['activeProfile'] = defaultProfile
|
|
||||||
return generalSettings
|
|
||||||
|
|
||||||
def getPronunciations(self, profile='default'):
|
|
||||||
""" Get pronunciation settings from default settings and
|
|
||||||
override with profile values. """
|
|
||||||
self._getSettings()
|
|
||||||
pronunciations = self.pronunciations.copy()
|
|
||||||
profileSettings = self.profiles[profile].copy()
|
|
||||||
if 'pronunciations' in profileSettings:
|
|
||||||
pronunciations = profileSettings['pronunciations']
|
|
||||||
return pronunciations
|
|
||||||
|
|
||||||
def getKeybindings(self, profile='default'):
|
|
||||||
""" Get keybindings settings from default settings and
|
|
||||||
override with profile values. """
|
|
||||||
self._getSettings()
|
|
||||||
keybindings = self.keybindings.copy()
|
|
||||||
profileSettings = self.profiles[profile].copy()
|
|
||||||
if 'keybindings' in profileSettings:
|
|
||||||
keybindings = profileSettings['keybindings']
|
|
||||||
return keybindings
|
|
||||||
|
|
||||||
def isFirstStart(self):
|
|
||||||
""" Check if we're in first start. """
|
|
||||||
|
|
||||||
return not os.path.exists(self.settingsFile)
|
|
||||||
|
|
||||||
def _setProfileKey(self, key, value):
|
|
||||||
self.general[key] = value
|
|
||||||
|
|
||||||
with open(self.settingsFile, 'r+') as settingsFile:
|
|
||||||
prefs = load(settingsFile)
|
|
||||||
prefs['general'][key] = value
|
|
||||||
settingsFile.seek(0)
|
|
||||||
settingsFile.truncate()
|
|
||||||
dump(prefs, settingsFile, indent=4)
|
|
||||||
|
|
||||||
def setFirstStart(self, value=False):
|
|
||||||
"""Set firstStart. This user-configurable setting is primarily
|
|
||||||
intended to serve as an indication as to whether or not initial
|
|
||||||
configuration is needed."""
|
|
||||||
self.general['firstStart'] = value
|
|
||||||
self._setProfileKey('firstStart', value)
|
|
||||||
|
|
||||||
def availableProfiles(self):
|
|
||||||
""" List available profiles. """
|
|
||||||
self._getSettings()
|
|
||||||
profiles = []
|
|
||||||
|
|
||||||
for profileName in self.profiles.keys():
|
|
||||||
profileDict = self.profiles[profileName].copy()
|
|
||||||
profiles.append(profileDict.get('profile'))
|
|
||||||
|
|
||||||
return profiles
|
|
||||||
|
|
||||||
def removeProfile(self, profile):
|
|
||||||
"""Remove an existing profile"""
|
|
||||||
def removeProfileFrom(dict):
|
|
||||||
del dict[profile]
|
|
||||||
# if we removed the last profile, restore the default ones
|
|
||||||
if len(dict) == 0:
|
|
||||||
for profileName in self._defaultProfiles:
|
|
||||||
dict[profileName] = self._defaultProfiles[profileName].copy()
|
|
||||||
|
|
||||||
if profile in self.profiles:
|
|
||||||
removeProfileFrom(self.profiles)
|
|
||||||
|
|
||||||
with open(self.settingsFile, 'r+') as settingsFile:
|
|
||||||
prefs = load(settingsFile)
|
|
||||||
if profile in prefs['profiles']:
|
|
||||||
removeProfileFrom(prefs['profiles'])
|
|
||||||
settingsFile.seek(0)
|
|
||||||
settingsFile.truncate()
|
|
||||||
dump(prefs, settingsFile, indent=4)
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user