diff --git a/NEWS b/NEWS index a88b96d..c77ab6c 100644 --- a/NEWS +++ b/NEWS @@ -8452,7 +8452,7 @@ General: some areas, and has fixed a number of latent bugs. It also enables finer granularity for switching voices and helps set us up for incorporating audio cues. Please help us by testing with the latest - code and by reporting issues and suggestions at cthulhu-list@gnome.org. + code and by reporting issues and suggestions at https://groups.io/g/stormux. * Fix for bgo#583274 - portability for cthulhu script (Thomas Klausner) diff --git a/README-DEVELOPMENT.md b/README-DEVELOPMENT.md index 0025013..8df9733 100644 --- a/README-DEVELOPMENT.md +++ b/README-DEVELOPMENT.md @@ -83,7 +83,7 @@ busctl --user call org.stormux.Cthulhu.Service /org/stormux/Cthulhu/Service org. ## Git Repository Management The `.gitignore` file is configured to exclude: -- Build artifacts (`configure`, `Makefile`, etc.) +- Build artifacts (`_build`, `_build_releasecheck`, `meson-private`, etc.) - Generated Python files (`cthulhu_bin.py`, `cthulhu_i18n.py`, etc.) - Python bytecode (`*.pyc`, `__pycache__/`) diff --git a/README.md b/README.md index 883a3af..70a19d9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Note -If you somehow stumbled across this while looking for a desktop screen reader for Linux, you most likely want [Orca](https://orca.gnome.org/) instead. Cthulhu is currently a supplemental screen reader that fills a nitch for some advanced users. E.g. some older QT based programs may work with Cthulhu, and if you use certain window managers like i3, Mozilla applications like Firefox and Thunderbird may work better. +Cthulhu is a fork of the Orca screen reader. Project home: https://git.stormux.org/storm/cthulhu. Cthulhu is currently a supplemental screen reader that fills a nitch for some advanced users. E.g. some older QT based programs may work with Cthulhu, and if you use certain window managers like i3, Mozilla applications like Firefox and Thunderbird may work better. ## Introduction @@ -37,7 +37,7 @@ toolkit, OpenOffice/LibreOffice, Gecko, WebKitGtk, and KDE Qt toolkit. ### Sleep Mode - **Application-specific**: Disable speech/events per application -- **Toggle keybinding**: `Cthulhu+Ctrl+Alt+Shift+Q` (matches Orca) +- **Toggle keybinding**: `Cthulhu+Ctrl+Alt+Shift+Q` - **Preserves exit key**: Only sleep toggle remains active ### Self-Voicing diff --git a/ci/build_and_install.sh b/ci/build_and_install.sh deleted file mode 100644 index 467b0cc..0000000 --- a/ci/build_and_install.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -set -eux - -meson setup _build --prefix=/usr --buildtype=debugoptimized -meson compile -C _build -meson install -C _build diff --git a/ci/container_builds.yml b/ci/container_builds.yml deleted file mode 100644 index 333a93d..0000000 --- a/ci/container_builds.yml +++ /dev/null @@ -1,55 +0,0 @@ -include: - - remote: "https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/80f87b3058efb75a1faae11826211375fba77e7f/templates/opensuse.yml" - -variables: - # When branching change the suffix to avoid conflicts with images - # from the main branch - BASE_TAG: "2023-06-09.0-master" - FDO_UPSTREAM_REPO: "gnome/cthulhu" - -.cthulhu_opensuse_tumbleweed_x86_64: - variables: - FDO_DISTRIBUTION_VERSION: "tumbleweed" - FDO_DISTRIBUTION_TAG: "x86_64-${BASE_TAG}" - -opensuse-container@x86_64: - extends: - - .cthulhu_opensuse_tumbleweed_x86_64 - - .fdo.container-build@opensuse@x86_64 - stage: "container-build" - variables: - FDO_DISTRIBUTION_PACKAGES: >- - autoconf - automake - dbus-1 - dbus-1-devel - gcc - gettext - gettext-tools - git - glib2-devel - gobject-introspection-devel - gsettings-desktop-schemas - gstreamer-devel - itstool - libtool - libXi-devel - libXtst-devel - libxkbcommon-devel - libxml2-devel - libX11-devel - make - meson - ninja - python3 - python3-brlapi - python3-louis - python3-pip - python3-speechd - python310-gobject-devel - python310-simplejson - xvfb-run - yelp-devel - yelp-tools - FDO_DISTRIBUTION_EXEC: >- - pip3 install ruff diff --git a/ci/install_atspi.sh b/ci/install_atspi.sh deleted file mode 100644 index 1e4e430..0000000 --- a/ci/install_atspi.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -set -eux -o pipefail - -git clone --depth 1 https://gitlab.gnome.org/GNOME/at-spi2-core.git -cd at-spi2-core -mkdir _build - -meson setup --buildtype=debug --prefix=/usr _build . -meson compile -C _build -meson install -C _build diff --git a/ci/install_pyatspi2.sh b/ci/install_pyatspi2.sh deleted file mode 100644 index 141992e..0000000 --- a/ci/install_pyatspi2.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -set -eux -o pipefail - -git clone --depth 1 https://gitlab.gnome.org/GNOME/pyatspi2.git -cd pyatspi2 -mkdir _build -cd _build - -../autogen.sh --prefix=/usr -make -make install diff --git a/ci/pull-container-image.sh b/ci/pull-container-image.sh deleted file mode 100644 index 86b44d2..0000000 --- a/ci/pull-container-image.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -# -# Utility script so you can pull the container image from CI for local development. -# Run this script and follow the instructions; the script will tell you how -# to run "podman run" to launch a container that has the same environment as the -# one used during CI pipelines. You can debug things at leisure there. - -set -eu -set -o pipefail - -CONTAINER_BUILDS=ci/container_builds.yml - -if [ ! -f $CONTAINER_BUILDS ] -then - echo "Please run this from the toplevel source directory in cthulhu" - exit 1 -fi - -tag=$(grep -e '^ BASE_TAG:' $CONTAINER_BUILDS | head -n 1 | sed -E 's/.*BASE_TAG: "(.+)"/\1/') -full_tag=x86_64-$tag -echo full_tag=\"$full_tag\" - -image_name=registry.gitlab.gnome.org/gnome/cthulhu/opensuse/tumbleweed:$full_tag - -echo pulling image $image_name -podman pull $image_name - -echo "" -echo "You can now run this:" -echo " podman run --rm -ti --cap-add=SYS_PTRACE -v \$(pwd):/srv/project -w /srv/project $image_name" diff --git a/cthulhu.doap b/cthulhu.doap index 7fb726b..fcdc304 100644 --- a/cthulhu.doap +++ b/cthulhu.doap @@ -7,10 +7,10 @@ cthulhu Screen reader for individuals who are blind or visually impaired Screen reader for individuals who are blind or visually impaired - - - - + + + + Python diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index 0f41e45..0000000 --- a/docs/Makefile +++ /dev/null @@ -1,652 +0,0 @@ -# Makefile.in generated by automake 1.18.1 from Makefile.am. -# docs/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2025 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -am__rm_f = rm -f $(am__rm_f_notfound) -am__rm_rf = rm -rf $(am__rm_f_notfound) -pkgdatadir = $(datadir)/cthulhu -pkgincludedir = $(includedir)/cthulhu -pkglibdir = $(libdir)/cthulhu -pkglibexecdir = $(libexecdir)/cthulhu -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-pc-linux-gnu -host_triplet = x86_64-pc-linux-gnu -subdir = docs -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/build-to-host.m4 \ - $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/host-cpu-c-abi.m4 \ - $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ - $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ - $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(install_sh) -d -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = ${SHELL} '/home/storm/devel/cthulhu/missing' aclocal-1.18 -AMTAR = $${TAR-tar} -AM_DEFAULT_VERBOSITY = 1 -ATKBRIDGE_CFLAGS = -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/atk-1.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -ATKBRIDGE_LIBS = -latk-bridge-2.0 -ATSPI2_CFLAGS = -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/sysprof-6 -pthread -ATSPI2_LIBS = -latspi -ldbus-1 -lglib-2.0 -AUTOCONF = ${SHELL} '/home/storm/devel/cthulhu/missing' autoconf -AUTOHEADER = ${SHELL} '/home/storm/devel/cthulhu/missing' autoheader -AUTOMAKE = ${SHELL} '/home/storm/devel/cthulhu/missing' automake-1.18 -AWK = gawk -CC = gcc -CCDEPMODE = depmode=none -CFLAGS = -g -O2 -CPP = gcc -E -CPPFLAGS = -CSCOPE = cscope -CTAGS = ctags -CYGPATH_W = echo -DEFS = -DPACKAGE_NAME=\"cthulhu\" -DPACKAGE_TARNAME=\"cthulhu\" -DPACKAGE_VERSION=\"2025.08.06\" -DPACKAGE_STRING=\"cthulhu\ 2025.08.06\" -DPACKAGE_BUGREPORT=\"https://gitlab.gnome.org/GNOME/cthulhu/-/issues/\" -DPACKAGE_URL=\"\" -DPACKAGE=\"cthulhu\" -DVERSION=\"2025.08.06\" -DENABLE_NLS=1 -DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -DGETTEXT_PACKAGE=\"cthulhu\" -DEPDIR = .deps -DESIRED_LINGUAS = $(ALL_LINGUAS) -ECHO_C = -ECHO_N = -n -ECHO_T = -ETAGS = etags -EXEEXT = -GETTEXT_MACRO_VERSION = 0.24 -GETTEXT_PACKAGE = cthulhu -GMSGFMT = /usr/bin/msgfmt -GMSGFMT_015 = /usr/bin/msgfmt -GSTREAMER_CFLAGS = -I/usr/include/gstreamer-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -GSTREAMER_LIBS = -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0 -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INTLLIBS = -INTL_MACOSX_LIBS = -LDFLAGS = -LIBICONV = -liconv -LIBINTL = -LIBOBJS = -LIBPEAS_CFLAGS = -I/usr/include/libpeas-1.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/gobject-introspection-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -LIBPEAS_LIBS = -lpeas-1.0 -Wl,--export-dynamic -lgio-2.0 -lgmodule-2.0 -pthread -lgirepository-1.0 -lgobject-2.0 -lglib-2.0 -LIBS = -LOUIS_TABLE_DIR = /usr/share/liblouis/tables -LTLIBICONV = -liconv -LTLIBINTL = -LTLIBOBJS = -MAINT = -MAKEINFO = ${SHELL} '/home/storm/devel/cthulhu/missing' makeinfo -MKDIR_P = /usr/bin/mkdir -p -MSGFMT = /usr/bin/msgfmt -MSGMERGE = /usr/bin/msgmerge -MSGMERGE_FOR_MSGFMT_OPTION = --for-msgfmt -OBJEXT = o -PACKAGE = cthulhu -PACKAGE_BUGREPORT = https://gitlab.gnome.org/GNOME/cthulhu/-/issues/ -PACKAGE_NAME = cthulhu -PACKAGE_STRING = cthulhu 2025.08.06 -PACKAGE_TARNAME = cthulhu -PACKAGE_URL = -PACKAGE_VERSION = 2025.08.06 -PATH_SEPARATOR = : -PKG_CONFIG = /usr/bin/pkg-config -PKG_CONFIG_LIBDIR = -PKG_CONFIG_PATH = -PLATFORM_PATH = :/usr/bin:/usr/sbin:/bin -POSUB = po -PYGOBJECT_CFLAGS = -I/usr/include/pygobject-3.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -PYGOBJECT_LIBS = -lgobject-2.0 -lglib-2.0 -PYTHON = /home/storm/.pyenv/shims/python -PYTHON_EXEC_PREFIX = ${exec_prefix} -PYTHON_PLATFORM = linux -PYTHON_PREFIX = ${prefix} -PYTHON_VERSION = 3.13 -REVISION = 89df899 -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -STRIP = -USE_NLS = yes -VERSION = 2025.08.06 -XGETTEXT = /usr/bin/xgettext -XGETTEXT_015 = /usr/bin/xgettext -XGETTEXT_EXTRA_OPTIONS = -abs_builddir = /home/storm/devel/cthulhu/docs -abs_srcdir = /home/storm/devel/cthulhu/docs -abs_top_builddir = /home/storm/devel/cthulhu -abs_top_srcdir = /home/storm/devel/cthulhu -ac_ct_CC = gcc -am__include = include -am__leading_dot = . -am__quote = -am__rm_f_notfound = -am__tar = tar --format=ustar -chf - "$$tardir" -am__untar = tar -xf - -am__xargs_n = xargs -n -bindir = ${exec_prefix}/bin -build = x86_64-pc-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = pc -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share -docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} -dvidir = ${docdir} -exec_prefix = ${prefix} -host = x86_64-pc-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = pc -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /home/storm/devel/cthulhu/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localedir_c = "/home/storm/.local/share/locale" -localedir_c_make = \"$(localedir)\" -localstatedir = /home/storm/.local/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -pkgpyexecdir = ${pyexecdir}/cthulhu -pkgpythondir = ${pythondir}/cthulhu -prefix = /home/storm/.local -program_transform_name = s,x,x, -psdir = ${docdir} -pyexecdir = ${PYTHON_EXEC_PREFIX}/lib/python3.13/site-packages -pythondir = ${PYTHON_PREFIX}/lib/python3.13/site-packages -runstatedir = ${localstatedir}/run -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = . -sysconfdir = /home/storm/.local/etc -target_alias = -top_build_prefix = ../ -top_builddir = .. -top_srcdir = .. -SUBDIRS = man -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu docs/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) distdir-am - -distdir-am: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -$(am__rm_f) $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic cscopelist-am ctags ctags-am \ - distclean distclean-generic distclean-tags distdir dvi dvi-am \ - html html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ - pdf-am ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: - -# Tell GNU make to disable its built-in pattern rules. -%:: %,v -%:: RCS/%,v -%:: RCS/% -%:: s.% -%:: SCCS/s.% diff --git a/docs/man/Makefile b/docs/man/Makefile deleted file mode 100644 index ee06b9f..0000000 --- a/docs/man/Makefile +++ /dev/null @@ -1,554 +0,0 @@ -# Makefile.in generated by automake 1.18.1 from Makefile.am. -# docs/man/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2025 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -am__rm_f = rm -f $(am__rm_f_notfound) -am__rm_rf = rm -rf $(am__rm_f_notfound) -pkgdatadir = $(datadir)/cthulhu -pkgincludedir = $(includedir)/cthulhu -pkglibdir = $(libdir)/cthulhu -pkglibexecdir = $(libexecdir)/cthulhu -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-pc-linux-gnu -host_triplet = x86_64-pc-linux-gnu -subdir = docs/man -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/build-to-host.m4 \ - $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/host-cpu-c-abi.m4 \ - $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ - $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ - $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(install_sh) -d -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ - } -man1dir = $(mandir)/man1 -am__installdirs = "$(DESTDIR)$(man1dir)" -NROFF = nroff -MANS = $(man1_MANS) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} '/home/storm/devel/cthulhu/missing' aclocal-1.18 -AMTAR = $${TAR-tar} -AM_DEFAULT_VERBOSITY = 1 -ATKBRIDGE_CFLAGS = -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/atk-1.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -ATKBRIDGE_LIBS = -latk-bridge-2.0 -ATSPI2_CFLAGS = -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/sysprof-6 -pthread -ATSPI2_LIBS = -latspi -ldbus-1 -lglib-2.0 -AUTOCONF = ${SHELL} '/home/storm/devel/cthulhu/missing' autoconf -AUTOHEADER = ${SHELL} '/home/storm/devel/cthulhu/missing' autoheader -AUTOMAKE = ${SHELL} '/home/storm/devel/cthulhu/missing' automake-1.18 -AWK = gawk -CC = gcc -CCDEPMODE = depmode=none -CFLAGS = -g -O2 -CPP = gcc -E -CPPFLAGS = -CSCOPE = cscope -CTAGS = ctags -CYGPATH_W = echo -DEFS = -DPACKAGE_NAME=\"cthulhu\" -DPACKAGE_TARNAME=\"cthulhu\" -DPACKAGE_VERSION=\"2025.08.06\" -DPACKAGE_STRING=\"cthulhu\ 2025.08.06\" -DPACKAGE_BUGREPORT=\"https://gitlab.gnome.org/GNOME/cthulhu/-/issues/\" -DPACKAGE_URL=\"\" -DPACKAGE=\"cthulhu\" -DVERSION=\"2025.08.06\" -DENABLE_NLS=1 -DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -DGETTEXT_PACKAGE=\"cthulhu\" -DEPDIR = .deps -DESIRED_LINGUAS = $(ALL_LINGUAS) -ECHO_C = -ECHO_N = -n -ECHO_T = -ETAGS = etags -EXEEXT = -GETTEXT_MACRO_VERSION = 0.24 -GETTEXT_PACKAGE = cthulhu -GMSGFMT = /usr/bin/msgfmt -GMSGFMT_015 = /usr/bin/msgfmt -GSTREAMER_CFLAGS = -I/usr/include/gstreamer-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -GSTREAMER_LIBS = -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0 -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INTLLIBS = -INTL_MACOSX_LIBS = -LDFLAGS = -LIBICONV = -liconv -LIBINTL = -LIBOBJS = -LIBPEAS_CFLAGS = -I/usr/include/libpeas-1.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/gobject-introspection-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -LIBPEAS_LIBS = -lpeas-1.0 -Wl,--export-dynamic -lgio-2.0 -lgmodule-2.0 -pthread -lgirepository-1.0 -lgobject-2.0 -lglib-2.0 -LIBS = -LOUIS_TABLE_DIR = /usr/share/liblouis/tables -LTLIBICONV = -liconv -LTLIBINTL = -LTLIBOBJS = -MAINT = -MAKEINFO = ${SHELL} '/home/storm/devel/cthulhu/missing' makeinfo -MKDIR_P = /usr/bin/mkdir -p -MSGFMT = /usr/bin/msgfmt -MSGMERGE = /usr/bin/msgmerge -MSGMERGE_FOR_MSGFMT_OPTION = --for-msgfmt -OBJEXT = o -PACKAGE = cthulhu -PACKAGE_BUGREPORT = https://gitlab.gnome.org/GNOME/cthulhu/-/issues/ -PACKAGE_NAME = cthulhu -PACKAGE_STRING = cthulhu 2025.08.06 -PACKAGE_TARNAME = cthulhu -PACKAGE_URL = -PACKAGE_VERSION = 2025.08.06 -PATH_SEPARATOR = : -PKG_CONFIG = /usr/bin/pkg-config -PKG_CONFIG_LIBDIR = -PKG_CONFIG_PATH = -PLATFORM_PATH = :/usr/bin:/usr/sbin:/bin -POSUB = po -PYGOBJECT_CFLAGS = -I/usr/include/pygobject-3.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -PYGOBJECT_LIBS = -lgobject-2.0 -lglib-2.0 -PYTHON = /home/storm/.pyenv/shims/python -PYTHON_EXEC_PREFIX = ${exec_prefix} -PYTHON_PLATFORM = linux -PYTHON_PREFIX = ${prefix} -PYTHON_VERSION = 3.13 -REVISION = 89df899 -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -STRIP = -USE_NLS = yes -VERSION = 2025.08.06 -XGETTEXT = /usr/bin/xgettext -XGETTEXT_015 = /usr/bin/xgettext -XGETTEXT_EXTRA_OPTIONS = -abs_builddir = /home/storm/devel/cthulhu/docs/man -abs_srcdir = /home/storm/devel/cthulhu/docs/man -abs_top_builddir = /home/storm/devel/cthulhu -abs_top_srcdir = /home/storm/devel/cthulhu -ac_ct_CC = gcc -am__include = include -am__leading_dot = . -am__quote = -am__rm_f_notfound = -am__tar = tar --format=ustar -chf - "$$tardir" -am__untar = tar -xf - -am__xargs_n = xargs -n -bindir = ${exec_prefix}/bin -build = x86_64-pc-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = pc -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share -docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} -dvidir = ${docdir} -exec_prefix = ${prefix} -host = x86_64-pc-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = pc -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /home/storm/devel/cthulhu/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localedir_c = "/home/storm/.local/share/locale" -localedir_c_make = \"$(localedir)\" -localstatedir = /home/storm/.local/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -pkgpyexecdir = ${pyexecdir}/cthulhu -pkgpythondir = ${pythondir}/cthulhu -prefix = /home/storm/.local -program_transform_name = s,x,x, -psdir = ${docdir} -pyexecdir = ${PYTHON_EXEC_PREFIX}/lib/python3.13/site-packages -pythondir = ${PYTHON_PREFIX}/lib/python3.13/site-packages -runstatedir = ${localstatedir}/run -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = . -sysconfdir = /home/storm/.local/etc -target_alias = -top_build_prefix = ../../ -top_builddir = ../.. -top_srcdir = ../.. -man1_MANS = cthulhu.1 -EXTRA_DIST = \ - $(man1_MANS) - -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/man/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu docs/man/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-man1: $(man1_MANS) - @$(NORMAL_INSTALL) - @list1='$(man1_MANS)'; \ - list2=''; \ - test -n "$(man1dir)" \ - && test -n "`echo $$list1$$list2`" \ - || exit 0; \ - echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ - { for i in $$list1; do echo "$$i"; done; \ - if test -n "$$list2"; then \ - for i in $$list2; do echo "$$i"; done \ - | sed -n '/\.1[a-z]*$$/p'; \ - fi; \ - } | while read p; do \ - if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; echo "$$p"; \ - done | \ - sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ - -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ - sed 'N;N;s,\n, ,g' | { \ - list=; while read file base inst; do \ - if test "$$base" = "$$inst"; then list="$$list $$file"; else \ - echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ - $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ - fi; \ - done; \ - for i in $$list; do echo "$$i"; done | $(am__base_list) | \ - while read files; do \ - test -z "$$files" || { \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ - done; } - -uninstall-man1: - @$(NORMAL_UNINSTALL) - @list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \ - files=`{ for i in $$list; do echo "$$i"; done; \ - } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ - -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ - dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) -tags TAGS: - -ctags CTAGS: - -cscope cscopelist: - - -distdir: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) distdir-am - -distdir-am: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(MANS) -installdirs: - for dir in "$(DESTDIR)$(man1dir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -$(am__rm_f) $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-man - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: install-man1 - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-man - -uninstall-man: uninstall-man1 - -.MAKE: install-am install-strip - -.PHONY: all all-am check check-am clean clean-generic cscopelist-am \ - ctags-am distclean distclean-generic distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-man1 install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ - pdf-am ps ps-am tags-am uninstall uninstall-am uninstall-man \ - uninstall-man1 - -.PRECIOUS: Makefile - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: - -# Tell GNU make to disable its built-in pattern rules. -%:: %,v -%:: RCS/%,v -%:: RCS/% -%:: s.% -%:: SCCS/s.% diff --git a/docs/man/cthulhu.1 b/docs/man/cthulhu.1 index 284681f..dc3fc48 100644 --- a/docs/man/cthulhu.1 +++ b/docs/man/cthulhu.1 @@ -331,4 +331,4 @@ mailing list To post a message to all .B cthulhu -list, send a email to cthulhu-list@gnome.org +list, send a email to https://groups.io/g/stormux diff --git a/m4/.gitignore b/m4/.gitignore deleted file mode 100644 index 680584b..0000000 --- a/m4/.gitignore +++ /dev/null @@ -1,34 +0,0 @@ -codeset.m4 -extern-inline.m4 -fcntl-o.m4 -gettext.m4 -glibc2.m4 -glibc21.m4 -iconv.m4 -intdiv0.m4 -intl.m4 -intldir.m4 -intlmacosx.m4 -intmax.m4 -inttypes-pri.m4 -inttypes_h.m4 -lcmessage.m4 -lib-ld.m4 -lib-link.m4 -lib-prefix.m4 -lock.m4 -longlong.m4 -nls.m4 -pkg.m4 -po.m4 -printf-posix.m4 -progtest.m4 -size_max.m4 -stdint_h.m4 -threadlib.m4 -uintmax_t.m4 -visibility.m4 -wchar_t.m4 -wint_t.m4 -xsize.m4 -yelp.m4 diff --git a/m4/build-to-host.m4 b/m4/build-to-host.m4 deleted file mode 100644 index 01bff8f..0000000 --- a/m4/build-to-host.m4 +++ /dev/null @@ -1,274 +0,0 @@ -# build-to-host.m4 -# serial 5 -dnl Copyright (C) 2023-2025 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl This file is offered as-is, without any warranty. - -dnl Written by Bruno Haible. - -dnl When the build environment ($build_os) is different from the target runtime -dnl environment ($host_os), file names may need to be converted from the build -dnl environment syntax to the target runtime environment syntax. This is -dnl because the Makefiles are executed (mostly) by build environment tools and -dnl therefore expect file names in build environment syntax, whereas the runtime -dnl expects file names in target runtime environment syntax. -dnl -dnl For example, if $build_os = cygwin and $host_os = mingw32, filenames need -dnl be converted from Cygwin syntax to native Windows syntax: -dnl /cygdrive/c/foo/bar -> C:\foo\bar -dnl /usr/local/share -> C:\cygwin64\usr\local\share -dnl -dnl gl_BUILD_TO_HOST([somedir]) -dnl This macro takes as input an AC_SUBSTed variable 'somedir', which must -dnl already have its final value assigned, and produces two additional -dnl AC_SUBSTed variables 'somedir_c' and 'somedir_c_make', that designate the -dnl same file name value, just in different syntax: -dnl - somedir_c is the file name in target runtime environment syntax, -dnl as a C string (starting and ending with a double-quote, -dnl and with escaped backslashes and double-quotes in -dnl between). -dnl - somedir_c_make is the same thing, escaped for use in a Makefile. - -AC_DEFUN([gl_BUILD_TO_HOST], -[ - AC_REQUIRE([AC_CANONICAL_BUILD]) - AC_REQUIRE([AC_CANONICAL_HOST]) - AC_REQUIRE([gl_BUILD_TO_HOST_INIT]) - - dnl Define somedir_c. - gl_final_[$1]="$[$1]" - dnl Translate it from build syntax to host syntax. - case "$build_os" in - cygwin*) - case "$host_os" in - mingw* | windows*) - gl_final_[$1]=`cygpath -w "$gl_final_[$1]"` ;; - esac - ;; - esac - dnl Convert it to C string syntax. - [$1]_c=`printf '%s\n' "$gl_final_[$1]" | sed -e "$gl_sed_double_backslashes" -e "$gl_sed_escape_doublequotes" | tr -d "$gl_tr_cr"` - [$1]_c='"'"$[$1]_c"'"' - AC_SUBST([$1_c]) - - dnl Define somedir_c_make. - [$1]_c_make=`printf '%s\n' "$[$1]_c" | sed -e "$gl_sed_escape_for_make_1" -e "$gl_sed_escape_for_make_2" | tr -d "$gl_tr_cr"` - dnl Use the substituted somedir variable, when possible, so that the user - dnl may adjust somedir a posteriori when there are no special characters. - if test "$[$1]_c_make" = '\"'"${gl_final_[$1]}"'\"'; then - [$1]_c_make='\"$([$1])\"' - fi - AC_SUBST([$1_c_make]) -]) - -dnl Some initializations for gl_BUILD_TO_HOST. -AC_DEFUN([gl_BUILD_TO_HOST_INIT], -[ - gl_sed_double_backslashes='s/\\/\\\\/g' - gl_sed_escape_doublequotes='s/"/\\"/g' -changequote(,)dnl - gl_sed_escape_for_make_1="s,\\([ \"&'();<>\\\\\`|]\\),\\\\\\1,g" -changequote([,])dnl - gl_sed_escape_for_make_2='s,\$,\\$$,g' - dnl Find out how to remove carriage returns from output. Solaris /usr/ucb/tr - dnl does not understand '\r'. - case `echo r | tr -d '\r'` in - '') gl_tr_cr='\015' ;; - *) gl_tr_cr='\r' ;; - esac -]) - - -dnl The following macros are convenience invocations of gl_BUILD_TO_HOST -dnl for some of the variables that are defined by Autoconf. -dnl To do so for _all_ the possible variables, use the module 'configmake'. - -dnl Defines bindir_c and bindir_c_make. -AC_DEFUN_ONCE([gl_BUILD_TO_HOST_BINDIR], -[ - dnl Find the final value of bindir. - gl_saved_prefix="${prefix}" - gl_saved_exec_prefix="${exec_prefix}" - gl_saved_bindir="${bindir}" - dnl Unfortunately, prefix and exec_prefix get only finally determined - dnl at the end of configure. - if test "X$prefix" = "XNONE"; then - prefix="$ac_default_prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - exec_prefix='${prefix}' - fi - eval exec_prefix="$exec_prefix" - eval bindir="$bindir" - gl_BUILD_TO_HOST([bindir]) - bindir="${gl_saved_bindir}" - exec_prefix="${gl_saved_exec_prefix}" - prefix="${gl_saved_prefix}" -]) - -dnl Defines datadir_c and datadir_c_make, -dnl where datadir = $(datarootdir) -AC_DEFUN_ONCE([gl_BUILD_TO_HOST_DATADIR], -[ - dnl Find the final value of datadir. - gl_saved_prefix="${prefix}" - gl_saved_datarootdir="${datarootdir}" - gl_saved_datadir="${datadir}" - dnl Unfortunately, prefix gets only finally determined at the end of - dnl configure. - if test "X$prefix" = "XNONE"; then - prefix="$ac_default_prefix" - fi - eval datarootdir="$datarootdir" - eval datadir="$datadir" - gl_BUILD_TO_HOST([datadir]) - datadir="${gl_saved_datadir}" - datarootdir="${gl_saved_datarootdir}" - prefix="${gl_saved_prefix}" -]) - -dnl Defines libdir_c and libdir_c_make. -AC_DEFUN_ONCE([gl_BUILD_TO_HOST_LIBDIR], -[ - dnl Find the final value of libdir. - gl_saved_prefix="${prefix}" - gl_saved_exec_prefix="${exec_prefix}" - gl_saved_libdir="${libdir}" - dnl Unfortunately, prefix and exec_prefix get only finally determined - dnl at the end of configure. - if test "X$prefix" = "XNONE"; then - prefix="$ac_default_prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - exec_prefix='${prefix}' - fi - eval exec_prefix="$exec_prefix" - eval libdir="$libdir" - gl_BUILD_TO_HOST([libdir]) - libdir="${gl_saved_libdir}" - exec_prefix="${gl_saved_exec_prefix}" - prefix="${gl_saved_prefix}" -]) - -dnl Defines libexecdir_c and libexecdir_c_make. -AC_DEFUN_ONCE([gl_BUILD_TO_HOST_LIBEXECDIR], -[ - dnl Find the final value of libexecdir. - gl_saved_prefix="${prefix}" - gl_saved_exec_prefix="${exec_prefix}" - gl_saved_libexecdir="${libexecdir}" - dnl Unfortunately, prefix and exec_prefix get only finally determined - dnl at the end of configure. - if test "X$prefix" = "XNONE"; then - prefix="$ac_default_prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - exec_prefix='${prefix}' - fi - eval exec_prefix="$exec_prefix" - eval libexecdir="$libexecdir" - gl_BUILD_TO_HOST([libexecdir]) - libexecdir="${gl_saved_libexecdir}" - exec_prefix="${gl_saved_exec_prefix}" - prefix="${gl_saved_prefix}" -]) - -dnl Defines localedir_c and localedir_c_make. -AC_DEFUN_ONCE([gl_BUILD_TO_HOST_LOCALEDIR], -[ - dnl Find the final value of localedir. - gl_saved_prefix="${prefix}" - gl_saved_datarootdir="${datarootdir}" - gl_saved_localedir="${localedir}" - dnl Unfortunately, prefix gets only finally determined at the end of - dnl configure. - if test "X$prefix" = "XNONE"; then - prefix="$ac_default_prefix" - fi - eval datarootdir="$datarootdir" - eval localedir="$localedir" - gl_BUILD_TO_HOST([localedir]) - localedir="${gl_saved_localedir}" - datarootdir="${gl_saved_datarootdir}" - prefix="${gl_saved_prefix}" -]) - -dnl Defines pkgdatadir_c and pkgdatadir_c_make, -dnl where pkgdatadir = $(datadir)/$(PACKAGE) -AC_DEFUN_ONCE([gl_BUILD_TO_HOST_PKGDATADIR], -[ - dnl Find the final value of pkgdatadir. - gl_saved_prefix="${prefix}" - gl_saved_datarootdir="${datarootdir}" - gl_saved_datadir="${datadir}" - gl_saved_pkgdatadir="${pkgdatadir}" - dnl Unfortunately, prefix gets only finally determined at the end of - dnl configure. - if test "X$prefix" = "XNONE"; then - prefix="$ac_default_prefix" - fi - eval datarootdir="$datarootdir" - eval datadir="$datadir" - eval pkgdatadir="$pkgdatadir" - gl_BUILD_TO_HOST([pkgdatadir]) - pkgdatadir="${gl_saved_pkgdatadir}" - datadir="${gl_saved_datadir}" - datarootdir="${gl_saved_datarootdir}" - prefix="${gl_saved_prefix}" -]) - -dnl Defines pkglibdir_c and pkglibdir_c_make, -dnl where pkglibdir = $(libdir)/$(PACKAGE) -AC_DEFUN_ONCE([gl_BUILD_TO_HOST_PKGLIBDIR], -[ - dnl Find the final value of pkglibdir. - gl_saved_prefix="${prefix}" - gl_saved_exec_prefix="${exec_prefix}" - gl_saved_libdir="${libdir}" - gl_saved_pkglibdir="${pkglibdir}" - dnl Unfortunately, prefix and exec_prefix get only finally determined - dnl at the end of configure. - if test "X$prefix" = "XNONE"; then - prefix="$ac_default_prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - exec_prefix='${prefix}' - fi - eval exec_prefix="$exec_prefix" - eval libdir="$libdir" - eval pkglibdir="$pkglibdir" - gl_BUILD_TO_HOST([pkglibdir]) - pkglibdir="${gl_saved_pkglibdir}" - libdir="${gl_saved_libdir}" - exec_prefix="${gl_saved_exec_prefix}" - prefix="${gl_saved_prefix}" -]) - -dnl Defines pkglibexecdir_c and pkglibexecdir_c_make, -dnl where pkglibexecdir = $(libexecdir)/$(PACKAGE) -AC_DEFUN_ONCE([gl_BUILD_TO_HOST_PKGLIBEXECDIR], -[ - dnl Find the final value of pkglibexecdir. - gl_saved_prefix="${prefix}" - gl_saved_exec_prefix="${exec_prefix}" - gl_saved_libexecdir="${libexecdir}" - gl_saved_pkglibexecdir="${pkglibexecdir}" - dnl Unfortunately, prefix and exec_prefix get only finally determined - dnl at the end of configure. - if test "X$prefix" = "XNONE"; then - prefix="$ac_default_prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - exec_prefix='${prefix}' - fi - eval exec_prefix="$exec_prefix" - eval libexecdir="$libexecdir" - eval pkglibexecdir="$pkglibexecdir" - gl_BUILD_TO_HOST([pkglibexecdir]) - pkglibexecdir="${gl_saved_pkglibexecdir}" - libexecdir="${gl_saved_libexecdir}" - exec_prefix="${gl_saved_exec_prefix}" - prefix="${gl_saved_prefix}" -]) diff --git a/m4/host-cpu-c-abi.m4 b/m4/host-cpu-c-abi.m4 deleted file mode 100644 index 6ca7721..0000000 --- a/m4/host-cpu-c-abi.m4 +++ /dev/null @@ -1,532 +0,0 @@ -# host-cpu-c-abi.m4 -# serial 20 -dnl Copyright (C) 2002-2025 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl This file is offered as-is, without any warranty. - -dnl From Bruno Haible and Sam Steingold. - -dnl Sets the HOST_CPU variable to the canonical name of the CPU. -dnl Sets the HOST_CPU_C_ABI variable to the canonical name of the CPU with its -dnl C language ABI (application binary interface). -dnl Also defines __${HOST_CPU}__ and __${HOST_CPU_C_ABI}__ as C macros in -dnl config.h. -dnl -dnl This canonical name can be used to select a particular assembly language -dnl source file that will interoperate with C code on the given host. -dnl -dnl For example: -dnl * 'i386' and 'sparc' are different canonical names, because code for i386 -dnl will not run on SPARC CPUs and vice versa. They have different -dnl instruction sets. -dnl * 'sparc' and 'sparc64' are different canonical names, because code for -dnl 'sparc' and code for 'sparc64' cannot be linked together: 'sparc' code -dnl contains 32-bit instructions, whereas 'sparc64' code contains 64-bit -dnl instructions. A process on a SPARC CPU can be in 32-bit mode or in 64-bit -dnl mode, but not both. -dnl * 'mips' and 'mipsn32' are different canonical names, because they use -dnl different argument passing and return conventions for C functions, and -dnl although the instruction set of 'mips' is a large subset of the -dnl instruction set of 'mipsn32'. -dnl * 'mipsn32' and 'mips64' are different canonical names, because they use -dnl different sizes for the C types like 'int' and 'void *', and although -dnl the instruction sets of 'mipsn32' and 'mips64' are the same. -dnl * The same canonical name is used for different endiannesses. You can -dnl determine the endianness through preprocessor symbols: -dnl - 'arm': test __ARMEL__. -dnl - 'mips', 'mipsn32', 'mips64': test _MIPSEB vs. _MIPSEL. -dnl - 'powerpc64': test __BIG_ENDIAN__ vs. __LITTLE_ENDIAN__. -dnl * The same name 'i386' is used for CPUs of type i386, i486, i586 -dnl (Pentium), AMD K7, Pentium II, Pentium IV, etc., because -dnl - Instructions that do not exist on all of these CPUs (cmpxchg, -dnl MMX, SSE, SSE2, 3DNow! etc.) are not frequently used. If your -dnl assembly language source files use such instructions, you will -dnl need to make the distinction. -dnl - Speed of execution of the common instruction set is reasonable across -dnl the entire family of CPUs. If you have assembly language source files -dnl that are optimized for particular CPU types (like GNU gmp has), you -dnl will need to make the distinction. -dnl See . -AC_DEFUN([gl_HOST_CPU_C_ABI], -[ - AC_REQUIRE([AC_CANONICAL_HOST]) - AC_REQUIRE([gl_C_ASM]) - AC_CACHE_CHECK([host CPU and C ABI], [gl_cv_host_cpu_c_abi], - [case "$host_cpu" in - -changequote(,)dnl - i[34567]86 ) -changequote([,])dnl - gl_cv_host_cpu_c_abi=i386 - ;; - - x86_64 ) - # On x86_64 systems, the C compiler may be generating code in one of - # these ABIs: - # - 64-bit instruction set, 64-bit pointers, 64-bit 'long': x86_64. - # - 64-bit instruction set, 64-bit pointers, 32-bit 'long': x86_64 - # with native Windows (mingw, MSVC). - # - 64-bit instruction set, 32-bit pointers, 32-bit 'long': x86_64-x32. - # - 32-bit instruction set, 32-bit pointers, 32-bit 'long': i386. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if (defined __x86_64__ || defined __amd64__ \ - || defined _M_X64 || defined _M_AMD64) - int ok; - #else - error fail - #endif - ]])], - [AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __ILP32__ || defined _ILP32 - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=x86_64-x32], - [gl_cv_host_cpu_c_abi=x86_64])], - [gl_cv_host_cpu_c_abi=i386]) - ;; - -changequote(,)dnl - alphaev[4-8] | alphaev56 | alphapca5[67] | alphaev6[78] ) -changequote([,])dnl - gl_cv_host_cpu_c_abi=alpha - ;; - - arm* | aarch64 ) - # Assume arm with EABI. - # On arm64 systems, the C compiler may be generating code in one of - # these ABIs: - # - aarch64 instruction set, 64-bit pointers, 64-bit 'long': arm64. - # - aarch64 instruction set, 32-bit pointers, 32-bit 'long': arm64-ilp32. - # - 32-bit instruction set, 32-bit pointers, 32-bit 'long': arm or armhf. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#ifdef __aarch64__ - int ok; - #else - error fail - #endif - ]])], - [AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __ILP32__ || defined _ILP32 - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=arm64-ilp32], - [gl_cv_host_cpu_c_abi=arm64])], - [# Don't distinguish little-endian and big-endian arm, since they - # don't require different machine code for simple operations and - # since the user can distinguish them through the preprocessor - # defines __ARMEL__ vs. __ARMEB__. - # But distinguish arm which passes floating-point arguments and - # return values in integer registers (r0, r1, ...) - this is - # gcc -mfloat-abi=soft or gcc -mfloat-abi=softfp - from arm which - # passes them in float registers (s0, s1, ...) and double registers - # (d0, d1, ...) - this is gcc -mfloat-abi=hard. GCC 4.6 or newer - # sets the preprocessor defines __ARM_PCS (for the first case) and - # __ARM_PCS_VFP (for the second case), but older GCC does not. - echo 'double ddd; void func (double dd) { ddd = dd; }' > conftest.c - # Look for a reference to the register d0 in the .s file. - AC_TRY_COMMAND(${CC-cc} $CFLAGS $CPPFLAGS $gl_c_asm_opt conftest.c) >/dev/null 2>&1 - if LC_ALL=C grep 'd0,' conftest.$gl_asmext >/dev/null; then - gl_cv_host_cpu_c_abi=armhf - else - gl_cv_host_cpu_c_abi=arm - fi - rm -fr conftest* - ]) - ;; - - hppa1.0 | hppa1.1 | hppa2.0* | hppa64 ) - # On hppa, the C compiler may be generating 32-bit code or 64-bit - # code. In the latter case, it defines _LP64 and __LP64__. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#ifdef __LP64__ - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=hppa64], - [gl_cv_host_cpu_c_abi=hppa]) - ;; - - ia64* ) - # On ia64 on HP-UX, the C compiler may be generating 64-bit code or - # 32-bit code. In the latter case, it defines _ILP32. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#ifdef _ILP32 - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=ia64-ilp32], - [gl_cv_host_cpu_c_abi=ia64]) - ;; - - mips* ) - # We should also check for (_MIPS_SZPTR == 64), but gcc keeps this - # at 32. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined _MIPS_SZLONG && (_MIPS_SZLONG == 64) - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=mips64], - [# In the n32 ABI, _ABIN32 is defined, _ABIO32 is not defined (but - # may later get defined by ), and _MIPS_SIM == _ABIN32. - # In the 32 ABI, _ABIO32 is defined, _ABIN32 is not defined (but - # may later get defined by ), and _MIPS_SIM == _ABIO32. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if (_MIPS_SIM == _ABIN32) - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=mipsn32], - [gl_cv_host_cpu_c_abi=mips])]) - ;; - - powerpc* ) - # Different ABIs are in use on AIX vs. Mac OS X vs. Linux,*BSD. - # No need to distinguish them here; the caller may distinguish - # them based on the OS. - # On powerpc64 systems, the C compiler may still be generating - # 32-bit code. And on powerpc-ibm-aix systems, the C compiler may - # be generating 64-bit code. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __powerpc64__ || defined __LP64__ - int ok; - #else - error fail - #endif - ]])], - [# On powerpc64, there are two ABIs on Linux: The AIX compatible - # one and the ELFv2 one. The latter defines _CALL_ELF=2. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined _CALL_ELF && _CALL_ELF == 2 - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=powerpc64-elfv2], - [gl_cv_host_cpu_c_abi=powerpc64]) - ], - [gl_cv_host_cpu_c_abi=powerpc]) - ;; - - rs6000 ) - gl_cv_host_cpu_c_abi=powerpc - ;; - - riscv32 | riscv64 ) - # There are 2 architectures (with variants): rv32* and rv64*. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if __riscv_xlen == 64 - int ok; - #else - error fail - #endif - ]])], - [cpu=riscv64], - [cpu=riscv32]) - # There are 6 ABIs: ilp32, ilp32f, ilp32d, lp64, lp64f, lp64d. - # Size of 'long' and 'void *': - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __LP64__ - int ok; - #else - error fail - #endif - ]])], - [main_abi=lp64], - [main_abi=ilp32]) - # Float ABIs: - # __riscv_float_abi_double: - # 'float' and 'double' are passed in floating-point registers. - # __riscv_float_abi_single: - # 'float' are passed in floating-point registers. - # __riscv_float_abi_soft: - # No values are passed in floating-point registers. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __riscv_float_abi_double - int ok; - #else - error fail - #endif - ]])], - [float_abi=d], - [AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __riscv_float_abi_single - int ok; - #else - error fail - #endif - ]])], - [float_abi=f], - [float_abi='']) - ]) - gl_cv_host_cpu_c_abi="${cpu}-${main_abi}${float_abi}" - ;; - - s390* ) - # On s390x, the C compiler may be generating 64-bit (= s390x) code - # or 31-bit (= s390) code. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __LP64__ || defined __s390x__ - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=s390x], - [gl_cv_host_cpu_c_abi=s390]) - ;; - - sparc | sparc64 ) - # UltraSPARCs running Linux have `uname -m` = "sparc64", but the - # C compiler still generates 32-bit code. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __sparcv9 || defined __arch64__ - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=sparc64], - [gl_cv_host_cpu_c_abi=sparc]) - ;; - - *) - gl_cv_host_cpu_c_abi="$host_cpu" - ;; - esac - ]) - - dnl In most cases, $HOST_CPU and $HOST_CPU_C_ABI are the same. - HOST_CPU=`echo "$gl_cv_host_cpu_c_abi" | sed -e 's/-.*//'` - HOST_CPU_C_ABI="$gl_cv_host_cpu_c_abi" - AC_SUBST([HOST_CPU]) - AC_SUBST([HOST_CPU_C_ABI]) - - # This was - # AC_DEFINE_UNQUOTED([__${HOST_CPU}__]) - # AC_DEFINE_UNQUOTED([__${HOST_CPU_C_ABI}__]) - # earlier, but KAI C++ 3.2d doesn't like this. - sed -e 's/-/_/g' >> confdefs.h <\n" "Language-Team: Abkhazian \n" @@ -8201,7 +8201,7 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #. Translators: Cthulhu normal speaks the text which was just deleted from a diff --git a/po/an.po b/po/an.po index 7a6ca06..95d4663 100644 --- a/po/an.po +++ b/po/an.po @@ -6047,8 +6047,8 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:281 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Informe d'errors a cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Informe d'errors a https://groups.io/g/stormux." #. Translators: In chat applications, it is often possible to see that a "buddy" #. is typing currently (e.g. via a keyboard icon or status text). Some users like diff --git a/po/ar.po b/po/ar.po index a5d531d..368e4dc 100644 --- a/po/ar.po +++ b/po/ar.po @@ -2802,8 +2802,8 @@ msgstr "" #. Translators: this text is the description displayed when Cthulhu is #. launched from the command line and the help text is displayed. #: ../src/cthulhu/cthulhu_bin.py.in:93 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "تقرير العلل لـ cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "تقرير العلل لـ https://groups.io/g/stormux." #. Translators: this is the description of the command line option #. '-r, --replace' which tells Cthulhu to replace any existing Cthulhu diff --git a/po/ast.po b/po/ast.po index 2070b83..fd2fc92 100644 --- a/po/ast.po +++ b/po/ast.po @@ -3363,8 +3363,8 @@ msgstr "" "s'use la opción -n o --no-setup." #: ../src/cthulhu/cthulhu.py:514 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Informe de fallos a cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Informe de fallos a https://groups.io/g/stormux." #. Translators: this is what Cthulhu speaks and brailles when it quits. #. diff --git a/po/be.po b/po/be.po index 3859ac4..9f5987c 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-31 16:51+0000\n" "PO-Revision-Date: 2023-09-01 01:43+0300\n" "Last-Translator: Yuras Shumovich \n" @@ -9106,8 +9106,8 @@ msgstr "Наставіць налады карыстальніка (тэкста #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Паведамляйце аб хібах у праграме на адрас: cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Паведамляйце аб хібах у праграме на адрас: https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/bg.po b/po/bg.po index 71edf67..0eff454 100644 --- a/po/bg.po +++ b/po/bg.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2022-09-11 19:28+0000\n" "PO-Revision-Date: 2022-09-12 14:22+0200\n" "Last-Translator: Alexander Shopov \n" @@ -8242,8 +8242,8 @@ msgstr "Задаване на потребителски настройки (г #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Докладвайте грешките на адрес: cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Докладвайте грешките на адрес: https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/bn.po b/po/bn.po index e0801ba..3c409e5 100644 --- a/po/bn.po +++ b/po/bn.po @@ -4386,8 +4386,8 @@ msgstr "" "suspend the desktop until Cthulhu is killed." #: ../src/cthulhu/cthulhu.py:1565 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "বাগ cthulhu-list@gnome.org এ প্রতিবেদন করুন।" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "বাগ https://groups.io/g/stormux এ প্রতিবেদন করুন।" #: ../src/cthulhu/cthulhu.py:1750 msgid "Welcome to Cthulhu." diff --git a/po/bn_IN.po b/po/bn_IN.po index dbed4e8..1b4feb2 100644 --- a/po/bn_IN.po +++ b/po/bn_IN.po @@ -863,8 +863,8 @@ msgid "" msgstr "" #: src/cthulhu/cthulhu.py:1136 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "ত্রুটি ও অন্যান্য সমস্যা cthulhu-list@gnome.org ঠিকানায় জমা দিন।" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "ত্রুটি ও অন্যান্য সমস্যা https://groups.io/g/stormux ঠিকানায় জমা দিন।" #: src/cthulhu/cthulhu_console_prefs.py:93 src/cthulhu/cthulhu_console_prefs.py:109 msgid "Speech is unavailable." diff --git a/po/bs.po b/po/bs.po index 7a74f24..7872205 100644 --- a/po/bs.po +++ b/po/bs.po @@ -7793,8 +7793,8 @@ msgstr "Postavi korisničke postavke (GUI verzija)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command linije and the help text is displayed. #: ../src/cthulhu/messages.py:281 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Izvještava bugove na cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Izvještava bugove na https://groups.io/g/stormux." #. Translators: In chat applications, it is often possible to seje that a "buddy" #. is typing currently (e.g. via a keyboard icon or status text). Some users liki diff --git a/po/ca.po b/po/ca.po index 0e0f264..5310994 100644 --- a/po/ca.po +++ b/po/ca.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: ca\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-09-11 13:18+0200\n" "Last-Translator: Bàrbara Vidal \n" @@ -8505,8 +8505,8 @@ msgstr "Configura les preferències de l'usuari (versió gràfica)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Informeu d'errors a cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Informeu d'errors a https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/ca@valencia.po b/po/ca@valencia.po index c8f729b..060ccc6 100644 --- a/po/ca@valencia.po +++ b/po/ca@valencia.po @@ -8082,8 +8082,8 @@ msgstr "Configura les preferències de l'usuari (versió gràfica)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:267 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Informeu d'errors a cthulhu-list@gnome.org" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Informeu d'errors a https://groups.io/g/stormux" #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/ckb.po b/po/ckb.po index 9b2a8f8..6ce7226 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -8175,7 +8175,7 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:293 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #. Translators: Cthulhu normal speaks the text which was just deleted from a diff --git a/po/cs.po b/po/cs.po index 300dcd0..af46a75 100644 --- a/po/cs.po +++ b/po/cs.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-09-13 16:23+0000\n" "PO-Revision-Date: 2023-09-14 14:52+0200\n" "Last-Translator: Daniel Rusek \n" @@ -8516,8 +8516,8 @@ msgstr "Nastavit uživatelské předvolby (grafická verze)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Chyby hlašte na cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Chyby hlašte na https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/cy.po b/po/cy.po index 266c41a..304e72a 100644 --- a/po/cy.po +++ b/po/cy.po @@ -893,8 +893,8 @@ msgstr "" "oni bai fod yr opsiwn -n neu --no-setup wedi ei ddefnyddio." #: src/cthulhu/cthulhu.py:1136 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Adroddwch namau at cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Adroddwch namau at https://groups.io/g/stormux." #: src/cthulhu/cthulhu_console_prefs.py:93 src/cthulhu/cthulhu_console_prefs.py:109 msgid "Speech is unavailable." diff --git a/po/da.po b/po/da.po index 48a99f2..20d8519 100644 --- a/po/da.po +++ b/po/da.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-09-05 07:41+0200\n" "Last-Translator: Alan Mortensen \n" @@ -8530,8 +8530,8 @@ msgstr "Opsætning af brugerindstillinger (grafisk version)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Indrapporter fejl til cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Indrapporter fejl til https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/de.po b/po/de.po index 9196f3d..28b270a 100644 --- a/po/de.po +++ b/po/de.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-22 18:47+0000\n" "PO-Revision-Date: 2023-08-29 20:13+0200\n" "Last-Translator: Philipp Kiemle \n" @@ -8549,8 +8549,8 @@ msgstr "Benutzereinstellungen einrichten (Graphische Version)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Programmfehler an cthulhu-list@gnome.org melden." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Programmfehler an https://groups.io/g/stormux melden." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/dz.po b/po/dz.po index 6fdfeb0..7eb123f 100644 --- a/po/dz.po +++ b/po/dz.po @@ -5092,8 +5092,8 @@ msgstr "རྣམ་གྲངས་ %d ལས་ %d" #~ "ལག་ལེན་པ་གིས་ ཧེ་མ་ཨོར་ཀ་གཞི་སྒྲིག་མ་འབད་འབདཝ་མེདཔ་དང་\n" #~ " རང་བཞིན་གྱིས་ -ཨེན་ ཡང་ན་ --གཞི་སྒྲིག་མེད་པའི་གདམ་ཁ་དེ་ ལག་ལེན་མ་འཐཔ་ཅིན་\n" #~ "ཨོར་ཀ་གིས་རང་བཞིན་གྱིས་ གདའ་གདམ་ཚུ་གཞི་སྒྲིག་འབད་འོང་།" -#~ msgid "Report bugs to cthulhu-list@gnome.org." -#~ msgstr "རྐྱེན་གྱི་སྙན་ཞུ་ཚུ་ cthulhu-list@gnome.org ལུ་གཏང་།" +#~ msgid "Report bugs to https://groups.io/g/stormux." +#~ msgstr "རྐྱེན་གྱི་སྙན་ཞུ་ཚུ་ https://groups.io/g/stormux ལུ་གཏང་།" #~ msgid "Do you really want to quit Cthulhu?" #~ msgstr "ཁྱོད་ཀྱིས་ཐད་རི་འབའ་རི་ ཨོར་ཀ་སྤང་ནི་ཨིན་ན?" #~ msgid "Question" diff --git a/po/el.po b/po/el.po index f95baf1..4265b08 100644 --- a/po/el.po +++ b/po/el.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu.HEAD\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2020-06-30 15:04+0000\n" "PO-Revision-Date: 2020-08-08 18:56+0300\n" "Last-Translator: Efstathios Iosifidis \n" @@ -8548,8 +8548,8 @@ msgstr "Ρύθμιση των προτιμήσεων χρήστη (έκδοση #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Αναφέρετε σφάλματα στο cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Αναφέρετε σφάλματα στο https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a @@ -15048,12 +15048,12 @@ msgstr "" #~ "will automatically launch the preferences set up unless\n" #~ "the -n or --no-setup option is used.\n" #~ "\n" -#~ "Report bugs to cthulhu-list@gnome.org." +#~ "Report bugs to https://groups.io/g/stormux." #~ msgstr "" #~ "Αν το Cthulhu δεν έχει ρυθμιστεί προηγουμένως από το χρήστη, τότε\n" #~ "θα πραγματοποιήσει αυτόματη ρύθμιση των προτιμήσεων εκτός κι αν\n" #~ "χρησιμοποιείται η ρύθμιση -n ή --no-setup.\n" -#~ "Παρακαλώ αναφέρετε τα σφάλματα στο cthulhu-list@gnome.org." +#~ "Παρακαλώ αναφέρετε τα σφάλματα στο https://groups.io/g/stormux." #~ msgid "Set up user preferences" #~ msgstr "Προτιμήσεις ρυθμίσεων χρήστη" diff --git a/po/en_CA.po b/po/en_CA.po index 8afcc32..c94e726 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -901,7 +901,7 @@ msgid "" msgstr "" #: src/cthulhu/cthulhu.py:1136 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #: src/cthulhu/cthulhu_console_prefs.py:93 src/cthulhu/cthulhu_console_prefs.py:109 diff --git a/po/en_GB.po b/po/en_GB.po index f8d91ee..a2dd980 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-12-06 13:18+0000\n" "Last-Translator: Bruce Cowan \n" @@ -8484,8 +8484,8 @@ msgstr "Set up user preferences (GUI version)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Report bugs to https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a @@ -15027,13 +15027,13 @@ msgstr "" #~ "will automatically launch the preferences set up unless\n" #~ "the -n or --no-setup option is used.\n" #~ "\n" -#~ "Report bugs to cthulhu-list@gnome.org." +#~ "Report bugs to https://groups.io/g/stormux." #~ msgstr "" #~ "If Cthulhu has not been previously set up by the user, Cthulhu\n" #~ "will automatically launch the preferences set up unless\n" #~ "the -n or --no-setup option is used.\n" #~ "\n" -#~ "Report bugs to cthulhu-list@gnome.org." +#~ "Report bugs to https://groups.io/g/stormux." #~ msgid "Set up user preferences" #~ msgstr "Set up user preferences" diff --git a/po/eo.po b/po/eo.po index 52ff6c2..fff54cb 100644 --- a/po/eo.po +++ b/po/eo.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnome-cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-09-15 13:44+0000\n" "PO-Revision-Date: 2023-09-15 20:08+0200\n" "Last-Translator: Kristjan SCHMIDT \n" @@ -8926,8 +8926,8 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Raporti cimojn al cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Raporti cimojn al https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/es.po b/po/es.po index 5096a51..e3717d0 100644 --- a/po/es.po +++ b/po/es.po @@ -1,22 +1,22 @@ -# translation of cthulhu.HEAD.po to Español -# Traducción de Cthulhu al Español -# This file is distributed under the same license as the CTHULHU package. -# Copyright (C) 2005 GNOME Foundation. -# -# Francisco Javier F. Serrador , 2004, 2006. -# Maria Majadas , 2005. -# Jorge González , 2007, 2008, 2010, 2011. -# -# -# Miguel Rodríguez Núñez , 2015. -# +# translation of cthulhu.HEAD.po to Español +# Traducción de Cthulhu al Español +# This file is distributed under the same license as the CTHULHU package. +# Copyright (C) 2005 GNOME Foundation. +# +# Francisco Javier F. Serrador , 2004, 2006. +# Maria Majadas , 2005. +# Jorge González , 2007, 2008, 2010, 2011. +# +# +# Miguel Rodríguez Núñez , 2015. +# # Francisco Javier Dorado Martínez , 2007-2022. # Daniel Mustieles , 2022-2023. # msgid "" msgstr "" "Project-Id-Version: cthulhu.master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-18 09:51+0000\n" "PO-Revision-Date: 2023-08-09 12:42+0200\n" "Last-Translator: Daniel Mustieles \n" @@ -2250,7 +2250,7 @@ msgstr "Marcar el comienzo de una selección de texto" msgid "Mark the end of a text selection" msgstr "Marcar el final de una selección de texto" -# Escape es hablado +# Escape es hablado #. Translators: Cthulhu has a "Learn Mode" that will allow the user to type any key #. on the keyboard and hear what the effects of that key would be. The effects #. might be what Cthulhu would do if it had a handler for the particular key @@ -5691,16 +5691,16 @@ msgstr "Hablar _celdas dentro de otra celda" msgid "Attribute Name" msgstr "Nombre del atributo" -# Notas: -# Añadir una nota -# -# Comentarios extraídos: -# Translators: Gecko native caret navigation is where Firefox itself controls -# how the arrow keys move the caret around HTML content. It's often broken, so -# Cthulhu needs to provide its own support. As such, Cthulhu offers the user the -# ability to switch between the Firefox mode and the Cthulhu mode. This is the -# label of a checkbox in which users can indicate their default preference. -# +# Notas: +# Añadir una nota +# +# Comentarios extraídos: +# Translators: Gecko native caret navigation is where Firefox itself controls +# how the arrow keys move the caret around HTML content. It's often broken, so +# Cthulhu needs to provide its own support. As such, Cthulhu offers the user the +# ability to switch between the Firefox mode and the Cthulhu mode. This is the +# label of a checkbox in which users can indicate their default preference. +# #. Translators: Gecko native caret navigation is where Firefox itself controls #. how the arrow keys move the caret around HTML content. It's often broken, so #. Cthulhu needs to provide its own support. As such, Cthulhu offers the user the @@ -8518,8 +8518,8 @@ msgstr "Configurar las preferencias del usuario (versión IGU)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Informe de errores a cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Informe de errores a https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a @@ -14979,7 +14979,7 @@ msgstr "" #~ "Presione 1 para los atajos predeterminados de Cthulhu. Presione 2 para los " #~ "atajos de Cthulhu de la aplicación actual. Presione Escape para salir." -# Escape es hablado +# Escape es hablado #~ msgid "" #~ "Enters list shortcuts mode. Press escape to exit list shortcuts mode." #~ msgstr "" @@ -15150,14 +15150,14 @@ msgstr "" #~ "will automatically launch the preferences set up unless\n" #~ "the -n or --no-setup option is used.\n" #~ "\n" -#~ "Report bugs to cthulhu-list@gnome.org." +#~ "Report bugs to https://groups.io/g/stormux." #~ msgstr "" #~ "Si el usuario no ha configurado Cthulhu previamente,\n" #~ "se lanzará automáticamente la configuración de las preferencias a menos " #~ "que\n" #~ "se use la opción -n o --no-setup.\n" #~ "\n" -#~ "Informe de errores en cthulhu-list@gnome.org." +#~ "Informe de errores en https://groups.io/g/stormux." #~ msgid "Set up user preferences" #~ msgstr "Configurar las preferencias de usuario" diff --git a/po/et.po b/po/et.po index fd0f3bf..c3a65a3 100644 --- a/po/et.po +++ b/po/et.po @@ -4551,8 +4551,8 @@ msgid "" "suspend the desktop until Cthulhu is killed." msgstr "" -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Vigadest palun teatada aadressil cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Vigadest palun teatada aadressil https://groups.io/g/stormux." #. Translators: This message is displayed when the user tries #. to start Cthulhu and includes an invalid option as an argument. diff --git a/po/eu.po b/po/eu.po index 704e96c..3c25a97 100644 --- a/po/eu.po +++ b/po/eu.po @@ -8,7 +8,7 @@ # msgid "" msgstr "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-08-13 10:00+0100\n" "Last-Translator: Asier Sarasua Garmendia \n" @@ -8473,8 +8473,8 @@ msgstr "Konfiguratu erabiltzailearen hobespenak (GUI bertsioa)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Bidali arazoen berri hona: cthulhu-list@gnome.org" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Bidali arazoen berri hona: https://groups.io/g/stormux" #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/fa.po b/po/fa.po index a360ab7..3ffa5ad 100644 --- a/po/fa.po +++ b/po/fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-10-13 21:15+0000\n" "PO-Revision-Date: 2023-10-23 15:17+0330\n" "Last-Translator: Danial Behzadi \n" @@ -8464,7 +8464,7 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #. Translators: Cthulhu normal speaks the text which was just deleted from a diff --git a/po/fi.po b/po/fi.po index 936c54c..ed5c212 100644 --- a/po/fi.po +++ b/po/fi.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-08-17 22:23+0300\n" "Last-Translator: Jiri Grönroos \n" @@ -8784,8 +8784,8 @@ msgstr "Määrittele käyttäjän asetukset (graafisen käyttöliittymän versio #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Ilmoita vioista sähköpostitse osoitteeseen cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Ilmoita vioista sähköpostitse osoitteeseen https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/fr.po b/po/fr.po index 657720d..33ecc7a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-09-17 04:09+0000\n" "PO-Revision-Date: 2023-10-23 17:52+0200\n" "Last-Translator: Guillaume Bernard \n" @@ -8523,8 +8523,8 @@ msgstr "Définit les préférences utilisateur (mode graphique)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Rapportez les bogues à cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Rapportez les bogues à https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/fur.po b/po/fur.po index dca4a85..1fa2fab 100644 --- a/po/fur.po +++ b/po/fur.po @@ -8048,7 +8048,7 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:267 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #. Translators: Cthulhu normal speaks the text which was just deleted from a diff --git a/po/ga.po b/po/ga.po index 6ea2a53..c8136fd 100644 --- a/po/ga.po +++ b/po/ga.po @@ -4250,8 +4250,8 @@ msgid "" msgstr "" #: ../src/cthulhu/cthulhu.py:1553 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Seol tuairiscí faoi fhabhtanna chuig cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Seol tuairiscí faoi fhabhtanna chuig https://groups.io/g/stormux." #: ../src/cthulhu/cthulhu.py:1736 msgid "Welcome to Cthulhu." diff --git a/po/gl.po b/po/gl.po index 5876bda..0b9d184 100644 --- a/po/gl.po +++ b/po/gl.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu-master-po-gl-70969.merged\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 19:30+0000\n" "PO-Revision-Date: 2023-09-03 20:55+0200\n" "Last-Translator: Fran Dieguez \n" @@ -8511,8 +8511,8 @@ msgstr "Configura as preferencias do usuario (versión GUI)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Informe de fallos a cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Informe de fallos a https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/gu.po b/po/gu.po index 5a0065a..cbcbd52 100644 --- a/po/gu.po +++ b/po/gu.po @@ -4400,8 +4400,8 @@ msgid "" msgstr "" #: ../src/cthulhu/cthulhu.py:1522 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "cthulhu-list@gnome.org ને ભૂલોનો અહેવાલ આપો." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "https://groups.io/g/stormux ને ભૂલોનો અહેવાલ આપો." #: ../src/cthulhu/cthulhu.py:1693 msgid "Welcome to Cthulhu." diff --git a/po/he.po b/po/he.po index 5ed0988..5d464fb 100644 --- a/po/he.po +++ b/po/he.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2024-01-14 07:04+0000\n" "PO-Revision-Date: \n" "Last-Translator: Yaron Shahrabani \n" @@ -8587,8 +8587,8 @@ msgstr "הגדרת העדפות משתמש (גרסה חזותית)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Report bugs to https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a @@ -14834,8 +14834,8 @@ msgid "" "minimum press home, and for maximum press end." msgstr "" -#~ msgid "Report bugs on https://gitlab.gnome.org/GNOME/cthulhu/-/issues." -#~ msgstr "יש לדווח על תקלות ב־https://gitlab.gnome.org/GNOME/cthulhu/-/issues." +#~ msgid "Report bugs on https://groups.io/g/stormux" +#~ msgstr "יש לדווח על תקלות ב־https://groups.io/g/stormux" #~ msgid "opens popup" #~ msgstr "פותח חלונית צצה" diff --git a/po/hi.po b/po/hi.po index 059ca00..f1f37ad 100644 --- a/po/hi.po +++ b/po/hi.po @@ -6381,8 +6381,8 @@ msgstr "ओर्का - स्क्रिप्ट स्क्रीन र #. Translators: this text is the description displayed when Cthulhu is #. launched from the command line and the help text is displayed. #: ../src/cthulhu/cthulhu_bin.py.in:93 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "cthulhu-list@gnome.org में बग रिपोर्ट करें." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "https://groups.io/g/stormux में बग रिपोर्ट करें." #. Translators: this is the description of the command line option #. '-r, --replace' which tells Cthulhu to replace any existing Cthulhu diff --git a/po/hr.po b/po/hr.po index a0993b2..d022a31 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnome-cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2019-09-24 11:20+0000\n" "PO-Revision-Date: 2019-09-26 22:11+0100\n" "Last-Translator: yvonimir stanecic \n" @@ -8201,8 +8201,8 @@ msgstr "Namještanje korisničkih postavki (GUI inačica)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:293 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Prijavite greške na cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Prijavite greške na https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/hu.po b/po/hu.po index 857eb98..6d95494 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-08 11:20+0000\n" "PO-Revision-Date: 2023-08-08 17:45+0200\n" "Last-Translator: Attila Hammer \n" @@ -8551,8 +8551,8 @@ msgstr "Felhasználói beállítások (grafikus változat)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "A hibákat az cthulhu-list@gnome.org levelezőlistán jelezheti." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "A hibákat az https://groups.io/g/stormux levelezőlistán jelezheti." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/id.po b/po/id.po index cff709d..9234f9e 100644 --- a/po/id.po +++ b/po/id.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu gnome-45\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-15 11:25+0000\n" "PO-Revision-Date: 2023-09-07 13:54+0700\n" "Last-Translator: Andika Triwidada \n" @@ -8482,8 +8482,8 @@ msgstr "Atur preferensi pengguna (versi GUI)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Laporkan kutu ke cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Laporkan kutu ke https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/is.po b/po/is.po index f80b378..350b3c6 100644 --- a/po/is.po +++ b/po/is.po @@ -7843,7 +7843,7 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:281 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #. Translators: In chat applications, it is often possible to see that a "buddy" diff --git a/po/it.po b/po/it.po index f1b38fc..700c9cf 100644 --- a/po/it.po +++ b/po/it.po @@ -27,7 +27,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-05-05 12:35+0000\n" "PO-Revision-Date: 2023-05-11 12:43+0200\n" "Last-Translator: Gianvito Cavasoli \n" @@ -8349,8 +8349,8 @@ msgstr "Imposta le preferenze utente (versione grafica)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Segnalare i bug a cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Segnalare i bug a https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/ja.po b/po/ja.po index 92fb169..1ada79d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3618,7 +3618,7 @@ msgid "" "will automatically launch the preferences set up unless\n" "the -n or --no-setup option is used.\n" "\n" -"Report bugs to cthulhu-list@gnome.org." +"Report bugs to https://groups.io/g/stormux." msgstr "" "未だ設定が完了していない場合は\n" "-n または --no-setup を指定しない限り\n" @@ -9100,8 +9100,8 @@ msgstr "" #~ msgid "Usage: cthulhu [OPTION...]" #~ msgstr "用法: cthulhu [オプション...]" -#~ msgid "Report bugs to cthulhu-list@gnome.org." -#~ msgstr "バグの報告は cthulhu-list@gnome.org まで" +#~ msgid "Report bugs to https://groups.io/g/stormux." +#~ msgstr "バグの報告は https://groups.io/g/stormux まで" #~ msgid "Invalid" #~ msgstr "無効" diff --git a/po/ka.po b/po/ka.po index 8094da5..8c6ab68 100644 --- a/po/ka.po +++ b/po/ka.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2024-03-28 17:33+0000\n" "PO-Revision-Date: 2024-04-13 03:05+0200\n" "Last-Translator: Ekaterine Papava \n" @@ -8488,8 +8488,8 @@ msgstr "მომხმარებლის პარამეტრები #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "შეცდომების შესახებ მოიწერეთ cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "შეცდომების შესახებ მოიწერეთ https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/kab.po b/po/kab.po index f70da36..8485f13 100644 --- a/po/kab.po +++ b/po/kab.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2021-11-19 13:57+0000\n" "PO-Revision-Date: 2021-11-24 07:27+0100\n" "Language-Team: Kabyle \n" @@ -8202,7 +8202,7 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #. Translators: Cthulhu normal speaks the text which was just deleted from a diff --git a/po/kk.po b/po/kk.po index e4a1b2b..19b6ecf 100644 --- a/po/kk.po +++ b/po/kk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu gnome-3-22\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-08-19 13:06+0600\n" "Last-Translator: Baurzhan Muftakhidinov \n" @@ -8473,7 +8473,7 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #. Translators: Cthulhu normal speaks the text which was just deleted from a diff --git a/po/kn.po b/po/kn.po index 9978dee..1a582f4 100644 --- a/po/kn.po +++ b/po/kn.po @@ -4900,7 +4900,7 @@ msgid "" msgstr "ಅಪ್ ಅಪ್ n ಆಯ್ಕೆ ." #: ../src/cthulhu/cthulhu.py:1345 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #: ../src/cthulhu/cthulhu.py:1538 diff --git a/po/ko.po b/po/ko.po index 1ddeced..3bdfbda 100644 --- a/po/ko.po +++ b/po/ko.po @@ -4120,8 +4120,8 @@ msgid "" msgstr "" #: ../src/cthulhu/cthulhu.py:1450 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "문제점을 cthulhu-list@gnome.org로 알려주십시오." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "문제점을 https://groups.io/g/stormux로 알려주십시오." #: ../src/cthulhu/cthulhu.py:1621 msgid "Welcome to Cthulhu." diff --git a/po/lt.po b/po/lt.po index abee5f0..7725eb4 100644 --- a/po/lt.po +++ b/po/lt.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: lt\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-08-15 22:23+0300\n" "Last-Translator: Aurimas Černius \n" @@ -8494,8 +8494,8 @@ msgstr "Nustatyti naudotojo nuostatas (grafinė versija)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Praneškite apie klaida adresu cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Praneškite apie klaida adresu https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/lv.po b/po/lv.po index 4478e94..9bc2f37 100644 --- a/po/lv.po +++ b/po/lv.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: lv\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2022-07-14 19:12+0000\n" "PO-Revision-Date: 2022-09-11 22:27+0300\n" "Last-Translator: Rūdolfs Mazurs \n" @@ -8231,8 +8231,8 @@ msgstr "Iestatīt lietotāja iestatījumus (grafiskā versija)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Ziņojiet par kļūdām uz cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Ziņojiet par kļūdām uz https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/mai.po b/po/mai.po index a3037af..ae68ebd 100644 --- a/po/mai.po +++ b/po/mai.po @@ -3982,8 +3982,8 @@ msgid "" msgstr "" #: ../src/cthulhu/cthulhu.py:1450 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "cthulhu-list@gnome.orgमे बग रिपोर्ट करू ." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "https://groups.io/g/stormuxमे बग रिपोर्ट करू ." #: ../src/cthulhu/cthulhu.py:1621 msgid "Welcome to Cthulhu." diff --git a/po/mk.po b/po/mk.po index d119614..63f6a79 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3455,8 +3455,8 @@ msgstr "" "освен ако не се користат опциите -n или --no-setup." #: ../src/cthulhu/cthulhu.py:507 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Пријавете бубачки на cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Пријавете бубачки на https://groups.io/g/stormux." #. Translators: this is what Cthulhu speaks and brailles when it quits. #. diff --git a/po/ml.po b/po/ml.po index cab6558..a10d1fb 100644 --- a/po/ml.po +++ b/po/ml.po @@ -8548,8 +8548,8 @@ msgstr "ഉപയോക്താവ്‌ അഭിരുചി തിര‍ #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:267 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "cthulhu-list@gnome.org ബഗുകള്‍ റിപോര്‍ട്ട് ചെയ്യുക." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "https://groups.io/g/stormux ബഗുകള്‍ റിപോര്‍ട്ട് ചെയ്യുക." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/mr.po b/po/mr.po index 1b0fd40..884873d 100644 --- a/po/mr.po +++ b/po/mr.po @@ -902,8 +902,8 @@ msgid "" msgstr "आहे." #: ../src/cthulhu/cthulhu.py:1104 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "त्रुटी अहवाल येथे द्या cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "त्रुटी अहवाल येथे द्या https://groups.io/g/stormux." #: ../src/cthulhu/cthulhu_console_prefs.py:93 ../src/cthulhu/cthulhu_console_prefs.py:109 msgid "Speech is unavailable." diff --git a/po/ms.po b/po/ms.po index d62da53..ccdf1a5 100644 --- a/po/ms.po +++ b/po/ms.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2020-01-23 19:57+0000\n" "PO-Revision-Date: 2020-01-24 23:26+0800\n" "Last-Translator: abuyop \n" @@ -8189,8 +8189,8 @@ msgstr "Persediaan keutamaan pengguna (versi GUI)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:293 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Lapor pepijat ke cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Lapor pepijat ke https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/nb.po b/po/nb.po index d886965..ea07d24 100644 --- a/po/nb.po +++ b/po/nb.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu 4.0\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2021-04-19 13:34+0000\n" "PO-Revision-Date: 2021-05-11 13:04+0200\n" "Last-Translator: Kjartan Maraas \n" @@ -8253,8 +8253,8 @@ msgstr "Sett brukervalg (GUI-versjon)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Rapporter feil til cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Rapporter feil til https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/ne.po b/po/ne.po index f2c41ce..c2c611a 100644 --- a/po/ne.po +++ b/po/ne.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Gnome Nepali Translation Project\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2022-07-14 19:12+0000\n" "PO-Revision-Date: 2022-09-11 05:59+0545\n" "Last-Translator: Pawan Chitrakar \n" @@ -8415,8 +8415,8 @@ msgstr "उपभोक्ता प्राथमिकता पातो स #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "उडुस पाएमा cthulhu-list@gnome.org मा जानकारी दिनु होस् ।" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "उडुस पाएमा https://groups.io/g/stormux मा जानकारी दिनु होस् ।" #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/nl.po b/po/nl.po index d1662c8..56b20e4 100644 --- a/po/nl.po +++ b/po/nl.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2022-11-02 00:05+0000\n" "PO-Revision-Date: 2022-12-19 19:37+0100\n" "Last-Translator: Nathan Follens \n" @@ -8346,8 +8346,8 @@ msgstr "Stel gebruikersvoorkeuren in (GUI-versie)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Rapporteer fouten bij cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Rapporteer fouten bij https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/nn.po b/po/nn.po index 2ae8ae8..42d1de4 100644 --- a/po/nn.po +++ b/po/nn.po @@ -4785,8 +4785,8 @@ msgid "" msgstr "" #: ../src/cthulhu/cthulhu.py:1362 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Rapportar feil til cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Rapportar feil til https://groups.io/g/stormux." #: ../src/cthulhu/cthulhu.py:1555 msgid "Welcome to Cthulhu." diff --git a/po/oc.po b/po/oc.po index 42070fb..8813868 100644 --- a/po/oc.po +++ b/po/oc.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: oc\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2021-04-19 13:34+0000\n" "PO-Revision-Date: 2021-05-11 20:57+0200\n" "Last-Translator: Quentin PAGÈS\n" @@ -8629,8 +8629,8 @@ msgstr "Definís las preferéncias d'utilizaire (mòde tèxte)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Raportar las anomalias a cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Raportar las anomalias a https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/or.po b/po/or.po index e8ad004..d4603b5 100644 --- a/po/or.po +++ b/po/or.po @@ -4100,8 +4100,8 @@ msgid "" msgstr "" #: ../src/cthulhu/cthulhu.py:1450 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr " cthulhu-list@gnome.org. କୁ ବଗ୍ ଗୁଡିକ ସୂଚନା ଜଣାଅ" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr " https://groups.io/g/stormux. କୁ ବଗ୍ ଗୁଡିକ ସୂଚନା ଜଣାଅ" #: ../src/cthulhu/cthulhu.py:1621 msgid "Welcome to Cthulhu." diff --git a/po/pa.po b/po/pa.po index b62fda4..12cbbf0 100644 --- a/po/pa.po +++ b/po/pa.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu.HEAD\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-08-24 19:34-0700\n" "Last-Translator: A S Alam \n" @@ -9421,8 +9421,8 @@ msgstr "ਯੂਜ਼ਰ ਪਸੰਦ ਸੈੱਟਅੱਪ (ਪਾਠ ਵਰਜ #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "ਬੱਗ ਜਾਣਕਾਰੀ cthulhu-list@gnome.org ਉੱਤੇ ਭੇਜੋ।" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "ਬੱਗ ਜਾਣਕਾਰੀ https://groups.io/g/stormux ਉੱਤੇ ਭੇਜੋ।" #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/pl.po b/po/pl.po index 4784cf7..ce13cb4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-08-15 17:05+0200\n" "Last-Translator: Piotr Drąg \n" @@ -8521,9 +8521,9 @@ msgstr "Preferencje użytkownika (wersja graficzna)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" -"Prosimy zgłaszać błędy na adres cthulhu-list@gnome.org (w języku angielskim)." +"Prosimy zgłaszać błędy na adres https://groups.io/g/stormux (w języku angielskim)." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/pt.po b/po/pt.po index b701055..46e47b0 100644 --- a/po/pt.po +++ b/po/pt.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: 3.10\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2024-04-13 01:06+0000\n" "PO-Revision-Date: 2024-04-27 23:37+0100\n" "Last-Translator: Hugo Carvalho \n" @@ -8508,8 +8508,8 @@ msgstr "Definir as preferências do utilizador (versão em GUI)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Reportar erros (em inglês) para cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Reportar erros (em inglês) para https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/pt_BR.po b/po/pt_BR.po index 90a1477..8a269f6 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -31,7 +31,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2024-02-03 19:59+0000\n" "PO-Revision-Date: 2024-03-08 08:48-0300\n" "Last-Translator: Leônidas Araújo \n" @@ -8582,8 +8582,8 @@ msgstr "Configura as preferências do usuário (versão em interface gráfica)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Relate erros para cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Relate erros para https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/ro.po b/po/ro.po index cf566e8..fb32d90 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnome-cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-10-09 16:00+0000\n" "PO-Revision-Date: 2023-08-08 17:22+0300\n" "Last-Translator: Florentina Mușat \n" @@ -8497,8 +8497,8 @@ msgstr "Задать параметры пользователя (графиче #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Об ошибках сообщайте в список рассылки cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Об ошибках сообщайте в список рассылки https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/rw.po b/po/rw.po index 7820703..0e96189 100644 --- a/po/rw.po +++ b/po/rw.po @@ -971,7 +971,7 @@ msgid "" msgstr "" #: src/cthulhu/cthulhu.py:1136 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #: src/cthulhu/cthulhu_console_prefs.py:93 src/cthulhu/cthulhu_console_prefs.py:109 diff --git a/po/sk.po b/po/sk.po index 9598064..041ac23 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhucthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux" "POT-Creation-Date: 2018-07-26 14:39+0000\n" "PO-Revision-Date: 2018-09-12 12:18+0200\n" "Last-Translator: Peter Vágner \n" @@ -8207,8 +8207,8 @@ msgstr "Používateľské nastavenia (grafická verzia)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:293 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Chyby oznamujte na adresu cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Chyby oznamujte na adresu https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/sl.po b/po/sl.po index 9bd7410..56202e9 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-09-10 17:36+0000\n" "PO-Revision-Date: 2023-09-10 23:33+0200\n" "Last-Translator: Matej Urbančič \n" @@ -8493,8 +8493,8 @@ msgstr "Nastavitve možnosti uporabnika (grafična različica)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Pošiljanje poročil o napakah na cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Pošiljanje poročil o napakah na https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/sr.po b/po/sr.po index 83fa375..2cb51cd 100644 --- a/po/sr.po +++ b/po/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2022-07-14 19:12+0000\n" "PO-Revision-Date: 2022-08-09 10:28+0200\n" "Last-Translator: Марко М. Костић \n" @@ -8236,8 +8236,8 @@ msgstr "Подешава поставке корисника (издање гр #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:297 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Пријавите грешке на „cthulhu-list@gnome.org“." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Пријавите грешке на „https://groups.io/g/stormux“." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/sr@latin.po b/po/sr@latin.po index c24b6ca..21afca2 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -8072,8 +8072,8 @@ msgstr "Podešava postavke korisnika (izdanje grafičkog sučelja)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:267 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Prijavite greške na „cthulhu-list@gnome.org“." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Prijavite greške na „https://groups.io/g/stormux“." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/sv.po b/po/sv.po index 1fdef07..d277500 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 10:37+0000\n" "PO-Revision-Date: 2023-08-08 15:58+0200\n" "Last-Translator: Anders Jonsson \n" @@ -8512,9 +8512,9 @@ msgstr "Ställ in användarinställningar (användargränssnittsversion)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" -"Rapportera fel till cthulhu-list@gnome.org\n" +"Rapportera fel till https://groups.io/g/stormux\n" "Skicka synpunkter på översättningen till tp-sv@listor.tp-sv.se" #. Translators: Cthulhu normal speaks the text which was just deleted from a diff --git a/po/ta.po b/po/ta.po index 80bd766..3a57962 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6250,8 +6250,8 @@ msgstr "ஆர்கா குறுநிரல் திரை படிப் #. Translators: this text is the description displayed when Cthulhu is #. launched from the command line and the help text is displayed. #: ../src/cthulhu/cthulhu_bin.py.in:93 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "பிழைகளை cthulhu-list@gnome.orgல் அறிக்கையிடவும்." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "பிழைகளை https://groups.io/g/stormuxல் அறிக்கையிடவும்." #. Translators: this is the description of the command line option #. '-r, --replace' which tells Cthulhu to replace any existing Cthulhu @@ -9048,13 +9048,13 @@ msgstr "" #~ "will automatically launch the preferences set up unless\n" #~ "the -n or --no-setup option is used.\n" #~ "\n" -#~ "Report bugs to cthulhu-list@gnome.org." +#~ "Report bugs to https://groups.io/g/stormux." #~ msgstr "" #~ "-n or --no-setup தேர்வு இல்லாவிடில்; பயனர் முன்னால் ஆர்காவை \n" #~ "அமைத்து இராவிடில், ஆர்கா தேர்வுகள் அமைப்பு நிரலை \n" #~ "தானியங்கியாக துவக்கிவிடும். \n" #~ "\n" -#~ "வழு அறிக்கைகளை அனுப்பcthulhu-list@gnome.org." +#~ "வழு அறிக்கைகளை அனுப்பhttps://groups.io/g/stormux." #~ msgid "Show this help message" #~ msgstr "இந்த உதவி செய்தியை காட்டவும்" diff --git a/po/te.po b/po/te.po index f84375d..ff3204c 100644 --- a/po/te.po +++ b/po/te.po @@ -3650,13 +3650,13 @@ msgid "" "will automatically launch the preferences set up unless\n" "the -n or --no-setup option is used.\n" "\n" -"Report bugs to cthulhu-list@gnome.org." +"Report bugs to https://groups.io/g/stormux." msgstr "" "వాడుకరిచేత ఓర్కా గతంలో అమర్చిఉండకపోయినప్పుడు, \n" "-n లేదా --no-setup ఐచ్చికాలు ఉపయోగించికపోతే ఓర్కా స్వయంచాలకంగా\n" "అభీష్టాల అమర్పును దించుతుంది.\n" "\n" -"దోషములను తెలియజేయు ఇ మెయిల్ అడ్రసు cthulhu-list@gnome.org" +"దోషములను తెలియజేయు ఇ మెయిల్ అడ్రసు https://groups.io/g/stormux" #. Translators: this is the description of the command line option #. '-?, --help' that is used to display usage information. @@ -9111,8 +9111,8 @@ msgstr "తగ్గించుటకు ఎడమ సూచికను, ప #~ msgstr "ఈమాక్స్‍‌స్పీక్ ఉపన్యాసం సేవలు" #~ msgid "Usage: cthulhu [OPTION...]" #~ msgstr "ఉపయోగం: ఓర్కా [ఐచ్చికం...]" -#~ msgid "Report bugs to cthulhu-list@gnome.org." -#~ msgstr "బగ్‌లను cthulhu-list@gnome.org. కు నివేదించండి." +#~ msgid "Report bugs to https://groups.io/g/stormux." +#~ msgstr "బగ్‌లను https://groups.io/g/stormux. కు నివేదించండి." #~ msgid "Invalid" #~ msgstr "Invalid" #~ msgid "invalid" diff --git a/po/tg.po b/po/tg.po index 090ab73..4fedb92 100644 --- a/po/tg.po +++ b/po/tg.po @@ -4730,7 +4730,7 @@ msgstr "" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:277 -msgid "Report bugs to cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." msgstr "" #. Translators: In chat applications, it is often possible to see that a "buddy" diff --git a/po/th.po b/po/th.po index af82c37..ec42711 100644 --- a/po/th.po +++ b/po/th.po @@ -3975,8 +3975,8 @@ msgstr "" "Cthulhu จะถูกฆ่าได้" #: ../src/cthulhu/cthulhu.py:1450 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "รายงานข้อผิดพลาดไปยัง cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "รายงานข้อผิดพลาดไปยัง https://groups.io/g/stormux." #: ../src/cthulhu/cthulhu.py:1621 msgid "Welcome to Cthulhu." diff --git a/po/tr.po b/po/tr.po index 62de409..86603b1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-10-09 16:03+0000\n" "PO-Revision-Date: 2023-10-13 15:42+0300\n" "Last-Translator: Sabri Ünal \n" @@ -8497,8 +8497,8 @@ msgstr "Kullanıcı tercihlerini ayarla (GUI sürümü)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Hataları cthulhu-list@gnome.org adresine bildirin." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Hataları https://groups.io/g/stormux adresine bildirin." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/ug.po b/po/ug.po index 9e8ac71..ad83ab7 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6201,8 +6201,8 @@ msgstr "ئوركا(cthulhu) - پروگرامما يازغىلى بولىدىغا #. Translators: this text is the description displayed when Cthulhu is #. launched from the command line and the help text is displayed. #: ../src/cthulhu/cthulhu_bin.py.in:93 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "كەمتۈكلەرنى cthulhu-list@gnome.org غا مەلۇم قىلىڭ." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "كەمتۈكلەرنى https://groups.io/g/stormux غا مەلۇم قىلىڭ." #. Translators: this is the description of the command line option #. '-r, --replace' which tells Cthulhu to replace any existing Cthulhu diff --git a/po/uk.po b/po/uk.po index f8b4093..45d8d9f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-11 17:30+0000\n" "PO-Revision-Date: 2023-08-11 21:31+0300\n" "Last-Translator: Yuri Chornoivan \n" @@ -8540,8 +8540,8 @@ msgstr "Вказати параметри користувача (графічн #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Повідомити про помилку у список розсилки cthulhu-list@gnome.org." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Повідомити про помилку у список розсилки https://groups.io/g/stormux." #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/vi.po b/po/vi.po index 4876504..2f17804 100644 --- a/po/vi.po +++ b/po/vi.po @@ -3588,8 +3588,8 @@ msgstr "" "không được dùng." #: ../src/cthulhu/cthulhu.py:517 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "Hãy thông báo lỗi nào cho ." +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "Hãy thông báo lỗi nào cho ." #. Translators: this is what Cthulhu speaks and brailles when it quits. #. diff --git a/po/zh_CN.po b/po/zh_CN.po index c440fd8..c150d5d 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: cthulhu master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/cthulhu/issues\n" +"Report-Msgid-Bugs-To: https://groups.io/g/stormux\n" "POT-Creation-Date: 2023-08-31 22:44+0000\n" "PO-Revision-Date: 2023-09-01 16:31+0800\n" "Last-Translator: Eni \n" @@ -8491,8 +8491,8 @@ msgstr "设定用户首选项(图形版本)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: src/cthulhu/messages.py:312 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "汇报错误至 cthulhu-list@gnome.org。" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "汇报错误至 https://groups.io/g/stormux。" #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/po/zh_HK.po b/po/zh_HK.po index 1ead949..3551623 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6014,8 +6014,8 @@ msgstr "設定使用者偏好設定(文字版本)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:277 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "匯報錯誤至 cthulhu-list@gnome.org" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "匯報錯誤至 https://groups.io/g/stormux" #. Translators: In chat applications, it is often possible to see that a "buddy" #. is typing currently (e.g. via a keyboard icon or status text). Some users like diff --git a/po/zh_TW.po b/po/zh_TW.po index f52256e..acea169 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8536,8 +8536,8 @@ msgstr "設定使用者偏好設定(GUI 版本)" #. Translators: This text is the description displayed when Cthulhu is launched #. from the command line and the help text is displayed. #: ../src/cthulhu/messages.py:267 -msgid "Report bugs to cthulhu-list@gnome.org." -msgstr "匯報錯誤至 cthulhu-list@gnome.org" +msgid "Report bugs to https://groups.io/g/stormux." +msgstr "匯報錯誤至 https://groups.io/g/stormux" #. Translators: Cthulhu normal speaks the text which was just deleted from a #. document via command. Depending on the circumstances, that might be a diff --git a/pyproject.toml b/pyproject.toml index dd30b4c..968e227 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "cthulhu" dynamic = ["version"] -description = "Fork of the Orca screen reader based on gnome-45" +description = "Fork of the Orca screen reader" readme = "README.md" requires-python = ">=3.10" license = { text = "LGPL-2.1-or-later" } diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index f8d775a..0000000 --- a/src/Makefile +++ /dev/null @@ -1,652 +0,0 @@ -# Makefile.in generated by automake 1.18.1 from Makefile.am. -# src/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2025 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -am__rm_f = rm -f $(am__rm_f_notfound) -am__rm_rf = rm -rf $(am__rm_f_notfound) -pkgdatadir = $(datadir)/cthulhu -pkgincludedir = $(includedir)/cthulhu -pkglibdir = $(libdir)/cthulhu -pkglibexecdir = $(libexecdir)/cthulhu -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-pc-linux-gnu -host_triplet = x86_64-pc-linux-gnu -subdir = src -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/build-to-host.m4 \ - $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/host-cpu-c-abi.m4 \ - $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ - $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ - $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(install_sh) -d -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = ${SHELL} '/home/storm/devel/cthulhu/missing' aclocal-1.18 -AMTAR = $${TAR-tar} -AM_DEFAULT_VERBOSITY = 1 -ATKBRIDGE_CFLAGS = -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/atk-1.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -ATKBRIDGE_LIBS = -latk-bridge-2.0 -ATSPI2_CFLAGS = -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/sysprof-6 -pthread -ATSPI2_LIBS = -latspi -ldbus-1 -lglib-2.0 -AUTOCONF = ${SHELL} '/home/storm/devel/cthulhu/missing' autoconf -AUTOHEADER = ${SHELL} '/home/storm/devel/cthulhu/missing' autoheader -AUTOMAKE = ${SHELL} '/home/storm/devel/cthulhu/missing' automake-1.18 -AWK = gawk -CC = gcc -CCDEPMODE = depmode=none -CFLAGS = -g -O2 -CPP = gcc -E -CPPFLAGS = -CSCOPE = cscope -CTAGS = ctags -CYGPATH_W = echo -DEFS = -DPACKAGE_NAME=\"cthulhu\" -DPACKAGE_TARNAME=\"cthulhu\" -DPACKAGE_VERSION=\"2025.08.06\" -DPACKAGE_STRING=\"cthulhu\ 2025.08.06\" -DPACKAGE_BUGREPORT=\"https://gitlab.gnome.org/GNOME/cthulhu/-/issues/\" -DPACKAGE_URL=\"\" -DPACKAGE=\"cthulhu\" -DVERSION=\"2025.08.06\" -DENABLE_NLS=1 -DHAVE_GETTEXT=1 -DHAVE_DCGETTEXT=1 -DGETTEXT_PACKAGE=\"cthulhu\" -DEPDIR = .deps -DESIRED_LINGUAS = $(ALL_LINGUAS) -ECHO_C = -ECHO_N = -n -ECHO_T = -ETAGS = etags -EXEEXT = -GETTEXT_MACRO_VERSION = 0.24 -GETTEXT_PACKAGE = cthulhu -GMSGFMT = /usr/bin/msgfmt -GMSGFMT_015 = /usr/bin/msgfmt -GSTREAMER_CFLAGS = -I/usr/include/gstreamer-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -GSTREAMER_LIBS = -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0 -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INTLLIBS = -INTL_MACOSX_LIBS = -LDFLAGS = -LIBICONV = -liconv -LIBINTL = -LIBOBJS = -LIBPEAS_CFLAGS = -I/usr/include/libpeas-1.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/gobject-introspection-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -LIBPEAS_LIBS = -lpeas-1.0 -Wl,--export-dynamic -lgio-2.0 -lgmodule-2.0 -pthread -lgirepository-1.0 -lgobject-2.0 -lglib-2.0 -LIBS = -LOUIS_TABLE_DIR = /usr/share/liblouis/tables -LTLIBICONV = -liconv -LTLIBINTL = -LTLIBOBJS = -MAINT = -MAKEINFO = ${SHELL} '/home/storm/devel/cthulhu/missing' makeinfo -MKDIR_P = /usr/bin/mkdir -p -MSGFMT = /usr/bin/msgfmt -MSGMERGE = /usr/bin/msgmerge -MSGMERGE_FOR_MSGFMT_OPTION = --for-msgfmt -OBJEXT = o -PACKAGE = cthulhu -PACKAGE_BUGREPORT = https://gitlab.gnome.org/GNOME/cthulhu/-/issues/ -PACKAGE_NAME = cthulhu -PACKAGE_STRING = cthulhu 2025.08.06 -PACKAGE_TARNAME = cthulhu -PACKAGE_URL = -PACKAGE_VERSION = 2025.08.06 -PATH_SEPARATOR = : -PKG_CONFIG = /usr/bin/pkg-config -PKG_CONFIG_LIBDIR = -PKG_CONFIG_PATH = -PLATFORM_PATH = :/usr/bin:/usr/sbin:/bin -POSUB = po -PYGOBJECT_CFLAGS = -I/usr/include/pygobject-3.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread -PYGOBJECT_LIBS = -lgobject-2.0 -lglib-2.0 -PYTHON = /home/storm/.pyenv/shims/python -PYTHON_EXEC_PREFIX = ${exec_prefix} -PYTHON_PLATFORM = linux -PYTHON_PREFIX = ${prefix} -PYTHON_VERSION = 3.13 -REVISION = 89df899 -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -STRIP = -USE_NLS = yes -VERSION = 2025.08.06 -XGETTEXT = /usr/bin/xgettext -XGETTEXT_015 = /usr/bin/xgettext -XGETTEXT_EXTRA_OPTIONS = -abs_builddir = /home/storm/devel/cthulhu/src -abs_srcdir = /home/storm/devel/cthulhu/src -abs_top_builddir = /home/storm/devel/cthulhu -abs_top_srcdir = /home/storm/devel/cthulhu -ac_ct_CC = gcc -am__include = include -am__leading_dot = . -am__quote = -am__rm_f_notfound = -am__tar = tar --format=ustar -chf - "$$tardir" -am__untar = tar -xf - -am__xargs_n = xargs -n -bindir = ${exec_prefix}/bin -build = x86_64-pc-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = pc -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share -docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} -dvidir = ${docdir} -exec_prefix = ${prefix} -host = x86_64-pc-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = pc -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /home/storm/devel/cthulhu/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localedir_c = "/home/storm/.local/share/locale" -localedir_c_make = \"$(localedir)\" -localstatedir = /home/storm/.local/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -pkgpyexecdir = ${pyexecdir}/cthulhu -pkgpythondir = ${pythondir}/cthulhu -prefix = /home/storm/.local -program_transform_name = s,x,x, -psdir = ${docdir} -pyexecdir = ${PYTHON_EXEC_PREFIX}/lib/python3.13/site-packages -pythondir = ${PYTHON_PREFIX}/lib/python3.13/site-packages -runstatedir = ${localstatedir}/run -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = . -sysconfdir = /home/storm/.local/etc -target_alias = -top_build_prefix = ../ -top_builddir = .. -top_srcdir = .. -SUBDIRS = cthulhu -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) distdir-am - -distdir-am: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -$(am__rm_f) $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic cscopelist-am ctags ctags-am \ - distclean distclean-generic distclean-tags distdir dvi dvi-am \ - html html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ - pdf-am ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: - -# Tell GNU make to disable its built-in pattern rules. -%:: %,v -%:: RCS/%,v -%:: RCS/% -%:: s.% -%:: SCCS/s.% diff --git a/src/cthulhu.py b/src/cthulhu.py index 9896840..c7fc998 100644 --- a/src/cthulhu.py +++ b/src/cthulhu.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import argparse import gi diff --git a/src/cthulhu/__init__.py b/src/cthulhu/__init__.py index adc42ce..a29527d 100644 --- a/src/cthulhu/__init__.py +++ b/src/cthulhu/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Cthulhu Screen Reader""" diff --git a/src/cthulhu/acss.py b/src/cthulhu/acss.py index 6e762f1..1fb62b3 100644 --- a/src/cthulhu/acss.py +++ b/src/cthulhu/acss.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ACSS --- Aural CSS. diff --git a/src/cthulhu/action_presenter.py b/src/cthulhu/action_presenter.py index c61b523..bcbab0e 100644 --- a/src/cthulhu/action_presenter.py +++ b/src/cthulhu/action_presenter.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Module for performing accessible actions via a list""" diff --git a/src/cthulhu/ax_collection.py b/src/cthulhu/ax_collection.py index f3251a2..78851b3 100644 --- a/src/cthulhu/ax_collection.py +++ b/src/cthulhu/ax_collection.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Utilities for obtaining objects via the collection interface. diff --git a/src/cthulhu/ax_event_synthesizer.py b/src/cthulhu/ax_event_synthesizer.py index ccb1c32..9d413ec 100644 --- a/src/cthulhu/ax_event_synthesizer.py +++ b/src/cthulhu/ax_event_synthesizer.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides support for synthesizing accessible input events.""" diff --git a/src/cthulhu/ax_object.py b/src/cthulhu/ax_object.py index d28aa17..43b742d 100644 --- a/src/cthulhu/ax_object.py +++ b/src/cthulhu/ax_object.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Utilities for obtaining information about accessible objects. diff --git a/src/cthulhu/ax_selection.py b/src/cthulhu/ax_selection.py index 6926699..c5d84c3 100644 --- a/src/cthulhu/ax_selection.py +++ b/src/cthulhu/ax_selection.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Utilities for obtaining information about containers supporting selection. diff --git a/src/cthulhu/ax_utilities.py b/src/cthulhu/ax_utilities.py index aebc4f4..ed36bb6 100644 --- a/src/cthulhu/ax_utilities.py +++ b/src/cthulhu/ax_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Utilities for performing tasks related to accessibility inspection. diff --git a/src/cthulhu/ax_utilities_collection.py b/src/cthulhu/ax_utilities_collection.py index 7b44591..53acfe2 100644 --- a/src/cthulhu/ax_utilities_collection.py +++ b/src/cthulhu/ax_utilities_collection.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Utilities for finding all objects that meet a certain criteria. diff --git a/src/cthulhu/ax_utilities_role.py b/src/cthulhu/ax_utilities_role.py index fdb7f6a..6b3ec4b 100644 --- a/src/cthulhu/ax_utilities_role.py +++ b/src/cthulhu/ax_utilities_role.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Utilities for obtaining role-related information. diff --git a/src/cthulhu/ax_utilities_state.py b/src/cthulhu/ax_utilities_state.py index 23d8e28..b0f46d3 100644 --- a/src/cthulhu/ax_utilities_state.py +++ b/src/cthulhu/ax_utilities_state.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Utilities for obtaining state-related information. diff --git a/src/cthulhu/backends/__init__.py b/src/cthulhu/backends/__init__.py index 782103c..301e5ea 100644 --- a/src/cthulhu/backends/__init__.py +++ b/src/cthulhu/backends/__init__.py @@ -20,6 +20,6 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu diff --git a/src/cthulhu/backends/json_backend.py b/src/cthulhu/backends/json_backend.py index b98a3b3..c887d11 100644 --- a/src/cthulhu/backends/json_backend.py +++ b/src/cthulhu/backends/json_backend.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """JSON backend for Cthulhu settings""" diff --git a/src/cthulhu/bookmarks.py b/src/cthulhu/bookmarks.py index a2c069e..68481d8 100644 --- a/src/cthulhu/bookmarks.py +++ b/src/cthulhu/bookmarks.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides the default implementation for bookmarks in Cthulhu.""" diff --git a/src/cthulhu/braille.py b/src/cthulhu/braille.py index aa86f6b..bd01e67 100644 --- a/src/cthulhu/braille.py +++ b/src/cthulhu/braille.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """A very experimental approach to the refreshable Braille display. This module treats each line of the display as a sequential set of regions, where diff --git a/src/cthulhu/braille_generator.py b/src/cthulhu/braille_generator.py index 3306c89..b0cca06 100644 --- a/src/cthulhu/braille_generator.py +++ b/src/cthulhu/braille_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Utilities for obtaining braille presentations for objects.""" diff --git a/src/cthulhu/braille_rolenames.py b/src/cthulhu/braille_rolenames.py index ab1836a..e0b5865 100644 --- a/src/cthulhu/braille_rolenames.py +++ b/src/cthulhu/braille_rolenames.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Dictionary of abbreviated rolenames for use with braille.""" diff --git a/src/cthulhu/brlmon.py b/src/cthulhu/brlmon.py index 6948b04..f1efbb0 100644 --- a/src/cthulhu/brlmon.py +++ b/src/cthulhu/brlmon.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides a graphical braille display, mainly for development tasks.""" diff --git a/src/cthulhu/brltablenames.py b/src/cthulhu/brltablenames.py index c46306d..65119c6 100644 --- a/src/cthulhu/brltablenames.py +++ b/src/cthulhu/brltablenames.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Braille translation table names. These have been put in their own module so that we can present them in the correct language when users change the diff --git a/src/cthulhu/caret_navigation.py b/src/cthulhu/caret_navigation.py index 53dc0a3..f25b869 100644 --- a/src/cthulhu/caret_navigation.py +++ b/src/cthulhu/caret_navigation.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides an Cthulhu-controlled caret for text content.""" diff --git a/src/cthulhu/chat.py b/src/cthulhu/chat.py index 52c01ce..1f595a0 100644 --- a/src/cthulhu/chat.py +++ b/src/cthulhu/chat.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Implements generic chat support.""" diff --git a/src/cthulhu/chnames.py b/src/cthulhu/chnames.py index 3da83d5..c191340 100644 --- a/src/cthulhu/chnames.py +++ b/src/cthulhu/chnames.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides getCharacterName that maps punctuation marks and other individual characters into localized words.""" diff --git a/src/cthulhu/cmdnames.py b/src/cthulhu/cmdnames.py index 34ee347..7501304 100644 --- a/src/cthulhu/cmdnames.py +++ b/src/cthulhu/cmdnames.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Command names which Cthulhu presents in speech and/or braille. These have been put in their own module so that we can present them in diff --git a/src/cthulhu/colornames.py b/src/cthulhu/colornames.py index c483a85..3a33267 100644 --- a/src/cthulhu/colornames.py +++ b/src/cthulhu/colornames.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/common_keyboardmap.py b/src/cthulhu/common_keyboardmap.py index cfc054e..cf79ba5 100644 --- a/src/cthulhu/common_keyboardmap.py +++ b/src/cthulhu/common_keyboardmap.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ A list of common keybindings and unbound keys pulled out from default.py: getKeyBindings() diff --git a/src/cthulhu/cthulhu.py b/src/cthulhu/cthulhu.py index aced4eb..77cb4d4 100644 --- a/src/cthulhu/cthulhu.py +++ b/src/cthulhu/cthulhu.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """The main module for the Cthulhu screen reader.""" diff --git a/src/cthulhu/cthulhuVersion.py b/src/cthulhu/cthulhuVersion.py index 6593769..3250f59 100644 --- a/src/cthulhu/cthulhuVersion.py +++ b/src/cthulhu/cthulhuVersion.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu version = "2025.12.09" codeName = "testing" diff --git a/src/cthulhu/cthulhu_bin.py.in b/src/cthulhu/cthulhu_bin.py.in index 9925fcf..316c8a6 100644 --- a/src/cthulhu/cthulhu_bin.py.in +++ b/src/cthulhu/cthulhu_bin.py.in @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import argparse import gi diff --git a/src/cthulhu/cthulhu_gtkbuilder.py b/src/cthulhu/cthulhu_gtkbuilder.py index 53c80f8..d676bb7 100644 --- a/src/cthulhu/cthulhu_gtkbuilder.py +++ b/src/cthulhu/cthulhu_gtkbuilder.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Displays a GUI for the user to quit Cthulhu.""" diff --git a/src/cthulhu/cthulhu_gui_find.py b/src/cthulhu/cthulhu_gui_find.py index 2fccdf4..af99110 100644 --- a/src/cthulhu/cthulhu_gui_find.py +++ b/src/cthulhu/cthulhu_gui_find.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Displays a GUI for the Cthulhu Find window""" diff --git a/src/cthulhu/cthulhu_gui_navlist.py b/src/cthulhu/cthulhu_gui_navlist.py index d277573..ac82fff 100644 --- a/src/cthulhu/cthulhu_gui_navlist.py +++ b/src/cthulhu/cthulhu_gui_navlist.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Displays a GUI for Cthulhu navigation list dialogs""" diff --git a/src/cthulhu/cthulhu_gui_prefs.py b/src/cthulhu/cthulhu_gui_prefs.py index 8c7ecf4..39ecd14 100644 --- a/src/cthulhu/cthulhu_gui_prefs.py +++ b/src/cthulhu/cthulhu_gui_prefs.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Displays a GUI for the user to set Cthulhu preferences.""" diff --git a/src/cthulhu/cthulhu_gui_profile.py b/src/cthulhu/cthulhu_gui_profile.py index 2355bb0..b0edb9c 100644 --- a/src/cthulhu/cthulhu_gui_profile.py +++ b/src/cthulhu/cthulhu_gui_profile.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Displays the Save Profile As dialog.""" diff --git a/src/cthulhu/cthulhu_state.py b/src/cthulhu/cthulhu_state.py index a4b547e..e2dee10 100644 --- a/src/cthulhu/cthulhu_state.py +++ b/src/cthulhu/cthulhu_state.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Holds state that is shared among many modules. """ diff --git a/src/cthulhu/date_and_time_presenter.py b/src/cthulhu/date_and_time_presenter.py index b8df145..a4a2bf9 100644 --- a/src/cthulhu/date_and_time_presenter.py +++ b/src/cthulhu/date_and_time_presenter.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Module for date and time presentation""" diff --git a/src/cthulhu/debug.py b/src/cthulhu/debug.py index 47a2566..febb9c3 100644 --- a/src/cthulhu/debug.py +++ b/src/cthulhu/debug.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides debug utilities for Cthulhu. Debugging is managed by a debug level, which is held in the debugLevel field. All other methods take diff --git a/src/cthulhu/desktop_keyboardmap.py b/src/cthulhu/desktop_keyboardmap.py index f447dde..1ce694c 100644 --- a/src/cthulhu/desktop_keyboardmap.py +++ b/src/cthulhu/desktop_keyboardmap.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ A list of common keybindings and unbound keys pulled out from default.py: __getDesktopBindings() diff --git a/src/cthulhu/dynamic_api_manager.py b/src/cthulhu/dynamic_api_manager.py index e377f75..e9a7bb3 100644 --- a/src/cthulhu/dynamic_api_manager.py +++ b/src/cthulhu/dynamic_api_manager.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import gi from gi.repository import GObject diff --git a/src/cthulhu/event_manager.py b/src/cthulhu/event_manager.py index 8f2db5d..6c35637 100644 --- a/src/cthulhu/event_manager.py +++ b/src/cthulhu/event_manager.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/find.py b/src/cthulhu/find.py index 5e567a1..7ad7e09 100644 --- a/src/cthulhu/find.py +++ b/src/cthulhu/find.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides support for a flat review find.""" diff --git a/src/cthulhu/flat_review.py b/src/cthulhu/flat_review.py index aecc0ce..7bab06d 100644 --- a/src/cthulhu/flat_review.py +++ b/src/cthulhu/flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides the default implementation for flat review for Cthulhu.""" diff --git a/src/cthulhu/flat_review_presenter.py b/src/cthulhu/flat_review_presenter.py index aff7c45..ea29ac1 100644 --- a/src/cthulhu/flat_review_presenter.py +++ b/src/cthulhu/flat_review_presenter.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Module for flat-review commands""" diff --git a/src/cthulhu/formatting.py b/src/cthulhu/formatting.py index ff0fdf6..0d42196 100644 --- a/src/cthulhu/formatting.py +++ b/src/cthulhu/formatting.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Manages the formatting settings for Cthulhu.""" diff --git a/src/cthulhu/generator.py b/src/cthulhu/generator.py index fe86343..7cf4cfa 100644 --- a/src/cthulhu/generator.py +++ b/src/cthulhu/generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Superclass of classes used to generate presentations for objects.""" diff --git a/src/cthulhu/guilabels.py b/src/cthulhu/guilabels.py index 7cefc9d..81eadbb 100644 --- a/src/cthulhu/guilabels.py +++ b/src/cthulhu/guilabels.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Labels for Cthulhu's GUIs. These have been put in their own module so that we can present them in the correct language when users change the language on the diff --git a/src/cthulhu/highlighter.py b/src/cthulhu/highlighter.py index cc6d581..961f0b8 100644 --- a/src/cthulhu/highlighter.py +++ b/src/cthulhu/highlighter.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Module for drawing highlights over an area of interest.""" diff --git a/src/cthulhu/input_event.py b/src/cthulhu/input_event.py index 87fd66a..a5d1add 100644 --- a/src/cthulhu/input_event.py +++ b/src/cthulhu/input_event.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides support for handling input events.""" diff --git a/src/cthulhu/keybindings.py b/src/cthulhu/keybindings.py index c3e682e..6ec9f49 100644 --- a/src/cthulhu/keybindings.py +++ b/src/cthulhu/keybindings.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides support for defining keybindings and matching them to input events.""" diff --git a/src/cthulhu/keynames.py b/src/cthulhu/keynames.py index 8da6411..642c236 100644 --- a/src/cthulhu/keynames.py +++ b/src/cthulhu/keynames.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Exposes a dictionary, keynames, that maps key events into localized words.""" diff --git a/src/cthulhu/label_inference.py b/src/cthulhu/label_inference.py index 2e614d8..75d1afa 100644 --- a/src/cthulhu/label_inference.py +++ b/src/cthulhu/label_inference.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Heuristic means to infer the functional/displayed label of a widget.""" diff --git a/src/cthulhu/laptop_keyboardmap.py b/src/cthulhu/laptop_keyboardmap.py index c4bcfda..fbfa2c8 100644 --- a/src/cthulhu/laptop_keyboardmap.py +++ b/src/cthulhu/laptop_keyboardmap.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ A list of common keybindings and unbound keys pulled out from default.py: __getLaptopBindings() diff --git a/src/cthulhu/learn_mode_presenter.py b/src/cthulhu/learn_mode_presenter.py index 6ff3fd3..5556750 100644 --- a/src/cthulhu/learn_mode_presenter.py +++ b/src/cthulhu/learn_mode_presenter.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Module for learn mode""" diff --git a/src/cthulhu/liveregions.py b/src/cthulhu/liveregions.py index 93a9c3a..e51ed85 100644 --- a/src/cthulhu/liveregions.py +++ b/src/cthulhu/liveregions.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import gi gi.require_version("Atspi", "2.0") diff --git a/src/cthulhu/logger.py b/src/cthulhu/logger.py index 74d3286..8de4614 100644 --- a/src/cthulhu/logger.py +++ b/src/cthulhu/logger.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Output logger for regression testing.""" diff --git a/src/cthulhu/mathsymbols.py b/src/cthulhu/mathsymbols.py index edec26b..d3f482c 100644 --- a/src/cthulhu/mathsymbols.py +++ b/src/cthulhu/mathsymbols.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/messages.py b/src/cthulhu/messages.py index 2187fad..8fd9505 100644 --- a/src/cthulhu/messages.py +++ b/src/cthulhu/messages.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Messages which Cthulhu presents in speech and/or braille. These have been put in their own module so that we can present them in @@ -314,7 +314,7 @@ CLI_GUI_SETUP = _("Set up user preferences (GUI version)") # Translators: This text is the description displayed when Cthulhu is launched # from the command line and the help text is displayed. -CLI_EPILOG = _("Report bugs to cthulhu-list@gnome.org.") +CLI_EPILOG = _("Report bugs to https://groups.io/g/stormux.") # Translators: Cthulhu normal speaks the text which was just deleted from a # document via command. Depending on the circumstances, that might be a diff --git a/src/cthulhu/mouse_review.py b/src/cthulhu/mouse_review.py index b758a81..fbe08e2 100644 --- a/src/cthulhu/mouse_review.py +++ b/src/cthulhu/mouse_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Mouse review mode.""" diff --git a/src/cthulhu/notification_presenter.py b/src/cthulhu/notification_presenter.py index 71e0a8b..b7ff978 100644 --- a/src/cthulhu/notification_presenter.py +++ b/src/cthulhu/notification_presenter.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Module for notification messages""" diff --git a/src/cthulhu/object_navigator.py b/src/cthulhu/object_navigator.py index bc01f6b..6459160 100644 --- a/src/cthulhu/object_navigator.py +++ b/src/cthulhu/object_navigator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides ability to navigate objects hierarchically.""" diff --git a/src/cthulhu/object_properties.py b/src/cthulhu/object_properties.py index 77e90e7..0c8e87b 100644 --- a/src/cthulhu/object_properties.py +++ b/src/cthulhu/object_properties.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Propeerties of accessible objects. These have been put in their own module so that we can present them in the correct language when users change the diff --git a/src/cthulhu/phonnames.py b/src/cthulhu/phonnames.py index 9032ac7..ad76f0c 100644 --- a/src/cthulhu/phonnames.py +++ b/src/cthulhu/phonnames.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides getPhoneticName method that maps each letter of the alphabet into its localized phonetic equivalent.""" diff --git a/src/cthulhu/plugins/ByeCthulhu/__init__.py b/src/cthulhu/plugins/ByeCthulhu/__init__.py index 782103c..301e5ea 100644 --- a/src/cthulhu/plugins/ByeCthulhu/__init__.py +++ b/src/cthulhu/plugins/ByeCthulhu/__init__.py @@ -20,6 +20,6 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu diff --git a/src/cthulhu/plugins/Clipboard/__init__.py b/src/cthulhu/plugins/Clipboard/__init__.py index 9531613..f4d7c3a 100644 --- a/src/cthulhu/plugins/Clipboard/__init__.py +++ b/src/cthulhu/plugins/Clipboard/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Clipboard plugin package.""" diff --git a/src/cthulhu/plugins/Clipboard/plugin.py b/src/cthulhu/plugins/Clipboard/plugin.py index 27e2f4e..6054c62 100644 --- a/src/cthulhu/plugins/Clipboard/plugin.py +++ b/src/cthulhu/plugins/Clipboard/plugin.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Clipboard plugin for Cthulhu.""" diff --git a/src/cthulhu/plugins/DisplayVersion/__init__.py b/src/cthulhu/plugins/DisplayVersion/__init__.py index 782103c..301e5ea 100644 --- a/src/cthulhu/plugins/DisplayVersion/__init__.py +++ b/src/cthulhu/plugins/DisplayVersion/__init__.py @@ -20,6 +20,6 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu diff --git a/src/cthulhu/plugins/HelloCthulhu/__init__.py b/src/cthulhu/plugins/HelloCthulhu/__init__.py index 782103c..301e5ea 100644 --- a/src/cthulhu/plugins/HelloCthulhu/__init__.py +++ b/src/cthulhu/plugins/HelloCthulhu/__init__.py @@ -20,6 +20,6 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu diff --git a/src/cthulhu/plugins/SimplePluginSystem/__init__.py b/src/cthulhu/plugins/SimplePluginSystem/__init__.py index 782103c..301e5ea 100644 --- a/src/cthulhu/plugins/SimplePluginSystem/__init__.py +++ b/src/cthulhu/plugins/SimplePluginSystem/__init__.py @@ -20,6 +20,6 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu diff --git a/src/cthulhu/plugins/hello_world/__init__.py b/src/cthulhu/plugins/hello_world/__init__.py index 782103c..301e5ea 100644 --- a/src/cthulhu/plugins/hello_world/__init__.py +++ b/src/cthulhu/plugins/hello_world/__init__.py @@ -20,6 +20,6 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu diff --git a/src/cthulhu/plugins/self_voice/__init__.py b/src/cthulhu/plugins/self_voice/__init__.py index 782103c..301e5ea 100644 --- a/src/cthulhu/plugins/self_voice/__init__.py +++ b/src/cthulhu/plugins/self_voice/__init__.py @@ -20,6 +20,6 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu diff --git a/src/cthulhu/pronunciation_dict.py b/src/cthulhu/pronunciation_dict.py index b199a44..d6c75fd 100644 --- a/src/cthulhu/pronunciation_dict.py +++ b/src/cthulhu/pronunciation_dict.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Exposes a dictionary, pronunciation_dict, that maps words to what they sound like.""" diff --git a/src/cthulhu/punctuation_settings.py b/src/cthulhu/punctuation_settings.py index 4f6ee32..f825685 100644 --- a/src/cthulhu/punctuation_settings.py +++ b/src/cthulhu/punctuation_settings.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Punctuation Verbosity settings. The Cthulhu punctuation settings are broken up into 4 modes. diff --git a/src/cthulhu/resource_manager.py b/src/cthulhu/resource_manager.py index d06705f..c768e10 100644 --- a/src/cthulhu/resource_manager.py +++ b/src/cthulhu/resource_manager.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import traceback diff --git a/src/cthulhu/script.py b/src/cthulhu/script.py index f6c7c0a..87fcb97 100644 --- a/src/cthulhu/script.py +++ b/src/cthulhu/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Each script maintains a set of key bindings, braille bindings, and AT-SPI event listeners. The key bindings are an instance of diff --git a/src/cthulhu/script_manager.py b/src/cthulhu/script_manager.py index f01c409..3969643 100644 --- a/src/cthulhu/script_manager.py +++ b/src/cthulhu/script_manager.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/script_utilities.py b/src/cthulhu/script_utilities.py index fce7fe6..e4b290a 100644 --- a/src/cthulhu/script_utilities.py +++ b/src/cthulhu/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Commonly-required utility methods needed by -- and potentially customized by -- application and toolkit scripts. They have diff --git a/src/cthulhu/scripts/__init__.py b/src/cthulhu/scripts/__init__.py index 782103c..301e5ea 100644 --- a/src/cthulhu/scripts/__init__.py +++ b/src/cthulhu/scripts/__init__.py @@ -20,6 +20,6 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu diff --git a/src/cthulhu/scripts/apps/Banshee/__init__.py b/src/cthulhu/scripts/apps/Banshee/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/apps/Banshee/__init__.py +++ b/src/cthulhu/scripts/apps/Banshee/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/apps/Banshee/script.py b/src/cthulhu/scripts/apps/Banshee/script.py index e7e0add..cb10841 100644 --- a/src/cthulhu/scripts/apps/Banshee/script.py +++ b/src/cthulhu/scripts/apps/Banshee/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import cthulhu.scripts.default as default import cthulhu.cthulhu_state as cthulhu_state diff --git a/src/cthulhu/scripts/apps/Banshee/script_utilities.py b/src/cthulhu/scripts/apps/Banshee/script_utilities.py index 3f833d3..b70f41c 100644 --- a/src/cthulhu/scripts/apps/Banshee/script_utilities.py +++ b/src/cthulhu/scripts/apps/Banshee/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import cthulhu.script_utilities as script_utilities from cthulhu.ax_object import AXObject diff --git a/src/cthulhu/scripts/apps/Eclipse/__init__.py b/src/cthulhu/scripts/apps/Eclipse/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/apps/Eclipse/__init__.py +++ b/src/cthulhu/scripts/apps/Eclipse/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/apps/Eclipse/script.py b/src/cthulhu/scripts/apps/Eclipse/script.py index 5b9b22e..426a43d 100644 --- a/src/cthulhu/scripts/apps/Eclipse/script.py +++ b/src/cthulhu/scripts/apps/Eclipse/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for Eclipse.""" __id__ = "$Id$" diff --git a/src/cthulhu/scripts/apps/SeaMonkey/__init__.py b/src/cthulhu/scripts/apps/SeaMonkey/__init__.py index c5216a2..ca4874a 100644 --- a/src/cthulhu/scripts/apps/SeaMonkey/__init__.py +++ b/src/cthulhu/scripts/apps/SeaMonkey/__init__.py @@ -20,12 +20,12 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for SeaMonkey.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/SeaMonkey/script.py b/src/cthulhu/scripts/apps/SeaMonkey/script.py index d3301d5..2322e0a 100644 --- a/src/cthulhu/scripts/apps/SeaMonkey/script.py +++ b/src/cthulhu/scripts/apps/SeaMonkey/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for SeaMonkey.""" diff --git a/src/cthulhu/scripts/apps/Thunderbird/__init__.py b/src/cthulhu/scripts/apps/Thunderbird/__init__.py index 95d8f9c..88b431a 100644 --- a/src/cthulhu/scripts/apps/Thunderbird/__init__.py +++ b/src/cthulhu/scripts/apps/Thunderbird/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Custom script for Thunderbird 3. """ @@ -32,6 +32,6 @@ __date__ = "$Date$" __copyright__ = "Copyright (c) 2005-2008 Sun Microsystems Inc." __license__ = "LGPL" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/Thunderbird/script.py b/src/cthulhu/scripts/apps/Thunderbird/script.py index e192dff..89c185c 100644 --- a/src/cthulhu/scripts/apps/Thunderbird/script.py +++ b/src/cthulhu/scripts/apps/Thunderbird/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for Thunderbird.""" diff --git a/src/cthulhu/scripts/apps/Thunderbird/script_utilities.py b/src/cthulhu/scripts/apps/Thunderbird/script_utilities.py index 90d7583..f09daa5 100644 --- a/src/cthulhu/scripts/apps/Thunderbird/script_utilities.py +++ b/src/cthulhu/scripts/apps/Thunderbird/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Thunderbird-specific utility overrides.""" diff --git a/src/cthulhu/scripts/apps/Thunderbird/spellcheck.py b/src/cthulhu/scripts/apps/Thunderbird/spellcheck.py index abbb8a1..ced90b5 100644 --- a/src/cthulhu/scripts/apps/Thunderbird/spellcheck.py +++ b/src/cthulhu/scripts/apps/Thunderbird/spellcheck.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Customized support for spellcheck in Thunderbird.""" diff --git a/src/cthulhu/scripts/apps/__init__.py b/src/cthulhu/scripts/apps/__init__.py index 4fa84d8..1d73da5 100644 --- a/src/cthulhu/scripts/apps/__init__.py +++ b/src/cthulhu/scripts/apps/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __all__ = ['Banshee', 'Eclipse', diff --git a/src/cthulhu/scripts/apps/epiphany/__init__.py b/src/cthulhu/scripts/apps/epiphany/__init__.py index 74133ed..9f97092 100644 --- a/src/cthulhu/scripts/apps/epiphany/__init__.py +++ b/src/cthulhu/scripts/apps/epiphany/__init__.py @@ -20,12 +20,12 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for epiphany.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/epiphany/script.py b/src/cthulhu/scripts/apps/epiphany/script.py index 13db3cc..6792b8c 100644 --- a/src/cthulhu/scripts/apps/epiphany/script.py +++ b/src/cthulhu/scripts/apps/epiphany/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for epiphany.""" diff --git a/src/cthulhu/scripts/apps/evince/__init__.py b/src/cthulhu/scripts/apps/evince/__init__.py index 92d06d1..18e4096 100644 --- a/src/cthulhu/scripts/apps/evince/__init__.py +++ b/src/cthulhu/scripts/apps/evince/__init__.py @@ -20,11 +20,11 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for evince.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/evince/script.py b/src/cthulhu/scripts/apps/evince/script.py index b8c2b0e..c0bd333 100644 --- a/src/cthulhu/scripts/apps/evince/script.py +++ b/src/cthulhu/scripts/apps/evince/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for evince.""" diff --git a/src/cthulhu/scripts/apps/evolution/__init__.py b/src/cthulhu/scripts/apps/evolution/__init__.py index 87978a5..2570c89 100644 --- a/src/cthulhu/scripts/apps/evolution/__init__.py +++ b/src/cthulhu/scripts/apps/evolution/__init__.py @@ -20,11 +20,11 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for Evolution.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/evolution/braille_generator.py b/src/cthulhu/scripts/apps/evolution/braille_generator.py index 666d57e..462d467 100644 --- a/src/cthulhu/scripts/apps/evolution/braille_generator.py +++ b/src/cthulhu/scripts/apps/evolution/braille_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/apps/evolution/script.py b/src/cthulhu/scripts/apps/evolution/script.py index 9630530..d716712 100644 --- a/src/cthulhu/scripts/apps/evolution/script.py +++ b/src/cthulhu/scripts/apps/evolution/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for Evolution.""" diff --git a/src/cthulhu/scripts/apps/evolution/script_utilities.py b/src/cthulhu/scripts/apps/evolution/script_utilities.py index 53709ba..54bc9ab 100644 --- a/src/cthulhu/scripts/apps/evolution/script_utilities.py +++ b/src/cthulhu/scripts/apps/evolution/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/apps/evolution/speech_generator.py b/src/cthulhu/scripts/apps/evolution/speech_generator.py index 0625ed9..9157133 100644 --- a/src/cthulhu/scripts/apps/evolution/speech_generator.py +++ b/src/cthulhu/scripts/apps/evolution/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/apps/gajim/__init__.py b/src/cthulhu/scripts/apps/gajim/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/apps/gajim/__init__.py +++ b/src/cthulhu/scripts/apps/gajim/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/apps/gajim/script.py b/src/cthulhu/scripts/apps/gajim/script.py index e26517c..4161f08 100644 --- a/src/cthulhu/scripts/apps/gajim/script.py +++ b/src/cthulhu/scripts/apps/gajim/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for Gajim.""" diff --git a/src/cthulhu/scripts/apps/gcalctool/__init__.py b/src/cthulhu/scripts/apps/gcalctool/__init__.py index 87978a5..2570c89 100644 --- a/src/cthulhu/scripts/apps/gcalctool/__init__.py +++ b/src/cthulhu/scripts/apps/gcalctool/__init__.py @@ -20,11 +20,11 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for Evolution.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/gcalctool/script.py b/src/cthulhu/scripts/apps/gcalctool/script.py index 9b10f66..099b941 100644 --- a/src/cthulhu/scripts/apps/gcalctool/script.py +++ b/src/cthulhu/scripts/apps/gcalctool/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides a custom script for gcalctool.""" diff --git a/src/cthulhu/scripts/apps/gedit/__init__.py b/src/cthulhu/scripts/apps/gedit/__init__.py index 935e252..7dc74c9 100644 --- a/src/cthulhu/scripts/apps/gedit/__init__.py +++ b/src/cthulhu/scripts/apps/gedit/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for gedit.""" @@ -31,6 +31,6 @@ __date__ = "$Date$" __copyright__ = "Copyright (c) 2005-2008 Sun Microsystems Inc." __license__ = "LGPL" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/gedit/script.py b/src/cthulhu/scripts/apps/gedit/script.py index 291e7ff..ebc3b54 100644 --- a/src/cthulhu/scripts/apps/gedit/script.py +++ b/src/cthulhu/scripts/apps/gedit/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for gedit.""" diff --git a/src/cthulhu/scripts/apps/gedit/spellcheck.py b/src/cthulhu/scripts/apps/gedit/spellcheck.py index 78c775d..ff4dc0f 100644 --- a/src/cthulhu/scripts/apps/gedit/spellcheck.py +++ b/src/cthulhu/scripts/apps/gedit/spellcheck.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Customized support for spellcheck in Gedit.""" diff --git a/src/cthulhu/scripts/apps/gnome-documents/__init__.py b/src/cthulhu/scripts/apps/gnome-documents/__init__.py index fc73e57..7020fea 100644 --- a/src/cthulhu/scripts/apps/gnome-documents/__init__.py +++ b/src/cthulhu/scripts/apps/gnome-documents/__init__.py @@ -20,12 +20,12 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for gnome-documents.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script from .script_utilities import Utilities diff --git a/src/cthulhu/scripts/apps/gnome-documents/script.py b/src/cthulhu/scripts/apps/gnome-documents/script.py index f891976..f8f926a 100644 --- a/src/cthulhu/scripts/apps/gnome-documents/script.py +++ b/src/cthulhu/scripts/apps/gnome-documents/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for gnome-documents.""" diff --git a/src/cthulhu/scripts/apps/gnome-documents/script_utilities.py b/src/cthulhu/scripts/apps/gnome-documents/script_utilities.py index a889953..6080a9c 100644 --- a/src/cthulhu/scripts/apps/gnome-documents/script_utilities.py +++ b/src/cthulhu/scripts/apps/gnome-documents/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/apps/gnome-documents/speech_generator.py b/src/cthulhu/scripts/apps/gnome-documents/speech_generator.py index c7c026a..050193a 100644 --- a/src/cthulhu/scripts/apps/gnome-documents/speech_generator.py +++ b/src/cthulhu/scripts/apps/gnome-documents/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom speech generator for gnome-documents.""" diff --git a/src/cthulhu/scripts/apps/gnome-shell/__init__.py b/src/cthulhu/scripts/apps/gnome-shell/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/apps/gnome-shell/__init__.py +++ b/src/cthulhu/scripts/apps/gnome-shell/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/apps/gnome-shell/formatting.py b/src/cthulhu/scripts/apps/gnome-shell/formatting.py index 7ecbfa5..1893347 100644 --- a/src/cthulhu/scripts/apps/gnome-shell/formatting.py +++ b/src/cthulhu/scripts/apps/gnome-shell/formatting.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/apps/gnome-shell/script.py b/src/cthulhu/scripts/apps/gnome-shell/script.py index 578c30e..4789f1d 100644 --- a/src/cthulhu/scripts/apps/gnome-shell/script.py +++ b/src/cthulhu/scripts/apps/gnome-shell/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/apps/gnome-shell/script_utilities.py b/src/cthulhu/scripts/apps/gnome-shell/script_utilities.py index 091151f..4c6c4bc 100644 --- a/src/cthulhu/scripts/apps/gnome-shell/script_utilities.py +++ b/src/cthulhu/scripts/apps/gnome-shell/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/apps/kwin/__init__.py b/src/cthulhu/scripts/apps/kwin/__init__.py index 470f7b8..99c9ba5 100644 --- a/src/cthulhu/scripts/apps/kwin/__init__.py +++ b/src/cthulhu/scripts/apps/kwin/__init__.py @@ -20,12 +20,12 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for kwin.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/kwin/script.py b/src/cthulhu/scripts/apps/kwin/script.py index f26e7bf..dd05c9a 100644 --- a/src/cthulhu/scripts/apps/kwin/script.py +++ b/src/cthulhu/scripts/apps/kwin/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for kwin.""" diff --git a/src/cthulhu/scripts/apps/kwin/script_utilities.py b/src/cthulhu/scripts/apps/kwin/script_utilities.py index a87d152..5c9dcf5 100644 --- a/src/cthulhu/scripts/apps/kwin/script_utilities.py +++ b/src/cthulhu/scripts/apps/kwin/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/apps/notification-daemon/__init__.py b/src/cthulhu/scripts/apps/notification-daemon/__init__.py index e782ac8..0fa412f 100644 --- a/src/cthulhu/scripts/apps/notification-daemon/__init__.py +++ b/src/cthulhu/scripts/apps/notification-daemon/__init__.py @@ -20,12 +20,12 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Custom script for notification daemon.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/notification-daemon/script.py b/src/cthulhu/scripts/apps/notification-daemon/script.py index 41eeebe..52861b7 100644 --- a/src/cthulhu/scripts/apps/notification-daemon/script.py +++ b/src/cthulhu/scripts/apps/notification-daemon/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Custom script for The notification daemon.""" diff --git a/src/cthulhu/scripts/apps/notify-osd/__init__.py b/src/cthulhu/scripts/apps/notify-osd/__init__.py index b8d617c..6696eff 100644 --- a/src/cthulhu/scripts/apps/notify-osd/__init__.py +++ b/src/cthulhu/scripts/apps/notify-osd/__init__.py @@ -20,12 +20,12 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Custom script for The notify-osd""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/notify-osd/script.py b/src/cthulhu/scripts/apps/notify-osd/script.py index b541bb4..3ee1b0c 100644 --- a/src/cthulhu/scripts/apps/notify-osd/script.py +++ b/src/cthulhu/scripts/apps/notify-osd/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """ Custom script for The notify-osd""" diff --git a/src/cthulhu/scripts/apps/pidgin/__init__.py b/src/cthulhu/scripts/apps/pidgin/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/apps/pidgin/__init__.py +++ b/src/cthulhu/scripts/apps/pidgin/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/apps/pidgin/chat.py b/src/cthulhu/scripts/apps/pidgin/chat.py index c7cfc39..2c92b70 100644 --- a/src/cthulhu/scripts/apps/pidgin/chat.py +++ b/src/cthulhu/scripts/apps/pidgin/chat.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom chat module for Pidgin.""" diff --git a/src/cthulhu/scripts/apps/pidgin/script.py b/src/cthulhu/scripts/apps/pidgin/script.py index 3f65fd5..046ce21 100644 --- a/src/cthulhu/scripts/apps/pidgin/script.py +++ b/src/cthulhu/scripts/apps/pidgin/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for pidgin.""" diff --git a/src/cthulhu/scripts/apps/pidgin/script_utilities.py b/src/cthulhu/scripts/apps/pidgin/script_utilities.py index eb3349c..9784012 100644 --- a/src/cthulhu/scripts/apps/pidgin/script_utilities.py +++ b/src/cthulhu/scripts/apps/pidgin/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Commonly-required utility methods needed by -- and potentially customized by -- application and toolkit scripts. They have diff --git a/src/cthulhu/scripts/apps/pidgin/speech_generator.py b/src/cthulhu/scripts/apps/pidgin/speech_generator.py index 80ebe1a..ccf0978 100644 --- a/src/cthulhu/scripts/apps/pidgin/speech_generator.py +++ b/src/cthulhu/scripts/apps/pidgin/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/apps/smuxi-frontend-gnome/__init__.py b/src/cthulhu/scripts/apps/smuxi-frontend-gnome/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/apps/smuxi-frontend-gnome/__init__.py +++ b/src/cthulhu/scripts/apps/smuxi-frontend-gnome/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/apps/smuxi-frontend-gnome/chat.py b/src/cthulhu/scripts/apps/smuxi-frontend-gnome/chat.py index bbfeaaf..b307c99 100644 --- a/src/cthulhu/scripts/apps/smuxi-frontend-gnome/chat.py +++ b/src/cthulhu/scripts/apps/smuxi-frontend-gnome/chat.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom chat module for Smuxi.""" diff --git a/src/cthulhu/scripts/apps/smuxi-frontend-gnome/script.py b/src/cthulhu/scripts/apps/smuxi-frontend-gnome/script.py index edfb179..0118954 100644 --- a/src/cthulhu/scripts/apps/smuxi-frontend-gnome/script.py +++ b/src/cthulhu/scripts/apps/smuxi-frontend-gnome/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for Smuxi.""" diff --git a/src/cthulhu/scripts/apps/soffice/__init__.py b/src/cthulhu/scripts/apps/soffice/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/apps/soffice/__init__.py +++ b/src/cthulhu/scripts/apps/soffice/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/apps/soffice/braille_generator.py b/src/cthulhu/scripts/apps/soffice/braille_generator.py index 02c6a3c..dc12fac 100644 --- a/src/cthulhu/scripts/apps/soffice/braille_generator.py +++ b/src/cthulhu/scripts/apps/soffice/braille_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for StarOffice and OpenOffice.""" diff --git a/src/cthulhu/scripts/apps/soffice/formatting.py b/src/cthulhu/scripts/apps/soffice/formatting.py index 985bf47..de453f1 100644 --- a/src/cthulhu/scripts/apps/soffice/formatting.py +++ b/src/cthulhu/scripts/apps/soffice/formatting.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom formatting for OpenOffice and StarOffice.""" diff --git a/src/cthulhu/scripts/apps/soffice/script.py b/src/cthulhu/scripts/apps/soffice/script.py index 5266eb5..70f0d71 100644 --- a/src/cthulhu/scripts/apps/soffice/script.py +++ b/src/cthulhu/scripts/apps/soffice/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for LibreOffice.""" diff --git a/src/cthulhu/scripts/apps/soffice/script_utilities.py b/src/cthulhu/scripts/apps/soffice/script_utilities.py index e088aaa..dc7447a 100644 --- a/src/cthulhu/scripts/apps/soffice/script_utilities.py +++ b/src/cthulhu/scripts/apps/soffice/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Commonly-required utility methods needed by -- and potentially customized by -- application and toolkit scripts. They have diff --git a/src/cthulhu/scripts/apps/soffice/speech_generator.py b/src/cthulhu/scripts/apps/soffice/speech_generator.py index e7afee9..c193108 100644 --- a/src/cthulhu/scripts/apps/soffice/speech_generator.py +++ b/src/cthulhu/scripts/apps/soffice/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for StarOffice and OpenOffice.""" diff --git a/src/cthulhu/scripts/apps/soffice/spellcheck.py b/src/cthulhu/scripts/apps/soffice/spellcheck.py index 3bf0fe3..395e817 100644 --- a/src/cthulhu/scripts/apps/soffice/spellcheck.py +++ b/src/cthulhu/scripts/apps/soffice/spellcheck.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Customized support for spellcheck in LibreOffice.""" diff --git a/src/cthulhu/scripts/apps/xfwm4/__init__.py b/src/cthulhu/scripts/apps/xfwm4/__init__.py index 0d25fd0..a2a1c8a 100644 --- a/src/cthulhu/scripts/apps/xfwm4/__init__.py +++ b/src/cthulhu/scripts/apps/xfwm4/__init__.py @@ -20,12 +20,12 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for xfwm4.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/apps/xfwm4/script.py b/src/cthulhu/scripts/apps/xfwm4/script.py index 68f14e6..98ffc95 100644 --- a/src/cthulhu/scripts/apps/xfwm4/script.py +++ b/src/cthulhu/scripts/apps/xfwm4/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for xfwm4.""" diff --git a/src/cthulhu/scripts/default.py b/src/cthulhu/scripts/default.py index 8c38dfc..c5d4b85 100644 --- a/src/cthulhu/scripts/default.py +++ b/src/cthulhu/scripts/default.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """The default Script for presenting information to the user using both speech and Braille. This is based primarily on the de-facto diff --git a/src/cthulhu/scripts/self_voicing.py b/src/cthulhu/scripts/self_voicing.py index e49ec2e..20f0dc7 100644 --- a/src/cthulhu/scripts/self_voicing.py +++ b/src/cthulhu/scripts/self_voicing.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """A script to do nothing. This is for self-voicing apps.""" diff --git a/src/cthulhu/scripts/sleepmode/__init__.py b/src/cthulhu/scripts/sleepmode/__init__.py index 241725e..185d4a1 100644 --- a/src/cthulhu/scripts/sleepmode/__init__.py +++ b/src/cthulhu/scripts/sleepmode/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Sleep mode script for Cthulhu.""" diff --git a/src/cthulhu/scripts/sleepmode/braille_generator.py b/src/cthulhu/scripts/sleepmode/braille_generator.py index abe134d..4edf484 100644 --- a/src/cthulhu/scripts/sleepmode/braille_generator.py +++ b/src/cthulhu/scripts/sleepmode/braille_generator.py @@ -19,8 +19,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Braille Generator for Sleep Mode. Does nothing.""" diff --git a/src/cthulhu/scripts/sleepmode/script.py b/src/cthulhu/scripts/sleepmode/script.py index 58f8b3e..2042856 100644 --- a/src/cthulhu/scripts/sleepmode/script.py +++ b/src/cthulhu/scripts/sleepmode/script.py @@ -19,8 +19,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Script for sleep mode where Cthulhu ignores events and commands. diff --git a/src/cthulhu/scripts/sleepmode/script_utilities.py b/src/cthulhu/scripts/sleepmode/script_utilities.py index 13c5ee5..0744a41 100644 --- a/src/cthulhu/scripts/sleepmode/script_utilities.py +++ b/src/cthulhu/scripts/sleepmode/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Utilities for Sleep Mode. Helps ensure we do nothing. When nothing is done, nothing is left undone.""" diff --git a/src/cthulhu/scripts/sleepmode/speech_generator.py b/src/cthulhu/scripts/sleepmode/speech_generator.py index 686d1cf..37da1df 100644 --- a/src/cthulhu/scripts/sleepmode/speech_generator.py +++ b/src/cthulhu/scripts/sleepmode/speech_generator.py @@ -19,8 +19,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Speech Generator for Sleep Mode. Does nothing.""" diff --git a/src/cthulhu/scripts/switcher/__init__.py b/src/cthulhu/scripts/switcher/__init__.py index 1a92748..348807d 100644 --- a/src/cthulhu/scripts/switcher/__init__.py +++ b/src/cthulhu/scripts/switcher/__init__.py @@ -20,12 +20,12 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for basic switchers like Metacity.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script from .script_utilities import Utilities diff --git a/src/cthulhu/scripts/switcher/script.py b/src/cthulhu/scripts/switcher/script.py index 4c8ae34..e3e40a7 100644 --- a/src/cthulhu/scripts/switcher/script.py +++ b/src/cthulhu/scripts/switcher/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for basic switchers like Metacity.""" diff --git a/src/cthulhu/scripts/switcher/script_utilities.py b/src/cthulhu/scripts/switcher/script_utilities.py index 90a870f..cc4d21a 100644 --- a/src/cthulhu/scripts/switcher/script_utilities.py +++ b/src/cthulhu/scripts/switcher/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/terminal/__init__.py b/src/cthulhu/scripts/terminal/__init__.py index 2eb914f..57ee8c8 100644 --- a/src/cthulhu/scripts/terminal/__init__.py +++ b/src/cthulhu/scripts/terminal/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .braille_generator import BrailleGenerator from .script import Script diff --git a/src/cthulhu/scripts/terminal/braille_generator.py b/src/cthulhu/scripts/terminal/braille_generator.py index fb51d18..1854e20 100644 --- a/src/cthulhu/scripts/terminal/braille_generator.py +++ b/src/cthulhu/scripts/terminal/braille_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/terminal/script.py b/src/cthulhu/scripts/terminal/script.py index 055c732..ae3c41f 100644 --- a/src/cthulhu/scripts/terminal/script.py +++ b/src/cthulhu/scripts/terminal/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/terminal/script_utilities.py b/src/cthulhu/scripts/terminal/script_utilities.py index ed31327..81a9c10 100644 --- a/src/cthulhu/scripts/terminal/script_utilities.py +++ b/src/cthulhu/scripts/terminal/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/terminal/speech_generator.py b/src/cthulhu/scripts/terminal/speech_generator.py index 7f948d9..76b4708 100644 --- a/src/cthulhu/scripts/terminal/speech_generator.py +++ b/src/cthulhu/scripts/terminal/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/Chromium/__init__.py b/src/cthulhu/scripts/toolkits/Chromium/__init__.py index 82fc251..44f2022 100644 --- a/src/cthulhu/scripts/toolkits/Chromium/__init__.py +++ b/src/cthulhu/scripts/toolkits/Chromium/__init__.py @@ -20,11 +20,11 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for Chromium.""" -# https://gitlab.gnome.org/GNOME/cthulhu/-/issues/358 +# https://git.stormux.org/storm/cthulhu # ruff: noqa: F401 from .script import Script diff --git a/src/cthulhu/scripts/toolkits/Chromium/braille_generator.py b/src/cthulhu/scripts/toolkits/Chromium/braille_generator.py index a8ba75f..fb1ddfa 100644 --- a/src/cthulhu/scripts/toolkits/Chromium/braille_generator.py +++ b/src/cthulhu/scripts/toolkits/Chromium/braille_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom braille generator for Chromium.""" diff --git a/src/cthulhu/scripts/toolkits/Chromium/script.py b/src/cthulhu/scripts/toolkits/Chromium/script.py index 45ed7d1..a9086a3 100644 --- a/src/cthulhu/scripts/toolkits/Chromium/script.py +++ b/src/cthulhu/scripts/toolkits/Chromium/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for Chromium.""" diff --git a/src/cthulhu/scripts/toolkits/Chromium/script_utilities.py b/src/cthulhu/scripts/toolkits/Chromium/script_utilities.py index 5c8793b..537ed0a 100644 --- a/src/cthulhu/scripts/toolkits/Chromium/script_utilities.py +++ b/src/cthulhu/scripts/toolkits/Chromium/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script utilities for Chromium""" diff --git a/src/cthulhu/scripts/toolkits/Chromium/speech_generator.py b/src/cthulhu/scripts/toolkits/Chromium/speech_generator.py index f5b4e97..5ee0e38 100644 --- a/src/cthulhu/scripts/toolkits/Chromium/speech_generator.py +++ b/src/cthulhu/scripts/toolkits/Chromium/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom speech generator for Chromium.""" diff --git a/src/cthulhu/scripts/toolkits/GAIL/__init__.py b/src/cthulhu/scripts/toolkits/GAIL/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/toolkits/GAIL/__init__.py +++ b/src/cthulhu/scripts/toolkits/GAIL/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/toolkits/GAIL/script.py b/src/cthulhu/scripts/toolkits/GAIL/script.py index 15d2226..e2bfbbd 100644 --- a/src/cthulhu/scripts/toolkits/GAIL/script.py +++ b/src/cthulhu/scripts/toolkits/GAIL/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/GAIL/script_utilities.py b/src/cthulhu/scripts/toolkits/GAIL/script_utilities.py index c04a533..d1ff789 100644 --- a/src/cthulhu/scripts/toolkits/GAIL/script_utilities.py +++ b/src/cthulhu/scripts/toolkits/GAIL/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/Gecko/__init__.py b/src/cthulhu/scripts/toolkits/Gecko/__init__.py index 1cc055f..fec8f65 100644 --- a/src/cthulhu/scripts/toolkits/Gecko/__init__.py +++ b/src/cthulhu/scripts/toolkits/Gecko/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script from .script_utilities import Utilities diff --git a/src/cthulhu/scripts/toolkits/Gecko/script.py b/src/cthulhu/scripts/toolkits/Gecko/script.py index 50325d5..54d14ff 100644 --- a/src/cthulhu/scripts/toolkits/Gecko/script.py +++ b/src/cthulhu/scripts/toolkits/Gecko/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/Gecko/script_utilities.py b/src/cthulhu/scripts/toolkits/Gecko/script_utilities.py index 826b74b..c2c6e37 100644 --- a/src/cthulhu/scripts/toolkits/Gecko/script_utilities.py +++ b/src/cthulhu/scripts/toolkits/Gecko/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Commonly-required utility methods needed by -- and potentially customized by -- application and toolkit scripts. They have diff --git a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/__init__.py b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/__init__.py index 9a70c54..26d05ee 100644 --- a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/__init__.py +++ b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script from .speech_generator import SpeechGenerator diff --git a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/formatting.py b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/formatting.py index d17a42d..5af62ff 100644 --- a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/formatting.py +++ b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/formatting.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom formatting for Java Swing.""" diff --git a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/script.py b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/script.py index 49fca20..6b21134 100644 --- a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/script.py +++ b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/script_utilities.py b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/script_utilities.py index 0bdd0bb..b64f15e 100644 --- a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/script_utilities.py +++ b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Commonly-required utility methods needed by -- and potentially customized by -- application and toolkit scripts. They have diff --git a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/speech_generator.py b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/speech_generator.py index f3ca517..0ed6fdc 100644 --- a/src/cthulhu/scripts/toolkits/J2SE-access-bridge/speech_generator.py +++ b/src/cthulhu/scripts/toolkits/J2SE-access-bridge/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/Qt/__init__.py b/src/cthulhu/scripts/toolkits/Qt/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/toolkits/Qt/__init__.py +++ b/src/cthulhu/scripts/toolkits/Qt/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/toolkits/Qt/script.py b/src/cthulhu/scripts/toolkits/Qt/script.py index 490fd25..e61c975 100644 --- a/src/cthulhu/scripts/toolkits/Qt/script.py +++ b/src/cthulhu/scripts/toolkits/Qt/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/Qt/script_utilities.py b/src/cthulhu/scripts/toolkits/Qt/script_utilities.py index 37c0569..adc84b1 100644 --- a/src/cthulhu/scripts/toolkits/Qt/script_utilities.py +++ b/src/cthulhu/scripts/toolkits/Qt/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/VCL.py b/src/cthulhu/scripts/toolkits/VCL.py index ec98218..11f7e16 100644 --- a/src/cthulhu/scripts/toolkits/VCL.py +++ b/src/cthulhu/scripts/toolkits/VCL.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Custom script for VCL toolkit (OpenOffice) applications""" diff --git a/src/cthulhu/scripts/toolkits/WebKitGtk/__init__.py b/src/cthulhu/scripts/toolkits/WebKitGtk/__init__.py index 923e857..0ecdbf7 100644 --- a/src/cthulhu/scripts/toolkits/WebKitGtk/__init__.py +++ b/src/cthulhu/scripts/toolkits/WebKitGtk/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script from .speech_generator import SpeechGenerator diff --git a/src/cthulhu/scripts/toolkits/WebKitGtk/braille_generator.py b/src/cthulhu/scripts/toolkits/WebKitGtk/braille_generator.py index d8af82c..53804cc 100644 --- a/src/cthulhu/scripts/toolkits/WebKitGtk/braille_generator.py +++ b/src/cthulhu/scripts/toolkits/WebKitGtk/braille_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/WebKitGtk/script.py b/src/cthulhu/scripts/toolkits/WebKitGtk/script.py index 7e017e5..22c4c9f 100644 --- a/src/cthulhu/scripts/toolkits/WebKitGtk/script.py +++ b/src/cthulhu/scripts/toolkits/WebKitGtk/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/WebKitGtk/script_utilities.py b/src/cthulhu/scripts/toolkits/WebKitGtk/script_utilities.py index 4020c1f..73019a2 100644 --- a/src/cthulhu/scripts/toolkits/WebKitGtk/script_utilities.py +++ b/src/cthulhu/scripts/toolkits/WebKitGtk/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/WebKitGtk/speech_generator.py b/src/cthulhu/scripts/toolkits/WebKitGtk/speech_generator.py index 6f47e37..3ffb46b 100644 --- a/src/cthulhu/scripts/toolkits/WebKitGtk/speech_generator.py +++ b/src/cthulhu/scripts/toolkits/WebKitGtk/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/__init__.py b/src/cthulhu/scripts/toolkits/__init__.py index 182fd90..0b6f488 100644 --- a/src/cthulhu/scripts/toolkits/__init__.py +++ b/src/cthulhu/scripts/toolkits/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __all__ = ['clutter', 'Chromium', diff --git a/src/cthulhu/scripts/toolkits/clutter/__init__.py b/src/cthulhu/scripts/toolkits/clutter/__init__.py index 91372dc..b006f6c 100644 --- a/src/cthulhu/scripts/toolkits/clutter/__init__.py +++ b/src/cthulhu/scripts/toolkits/clutter/__init__.py @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script diff --git a/src/cthulhu/scripts/toolkits/clutter/script.py b/src/cthulhu/scripts/toolkits/clutter/script.py index 2393eec..20d6331 100644 --- a/src/cthulhu/scripts/toolkits/clutter/script.py +++ b/src/cthulhu/scripts/toolkits/clutter/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/clutter/script_utilities.py b/src/cthulhu/scripts/toolkits/clutter/script_utilities.py index f2807b1..cdf87d5 100644 --- a/src/cthulhu/scripts/toolkits/clutter/script_utilities.py +++ b/src/cthulhu/scripts/toolkits/clutter/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/gtk/__init__.py b/src/cthulhu/scripts/toolkits/gtk/__init__.py index 1cc055f..fec8f65 100644 --- a/src/cthulhu/scripts/toolkits/gtk/__init__.py +++ b/src/cthulhu/scripts/toolkits/gtk/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script from .script_utilities import Utilities diff --git a/src/cthulhu/scripts/toolkits/gtk/script.py b/src/cthulhu/scripts/toolkits/gtk/script.py index 26f25ec..902ec31 100644 --- a/src/cthulhu/scripts/toolkits/gtk/script.py +++ b/src/cthulhu/scripts/toolkits/gtk/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/toolkits/gtk/script_utilities.py b/src/cthulhu/scripts/toolkits/gtk/script_utilities.py index 4ffb7d4..3892bf9 100644 --- a/src/cthulhu/scripts/toolkits/gtk/script_utilities.py +++ b/src/cthulhu/scripts/toolkits/gtk/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/web/__init__.py b/src/cthulhu/scripts/web/__init__.py index be2a0f6..2fc8955 100644 --- a/src/cthulhu/scripts/web/__init__.py +++ b/src/cthulhu/scripts/web/__init__.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from .script import Script from .speech_generator import SpeechGenerator diff --git a/src/cthulhu/scripts/web/bookmarks.py b/src/cthulhu/scripts/web/bookmarks.py index 5610f75..8b87d47 100644 --- a/src/cthulhu/scripts/web/bookmarks.py +++ b/src/cthulhu/scripts/web/bookmarks.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/web/braille_generator.py b/src/cthulhu/scripts/web/braille_generator.py index deec6b1..af91208 100644 --- a/src/cthulhu/scripts/web/braille_generator.py +++ b/src/cthulhu/scripts/web/braille_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/web/script.py b/src/cthulhu/scripts/web/script.py index 4cf2aad..7116285 100644 --- a/src/cthulhu/scripts/web/script.py +++ b/src/cthulhu/scripts/web/script.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/web/script_utilities.py b/src/cthulhu/scripts/web/script_utilities.py index e6ab008..c5f82f9 100644 --- a/src/cthulhu/scripts/web/script_utilities.py +++ b/src/cthulhu/scripts/web/script_utilities.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/web/sound_generator.py b/src/cthulhu/scripts/web/sound_generator.py index 987a854..8c34de3 100644 --- a/src/cthulhu/scripts/web/sound_generator.py +++ b/src/cthulhu/scripts/web/sound_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Utilities for obtaining sounds to be presented for objects.""" diff --git a/src/cthulhu/scripts/web/speech_generator.py b/src/cthulhu/scripts/web/speech_generator.py index 66d418b..4d07b76 100644 --- a/src/cthulhu/scripts/web/speech_generator.py +++ b/src/cthulhu/scripts/web/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/scripts/web/tutorial_generator.py b/src/cthulhu/scripts/web/tutorial_generator.py index b9dfb42..bf17e0a 100644 --- a/src/cthulhu/scripts/web/tutorial_generator.py +++ b/src/cthulhu/scripts/web/tutorial_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu __id__ = "$Id$" __version__ = "$Revision$" diff --git a/src/cthulhu/settings.py b/src/cthulhu/settings.py index fd92e25..79cd8b9 100644 --- a/src/cthulhu/settings.py +++ b/src/cthulhu/settings.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Manages the settings for Cthulhu. This will defer to user settings first, but fallback to local settings if the user settings doesn't exist (e.g., in the diff --git a/src/cthulhu/settings_manager.py b/src/cthulhu/settings_manager.py index 46ab9f7..6d1cba6 100644 --- a/src/cthulhu/settings_manager.py +++ b/src/cthulhu/settings_manager.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Settings manager module. This will load/save user settings from a defined settings backend.""" diff --git a/src/cthulhu/signal_manager.py b/src/cthulhu/signal_manager.py index 72e3dce..22ad931 100644 --- a/src/cthulhu/signal_manager.py +++ b/src/cthulhu/signal_manager.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import gi from gi.repository import GObject diff --git a/src/cthulhu/sleep_mode_manager.py b/src/cthulhu/sleep_mode_manager.py index 0bc28c3..6601d82 100644 --- a/src/cthulhu/sleep_mode_manager.py +++ b/src/cthulhu/sleep_mode_manager.py @@ -19,8 +19,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Module for sleep mode management.""" diff --git a/src/cthulhu/sound.py b/src/cthulhu/sound.py index c435aa2..575a32a 100644 --- a/src/cthulhu/sound.py +++ b/src/cthulhu/sound.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Utilities for playing sounds.""" diff --git a/src/cthulhu/sound_generator.py b/src/cthulhu/sound_generator.py index 5c57af0..0b0246b 100644 --- a/src/cthulhu/sound_generator.py +++ b/src/cthulhu/sound_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Utilities for obtaining sounds to be presented for objects.""" diff --git a/src/cthulhu/speech.py b/src/cthulhu/speech.py index 6cd8b5b..3b394a0 100644 --- a/src/cthulhu/speech.py +++ b/src/cthulhu/speech.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Manages the default speech server for cthulhu. A script can use this as its speech server, or it can feel free to create one of its own.""" diff --git a/src/cthulhu/speech_and_verbosity_manager.py b/src/cthulhu/speech_and_verbosity_manager.py index ddf71da..c8cf216 100644 --- a/src/cthulhu/speech_and_verbosity_manager.py +++ b/src/cthulhu/speech_and_verbosity_manager.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Module for configuring speech and verbosity settings.""" diff --git a/src/cthulhu/speech_generator.py b/src/cthulhu/speech_generator.py index b77143d..4daef6f 100644 --- a/src/cthulhu/speech_generator.py +++ b/src/cthulhu/speech_generator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Utilities for obtaining speech utterances for objects.""" diff --git a/src/cthulhu/speechdispatcherfactory.py b/src/cthulhu/speechdispatcherfactory.py index efb6297..5c88e2d 100644 --- a/src/cthulhu/speechdispatcherfactory.py +++ b/src/cthulhu/speechdispatcherfactory.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides an Cthulhu speech server for Speech Dispatcher backend.""" diff --git a/src/cthulhu/speechserver.py b/src/cthulhu/speechserver.py index 3901b67..eb95d82 100644 --- a/src/cthulhu/speechserver.py +++ b/src/cthulhu/speechserver.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides an abtract class for working with speech servers. diff --git a/src/cthulhu/spellcheck.py b/src/cthulhu/spellcheck.py index 348cb93..9e53b12 100644 --- a/src/cthulhu/spellcheck.py +++ b/src/cthulhu/spellcheck.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Script-customizable support for application spellcheckers.""" diff --git a/src/cthulhu/structural_navigation.py b/src/cthulhu/structural_navigation.py index c7890db..a621f52 100644 --- a/src/cthulhu/structural_navigation.py +++ b/src/cthulhu/structural_navigation.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Implements structural navigation.""" diff --git a/src/cthulhu/text_attribute_names.py b/src/cthulhu/text_attribute_names.py index 2c19cf7..78ecfbe 100644 --- a/src/cthulhu/text_attribute_names.py +++ b/src/cthulhu/text_attribute_names.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Provides getTextAttributeName method that maps each text attribute into its localized equivalent.""" diff --git a/src/cthulhu/translation_context.py b/src/cthulhu/translation_context.py index aac71ac..6e6fe9c 100644 --- a/src/cthulhu/translation_context.py +++ b/src/cthulhu/translation_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import gi, os, locale, gettext from gi.repository import GObject diff --git a/src/cthulhu/translation_manager.py b/src/cthulhu/translation_manager.py index 8265581..b5394ec 100644 --- a/src/cthulhu/translation_manager.py +++ b/src/cthulhu/translation_manager.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import gi, os, locale, gettext from gi.repository import GObject diff --git a/src/cthulhu/tutorialgenerator.py b/src/cthulhu/tutorialgenerator.py index 8b18e50..658e11d 100644 --- a/src/cthulhu/tutorialgenerator.py +++ b/src/cthulhu/tutorialgenerator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Utilities for obtaining tutorial utterances for objects. In general, there probably should be a singleton instance of the TutorialGenerator diff --git a/src/cthulhu/where_am_i_presenter.py b/src/cthulhu/where_am_i_presenter.py index bbcac10..0ac9a73 100644 --- a/src/cthulhu/where_am_i_presenter.py +++ b/src/cthulhu/where_am_i_presenter.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Module for commands related to the current accessible object.""" diff --git a/test/harness/__init__.py b/test/harness/__init__.py index 782103c..301e5ea 100644 --- a/test/harness/__init__.py +++ b/test/harness/__init__.py @@ -20,6 +20,6 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu diff --git a/test/harness/runcthulhu.py b/test/harness/runcthulhu.py index fb527d9..2163e50 100644 --- a/test/harness/runcthulhu.py +++ b/test/harness/runcthulhu.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import argparse import dbus diff --git a/test/harness/runprofiler.py b/test/harness/runprofiler.py index a0cfdee..13ccb69 100644 --- a/test/harness/runprofiler.py +++ b/test/harness/runprofiler.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu try: import cProfile as myprofiler diff --git a/test/harness/settings_test.py b/test/harness/settings_test.py index e60a326..56cd0db 100644 --- a/test/harness/settings_test.py +++ b/test/harness/settings_test.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from cthulhu import settings_manager from json import load, dump diff --git a/test/harness/utils.py b/test/harness/utils.py index 2f24609..0ef540a 100644 --- a/test/harness/utils.py +++ b/test/harness/utils.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Utilities that can be used by tests.""" diff --git a/test/html/cthulhu-wiki.html b/test/html/cthulhu-wiki.html index 170f5cd..c810ccc 100644 --- a/test/html/cthulhu-wiki.html +++ b/test/html/cthulhu-wiki.html @@ -151,7 +151,7 @@ searchBlur(e);

How Can I Help?

There's a bunch you can do! Please refer to the How Can I Help page for detailed information.

More Information

-


+


The information on this page and the other Cthulhu-related pages on this site are 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.


CategoryAccessibility

Cthulhu (last edited 2007-12-07 22:09:22 by WillieWalker)

diff --git a/test/keystrokes/firefox/aria_alert.py b/test/keystrokes/firefox/aria_alert.py index d8a4d0e..40248a9 100644 --- a/test/keystrokes/firefox/aria_alert.py +++ b/test/keystrokes/firefox/aria_alert.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA alert presentation.""" diff --git a/test/keystrokes/firefox/aria_alert_dialog.py b/test/keystrokes/firefox/aria_alert_dialog.py index 531bf3f..3e9b120 100644 --- a/test/keystrokes/firefox/aria_alert_dialog.py +++ b/test/keystrokes/firefox/aria_alert_dialog.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of UIUC button presentation using Firefox.""" diff --git a/test/keystrokes/firefox/aria_button.py b/test/keystrokes/firefox/aria_button.py index 8933b10..e6561e8 100644 --- a/test/keystrokes/firefox/aria_button.py +++ b/test/keystrokes/firefox/aria_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA button presentation.""" diff --git a/test/keystrokes/firefox/aria_button_dojo.py b/test/keystrokes/firefox/aria_button_dojo.py index 3c9c305..2433001 100644 --- a/test/keystrokes/firefox/aria_button_dojo.py +++ b/test/keystrokes/firefox/aria_button_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/aria_button_toggle.py b/test/keystrokes/firefox/aria_button_toggle.py index fadd757..9ffb799 100644 --- a/test/keystrokes/firefox/aria_button_toggle.py +++ b/test/keystrokes/firefox/aria_button_toggle.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/aria_checkbox.py b/test/keystrokes/firefox/aria_checkbox.py index f1a5cc2..a6a13a0 100644 --- a/test/keystrokes/firefox/aria_checkbox.py +++ b/test/keystrokes/firefox/aria_checkbox.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA checkbox presentation.""" diff --git a/test/keystrokes/firefox/aria_checkbox_dojo.py b/test/keystrokes/firefox/aria_checkbox_dojo.py index c094cf9..b1eff64 100644 --- a/test/keystrokes/firefox/aria_checkbox_dojo.py +++ b/test/keystrokes/firefox/aria_checkbox_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Dojo checkbox presentation.""" diff --git a/test/keystrokes/firefox/aria_combobox_dojo.py b/test/keystrokes/firefox/aria_combobox_dojo.py index 4517d84..d65f324 100644 --- a/test/keystrokes/firefox/aria_combobox_dojo.py +++ b/test/keystrokes/firefox/aria_combobox_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Dojo combo box presentation.""" diff --git a/test/keystrokes/firefox/aria_dialog_dismissed.py b/test/keystrokes/firefox/aria_dialog_dismissed.py index 68b369f..97955e5 100644 --- a/test/keystrokes/firefox/aria_dialog_dismissed.py +++ b/test/keystrokes/firefox/aria_dialog_dismissed.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/aria_dialog_dojo.py b/test/keystrokes/firefox/aria_dialog_dojo.py index a1f36eb..281eb54 100644 --- a/test/keystrokes/firefox/aria_dialog_dojo.py +++ b/test/keystrokes/firefox/aria_dialog_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Dojo dialog presentation.""" diff --git a/test/keystrokes/firefox/aria_editor_navigation_dojo.py b/test/keystrokes/firefox/aria_editor_navigation_dojo.py index 595db16..e732f82 100644 --- a/test/keystrokes/firefox/aria_editor_navigation_dojo.py +++ b/test/keystrokes/firefox/aria_editor_navigation_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test navigation out of the Dojo editor.""" diff --git a/test/keystrokes/firefox/aria_invalid.py b/test/keystrokes/firefox/aria_invalid.py index 65acb05..0da62e1 100644 --- a/test/keystrokes/firefox/aria_invalid.py +++ b/test/keystrokes/firefox/aria_invalid.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/aria_landmarks.py b/test/keystrokes/firefox/aria_landmarks.py index 40fea41..b33b012 100644 --- a/test/keystrokes/firefox/aria_landmarks.py +++ b/test/keystrokes/firefox/aria_landmarks.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation amongst landmarks.""" diff --git a/test/keystrokes/firefox/aria_list.py b/test/keystrokes/firefox/aria_list.py index 7755bb1..bd1664e 100644 --- a/test/keystrokes/firefox/aria_list.py +++ b/test/keystrokes/firefox/aria_list.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of ARIA role list.""" diff --git a/test/keystrokes/firefox/aria_menu.py b/test/keystrokes/firefox/aria_menu.py index 8f887bc..5c8035e 100644 --- a/test/keystrokes/firefox/aria_menu.py +++ b/test/keystrokes/firefox/aria_menu.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA menu presentation.""" diff --git a/test/keystrokes/firefox/aria_progressbar.py b/test/keystrokes/firefox/aria_progressbar.py index 003b2c6..a161643 100644 --- a/test/keystrokes/firefox/aria_progressbar.py +++ b/test/keystrokes/firefox/aria_progressbar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA progressbar presentation.""" diff --git a/test/keystrokes/firefox/aria_radiobutton.py b/test/keystrokes/firefox/aria_radiobutton.py index 32acef2..42c4941 100644 --- a/test/keystrokes/firefox/aria_radiobutton.py +++ b/test/keystrokes/firefox/aria_radiobutton.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/aria_roledescription_where_am_i.py b/test/keystrokes/firefox/aria_roledescription_where_am_i.py index 51a9ae2..494ba7d 100644 --- a/test/keystrokes/firefox/aria_roledescription_where_am_i.py +++ b/test/keystrokes/firefox/aria_roledescription_where_am_i.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/aria_slider.py b/test/keystrokes/firefox/aria_slider.py index 2bbfe2f..cdc98d7 100644 --- a/test/keystrokes/firefox/aria_slider.py +++ b/test/keystrokes/firefox/aria_slider.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA slider presentation.""" diff --git a/test/keystrokes/firefox/aria_slider_dojo.py b/test/keystrokes/firefox/aria_slider_dojo.py index 86f1d54..89fcb00 100644 --- a/test/keystrokes/firefox/aria_slider_dojo.py +++ b/test/keystrokes/firefox/aria_slider_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Dojo slider presentation.""" diff --git a/test/keystrokes/firefox/aria_slider_tpg.py b/test/keystrokes/firefox/aria_slider_tpg.py index 6393664..b3e802e 100644 --- a/test/keystrokes/firefox/aria_slider_tpg.py +++ b/test/keystrokes/firefox/aria_slider_tpg.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA horizontal sliders using Firefox.""" diff --git a/test/keystrokes/firefox/aria_sliders.py b/test/keystrokes/firefox/aria_sliders.py index 3c20c2e..20a5045 100644 --- a/test/keystrokes/firefox/aria_sliders.py +++ b/test/keystrokes/firefox/aria_sliders.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/aria_spinner_dojo.py b/test/keystrokes/firefox/aria_spinner_dojo.py index cdc3d25..561815b 100644 --- a/test/keystrokes/firefox/aria_spinner_dojo.py +++ b/test/keystrokes/firefox/aria_spinner_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Dojo spinner presentation.""" diff --git a/test/keystrokes/firefox/aria_switch.py b/test/keystrokes/firefox/aria_switch.py index caebb56..de74322 100644 --- a/test/keystrokes/firefox/aria_switch.py +++ b/test/keystrokes/firefox/aria_switch.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA switch presentation.""" diff --git a/test/keystrokes/firefox/aria_tabcontainer_dojo.py b/test/keystrokes/firefox/aria_tabcontainer_dojo.py index dbc298c..d02248c 100644 --- a/test/keystrokes/firefox/aria_tabcontainer_dojo.py +++ b/test/keystrokes/firefox/aria_tabcontainer_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Dojo tab container presentation.""" diff --git a/test/keystrokes/firefox/aria_tabpanel.py b/test/keystrokes/firefox/aria_tabpanel.py index c07ba7d..d1b359a 100644 --- a/test/keystrokes/firefox/aria_tabpanel.py +++ b/test/keystrokes/firefox/aria_tabpanel.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA tabpanel presentation.""" diff --git a/test/keystrokes/firefox/aria_tabpanel2.py b/test/keystrokes/firefox/aria_tabpanel2.py index 128c429..4172a61 100644 --- a/test/keystrokes/firefox/aria_tabpanel2.py +++ b/test/keystrokes/firefox/aria_tabpanel2.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/aria_tabpanel_text_dojo.py b/test/keystrokes/firefox/aria_tabpanel_text_dojo.py index d3d8593..acd3fe4 100644 --- a/test/keystrokes/firefox/aria_tabpanel_text_dojo.py +++ b/test/keystrokes/firefox/aria_tabpanel_text_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of Dojo's panel text.""" diff --git a/test/keystrokes/firefox/aria_toolbar_dojo.py b/test/keystrokes/firefox/aria_toolbar_dojo.py index 7edbbb1..26c1d13 100644 --- a/test/keystrokes/firefox/aria_toolbar_dojo.py +++ b/test/keystrokes/firefox/aria_toolbar_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Dojo toolbar presentation.""" diff --git a/test/keystrokes/firefox/aria_tree.py b/test/keystrokes/firefox/aria_tree.py index 8c3ca03..2aaf167 100644 --- a/test/keystrokes/firefox/aria_tree.py +++ b/test/keystrokes/firefox/aria_tree.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/aria_tree_dojo.py b/test/keystrokes/firefox/aria_tree_dojo.py index a618ccf..170a2d3 100644 --- a/test/keystrokes/firefox/aria_tree_dojo.py +++ b/test/keystrokes/firefox/aria_tree_dojo.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Dojo tree presentation.""" diff --git a/test/keystrokes/firefox/aria_treegrid.py b/test/keystrokes/firefox/aria_treegrid.py index cf0996b..f7030fd 100644 --- a/test/keystrokes/firefox/aria_treegrid.py +++ b/test/keystrokes/firefox/aria_treegrid.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of ARIA treegrid presentation.""" diff --git a/test/keystrokes/firefox/find_wiki.py b/test/keystrokes/firefox/find_wiki.py index e374f2b..b1477f3 100644 --- a/test/keystrokes/firefox/find_wiki.py +++ b/test/keystrokes/firefox/find_wiki.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of find result presentation.""" diff --git a/test/keystrokes/firefox/flat_review_combo_box.py b/test/keystrokes/firefox/flat_review_combo_box.py index a83deac..79281d6 100644 --- a/test/keystrokes/firefox/flat_review_combo_box.py +++ b/test/keystrokes/firefox/flat_review_combo_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of flat reviewing HTML.""" diff --git a/test/keystrokes/firefox/flat_review_hidden_elements.py b/test/keystrokes/firefox/flat_review_hidden_elements.py index dcd36a2..59d85c6 100644 --- a/test/keystrokes/firefox/flat_review_hidden_elements.py +++ b/test/keystrokes/firefox/flat_review_hidden_elements.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of flat review in content with hidden elements.""" diff --git a/test/keystrokes/firefox/flat_review_text_by_line.py b/test/keystrokes/firefox/flat_review_text_by_line.py index d859372..089d602 100644 --- a/test/keystrokes/firefox/flat_review_text_by_line.py +++ b/test/keystrokes/firefox/flat_review_text_by_line.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of flat review by line in a simple text document.""" diff --git a/test/keystrokes/firefox/flat_review_text_by_word_and_char.py b/test/keystrokes/firefox/flat_review_text_by_word_and_char.py index df49214..b118fc3 100644 --- a/test/keystrokes/firefox/flat_review_text_by_word_and_char.py +++ b/test/keystrokes/firefox/flat_review_text_by_word_and_char.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of flat review by word and char in a simple text document.""" diff --git a/test/keystrokes/firefox/focus_tracking_descriptions.py b/test/keystrokes/firefox/focus_tracking_descriptions.py index f7538b7..3210c9d 100644 --- a/test/keystrokes/firefox/focus_tracking_descriptions.py +++ b/test/keystrokes/firefox/focus_tracking_descriptions.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of the fix for bug 511389.""" diff --git a/test/keystrokes/firefox/focus_tracking_imagemap.py b/test/keystrokes/firefox/focus_tracking_imagemap.py index be235b8..f2fad36 100644 --- a/test/keystrokes/firefox/focus_tracking_imagemap.py +++ b/test/keystrokes/firefox/focus_tracking_imagemap.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Cthulhu output when tabbing on a page with imagemaps.""" diff --git a/test/keystrokes/firefox/focus_tracking_input_type_number.py b/test/keystrokes/firefox/focus_tracking_input_type_number.py index 784ceef..b1a9055 100644 --- a/test/keystrokes/firefox/focus_tracking_input_type_number.py +++ b/test/keystrokes/firefox/focus_tracking_input_type_number.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/focus_tracking_link_child_of_body.py b/test/keystrokes/firefox/focus_tracking_link_child_of_body.py index 75c90f0..9f38324 100644 --- a/test/keystrokes/firefox/focus_tracking_link_child_of_body.py +++ b/test/keystrokes/firefox/focus_tracking_link_child_of_body.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/focus_tracking_links.py b/test/keystrokes/firefox/focus_tracking_links.py index 17592a9..46df663 100644 --- a/test/keystrokes/firefox/focus_tracking_links.py +++ b/test/keystrokes/firefox/focus_tracking_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of the fix for bug 511389.""" diff --git a/test/keystrokes/firefox/focus_tracking_radios_with_label_and_name.py b/test/keystrokes/firefox/focus_tracking_radios_with_label_and_name.py index 905ff8f..8271daf 100644 --- a/test/keystrokes/firefox/focus_tracking_radios_with_label_and_name.py +++ b/test/keystrokes/firefox/focus_tracking_radios_with_label_and_name.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/focus_tracking_roledescriptions.py b/test/keystrokes/firefox/focus_tracking_roledescriptions.py index ac17c13..2414d42 100644 --- a/test/keystrokes/firefox/focus_tracking_roledescriptions.py +++ b/test/keystrokes/firefox/focus_tracking_roledescriptions.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/html_access_keys.py b/test/keystrokes/firefox/html_access_keys.py index e1542c1..afce238 100644 --- a/test/keystrokes/firefox/html_access_keys.py +++ b/test/keystrokes/firefox/html_access_keys.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/html_link_where_am_i.py b/test/keystrokes/firefox/html_link_where_am_i.py index 7d63f5f..63c80b1 100644 --- a/test/keystrokes/firefox/html_link_where_am_i.py +++ b/test/keystrokes/firefox/html_link_where_am_i.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Where am I for links.""" diff --git a/test/keystrokes/firefox/html_page_summary.py b/test/keystrokes/firefox/html_page_summary.py index 1cfa8e5..f2c7478 100644 --- a/test/keystrokes/firefox/html_page_summary.py +++ b/test/keystrokes/firefox/html_page_summary.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of page summary""" diff --git a/test/keystrokes/firefox/html_role_combo_box.py b/test/keystrokes/firefox/html_role_combo_box.py index 417f2d6..75576a6 100644 --- a/test/keystrokes/firefox/html_role_combo_box.py +++ b/test/keystrokes/firefox/html_role_combo_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of HTML combo box presentation.""" diff --git a/test/keystrokes/firefox/html_role_links.py b/test/keystrokes/firefox/html_role_links.py index 43b0276..0315d29 100644 --- a/test/keystrokes/firefox/html_role_links.py +++ b/test/keystrokes/firefox/html_role_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of HTML links presentation.""" diff --git a/test/keystrokes/firefox/html_role_list_item_where_am_i.py b/test/keystrokes/firefox/html_role_list_item_where_am_i.py index 466ec23..7bbe17f 100644 --- a/test/keystrokes/firefox/html_role_list_item_where_am_i.py +++ b/test/keystrokes/firefox/html_role_list_item_where_am_i.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of HTML list item whereAmI presentation.""" diff --git a/test/keystrokes/firefox/html_struct_nav_activate_link.py b/test/keystrokes/firefox/html_struct_nav_activate_link.py index 501886a..0b246bb 100644 --- a/test/keystrokes/firefox/html_struct_nav_activate_link.py +++ b/test/keystrokes/firefox/html_struct_nav_activate_link.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test for activation of a link after using structural navigation""" diff --git a/test/keystrokes/firefox/html_struct_nav_blockquote.py b/test/keystrokes/firefox/html_struct_nav_blockquote.py index f63d04b..962c0e7 100644 --- a/test/keystrokes/firefox/html_struct_nav_blockquote.py +++ b/test/keystrokes/firefox/html_struct_nav_blockquote.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation by blockquote.""" diff --git a/test/keystrokes/firefox/html_struct_nav_bug_554616.py b/test/keystrokes/firefox/html_struct_nav_bug_554616.py index b34a278..c99fabc 100644 --- a/test/keystrokes/firefox/html_struct_nav_bug_554616.py +++ b/test/keystrokes/firefox/html_struct_nav_bug_554616.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of table cell structural navigation.""" diff --git a/test/keystrokes/firefox/html_struct_nav_bug_556470.py b/test/keystrokes/firefox/html_struct_nav_bug_556470.py index 0ef3f4a..92adaa8 100644 --- a/test/keystrokes/firefox/html_struct_nav_bug_556470.py +++ b/test/keystrokes/firefox/html_struct_nav_bug_556470.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of table structural navigation with empty tables.""" diff --git a/test/keystrokes/firefox/html_struct_nav_bug_567984.py b/test/keystrokes/firefox/html_struct_nav_bug_567984.py index 732763d..f586995 100644 --- a/test/keystrokes/firefox/html_struct_nav_bug_567984.py +++ b/test/keystrokes/firefox/html_struct_nav_bug_567984.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation by heading.""" diff --git a/test/keystrokes/firefox/html_struct_nav_bug_591592.py b/test/keystrokes/firefox/html_struct_nav_bug_591592.py index e23f9d8..43b1297 100644 --- a/test/keystrokes/firefox/html_struct_nav_bug_591592.py +++ b/test/keystrokes/firefox/html_struct_nav_bug_591592.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of table structural navigation with headings which contain anchors.""" diff --git a/test/keystrokes/firefox/html_struct_nav_clickable_text_change.py b/test/keystrokes/firefox/html_struct_nav_clickable_text_change.py index 1bb5363..f27f0a3 100644 --- a/test/keystrokes/firefox/html_struct_nav_clickable_text_change.py +++ b/test/keystrokes/firefox/html_struct_nav_clickable_text_change.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/html_struct_nav_containers.py b/test/keystrokes/firefox/html_struct_nav_containers.py index 22e2c0b..518a892 100644 --- a/test/keystrokes/firefox/html_struct_nav_containers.py +++ b/test/keystrokes/firefox/html_struct_nav_containers.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/html_struct_nav_descriptions.py b/test/keystrokes/firefox/html_struct_nav_descriptions.py index 35fb9d3..2c7df0d 100644 --- a/test/keystrokes/firefox/html_struct_nav_descriptions.py +++ b/test/keystrokes/firefox/html_struct_nav_descriptions.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation.""" diff --git a/test/keystrokes/firefox/html_struct_nav_heading_empty.py b/test/keystrokes/firefox/html_struct_nav_heading_empty.py index d920e8b..ecb20cb 100644 --- a/test/keystrokes/firefox/html_struct_nav_heading_empty.py +++ b/test/keystrokes/firefox/html_struct_nav_heading_empty.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation by heading.""" diff --git a/test/keystrokes/firefox/html_struct_nav_heading_in_div_with_text.py b/test/keystrokes/firefox/html_struct_nav_heading_in_div_with_text.py index bfdd049..49e7abb 100644 --- a/test/keystrokes/firefox/html_struct_nav_heading_in_div_with_text.py +++ b/test/keystrokes/firefox/html_struct_nav_heading_in_div_with_text.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation by heading.""" diff --git a/test/keystrokes/firefox/html_struct_nav_heading_with_child_text.py b/test/keystrokes/firefox/html_struct_nav_heading_with_child_text.py index d53227a..225ca12 100644 --- a/test/keystrokes/firefox/html_struct_nav_heading_with_child_text.py +++ b/test/keystrokes/firefox/html_struct_nav_heading_with_child_text.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation by heading.""" diff --git a/test/keystrokes/firefox/html_struct_nav_heading_with_clickable.py b/test/keystrokes/firefox/html_struct_nav_heading_with_clickable.py index e243dc8..52d7ac6 100644 --- a/test/keystrokes/firefox/html_struct_nav_heading_with_clickable.py +++ b/test/keystrokes/firefox/html_struct_nav_heading_with_clickable.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation by heading.""" diff --git a/test/keystrokes/firefox/html_struct_nav_headings_buried_deep.py b/test/keystrokes/firefox/html_struct_nav_headings_buried_deep.py index 831fe22..226d75f 100644 --- a/test/keystrokes/firefox/html_struct_nav_headings_buried_deep.py +++ b/test/keystrokes/firefox/html_struct_nav_headings_buried_deep.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation by heading.""" diff --git a/test/keystrokes/firefox/html_struct_nav_headings_with_hidden_anchors.py b/test/keystrokes/firefox/html_struct_nav_headings_with_hidden_anchors.py index 413bbfe..fbf2bd9 100644 --- a/test/keystrokes/firefox/html_struct_nav_headings_with_hidden_anchors.py +++ b/test/keystrokes/firefox/html_struct_nav_headings_with_hidden_anchors.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation by heading.""" diff --git a/test/keystrokes/firefox/html_struct_nav_hidden_paragraphs.py b/test/keystrokes/firefox/html_struct_nav_hidden_paragraphs.py index 5bffe1b..4e62e57 100644 --- a/test/keystrokes/firefox/html_struct_nav_hidden_paragraphs.py +++ b/test/keystrokes/firefox/html_struct_nav_hidden_paragraphs.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation by paragraph with some paragraphs hidden.""" diff --git a/test/keystrokes/firefox/html_struct_nav_large_obj.py b/test/keystrokes/firefox/html_struct_nav_large_obj.py index 8f086f6..203122d 100644 --- a/test/keystrokes/firefox/html_struct_nav_large_obj.py +++ b/test/keystrokes/firefox/html_struct_nav_large_obj.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation amongst 'large objects'.""" diff --git a/test/keystrokes/firefox/html_struct_nav_link_with_child_text.py b/test/keystrokes/firefox/html_struct_nav_link_with_child_text.py index a7bc718..2f45c34 100644 --- a/test/keystrokes/firefox/html_struct_nav_link_with_child_text.py +++ b/test/keystrokes/firefox/html_struct_nav_link_with_child_text.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/html_struct_nav_links.py b/test/keystrokes/firefox/html_struct_nav_links.py index f33fcfa..cd36de8 100644 --- a/test/keystrokes/firefox/html_struct_nav_links.py +++ b/test/keystrokes/firefox/html_struct_nav_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation amongst links.""" diff --git a/test/keystrokes/firefox/html_struct_nav_list_item.py b/test/keystrokes/firefox/html_struct_nav_list_item.py index d20fb56..6d0d7ba 100644 --- a/test/keystrokes/firefox/html_struct_nav_list_item.py +++ b/test/keystrokes/firefox/html_struct_nav_list_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation amongst list items.""" diff --git a/test/keystrokes/firefox/html_struct_nav_lists.py b/test/keystrokes/firefox/html_struct_nav_lists.py index bd92b17..cbc5d7a 100644 --- a/test/keystrokes/firefox/html_struct_nav_lists.py +++ b/test/keystrokes/firefox/html_struct_nav_lists.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of structural navigation amongst lists.""" diff --git a/test/keystrokes/firefox/label_inference_bug_546815.py b/test/keystrokes/firefox/label_inference_bug_546815.py index d86b2a5..17b7c39 100644 --- a/test/keystrokes/firefox/label_inference_bug_546815.py +++ b/test/keystrokes/firefox/label_inference_bug_546815.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of label guess functionality.""" diff --git a/test/keystrokes/firefox/label_inference_bugzilla_search.py b/test/keystrokes/firefox/label_inference_bugzilla_search.py index 1f5b7b5..4cfc3d8 100644 --- a/test/keystrokes/firefox/label_inference_bugzilla_search.py +++ b/test/keystrokes/firefox/label_inference_bugzilla_search.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of label guess for bugzilla's advanced search page.""" diff --git a/test/keystrokes/firefox/label_inference_entries.py b/test/keystrokes/firefox/label_inference_entries.py index c1484a9..56c64cb 100644 --- a/test/keystrokes/firefox/label_inference_entries.py +++ b/test/keystrokes/firefox/label_inference_entries.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/label_inference_labels_without_for_far_away.py b/test/keystrokes/firefox/label_inference_labels_without_for_far_away.py index 37d993e..76f7cd1 100644 --- a/test/keystrokes/firefox/label_inference_labels_without_for_far_away.py +++ b/test/keystrokes/firefox/label_inference_labels_without_for_far_away.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/label_inference_mailman.py b/test/keystrokes/firefox/label_inference_mailman.py index 21655a4..7aeafb7 100644 --- a/test/keystrokes/firefox/label_inference_mailman.py +++ b/test/keystrokes/firefox/label_inference_mailman.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of label guess functionality.""" diff --git a/test/keystrokes/firefox/line_nav_aria_landmarks.py b/test/keystrokes/firefox/line_nav_aria_landmarks.py index fb6342e..6118983 100644 --- a/test/keystrokes/firefox/line_nav_aria_landmarks.py +++ b/test/keystrokes/firefox/line_nav_aria_landmarks.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_aria_landmarks_no_context.py b/test/keystrokes/firefox/line_nav_aria_landmarks_no_context.py index 53443d3..5ca9f42 100644 --- a/test/keystrokes/firefox/line_nav_aria_landmarks_no_context.py +++ b/test/keystrokes/firefox/line_nav_aria_landmarks_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_broken_list.py b/test/keystrokes/firefox/line_nav_broken_list.py index 06d6ebb..ad5a799 100644 --- a/test/keystrokes/firefox/line_nav_broken_list.py +++ b/test/keystrokes/firefox/line_nav_broken_list.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_bug_546815.py b/test/keystrokes/firefox/line_nav_bug_546815.py index cacfcb1..543e1af 100644 --- a/test/keystrokes/firefox/line_nav_bug_546815.py +++ b/test/keystrokes/firefox/line_nav_bug_546815.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_bug_549128.py b/test/keystrokes/firefox/line_nav_bug_549128.py index 43364b4..eaf7438 100644 --- a/test/keystrokes/firefox/line_nav_bug_549128.py +++ b/test/keystrokes/firefox/line_nav_bug_549128.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_bug_552887a.py b/test/keystrokes/firefox/line_nav_bug_552887a.py index f30383d..765d595 100644 --- a/test/keystrokes/firefox/line_nav_bug_552887a.py +++ b/test/keystrokes/firefox/line_nav_bug_552887a.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of the fix for one of the two issues in bug 552887.""" diff --git a/test/keystrokes/firefox/line_nav_bug_554616.py b/test/keystrokes/firefox/line_nav_bug_554616.py index 5fccc81..428d09c 100644 --- a/test/keystrokes/firefox/line_nav_bug_554616.py +++ b/test/keystrokes/firefox/line_nav_bug_554616.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output.""" diff --git a/test/keystrokes/firefox/line_nav_bug_555055.py b/test/keystrokes/firefox/line_nav_bug_555055.py index cf1d6f6..73fb916 100644 --- a/test/keystrokes/firefox/line_nav_bug_555055.py +++ b/test/keystrokes/firefox/line_nav_bug_555055.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox. """ diff --git a/test/keystrokes/firefox/line_nav_bug_570757.py b/test/keystrokes/firefox/line_nav_bug_570757.py index c9b684a..ee2efdc 100644 --- a/test/keystrokes/firefox/line_nav_bug_570757.py +++ b/test/keystrokes/firefox/line_nav_bug_570757.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_bug_570757_no_context.py b/test/keystrokes/firefox/line_nav_bug_570757_no_context.py index a48a797..2b0fd17 100644 --- a/test/keystrokes/firefox/line_nav_bug_570757_no_context.py +++ b/test/keystrokes/firefox/line_nav_bug_570757_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_bug_577239.py b/test/keystrokes/firefox/line_nav_bug_577239.py index ae0e58b..0785032 100644 --- a/test/keystrokes/firefox/line_nav_bug_577239.py +++ b/test/keystrokes/firefox/line_nav_bug_577239.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_bug_577239_no_context.py b/test/keystrokes/firefox/line_nav_bug_577239_no_context.py index 511923b..3a204e9 100644 --- a/test/keystrokes/firefox/line_nav_bug_577239_no_context.py +++ b/test/keystrokes/firefox/line_nav_bug_577239_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_bug_592383.py b/test/keystrokes/firefox/line_nav_bug_592383.py index b14c344..1920e34 100644 --- a/test/keystrokes/firefox/line_nav_bug_592383.py +++ b/test/keystrokes/firefox/line_nav_bug_592383.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of navigation given a paragraph with a multi-line-high initial char.""" diff --git a/test/keystrokes/firefox/line_nav_bugzilla_search_down.py b/test/keystrokes/firefox/line_nav_bugzilla_search_down.py index 49f1a41..8365acd 100644 --- a/test/keystrokes/firefox/line_nav_bugzilla_search_down.py +++ b/test/keystrokes/firefox/line_nav_bugzilla_search_down.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_bugzilla_search_up.py b/test/keystrokes/firefox/line_nav_bugzilla_search_up.py index 0a2ef80..0b0fa00 100644 --- a/test/keystrokes/firefox/line_nav_bugzilla_search_up.py +++ b/test/keystrokes/firefox/line_nav_bugzilla_search_up.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_button_in_link_position_relative_on_focus.py b/test/keystrokes/firefox/line_nav_button_in_link_position_relative_on_focus.py index 25b8608..31c5356 100644 --- a/test/keystrokes/firefox/line_nav_button_in_link_position_relative_on_focus.py +++ b/test/keystrokes/firefox/line_nav_button_in_link_position_relative_on_focus.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_canvas.py b/test/keystrokes/firefox/line_nav_canvas.py index 53b5c6b..773db87 100644 --- a/test/keystrokes/firefox/line_nav_canvas.py +++ b/test/keystrokes/firefox/line_nav_canvas.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_clickables.py b/test/keystrokes/firefox/line_nav_clickables.py index c6ecb77..b05bb18 100644 --- a/test/keystrokes/firefox/line_nav_clickables.py +++ b/test/keystrokes/firefox/line_nav_clickables.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_descriptions.py b/test/keystrokes/firefox/line_nav_descriptions.py index cade940..759a686 100644 --- a/test/keystrokes/firefox/line_nav_descriptions.py +++ b/test/keystrokes/firefox/line_nav_descriptions.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_display_table_cell.py b/test/keystrokes/firefox/line_nav_display_table_cell.py index 34f96a7..f99863d 100644 --- a/test/keystrokes/firefox/line_nav_display_table_cell.py +++ b/test/keystrokes/firefox/line_nav_display_table_cell.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_emoji.py b/test/keystrokes/firefox/line_nav_emoji.py index 824aa18..8f1dfbe 100644 --- a/test/keystrokes/firefox/line_nav_emoji.py +++ b/test/keystrokes/firefox/line_nav_emoji.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_empty_anchor.py b/test/keystrokes/firefox/line_nav_empty_anchor.py index f440eac..cbe9aab 100644 --- a/test/keystrokes/firefox/line_nav_empty_anchor.py +++ b/test/keystrokes/firefox/line_nav_empty_anchor.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation on a page with empty anchors.""" diff --git a/test/keystrokes/firefox/line_nav_empty_block_link.py b/test/keystrokes/firefox/line_nav_empty_block_link.py index 34f96a7..f99863d 100644 --- a/test/keystrokes/firefox/line_nav_empty_block_link.py +++ b/test/keystrokes/firefox/line_nav_empty_block_link.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_empty_link_with_line_break.py b/test/keystrokes/firefox/line_nav_empty_link_with_line_break.py index 01afb14..b02ac2a 100644 --- a/test/keystrokes/firefox/line_nav_empty_link_with_line_break.py +++ b/test/keystrokes/firefox/line_nav_empty_link_with_line_break.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_empty_textarea.py b/test/keystrokes/firefox/line_nav_empty_textarea.py index 9a5dc16..a2dcbbf 100644 --- a/test/keystrokes/firefox/line_nav_empty_textarea.py +++ b/test/keystrokes/firefox/line_nav_empty_textarea.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_enter_bug.py b/test/keystrokes/firefox/line_nav_enter_bug.py index 89a697b..4637e98 100644 --- a/test/keystrokes/firefox/line_nav_enter_bug.py +++ b/test/keystrokes/firefox/line_nav_enter_bug.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_entries.py b/test/keystrokes/firefox/line_nav_entries.py index 8c1e307..752aa3c 100644 --- a/test/keystrokes/firefox/line_nav_entries.py +++ b/test/keystrokes/firefox/line_nav_entries.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_focused_link.py b/test/keystrokes/firefox/line_nav_focused_link.py index a7152a7..d24243f 100644 --- a/test/keystrokes/firefox/line_nav_focused_link.py +++ b/test/keystrokes/firefox/line_nav_focused_link.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_follow_same_page_link.py b/test/keystrokes/firefox/line_nav_follow_same_page_link.py index 410516f..2968f12 100644 --- a/test/keystrokes/firefox/line_nav_follow_same_page_link.py +++ b/test/keystrokes/firefox/line_nav_follow_same_page_link.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of navigation to same page links.""" diff --git a/test/keystrokes/firefox/line_nav_follow_same_page_link_2.py b/test/keystrokes/firefox/line_nav_follow_same_page_link_2.py index 10708b8..de13732 100644 --- a/test/keystrokes/firefox/line_nav_follow_same_page_link_2.py +++ b/test/keystrokes/firefox/line_nav_follow_same_page_link_2.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of navigation by same-page links on the Cthulhu wiki.""" diff --git a/test/keystrokes/firefox/line_nav_follow_same_page_link_3.py b/test/keystrokes/firefox/line_nav_follow_same_page_link_3.py index aed3e19..1a2e02a 100644 --- a/test/keystrokes/firefox/line_nav_follow_same_page_link_3.py +++ b/test/keystrokes/firefox/line_nav_follow_same_page_link_3.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line nav after loading a same-page link.""" diff --git a/test/keystrokes/firefox/line_nav_fontawesome_link.py b/test/keystrokes/firefox/line_nav_fontawesome_link.py index 8e64acc..f91b00e 100644 --- a/test/keystrokes/firefox/line_nav_fontawesome_link.py +++ b/test/keystrokes/firefox/line_nav_fontawesome_link.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_heading_section.py b/test/keystrokes/firefox/line_nav_heading_section.py index 61ca1af..ed9978f 100644 --- a/test/keystrokes/firefox/line_nav_heading_section.py +++ b/test/keystrokes/firefox/line_nav_heading_section.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation on a page with headings in sections.""" diff --git a/test/keystrokes/firefox/line_nav_hidden_buttons.py b/test/keystrokes/firefox/line_nav_hidden_buttons.py index 8830b94..d396860 100644 --- a/test/keystrokes/firefox/line_nav_hidden_buttons.py +++ b/test/keystrokes/firefox/line_nav_hidden_buttons.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_hidden_elements.py b/test/keystrokes/firefox/line_nav_hidden_elements.py index d5552f1..996bde0 100644 --- a/test/keystrokes/firefox/line_nav_hidden_elements.py +++ b/test/keystrokes/firefox/line_nav_hidden_elements.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_hidden_float.py b/test/keystrokes/firefox/line_nav_hidden_float.py index 2cacdfb..7262ca5 100644 --- a/test/keystrokes/firefox/line_nav_hidden_float.py +++ b/test/keystrokes/firefox/line_nav_hidden_float.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_hidden_label.py b/test/keystrokes/firefox/line_nav_hidden_label.py index b6a9e49..184b206 100644 --- a/test/keystrokes/firefox/line_nav_hidden_label.py +++ b/test/keystrokes/firefox/line_nav_hidden_label.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_hidden_links.py b/test/keystrokes/firefox/line_nav_hidden_links.py index 3357651..518fa6d 100644 --- a/test/keystrokes/firefox/line_nav_hidden_links.py +++ b/test/keystrokes/firefox/line_nav_hidden_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_iframes_blogger.py b/test/keystrokes/firefox/line_nav_iframes_blogger.py index 0da3c2c..c72cb6b 100644 --- a/test/keystrokes/firefox/line_nav_iframes_blogger.py +++ b/test/keystrokes/firefox/line_nav_iframes_blogger.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_iframes_in_inline_block.py b/test/keystrokes/firefox/line_nav_iframes_in_inline_block.py index e78fb52..b103277 100644 --- a/test/keystrokes/firefox/line_nav_iframes_in_inline_block.py +++ b/test/keystrokes/firefox/line_nav_iframes_in_inline_block.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_iframes_in_inline_block2.py b/test/keystrokes/firefox/line_nav_iframes_in_inline_block2.py index 4507d8a..a8c503c 100644 --- a/test/keystrokes/firefox/line_nav_iframes_in_inline_block2.py +++ b/test/keystrokes/firefox/line_nav_iframes_in_inline_block2.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_iframes_nested.py b/test/keystrokes/firefox/line_nav_iframes_nested.py index f045a01..00c8cad 100644 --- a/test/keystrokes/firefox/line_nav_iframes_nested.py +++ b/test/keystrokes/firefox/line_nav_iframes_nested.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_image_in_link.py b/test/keystrokes/firefox/line_nav_image_in_link.py index 491d433..87c3e6e 100644 --- a/test/keystrokes/firefox/line_nav_image_in_link.py +++ b/test/keystrokes/firefox/line_nav_image_in_link.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_imagemap.py b/test/keystrokes/firefox/line_nav_imagemap.py index 480db0e..100c8ef 100644 --- a/test/keystrokes/firefox/line_nav_imagemap.py +++ b/test/keystrokes/firefox/line_nav_imagemap.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation on a page with an imagemap.""" diff --git a/test/keystrokes/firefox/line_nav_images_in_links.py b/test/keystrokes/firefox/line_nav_images_in_links.py index 4e14bc9..fbecdc5 100644 --- a/test/keystrokes/firefox/line_nav_images_in_links.py +++ b/test/keystrokes/firefox/line_nav_images_in_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of links that contain images.""" diff --git a/test/keystrokes/firefox/line_nav_images_in_table_and_floating_div.py b/test/keystrokes/firefox/line_nav_images_in_table_and_floating_div.py index d2fad5e..70e01d3 100644 --- a/test/keystrokes/firefox/line_nav_images_in_table_and_floating_div.py +++ b/test/keystrokes/firefox/line_nav_images_in_table_and_floating_div.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of lines that contain images.""" diff --git a/test/keystrokes/firefox/line_nav_inline_block_spans.py b/test/keystrokes/firefox/line_nav_inline_block_spans.py index 096aabb..af8b1a0 100644 --- a/test/keystrokes/firefox/line_nav_inline_block_spans.py +++ b/test/keystrokes/firefox/line_nav_inline_block_spans.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_link_position_relative_on_focus.py b/test/keystrokes/firefox/line_nav_link_position_relative_on_focus.py index 783f164..51a675f 100644 --- a/test/keystrokes/firefox/line_nav_link_position_relative_on_focus.py +++ b/test/keystrokes/firefox/line_nav_link_position_relative_on_focus.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_list_with_anchors_and_hyphens.py b/test/keystrokes/firefox/line_nav_list_with_anchors_and_hyphens.py index f356ca8..53c1b2a 100644 --- a/test/keystrokes/firefox/line_nav_list_with_anchors_and_hyphens.py +++ b/test/keystrokes/firefox/line_nav_list_with_anchors_and_hyphens.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation on a page with multi-line cells and sections.""" diff --git a/test/keystrokes/firefox/line_nav_lists.py b/test/keystrokes/firefox/line_nav_lists.py index 336b2b0..429f0bf 100644 --- a/test/keystrokes/firefox/line_nav_lists.py +++ b/test/keystrokes/firefox/line_nav_lists.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of HTML list presentation.""" diff --git a/test/keystrokes/firefox/line_nav_lists_broken.py b/test/keystrokes/firefox/line_nav_lists_broken.py index 38ebdb4..fbb5b21 100644 --- a/test/keystrokes/firefox/line_nav_lists_broken.py +++ b/test/keystrokes/firefox/line_nav_lists_broken.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_lists_without_items.py b/test/keystrokes/firefox/line_nav_lists_without_items.py index a849f2f..fbd0861 100644 --- a/test/keystrokes/firefox/line_nav_lists_without_items.py +++ b/test/keystrokes/firefox/line_nav_lists_without_items.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_multi_line_text.py b/test/keystrokes/firefox/line_nav_multi_line_text.py index a531805..553a92c 100644 --- a/test/keystrokes/firefox/line_nav_multi_line_text.py +++ b/test/keystrokes/firefox/line_nav_multi_line_text.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation on a page with multi-line cells and sections.""" diff --git a/test/keystrokes/firefox/line_nav_nested_items.py b/test/keystrokes/firefox/line_nav_nested_items.py index dfb83c8..a564626 100644 --- a/test/keystrokes/firefox/line_nav_nested_items.py +++ b/test/keystrokes/firefox/line_nav_nested_items.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_nested_items_no_context.py b/test/keystrokes/firefox/line_nav_nested_items_no_context.py index d066b3b..44b922d 100644 --- a/test/keystrokes/firefox/line_nav_nested_items_no_context.py +++ b/test/keystrokes/firefox/line_nav_nested_items_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_nested_tables.py b/test/keystrokes/firefox/line_nav_nested_tables.py index 59df6ff..1e5bf49 100644 --- a/test/keystrokes/firefox/line_nav_nested_tables.py +++ b/test/keystrokes/firefox/line_nav_nested_tables.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation on a page with nested layout tables. """ diff --git a/test/keystrokes/firefox/line_nav_offscreen_text_with_tiny_width.py b/test/keystrokes/firefox/line_nav_offscreen_text_with_tiny_width.py index 1c831ff..1da1ecf 100644 --- a/test/keystrokes/firefox/line_nav_offscreen_text_with_tiny_width.py +++ b/test/keystrokes/firefox/line_nav_offscreen_text_with_tiny_width.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_paragraphs_in_links.py b/test/keystrokes/firefox/line_nav_paragraphs_in_links.py index 437abc8..20c5b06 100644 --- a/test/keystrokes/firefox/line_nav_paragraphs_in_links.py +++ b/test/keystrokes/firefox/line_nav_paragraphs_in_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_pre_lines.py b/test/keystrokes/firefox/line_nav_pre_lines.py index f59fbe1..90eb909 100644 --- a/test/keystrokes/firefox/line_nav_pre_lines.py +++ b/test/keystrokes/firefox/line_nav_pre_lines.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_pre_links.py b/test/keystrokes/firefox/line_nav_pre_links.py index 6a21da9..e458302 100644 --- a/test/keystrokes/firefox/line_nav_pre_links.py +++ b/test/keystrokes/firefox/line_nav_pre_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_regions_and_fieldsets.py b/test/keystrokes/firefox/line_nav_regions_and_fieldsets.py index ddc8c45..e4f6e88 100644 --- a/test/keystrokes/firefox/line_nav_regions_and_fieldsets.py +++ b/test/keystrokes/firefox/line_nav_regions_and_fieldsets.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_regions_and_fieldsets_no_context.py b/test/keystrokes/firefox/line_nav_regions_and_fieldsets_no_context.py index cbbe8b3..461d08a 100644 --- a/test/keystrokes/firefox/line_nav_regions_and_fieldsets_no_context.py +++ b/test/keystrokes/firefox/line_nav_regions_and_fieldsets_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_role_application.py b/test/keystrokes/firefox/line_nav_role_application.py index c45779e..ec1ade0 100644 --- a/test/keystrokes/firefox/line_nav_role_application.py +++ b/test/keystrokes/firefox/line_nav_role_application.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_roledescriptions.py b/test/keystrokes/firefox/line_nav_roledescriptions.py index a7d2d61..041bc37 100644 --- a/test/keystrokes/firefox/line_nav_roledescriptions.py +++ b/test/keystrokes/firefox/line_nav_roledescriptions.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/line_nav_simple_form.py b/test/keystrokes/firefox/line_nav_simple_form.py index 7cb9fa9..cb033c2 100644 --- a/test/keystrokes/firefox/line_nav_simple_form.py +++ b/test/keystrokes/firefox/line_nav_simple_form.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation on a page with a simple form.""" diff --git a/test/keystrokes/firefox/line_nav_slash_test.py b/test/keystrokes/firefox/line_nav_slash_test.py index fcd79e8..adda97e 100644 --- a/test/keystrokes/firefox/line_nav_slash_test.py +++ b/test/keystrokes/firefox/line_nav_slash_test.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/line_nav_sun_java.py b/test/keystrokes/firefox/line_nav_sun_java.py index 592b203..d5eddf1 100644 --- a/test/keystrokes/firefox/line_nav_sun_java.py +++ b/test/keystrokes/firefox/line_nav_sun_java.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_table_captions.py b/test/keystrokes/firefox/line_nav_table_captions.py index c365228..c6d86eb 100644 --- a/test/keystrokes/firefox/line_nav_table_captions.py +++ b/test/keystrokes/firefox/line_nav_table_captions.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation in a table with a caption.""" diff --git a/test/keystrokes/firefox/line_nav_table_cell_links.py b/test/keystrokes/firefox/line_nav_table_cell_links.py index 4163476..1adbd3e 100644 --- a/test/keystrokes/firefox/line_nav_table_cell_links.py +++ b/test/keystrokes/firefox/line_nav_table_cell_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation with links in a cell with line breaks.""" diff --git a/test/keystrokes/firefox/line_nav_textarea_last_line.py b/test/keystrokes/firefox/line_nav_textarea_last_line.py index 802a29c..698cc06 100644 --- a/test/keystrokes/firefox/line_nav_textarea_last_line.py +++ b/test/keystrokes/firefox/line_nav_textarea_last_line.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_twitter_bug.py b/test/keystrokes/firefox/line_nav_twitter_bug.py index c50a951..c976980 100644 --- a/test/keystrokes/firefox/line_nav_twitter_bug.py +++ b/test/keystrokes/firefox/line_nav_twitter_bug.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" diff --git a/test/keystrokes/firefox/line_nav_wiki_down.py b/test/keystrokes/firefox/line_nav_wiki_down.py index c5c0145..2f46695 100644 --- a/test/keystrokes/firefox/line_nav_wiki_down.py +++ b/test/keystrokes/firefox/line_nav_wiki_down.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation.""" @@ -815,11 +815,11 @@ sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "79. Line Down", - ["BRAILLE LINE: '• Mailing list: cthulhu-list@gnome.org (Archives)'", + ["BRAILLE LINE: '• Mailing list: https://groups.io/g/stormux (Archives)'", " VISIBLE: '• Mailing list: cthulhu-list@gnome.', cursor=1", "SPEECH OUTPUT: '•.'", "SPEECH OUTPUT: 'Mailing list:'", - "SPEECH OUTPUT: 'cthulhu-list@gnome.org'", + "SPEECH OUTPUT: 'https://groups.io/g/stormux'", "SPEECH OUTPUT: 'link.'", "SPEECH OUTPUT: '('", "SPEECH OUTPUT: 'Archives'", diff --git a/test/keystrokes/firefox/line_nav_wiki_up.py b/test/keystrokes/firefox/line_nav_wiki_up.py index 32aa417..2fda80d 100644 --- a/test/keystrokes/firefox/line_nav_wiki_up.py +++ b/test/keystrokes/firefox/line_nav_wiki_up.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox on the Cthulhu wiki.""" @@ -268,11 +268,11 @@ sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Up")) sequence.append(utils.AssertPresentationAction( "24. Line Up", - ["BRAILLE LINE: '• Mailing list: cthulhu-list@gnome.org (Archives)'", + ["BRAILLE LINE: '• Mailing list: https://groups.io/g/stormux (Archives)'", " VISIBLE: '• Mailing list: cthulhu-list@gnome.', cursor=1", "SPEECH OUTPUT: '•.'", "SPEECH OUTPUT: 'Mailing list:'", - "SPEECH OUTPUT: 'cthulhu-list@gnome.org'", + "SPEECH OUTPUT: 'https://groups.io/g/stormux'", "SPEECH OUTPUT: 'link.'", "SPEECH OUTPUT: '('", "SPEECH OUTPUT: 'Archives'", diff --git a/test/keystrokes/firefox/longdesc_1.py b/test/keystrokes/firefox/longdesc_1.py index dcc9afa..d58fb2b 100644 --- a/test/keystrokes/firefox/longdesc_1.py +++ b/test/keystrokes/firefox/longdesc_1.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_10.py b/test/keystrokes/firefox/longdesc_10.py index cc25dfc..c16c65e 100644 --- a/test/keystrokes/firefox/longdesc_10.py +++ b/test/keystrokes/firefox/longdesc_10.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_11.py b/test/keystrokes/firefox/longdesc_11.py index 7124087..df87c6d 100644 --- a/test/keystrokes/firefox/longdesc_11.py +++ b/test/keystrokes/firefox/longdesc_11.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_12.py b/test/keystrokes/firefox/longdesc_12.py index c6802a1..b0dcdf8 100644 --- a/test/keystrokes/firefox/longdesc_12.py +++ b/test/keystrokes/firefox/longdesc_12.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_13.py b/test/keystrokes/firefox/longdesc_13.py index cadedb7..1855016 100644 --- a/test/keystrokes/firefox/longdesc_13.py +++ b/test/keystrokes/firefox/longdesc_13.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_14.py b/test/keystrokes/firefox/longdesc_14.py index dcc9afa..d58fb2b 100644 --- a/test/keystrokes/firefox/longdesc_14.py +++ b/test/keystrokes/firefox/longdesc_14.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_15.py b/test/keystrokes/firefox/longdesc_15.py index dcc9afa..d58fb2b 100644 --- a/test/keystrokes/firefox/longdesc_15.py +++ b/test/keystrokes/firefox/longdesc_15.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_2.py b/test/keystrokes/firefox/longdesc_2.py index dcc9afa..d58fb2b 100644 --- a/test/keystrokes/firefox/longdesc_2.py +++ b/test/keystrokes/firefox/longdesc_2.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_3.py b/test/keystrokes/firefox/longdesc_3.py index 18e1e7f..1c037f3 100644 --- a/test/keystrokes/firefox/longdesc_3.py +++ b/test/keystrokes/firefox/longdesc_3.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_4.py b/test/keystrokes/firefox/longdesc_4.py index e614fd0..613a789 100644 --- a/test/keystrokes/firefox/longdesc_4.py +++ b/test/keystrokes/firefox/longdesc_4.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_5.py b/test/keystrokes/firefox/longdesc_5.py index e614fd0..613a789 100644 --- a/test/keystrokes/firefox/longdesc_5.py +++ b/test/keystrokes/firefox/longdesc_5.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_6.py b/test/keystrokes/firefox/longdesc_6.py index e614fd0..613a789 100644 --- a/test/keystrokes/firefox/longdesc_6.py +++ b/test/keystrokes/firefox/longdesc_6.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_7.py b/test/keystrokes/firefox/longdesc_7.py index 18e1e7f..1c037f3 100644 --- a/test/keystrokes/firefox/longdesc_7.py +++ b/test/keystrokes/firefox/longdesc_7.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_8.py b/test/keystrokes/firefox/longdesc_8.py index 7124087..df87c6d 100644 --- a/test/keystrokes/firefox/longdesc_8.py +++ b/test/keystrokes/firefox/longdesc_8.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/longdesc_9.py b/test/keystrokes/firefox/longdesc_9.py index 18e1e7f..1c037f3 100644 --- a/test/keystrokes/firefox/longdesc_9.py +++ b/test/keystrokes/firefox/longdesc_9.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_fraction.py b/test/keystrokes/firefox/math_line_nav_fraction.py index 4256e52..db6a468 100644 --- a/test/keystrokes/firefox/math_line_nav_fraction.py +++ b/test/keystrokes/firefox/math_line_nav_fraction.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_math_in_dialog.py b/test/keystrokes/firefox/math_line_nav_math_in_dialog.py index fb541e7..ed3c5b2 100644 --- a/test/keystrokes/firefox/math_line_nav_math_in_dialog.py +++ b/test/keystrokes/firefox/math_line_nav_math_in_dialog.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_mathvariant.py b/test/keystrokes/firefox/math_line_nav_mathvariant.py index 923aab0..eb49599 100644 --- a/test/keystrokes/firefox/math_line_nav_mathvariant.py +++ b/test/keystrokes/firefox/math_line_nav_mathvariant.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_menclose.py b/test/keystrokes/firefox/math_line_nav_menclose.py index a61e121..535944b 100644 --- a/test/keystrokes/firefox/math_line_nav_menclose.py +++ b/test/keystrokes/firefox/math_line_nav_menclose.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_mfenced.py b/test/keystrokes/firefox/math_line_nav_mfenced.py index c4b0f10..b6c54f2 100644 --- a/test/keystrokes/firefox/math_line_nav_mfenced.py +++ b/test/keystrokes/firefox/math_line_nav_mfenced.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_mroot.py b/test/keystrokes/firefox/math_line_nav_mroot.py index 20dfaaa..c3aa172 100644 --- a/test/keystrokes/firefox/math_line_nav_mroot.py +++ b/test/keystrokes/firefox/math_line_nav_mroot.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_mrow.py b/test/keystrokes/firefox/math_line_nav_mrow.py index e1a1b7d..6621a44 100644 --- a/test/keystrokes/firefox/math_line_nav_mrow.py +++ b/test/keystrokes/firefox/math_line_nav_mrow.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_punctuation.py b/test/keystrokes/firefox/math_line_nav_punctuation.py index 2eb785c..0dd0703 100644 --- a/test/keystrokes/firefox/math_line_nav_punctuation.py +++ b/test/keystrokes/firefox/math_line_nav_punctuation.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_scripts.py b/test/keystrokes/firefox/math_line_nav_scripts.py index 6eefe1c..3b5e4e1 100644 --- a/test/keystrokes/firefox/math_line_nav_scripts.py +++ b/test/keystrokes/firefox/math_line_nav_scripts.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_table.py b/test/keystrokes/firefox/math_line_nav_table.py index b7d3d18..3e75388 100644 --- a/test/keystrokes/firefox/math_line_nav_table.py +++ b/test/keystrokes/firefox/math_line_nav_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_tiny_mathml.py b/test/keystrokes/firefox/math_line_nav_tiny_mathml.py index 53ee20f..148c5a2 100644 --- a/test/keystrokes/firefox/math_line_nav_tiny_mathml.py +++ b/test/keystrokes/firefox/math_line_nav_tiny_mathml.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/math_line_nav_torture_test.py b/test/keystrokes/firefox/math_line_nav_torture_test.py index 5f2cf72..a816d23 100644 --- a/test/keystrokes/firefox/math_line_nav_torture_test.py +++ b/test/keystrokes/firefox/math_line_nav_torture_test.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/mouseover_javascript_alert.py b/test/keystrokes/firefox/mouseover_javascript_alert.py index 2aec6d9..935f4b4 100644 --- a/test/keystrokes/firefox/mouseover_javascript_alert.py +++ b/test/keystrokes/firefox/mouseover_javascript_alert.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Cthulhu's support for mouseovers.""" diff --git a/test/keystrokes/firefox/object_nav_descriptions_down.py b/test/keystrokes/firefox/object_nav_descriptions_down.py index 9cbaaea..a58b5b5 100644 --- a/test/keystrokes/firefox/object_nav_descriptions_down.py +++ b/test/keystrokes/firefox/object_nav_descriptions_down.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/object_nav_descriptions_up.py b/test/keystrokes/firefox/object_nav_descriptions_up.py index 52d3105..5ba7cbd 100644 --- a/test/keystrokes/firefox/object_nav_descriptions_up.py +++ b/test/keystrokes/firefox/object_nav_descriptions_up.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/object_nav_link_in_quotes.py b/test/keystrokes/firefox/object_nav_link_in_quotes.py index 0d57b3f..75bc1ed 100644 --- a/test/keystrokes/firefox/object_nav_link_in_quotes.py +++ b/test/keystrokes/firefox/object_nav_link_in_quotes.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/object_nav_links_in_text.py b/test/keystrokes/firefox/object_nav_links_in_text.py index 4a41e33..f51e43b 100644 --- a/test/keystrokes/firefox/object_nav_links_in_text.py +++ b/test/keystrokes/firefox/object_nav_links_in_text.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of object navigation.""" diff --git a/test/keystrokes/firefox/object_nav_links_on_line.py b/test/keystrokes/firefox/object_nav_links_on_line.py index 71e8661..08cb06b 100644 --- a/test/keystrokes/firefox/object_nav_links_on_line.py +++ b/test/keystrokes/firefox/object_nav_links_on_line.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of object navigation.""" diff --git a/test/keystrokes/firefox/object_nav_simple_form_down.py b/test/keystrokes/firefox/object_nav_simple_form_down.py index e7fe3a3..a2a7c72 100644 --- a/test/keystrokes/firefox/object_nav_simple_form_down.py +++ b/test/keystrokes/firefox/object_nav_simple_form_down.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of object navigation.""" diff --git a/test/keystrokes/firefox/object_nav_simple_form_up.py b/test/keystrokes/firefox/object_nav_simple_form_up.py index c8052c5..6e47047 100644 --- a/test/keystrokes/firefox/object_nav_simple_form_up.py +++ b/test/keystrokes/firefox/object_nav_simple_form_up.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of object navigation.""" diff --git a/test/keystrokes/firefox/say_all_aria_landmarks_no_context.py b/test/keystrokes/firefox/say_all_aria_landmarks_no_context.py index d1fd80a..d33e658 100644 --- a/test/keystrokes/firefox/say_all_aria_landmarks_no_context.py +++ b/test/keystrokes/firefox/say_all_aria_landmarks_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_blockquote.py b/test/keystrokes/firefox/say_all_blockquote.py index 210f1da..200a3c8 100644 --- a/test/keystrokes/firefox/say_all_blockquote.py +++ b/test/keystrokes/firefox/say_all_blockquote.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_blockquote_no_context.py b/test/keystrokes/firefox/say_all_blockquote_no_context.py index 0faf4dd..ac7b635 100644 --- a/test/keystrokes/firefox/say_all_blockquote_no_context.py +++ b/test/keystrokes/firefox/say_all_blockquote_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_bug_511389.py b/test/keystrokes/firefox/say_all_bug_511389.py index 4ed539b..3a29dd5 100644 --- a/test/keystrokes/firefox/say_all_bug_511389.py +++ b/test/keystrokes/firefox/say_all_bug_511389.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_bug_591351_1.py b/test/keystrokes/firefox/say_all_bug_591351_1.py index 7f5156b..8dfb00f 100644 --- a/test/keystrokes/firefox/say_all_bug_591351_1.py +++ b/test/keystrokes/firefox/say_all_bug_591351_1.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll output.""" diff --git a/test/keystrokes/firefox/say_all_bugzilla_search.py b/test/keystrokes/firefox/say_all_bugzilla_search.py index 4d0506e..b06b446 100644 --- a/test/keystrokes/firefox/say_all_bugzilla_search.py +++ b/test/keystrokes/firefox/say_all_bugzilla_search.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_bugzilla_search_no_context.py b/test/keystrokes/firefox/say_all_bugzilla_search_no_context.py index 072c0e2..0920ea6 100644 --- a/test/keystrokes/firefox/say_all_bugzilla_search_no_context.py +++ b/test/keystrokes/firefox/say_all_bugzilla_search_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_empty_anchor.py b/test/keystrokes/firefox/say_all_empty_anchor.py index 9bba2be..1d455d5 100644 --- a/test/keystrokes/firefox/say_all_empty_anchor.py +++ b/test/keystrokes/firefox/say_all_empty_anchor.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_enter_bug.py b/test/keystrokes/firefox/say_all_enter_bug.py index 2221143..26a34dd 100644 --- a/test/keystrokes/firefox/say_all_enter_bug.py +++ b/test/keystrokes/firefox/say_all_enter_bug.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_entries.py b/test/keystrokes/firefox/say_all_entries.py index 0198d5a..6e88f56 100644 --- a/test/keystrokes/firefox/say_all_entries.py +++ b/test/keystrokes/firefox/say_all_entries.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_heading_section.py b/test/keystrokes/firefox/say_all_heading_section.py index d2580ed..ae6ea90 100644 --- a/test/keystrokes/firefox/say_all_heading_section.py +++ b/test/keystrokes/firefox/say_all_heading_section.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_hidden_elements.py b/test/keystrokes/firefox/say_all_hidden_elements.py index 5cc3426..9d510af 100644 --- a/test/keystrokes/firefox/say_all_hidden_elements.py +++ b/test/keystrokes/firefox/say_all_hidden_elements.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_imagemap.py b/test/keystrokes/firefox/say_all_imagemap.py index eb5d106..aa0ecf9 100644 --- a/test/keystrokes/firefox/say_all_imagemap.py +++ b/test/keystrokes/firefox/say_all_imagemap.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_multi_line_text.py b/test/keystrokes/firefox/say_all_multi_line_text.py index bed9f1f..28d52b3 100644 --- a/test/keystrokes/firefox/say_all_multi_line_text.py +++ b/test/keystrokes/firefox/say_all_multi_line_text.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_multi_line_text_no_context.py b/test/keystrokes/firefox/say_all_multi_line_text_no_context.py index 9b6aa68..31c1756 100644 --- a/test/keystrokes/firefox/say_all_multi_line_text_no_context.py +++ b/test/keystrokes/firefox/say_all_multi_line_text_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_nested_tables.py b/test/keystrokes/firefox/say_all_nested_tables.py index 238d48d..aabda1e 100644 --- a/test/keystrokes/firefox/say_all_nested_tables.py +++ b/test/keystrokes/firefox/say_all_nested_tables.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_nested_tables_no_context.py b/test/keystrokes/firefox/say_all_nested_tables_no_context.py index 238d48d..aabda1e 100644 --- a/test/keystrokes/firefox/say_all_nested_tables_no_context.py +++ b/test/keystrokes/firefox/say_all_nested_tables_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_onmouseup.py b/test/keystrokes/firefox/say_all_onmouseup.py index f49eccf..30b5697 100644 --- a/test/keystrokes/firefox/say_all_onmouseup.py +++ b/test/keystrokes/firefox/say_all_onmouseup.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_regions_and_fieldsets.py b/test/keystrokes/firefox/say_all_regions_and_fieldsets.py index 4633fb0..e9effa9 100644 --- a/test/keystrokes/firefox/say_all_regions_and_fieldsets.py +++ b/test/keystrokes/firefox/say_all_regions_and_fieldsets.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_regions_and_fieldsets_no_context.py b/test/keystrokes/firefox/say_all_regions_and_fieldsets_no_context.py index eb161cd..e93bdb0 100644 --- a/test/keystrokes/firefox/say_all_regions_and_fieldsets_no_context.py +++ b/test/keystrokes/firefox/say_all_regions_and_fieldsets_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_role_combo_box.py b/test/keystrokes/firefox/say_all_role_combo_box.py index a0168cc..015078b 100644 --- a/test/keystrokes/firefox/say_all_role_combo_box.py +++ b/test/keystrokes/firefox/say_all_role_combo_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_role_links.py b/test/keystrokes/firefox/say_all_role_links.py index 6c288b8..f0b0960 100644 --- a/test/keystrokes/firefox/say_all_role_links.py +++ b/test/keystrokes/firefox/say_all_role_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_role_links_no_context.py b/test/keystrokes/firefox/say_all_role_links_no_context.py index 093e445..4204370 100644 --- a/test/keystrokes/firefox/say_all_role_links_no_context.py +++ b/test/keystrokes/firefox/say_all_role_links_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_role_lists.py b/test/keystrokes/firefox/say_all_role_lists.py index d174135..7f376c4 100644 --- a/test/keystrokes/firefox/say_all_role_lists.py +++ b/test/keystrokes/firefox/say_all_role_lists.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_role_lists_no_context.py b/test/keystrokes/firefox/say_all_role_lists_no_context.py index e53a64b..f8ab589 100644 --- a/test/keystrokes/firefox/say_all_role_lists_no_context.py +++ b/test/keystrokes/firefox/say_all_role_lists_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_simple_form.py b/test/keystrokes/firefox/say_all_simple_form.py index 88f3535..7df9776 100644 --- a/test/keystrokes/firefox/say_all_simple_form.py +++ b/test/keystrokes/firefox/say_all_simple_form.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_table_caption.py b/test/keystrokes/firefox/say_all_table_caption.py index 2c7c216..dab79ac 100644 --- a/test/keystrokes/firefox/say_all_table_caption.py +++ b/test/keystrokes/firefox/say_all_table_caption.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_table_caption_no_context.py b/test/keystrokes/firefox/say_all_table_caption_no_context.py index f929d8f..46e91df 100644 --- a/test/keystrokes/firefox/say_all_table_caption_no_context.py +++ b/test/keystrokes/firefox/say_all_table_caption_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_table_cell_links.py b/test/keystrokes/firefox/say_all_table_cell_links.py index b82ef72..0f33a6e 100644 --- a/test/keystrokes/firefox/say_all_table_cell_links.py +++ b/test/keystrokes/firefox/say_all_table_cell_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" diff --git a/test/keystrokes/firefox/say_all_wiki.py b/test/keystrokes/firefox/say_all_wiki.py index 985c692..b484f36 100644 --- a/test/keystrokes/firefox/say_all_wiki.py +++ b/test/keystrokes/firefox/say_all_wiki.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" @@ -259,7 +259,7 @@ sequence.append(utils.AssertPresentationAction( "SPEECH OUTPUT: 'link'", "SPEECH OUTPUT: '•'", "SPEECH OUTPUT: 'Mailing list:'", - "SPEECH OUTPUT: 'cthulhu-list@gnome.org'", + "SPEECH OUTPUT: 'https://groups.io/g/stormux'", "SPEECH OUTPUT: 'link'", "SPEECH OUTPUT: '('", "SPEECH OUTPUT: 'Archives'", diff --git a/test/keystrokes/firefox/say_all_wiki_no_context.py b/test/keystrokes/firefox/say_all_wiki_no_context.py index 7274cfa..224ae13 100644 --- a/test/keystrokes/firefox/say_all_wiki_no_context.py +++ b/test/keystrokes/firefox/say_all_wiki_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of sayAll.""" @@ -252,7 +252,7 @@ sequence.append(utils.AssertPresentationAction( "SPEECH OUTPUT: 'link'", "SPEECH OUTPUT: '•'", "SPEECH OUTPUT: 'Mailing list:'", - "SPEECH OUTPUT: 'cthulhu-list@gnome.org'", + "SPEECH OUTPUT: 'https://groups.io/g/stormux'", "SPEECH OUTPUT: 'link'", "SPEECH OUTPUT: '('", "SPEECH OUTPUT: 'Archives'", diff --git a/test/keystrokes/firefox/selection_textarea.py b/test/keystrokes/firefox/selection_textarea.py index 8dfabba..eae5c39 100644 --- a/test/keystrokes/firefox/selection_textarea.py +++ b/test/keystrokes/firefox/selection_textarea.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/selection_wiki.py b/test/keystrokes/firefox/selection_wiki.py index b17ef63..26b2bf8 100644 --- a/test/keystrokes/firefox/selection_wiki.py +++ b/test/keystrokes/firefox/selection_wiki.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/spelling_errors.py b/test/keystrokes/firefox/spelling_errors.py index 7fb219a..ee74fbe 100644 --- a/test/keystrokes/firefox/spelling_errors.py +++ b/test/keystrokes/firefox/spelling_errors.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation of spelling errors in text.""" diff --git a/test/keystrokes/firefox/ui_context_menu_flat_review.py b/test/keystrokes/firefox/ui_context_menu_flat_review.py index 6c36e0c..05c8234 100644 --- a/test/keystrokes/firefox/ui_context_menu_flat_review.py +++ b/test/keystrokes/firefox/ui_context_menu_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/ui_doc_tabs.py b/test/keystrokes/firefox/ui_doc_tabs.py index 5edbea6..ebe9001 100644 --- a/test/keystrokes/firefox/ui_doc_tabs.py +++ b/test/keystrokes/firefox/ui_doc_tabs.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of document tabs""" diff --git a/test/keystrokes/firefox/ui_role_accel_label.py b/test/keystrokes/firefox/ui_role_accel_label.py index 6d58b8b..894c134 100644 --- a/test/keystrokes/firefox/ui_role_accel_label.py +++ b/test/keystrokes/firefox/ui_role_accel_label.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu accelerator label output of Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_check_box.py b/test/keystrokes/firefox/ui_role_check_box.py index 4d8188c..c53f251 100644 --- a/test/keystrokes/firefox/ui_role_check_box.py +++ b/test/keystrokes/firefox/ui_role_check_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of gtk+ checkbox output from within Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_check_menu_item.py b/test/keystrokes/firefox/ui_role_check_menu_item.py index 0f8aa6d..afe3d91 100644 --- a/test/keystrokes/firefox/ui_role_check_menu_item.py +++ b/test/keystrokes/firefox/ui_role_check_menu_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu checkbox output using Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_entry.py b/test/keystrokes/firefox/ui_role_entry.py index 8d5b2fa..e24b004 100644 --- a/test/keystrokes/firefox/ui_role_entry.py +++ b/test/keystrokes/firefox/ui_role_entry.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of entry output using Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_menu_bar.py b/test/keystrokes/firefox/ui_role_menu_bar.py index e452639..1edfc07 100644 --- a/test/keystrokes/firefox/ui_role_menu_bar.py +++ b/test/keystrokes/firefox/ui_role_menu_bar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu bar output of Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_menu_flat_review.py b/test/keystrokes/firefox/ui_role_menu_flat_review.py index 0323cdb..63a89e4 100644 --- a/test/keystrokes/firefox/ui_role_menu_flat_review.py +++ b/test/keystrokes/firefox/ui_role_menu_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu and menu item output.""" diff --git a/test/keystrokes/firefox/ui_role_page_tab.py b/test/keystrokes/firefox/ui_role_page_tab.py index 1c4a7ca..ad2e441 100644 --- a/test/keystrokes/firefox/ui_role_page_tab.py +++ b/test/keystrokes/firefox/ui_role_page_tab.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of page tab output using Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_push_button.py b/test/keystrokes/firefox/ui_role_push_button.py index abddefb..77fd31c 100644 --- a/test/keystrokes/firefox/ui_role_push_button.py +++ b/test/keystrokes/firefox/ui_role_push_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of push button output using Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_radio_button.py b/test/keystrokes/firefox/ui_role_radio_button.py index 5cf55dc..66d944d 100644 --- a/test/keystrokes/firefox/ui_role_radio_button.py +++ b/test/keystrokes/firefox/ui_role_radio_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of radio button output using Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_radio_menu_item.py b/test/keystrokes/firefox/ui_role_radio_menu_item.py index de3ff3f..3e77828 100644 --- a/test/keystrokes/firefox/ui_role_radio_menu_item.py +++ b/test/keystrokes/firefox/ui_role_radio_menu_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu radio button output using Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_tree.py b/test/keystrokes/firefox/ui_role_tree.py index 107bc5b..e655dd1 100644 --- a/test/keystrokes/firefox/ui_role_tree.py +++ b/test/keystrokes/firefox/ui_role_tree.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of tree output using Firefox.""" diff --git a/test/keystrokes/firefox/ui_role_tree_table.py b/test/keystrokes/firefox/ui_role_tree_table.py index 410e420..047d227 100644 --- a/test/keystrokes/firefox/ui_role_tree_table.py +++ b/test/keystrokes/firefox/ui_role_tree_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of tree table output using Firefox.""" diff --git a/test/keystrokes/firefox/ui_title_and_status_bar.py b/test/keystrokes/firefox/ui_title_and_status_bar.py index a62f529..c2765e9 100644 --- a/test/keystrokes/firefox/ui_title_and_status_bar.py +++ b/test/keystrokes/firefox/ui_title_and_status_bar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/firefox/word_nav_links.py b/test/keystrokes/firefox/word_nav_links.py index 682a5fd..d77c9fb 100644 --- a/test/keystrokes/firefox/word_nav_links.py +++ b/test/keystrokes/firefox/word_nav_links.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/firefox/word_nav_list_items.py b/test/keystrokes/firefox/word_nav_list_items.py index da23aed..d00f113 100644 --- a/test/keystrokes/firefox/word_nav_list_items.py +++ b/test/keystrokes/firefox/word_nav_list_items.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of line navigation output of Firefox.""" diff --git a/test/keystrokes/gnome-appearance-properties/font-preferences.py b/test/keystrokes/gnome-appearance-properties/font-preferences.py index 4f1b567..a993852 100644 --- a/test/keystrokes/gnome-appearance-properties/font-preferences.py +++ b/test/keystrokes/gnome-appearance-properties/font-preferences.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Testing of font preferences in the gnome-appearance properties dialog.""" diff --git a/test/keystrokes/gnome-calculator/gcalctool01.py b/test/keystrokes/gnome-calculator/gcalctool01.py index 7851289..6d81f0e 100644 --- a/test/keystrokes/gnome-calculator/gcalctool01.py +++ b/test/keystrokes/gnome-calculator/gcalctool01.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu '''TEST the Ability to find out the square root of a selected number''' diff --git a/test/keystrokes/gnome-clocks/stop_watch_flat_review.py b/test/keystrokes/gnome-clocks/stop_watch_flat_review.py index c701e99..1bb2061 100644 --- a/test/keystrokes/gnome-clocks/stop_watch_flat_review.py +++ b/test/keystrokes/gnome-clocks/stop_watch_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-clocks/timer_flat_review.py b/test/keystrokes/gnome-clocks/timer_flat_review.py index 355c5d9..95f3e00 100644 --- a/test/keystrokes/gnome-clocks/timer_flat_review.py +++ b/test/keystrokes/gnome-clocks/timer_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/background_updates.py b/test/keystrokes/gnome-terminal/background_updates.py index 6fc74e1..0fbbe88 100644 --- a/test/keystrokes/gnome-terminal/background_updates.py +++ b/test/keystrokes/gnome-terminal/background_updates.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/command_not_found.py b/test/keystrokes/gnome-terminal/command_not_found.py index eb96ed7..e9bf483 100644 --- a/test/keystrokes/gnome-terminal/command_not_found.py +++ b/test/keystrokes/gnome-terminal/command_not_found.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/exit_shell.py b/test/keystrokes/gnome-terminal/exit_shell.py index d4269bc..52070b9 100644 --- a/test/keystrokes/gnome-terminal/exit_shell.py +++ b/test/keystrokes/gnome-terminal/exit_shell.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/ls.py b/test/keystrokes/gnome-terminal/ls.py index 376f99a..f8160a4 100644 --- a/test/keystrokes/gnome-terminal/ls.py +++ b/test/keystrokes/gnome-terminal/ls.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import os diff --git a/test/keystrokes/gnome-terminal/ls_flat_review.py b/test/keystrokes/gnome-terminal/ls_flat_review.py index 903eb29..05ca217 100644 --- a/test/keystrokes/gnome-terminal/ls_flat_review.py +++ b/test/keystrokes/gnome-terminal/ls_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu import os diff --git a/test/keystrokes/gnome-terminal/man_page.py b/test/keystrokes/gnome-terminal/man_page.py index c90712e..6a200e8 100644 --- a/test/keystrokes/gnome-terminal/man_page.py +++ b/test/keystrokes/gnome-terminal/man_page.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/man_page_flat_review.py b/test/keystrokes/gnome-terminal/man_page_flat_review.py index 2d4c5bd..2495251 100644 --- a/test/keystrokes/gnome-terminal/man_page_flat_review.py +++ b/test/keystrokes/gnome-terminal/man_page_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/multiple_tabs.py b/test/keystrokes/gnome-terminal/multiple_tabs.py index 5903166..da16c25 100644 --- a/test/keystrokes/gnome-terminal/multiple_tabs.py +++ b/test/keystrokes/gnome-terminal/multiple_tabs.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/nano.py b/test/keystrokes/gnome-terminal/nano.py index 7a48f57..b1c9b07 100644 --- a/test/keystrokes/gnome-terminal/nano.py +++ b/test/keystrokes/gnome-terminal/nano.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/nano_flat_review.py b/test/keystrokes/gnome-terminal/nano_flat_review.py index eff5bfd..896efc3 100644 --- a/test/keystrokes/gnome-terminal/nano_flat_review.py +++ b/test/keystrokes/gnome-terminal/nano_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/pasting.py b/test/keystrokes/gnome-terminal/pasting.py index b54eab0..0b5941a 100644 --- a/test/keystrokes/gnome-terminal/pasting.py +++ b/test/keystrokes/gnome-terminal/pasting.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/reverse_i_search.py b/test/keystrokes/gnome-terminal/reverse_i_search.py index 31f1327..115898b 100644 --- a/test/keystrokes/gnome-terminal/reverse_i_search.py +++ b/test/keystrokes/gnome-terminal/reverse_i_search.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/tab_completion.py b/test/keystrokes/gnome-terminal/tab_completion.py index 7e99612..78dfdb5 100644 --- a/test/keystrokes/gnome-terminal/tab_completion.py +++ b/test/keystrokes/gnome-terminal/tab_completion.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gnome-terminal/vim-append.py b/test/keystrokes/gnome-terminal/vim-append.py index b28799a..29522cf 100644 --- a/test/keystrokes/gnome-terminal/vim-append.py +++ b/test/keystrokes/gnome-terminal/vim-append.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gtk-demo/context_menu_flat_review.py b/test/keystrokes/gtk-demo/context_menu_flat_review.py index 2a41f1c..02e54fd 100644 --- a/test/keystrokes/gtk-demo/context_menu_flat_review.py +++ b/test/keystrokes/gtk-demo/context_menu_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gtk-demo/learn_mode.py b/test/keystrokes/gtk-demo/learn_mode.py index 87b577f..d9710df 100644 --- a/test/keystrokes/gtk-demo/learn_mode.py +++ b/test/keystrokes/gtk-demo/learn_mode.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of learn mode.""" diff --git a/test/keystrokes/gtk-demo/role_accel_label.py b/test/keystrokes/gtk-demo/role_accel_label.py index 6b555f3..2b778a4 100644 --- a/test/keystrokes/gtk-demo/role_accel_label.py +++ b/test/keystrokes/gtk-demo/role_accel_label.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu accelerator label output.""" diff --git a/test/keystrokes/gtk-demo/role_alert.py b/test/keystrokes/gtk-demo/role_alert.py index e1991f3..eeefbc0 100644 --- a/test/keystrokes/gtk-demo/role_alert.py +++ b/test/keystrokes/gtk-demo/role_alert.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of dialogs and alerts.""" diff --git a/test/keystrokes/gtk-demo/role_check_box.py b/test/keystrokes/gtk-demo/role_check_box.py index fcce283..78ecce4 100644 --- a/test/keystrokes/gtk-demo/role_check_box.py +++ b/test/keystrokes/gtk-demo/role_check_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of checkbox output.""" diff --git a/test/keystrokes/gtk-demo/role_check_menu_item.py b/test/keystrokes/gtk-demo/role_check_menu_item.py index 48f3dd3..c8861dd 100644 --- a/test/keystrokes/gtk-demo/role_check_menu_item.py +++ b/test/keystrokes/gtk-demo/role_check_menu_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of check menu item output.""" diff --git a/test/keystrokes/gtk-demo/role_column_header.py b/test/keystrokes/gtk-demo/role_column_header.py index 6b77696..81ea1c7 100644 --- a/test/keystrokes/gtk-demo/role_column_header.py +++ b/test/keystrokes/gtk-demo/role_column_header.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of column header output.""" diff --git a/test/keystrokes/gtk-demo/role_combo_box.py b/test/keystrokes/gtk-demo/role_combo_box.py index 846360a..2782dbf 100644 --- a/test/keystrokes/gtk-demo/role_combo_box.py +++ b/test/keystrokes/gtk-demo/role_combo_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of combobox output.""" diff --git a/test/keystrokes/gtk-demo/role_combo_box2.py b/test/keystrokes/gtk-demo/role_combo_box2.py index 4baeefc..2e5e426 100644 --- a/test/keystrokes/gtk-demo/role_combo_box2.py +++ b/test/keystrokes/gtk-demo/role_combo_box2.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of labelled combo box output.""" diff --git a/test/keystrokes/gtk-demo/role_dialog.py b/test/keystrokes/gtk-demo/role_dialog.py index 44cd88f..3faff17 100644 --- a/test/keystrokes/gtk-demo/role_dialog.py +++ b/test/keystrokes/gtk-demo/role_dialog.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of dialog presentation.""" diff --git a/test/keystrokes/gtk-demo/role_drawing_area.py b/test/keystrokes/gtk-demo/role_drawing_area.py index 1f37bff..fec0bdf 100644 --- a/test/keystrokes/gtk-demo/role_drawing_area.py +++ b/test/keystrokes/gtk-demo/role_drawing_area.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of drawing area output.""" diff --git a/test/keystrokes/gtk-demo/role_icon.py b/test/keystrokes/gtk-demo/role_icon.py index eceee47..e8cfbe0 100644 --- a/test/keystrokes/gtk-demo/role_icon.py +++ b/test/keystrokes/gtk-demo/role_icon.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of icon output.""" diff --git a/test/keystrokes/gtk-demo/role_icon_flat_review.py b/test/keystrokes/gtk-demo/role_icon_flat_review.py index 7ca2fe9..6cb73ad 100644 --- a/test/keystrokes/gtk-demo/role_icon_flat_review.py +++ b/test/keystrokes/gtk-demo/role_icon_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of icon output.""" diff --git a/test/keystrokes/gtk-demo/role_label.py b/test/keystrokes/gtk-demo/role_label.py index 5772e55..0d939e8 100644 --- a/test/keystrokes/gtk-demo/role_label.py +++ b/test/keystrokes/gtk-demo/role_label.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of label presentation.""" diff --git a/test/keystrokes/gtk-demo/role_menu.py b/test/keystrokes/gtk-demo/role_menu.py index a4f7061..5ca65e8 100644 --- a/test/keystrokes/gtk-demo/role_menu.py +++ b/test/keystrokes/gtk-demo/role_menu.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu and menu item output.""" diff --git a/test/keystrokes/gtk-demo/role_menu_flat_review.py b/test/keystrokes/gtk-demo/role_menu_flat_review.py index 96157d2..66f262d 100644 --- a/test/keystrokes/gtk-demo/role_menu_flat_review.py +++ b/test/keystrokes/gtk-demo/role_menu_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu and menu item output.""" diff --git a/test/keystrokes/gtk-demo/role_page_tab.py b/test/keystrokes/gtk-demo/role_page_tab.py index 05a6be3..36d926e 100644 --- a/test/keystrokes/gtk-demo/role_page_tab.py +++ b/test/keystrokes/gtk-demo/role_page_tab.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of page tab output.""" diff --git a/test/keystrokes/gtk-demo/role_push_button.py b/test/keystrokes/gtk-demo/role_push_button.py index c0491cf..3efc769 100644 --- a/test/keystrokes/gtk-demo/role_push_button.py +++ b/test/keystrokes/gtk-demo/role_push_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of push button output.""" diff --git a/test/keystrokes/gtk-demo/role_radio_button.py b/test/keystrokes/gtk-demo/role_radio_button.py index fd5fdf4..97eb28f 100644 --- a/test/keystrokes/gtk-demo/role_radio_button.py +++ b/test/keystrokes/gtk-demo/role_radio_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of radio button output.""" diff --git a/test/keystrokes/gtk-demo/role_spin_button.py b/test/keystrokes/gtk-demo/role_spin_button.py index f89878c..a12044f 100644 --- a/test/keystrokes/gtk-demo/role_spin_button.py +++ b/test/keystrokes/gtk-demo/role_spin_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of spin button output""" diff --git a/test/keystrokes/gtk-demo/role_split_pane.py b/test/keystrokes/gtk-demo/role_split_pane.py index 1a7ef7d..43c944a 100644 --- a/test/keystrokes/gtk-demo/role_split_pane.py +++ b/test/keystrokes/gtk-demo/role_split_pane.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of split pane output.""" diff --git a/test/keystrokes/gtk-demo/role_status_bar.py b/test/keystrokes/gtk-demo/role_status_bar.py index bf07e68..5e5a483 100644 --- a/test/keystrokes/gtk-demo/role_status_bar.py +++ b/test/keystrokes/gtk-demo/role_status_bar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of status bar output.""" diff --git a/test/keystrokes/gtk-demo/role_table.py b/test/keystrokes/gtk-demo/role_table.py index 52c0b2f..8a9f018 100644 --- a/test/keystrokes/gtk-demo/role_table.py +++ b/test/keystrokes/gtk-demo/role_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of table output.""" diff --git a/test/keystrokes/gtk-demo/role_text_multiline.py b/test/keystrokes/gtk-demo/role_text_multiline.py index eef8452..27541be 100644 --- a/test/keystrokes/gtk-demo/role_text_multiline.py +++ b/test/keystrokes/gtk-demo/role_text_multiline.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of multiline editable text.""" diff --git a/test/keystrokes/gtk-demo/role_text_multiline_flat_review.py b/test/keystrokes/gtk-demo/role_text_multiline_flat_review.py index d357125..c750c94 100644 --- a/test/keystrokes/gtk-demo/role_text_multiline_flat_review.py +++ b/test/keystrokes/gtk-demo/role_text_multiline_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of flat review of text and a toolbar.""" diff --git a/test/keystrokes/gtk-demo/role_text_multiline_navigation.py b/test/keystrokes/gtk-demo/role_text_multiline_navigation.py index d74d702..b8a9ffe 100644 --- a/test/keystrokes/gtk-demo/role_text_multiline_navigation.py +++ b/test/keystrokes/gtk-demo/role_text_multiline_navigation.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of text output for caret navigation.""" diff --git a/test/keystrokes/gtk-demo/role_text_multiline_navigation2.py b/test/keystrokes/gtk-demo/role_text_multiline_navigation2.py index 89bd617..41eeb78 100644 --- a/test/keystrokes/gtk-demo/role_text_multiline_navigation2.py +++ b/test/keystrokes/gtk-demo/role_text_multiline_navigation2.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of text output for caret navigation and flat review.""" diff --git a/test/keystrokes/gtk-demo/role_toggle_button.py b/test/keystrokes/gtk-demo/role_toggle_button.py index 3fe72ea..adf5e99 100644 --- a/test/keystrokes/gtk-demo/role_toggle_button.py +++ b/test/keystrokes/gtk-demo/role_toggle_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of toggle button output.""" diff --git a/test/keystrokes/gtk-demo/role_toolbar.py b/test/keystrokes/gtk-demo/role_toolbar.py index 5102114..cf22c42 100644 --- a/test/keystrokes/gtk-demo/role_toolbar.py +++ b/test/keystrokes/gtk-demo/role_toolbar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of toolbar output using.""" diff --git a/test/keystrokes/gtk-demo/role_tooltip.py b/test/keystrokes/gtk-demo/role_tooltip.py index 12e19a1..2ac0685 100644 --- a/test/keystrokes/gtk-demo/role_tooltip.py +++ b/test/keystrokes/gtk-demo/role_tooltip.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of tooltips.""" diff --git a/test/keystrokes/gtk-demo/role_tree_table.py b/test/keystrokes/gtk-demo/role_tree_table.py index 56bfd94..4822da4 100644 --- a/test/keystrokes/gtk-demo/role_tree_table.py +++ b/test/keystrokes/gtk-demo/role_tree_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of tree table output.""" diff --git a/test/keystrokes/gtk-demo/role_window.py b/test/keystrokes/gtk-demo/role_window.py index c498a8a..a903f52 100644 --- a/test/keystrokes/gtk-demo/role_window.py +++ b/test/keystrokes/gtk-demo/role_window.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of window title output.""" diff --git a/test/keystrokes/gtk-demo/spoken_indentation.py b/test/keystrokes/gtk-demo/spoken_indentation.py index 862abcb..c435559 100644 --- a/test/keystrokes/gtk-demo/spoken_indentation.py +++ b/test/keystrokes/gtk-demo/spoken_indentation.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of whitespace with braille disabled.""" diff --git a/test/keystrokes/gtk3-demo/context_menu_flat_review.py b/test/keystrokes/gtk3-demo/context_menu_flat_review.py index 06ceaa7..91712fc 100644 --- a/test/keystrokes/gtk3-demo/context_menu_flat_review.py +++ b/test/keystrokes/gtk3-demo/context_menu_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gtk3-demo/learn_mode.py b/test/keystrokes/gtk3-demo/learn_mode.py index b1615ce..f93c0b4 100644 --- a/test/keystrokes/gtk3-demo/learn_mode.py +++ b/test/keystrokes/gtk3-demo/learn_mode.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of learn mode.""" diff --git a/test/keystrokes/gtk3-demo/role_accel_label.py b/test/keystrokes/gtk3-demo/role_accel_label.py index 1897d38..91a6759 100644 --- a/test/keystrokes/gtk3-demo/role_accel_label.py +++ b/test/keystrokes/gtk3-demo/role_accel_label.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu accelerator label output.""" diff --git a/test/keystrokes/gtk3-demo/role_alert.py b/test/keystrokes/gtk3-demo/role_alert.py index 57ee1c1..d096731 100644 --- a/test/keystrokes/gtk3-demo/role_alert.py +++ b/test/keystrokes/gtk3-demo/role_alert.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of dialogs and alerts.""" diff --git a/test/keystrokes/gtk3-demo/role_check_box.py b/test/keystrokes/gtk3-demo/role_check_box.py index 5683aee..5c63e44 100644 --- a/test/keystrokes/gtk3-demo/role_check_box.py +++ b/test/keystrokes/gtk3-demo/role_check_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of checkbox output.""" diff --git a/test/keystrokes/gtk3-demo/role_check_menu_item.py b/test/keystrokes/gtk3-demo/role_check_menu_item.py index 44fafd5..79e41e1 100644 --- a/test/keystrokes/gtk3-demo/role_check_menu_item.py +++ b/test/keystrokes/gtk3-demo/role_check_menu_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of check menu item output.""" diff --git a/test/keystrokes/gtk3-demo/role_color_chooser.py b/test/keystrokes/gtk3-demo/role_color_chooser.py index 8c521d6..6718d5a 100644 --- a/test/keystrokes/gtk3-demo/role_color_chooser.py +++ b/test/keystrokes/gtk3-demo/role_color_chooser.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of color chooser output.""" diff --git a/test/keystrokes/gtk3-demo/role_column_header.py b/test/keystrokes/gtk3-demo/role_column_header.py index f342740..7e2215b 100644 --- a/test/keystrokes/gtk3-demo/role_column_header.py +++ b/test/keystrokes/gtk3-demo/role_column_header.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of column header output.""" diff --git a/test/keystrokes/gtk3-demo/role_combo_box.py b/test/keystrokes/gtk3-demo/role_combo_box.py index 49865f7..1a2e838 100644 --- a/test/keystrokes/gtk3-demo/role_combo_box.py +++ b/test/keystrokes/gtk3-demo/role_combo_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of combobox output.""" diff --git a/test/keystrokes/gtk3-demo/role_combo_box2.py b/test/keystrokes/gtk3-demo/role_combo_box2.py index 0c2d3d3..ea4dafa 100644 --- a/test/keystrokes/gtk3-demo/role_combo_box2.py +++ b/test/keystrokes/gtk3-demo/role_combo_box2.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of labelled combo box output.""" diff --git a/test/keystrokes/gtk3-demo/role_dialog.py b/test/keystrokes/gtk3-demo/role_dialog.py index 6e02ec5..bd65662 100644 --- a/test/keystrokes/gtk3-demo/role_dialog.py +++ b/test/keystrokes/gtk3-demo/role_dialog.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of dialog presentation.""" diff --git a/test/keystrokes/gtk3-demo/role_dialog_flat_review.py b/test/keystrokes/gtk3-demo/role_dialog_flat_review.py index 088ce2f..38f15bb 100644 --- a/test/keystrokes/gtk3-demo/role_dialog_flat_review.py +++ b/test/keystrokes/gtk3-demo/role_dialog_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gtk3-demo/role_drawing_area.py b/test/keystrokes/gtk3-demo/role_drawing_area.py index 1c75840..e93e80a 100644 --- a/test/keystrokes/gtk3-demo/role_drawing_area.py +++ b/test/keystrokes/gtk3-demo/role_drawing_area.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of drawing area output.""" diff --git a/test/keystrokes/gtk3-demo/role_icon.py b/test/keystrokes/gtk3-demo/role_icon.py index 212ae51..ce1831a 100644 --- a/test/keystrokes/gtk3-demo/role_icon.py +++ b/test/keystrokes/gtk3-demo/role_icon.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of icon output.""" diff --git a/test/keystrokes/gtk3-demo/role_icon_flat_review.py b/test/keystrokes/gtk3-demo/role_icon_flat_review.py index 914fee2..b8fb842 100644 --- a/test/keystrokes/gtk3-demo/role_icon_flat_review.py +++ b/test/keystrokes/gtk3-demo/role_icon_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of icon output.""" diff --git a/test/keystrokes/gtk3-demo/role_info_bar.py b/test/keystrokes/gtk3-demo/role_info_bar.py index 01bd5ab..f463e11 100644 --- a/test/keystrokes/gtk3-demo/role_info_bar.py +++ b/test/keystrokes/gtk3-demo/role_info_bar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of info bar output.""" diff --git a/test/keystrokes/gtk3-demo/role_listbox.py b/test/keystrokes/gtk3-demo/role_listbox.py index c1cd568..bc30d2c 100644 --- a/test/keystrokes/gtk3-demo/role_listbox.py +++ b/test/keystrokes/gtk3-demo/role_listbox.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of listbox output.""" diff --git a/test/keystrokes/gtk3-demo/role_menu.py b/test/keystrokes/gtk3-demo/role_menu.py index c7f022c..43e2556 100644 --- a/test/keystrokes/gtk3-demo/role_menu.py +++ b/test/keystrokes/gtk3-demo/role_menu.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu and menu item output.""" diff --git a/test/keystrokes/gtk3-demo/role_menu_flat_review.py b/test/keystrokes/gtk3-demo/role_menu_flat_review.py index f354aee..fd0cc21 100644 --- a/test/keystrokes/gtk3-demo/role_menu_flat_review.py +++ b/test/keystrokes/gtk3-demo/role_menu_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu and menu item output.""" diff --git a/test/keystrokes/gtk3-demo/role_page_tab.py b/test/keystrokes/gtk3-demo/role_page_tab.py index 412f4a6..ee36216 100644 --- a/test/keystrokes/gtk3-demo/role_page_tab.py +++ b/test/keystrokes/gtk3-demo/role_page_tab.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of page tab output.""" diff --git a/test/keystrokes/gtk3-demo/role_push_button.py b/test/keystrokes/gtk3-demo/role_push_button.py index 435fc1c..965d82f 100644 --- a/test/keystrokes/gtk3-demo/role_push_button.py +++ b/test/keystrokes/gtk3-demo/role_push_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of push button output.""" diff --git a/test/keystrokes/gtk3-demo/role_radio_button.py b/test/keystrokes/gtk3-demo/role_radio_button.py index e60335c..62b8701 100644 --- a/test/keystrokes/gtk3-demo/role_radio_button.py +++ b/test/keystrokes/gtk3-demo/role_radio_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of radio button output.""" diff --git a/test/keystrokes/gtk3-demo/role_radio_menu_item.py b/test/keystrokes/gtk3-demo/role_radio_menu_item.py index 0e87a85..f4dcadb 100644 --- a/test/keystrokes/gtk3-demo/role_radio_menu_item.py +++ b/test/keystrokes/gtk3-demo/role_radio_menu_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of radio menu item output.""" diff --git a/test/keystrokes/gtk3-demo/role_spin_button.py b/test/keystrokes/gtk3-demo/role_spin_button.py index e4ef648..217a2a5 100644 --- a/test/keystrokes/gtk3-demo/role_spin_button.py +++ b/test/keystrokes/gtk3-demo/role_spin_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of spin button output""" diff --git a/test/keystrokes/gtk3-demo/role_split_pane.py b/test/keystrokes/gtk3-demo/role_split_pane.py index 9e8924c..b110bc2 100644 --- a/test/keystrokes/gtk3-demo/role_split_pane.py +++ b/test/keystrokes/gtk3-demo/role_split_pane.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of split pane output.""" diff --git a/test/keystrokes/gtk3-demo/role_status_bar.py b/test/keystrokes/gtk3-demo/role_status_bar.py index 35ea52d..d25f819 100644 --- a/test/keystrokes/gtk3-demo/role_status_bar.py +++ b/test/keystrokes/gtk3-demo/role_status_bar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of status bar output.""" diff --git a/test/keystrokes/gtk3-demo/role_table.py b/test/keystrokes/gtk3-demo/role_table.py index 754f8af..27d9e19 100644 --- a/test/keystrokes/gtk3-demo/role_table.py +++ b/test/keystrokes/gtk3-demo/role_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of table output.""" diff --git a/test/keystrokes/gtk3-demo/role_table_flat_review.py b/test/keystrokes/gtk3-demo/role_table_flat_review.py index e6e94e8..c504478 100644 --- a/test/keystrokes/gtk3-demo/role_table_flat_review.py +++ b/test/keystrokes/gtk3-demo/role_table_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/gtk3-demo/role_text_multiline.py b/test/keystrokes/gtk3-demo/role_text_multiline.py index 692cd48..406321b 100644 --- a/test/keystrokes/gtk3-demo/role_text_multiline.py +++ b/test/keystrokes/gtk3-demo/role_text_multiline.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of multiline editable text.""" diff --git a/test/keystrokes/gtk3-demo/role_text_multiline_flat_review.py b/test/keystrokes/gtk3-demo/role_text_multiline_flat_review.py index eb8d824..f762d51 100644 --- a/test/keystrokes/gtk3-demo/role_text_multiline_flat_review.py +++ b/test/keystrokes/gtk3-demo/role_text_multiline_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of flat review of text and a toolbar.""" diff --git a/test/keystrokes/gtk3-demo/role_text_multiline_navigation.py b/test/keystrokes/gtk3-demo/role_text_multiline_navigation.py index b5f2cf9..7ab5871 100644 --- a/test/keystrokes/gtk3-demo/role_text_multiline_navigation.py +++ b/test/keystrokes/gtk3-demo/role_text_multiline_navigation.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of text output for caret navigation.""" diff --git a/test/keystrokes/gtk3-demo/role_text_multiline_navigation2.py b/test/keystrokes/gtk3-demo/role_text_multiline_navigation2.py index 38890ed..393fe64 100644 --- a/test/keystrokes/gtk3-demo/role_text_multiline_navigation2.py +++ b/test/keystrokes/gtk3-demo/role_text_multiline_navigation2.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of text output for caret navigation and flat review.""" diff --git a/test/keystrokes/gtk3-demo/role_text_multiline_selection.py b/test/keystrokes/gtk3-demo/role_text_multiline_selection.py index fadd571..9b145f5 100644 --- a/test/keystrokes/gtk3-demo/role_text_multiline_selection.py +++ b/test/keystrokes/gtk3-demo/role_text_multiline_selection.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of multiline editable text.""" diff --git a/test/keystrokes/gtk3-demo/role_toggle_button.py b/test/keystrokes/gtk3-demo/role_toggle_button.py index 777db53..2b5abf0 100644 --- a/test/keystrokes/gtk3-demo/role_toggle_button.py +++ b/test/keystrokes/gtk3-demo/role_toggle_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of toggle button output.""" diff --git a/test/keystrokes/gtk3-demo/role_toggle_button_flat_review.py b/test/keystrokes/gtk3-demo/role_toggle_button_flat_review.py index 8d13308..35c2ed6 100644 --- a/test/keystrokes/gtk3-demo/role_toggle_button_flat_review.py +++ b/test/keystrokes/gtk3-demo/role_toggle_button_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of toggle button output.""" diff --git a/test/keystrokes/gtk3-demo/role_toolbar.py b/test/keystrokes/gtk3-demo/role_toolbar.py index b1f7314..870ccf4 100644 --- a/test/keystrokes/gtk3-demo/role_toolbar.py +++ b/test/keystrokes/gtk3-demo/role_toolbar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of toolbar output using.""" diff --git a/test/keystrokes/gtk3-demo/role_tooltip.py b/test/keystrokes/gtk3-demo/role_tooltip.py index d9c3c93..4482c9f 100644 --- a/test/keystrokes/gtk3-demo/role_tooltip.py +++ b/test/keystrokes/gtk3-demo/role_tooltip.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of tooltips.""" diff --git a/test/keystrokes/gtk3-demo/role_tree_table.py b/test/keystrokes/gtk3-demo/role_tree_table.py index 068b311..91bbbac 100644 --- a/test/keystrokes/gtk3-demo/role_tree_table.py +++ b/test/keystrokes/gtk3-demo/role_tree_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of tree table output.""" diff --git a/test/keystrokes/gtk3-demo/role_window.py b/test/keystrokes/gtk3-demo/role_window.py index 9036385..a9e672d 100644 --- a/test/keystrokes/gtk3-demo/role_window.py +++ b/test/keystrokes/gtk3-demo/role_window.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of window title output.""" diff --git a/test/keystrokes/gtk3-demo/spoken_indentation.py b/test/keystrokes/gtk3-demo/spoken_indentation.py index 811bf22..adb9d2d 100644 --- a/test/keystrokes/gtk3-demo/spoken_indentation.py +++ b/test/keystrokes/gtk3-demo/spoken_indentation.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of whitespace with braille disabled.""" diff --git a/test/keystrokes/helpcontent/line_nav_intro.py b/test/keystrokes/helpcontent/line_nav_intro.py index d6fc2bc..61c985d 100644 --- a/test/keystrokes/helpcontent/line_nav_intro.py +++ b/test/keystrokes/helpcontent/line_nav_intro.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of learn mode.""" diff --git a/test/keystrokes/helpcontent/line_nav_main_page.py b/test/keystrokes/helpcontent/line_nav_main_page.py index a479bde..da2727a 100644 --- a/test/keystrokes/helpcontent/line_nav_main_page.py +++ b/test/keystrokes/helpcontent/line_nav_main_page.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of learn mode.""" diff --git a/test/keystrokes/helpcontent/load_no_sayall.py b/test/keystrokes/helpcontent/load_no_sayall.py index 15c6f2f..864e370 100644 --- a/test/keystrokes/helpcontent/load_no_sayall.py +++ b/test/keystrokes/helpcontent/load_no_sayall.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of learn mode.""" diff --git a/test/keystrokes/helpcontent/load_sayall.py b/test/keystrokes/helpcontent/load_sayall.py index 28f6396..8c6c5b1 100644 --- a/test/keystrokes/helpcontent/load_sayall.py +++ b/test/keystrokes/helpcontent/load_sayall.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of learn mode.""" diff --git a/test/keystrokes/helpcontent/struct_nav_heading.py b/test/keystrokes/helpcontent/struct_nav_heading.py index b8a28bc..9fd83a9 100644 --- a/test/keystrokes/helpcontent/struct_nav_heading.py +++ b/test/keystrokes/helpcontent/struct_nav_heading.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of learn mode.""" diff --git a/test/keystrokes/helpcontent/struct_nav_list.py b/test/keystrokes/helpcontent/struct_nav_list.py index 8014d21..0349875 100644 --- a/test/keystrokes/helpcontent/struct_nav_list.py +++ b/test/keystrokes/helpcontent/struct_nav_list.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of learn mode.""" diff --git a/test/keystrokes/helpcontent/struct_nav_paragraph.py b/test/keystrokes/helpcontent/struct_nav_paragraph.py index f9f26c2..023d941 100644 --- a/test/keystrokes/helpcontent/struct_nav_paragraph.py +++ b/test/keystrokes/helpcontent/struct_nav_paragraph.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of learn mode.""" diff --git a/test/keystrokes/java/role_accel_label.py b/test/keystrokes/java/role_accel_label.py index b1155c1..85424b6 100644 --- a/test/keystrokes/java/role_accel_label.py +++ b/test/keystrokes/java/role_accel_label.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of accelerator labels in Java's SwingSet2.""" diff --git a/test/keystrokes/java/role_check_box.py b/test/keystrokes/java/role_check_box.py index 5594ad4..246fd65 100644 --- a/test/keystrokes/java/role_check_box.py +++ b/test/keystrokes/java/role_check_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of check boxes in Java's SwingSet2. """ diff --git a/test/keystrokes/java/role_check_menu_item.py b/test/keystrokes/java/role_check_menu_item.py index ba7269b..6053324 100644 --- a/test/keystrokes/java/role_check_menu_item.py +++ b/test/keystrokes/java/role_check_menu_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of check menu items in Java's SwingSet2. """ diff --git a/test/keystrokes/java/role_combo_box.py b/test/keystrokes/java/role_combo_box.py index 237dda2..9810326 100644 --- a/test/keystrokes/java/role_combo_box.py +++ b/test/keystrokes/java/role_combo_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of combo boxes in Java's SwingSet2.""" diff --git a/test/keystrokes/java/role_dialog.py b/test/keystrokes/java/role_dialog.py index 9b9f8d4..2a238c6 100644 --- a/test/keystrokes/java/role_dialog.py +++ b/test/keystrokes/java/role_dialog.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of dialogs in Java's SwingSet2.""" diff --git a/test/keystrokes/java/role_menu.py b/test/keystrokes/java/role_menu.py index 6820ea7..b523b7b 100644 --- a/test/keystrokes/java/role_menu.py +++ b/test/keystrokes/java/role_menu.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menus in Java's SwingSet2.""" diff --git a/test/keystrokes/java/role_page_tab.py b/test/keystrokes/java/role_page_tab.py index 59e9b2d..95fb05a 100644 --- a/test/keystrokes/java/role_page_tab.py +++ b/test/keystrokes/java/role_page_tab.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of page tabs in Java's SwingSet2.""" diff --git a/test/keystrokes/java/role_push_button.py b/test/keystrokes/java/role_push_button.py index 1432119..67a4db7 100644 --- a/test/keystrokes/java/role_push_button.py +++ b/test/keystrokes/java/role_push_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of push buttons in Java's SwingSet2.""" diff --git a/test/keystrokes/java/role_radio_button.py b/test/keystrokes/java/role_radio_button.py index a91be06..71db801 100644 --- a/test/keystrokes/java/role_radio_button.py +++ b/test/keystrokes/java/role_radio_button.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of radio buttons in Java's SwingSet2.""" diff --git a/test/keystrokes/java/role_radio_menu_item.py b/test/keystrokes/java/role_radio_menu_item.py index 364b5fc..830d376 100644 --- a/test/keystrokes/java/role_radio_menu_item.py +++ b/test/keystrokes/java/role_radio_menu_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of radio menu items in Java's SwingSet2.""" diff --git a/test/keystrokes/java/role_table.py b/test/keystrokes/java/role_table.py index 861aeb9..1ff2916 100644 --- a/test/keystrokes/java/role_table.py +++ b/test/keystrokes/java/role_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of push buttons in Java's SwingSet2.""" diff --git a/test/keystrokes/java/role_tree.py b/test/keystrokes/java/role_tree.py index c1540a6..fdabd1f 100644 --- a/test/keystrokes/java/role_tree.py +++ b/test/keystrokes/java/role_tree.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of push buttons in Java's SwingSet2.""" diff --git a/test/keystrokes/oobase/bug_463172.py b/test/keystrokes/oobase/bug_463172.py index 9cc9812..5abd8e8 100644 --- a/test/keystrokes/oobase/bug_463172.py +++ b/test/keystrokes/oobase/bug_463172.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify bug #463172 is still fixed. OOo sbase application crashes when entering a database record. diff --git a/test/keystrokes/oobase/bug_465109.py b/test/keystrokes/oobase/bug_465109.py index 8cd470f..a86e4e3 100644 --- a/test/keystrokes/oobase/bug_465109.py +++ b/test/keystrokes/oobase/bug_465109.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify bug #465109 is still fixed. OOo sbase application crashes when entering a database record. diff --git a/test/keystrokes/oocalc/coordinate_announcement_off.py b/test/keystrokes/oocalc/coordinate_announcement_off.py index c4e5acb..54335f2 100644 --- a/test/keystrokes/oocalc/coordinate_announcement_off.py +++ b/test/keystrokes/oocalc/coordinate_announcement_off.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation when coordinate announcement is off""" diff --git a/test/keystrokes/oocalc/coordinate_announcement_on.py b/test/keystrokes/oocalc/coordinate_announcement_on.py index 651f813..2a082c1 100644 --- a/test/keystrokes/oocalc/coordinate_announcement_on.py +++ b/test/keystrokes/oocalc/coordinate_announcement_on.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation when coordinate announcement is on""" diff --git a/test/keystrokes/oocalc/document_enter_text.py b/test/keystrokes/oocalc/document_enter_text.py index 5f0050f..71e9c4e 100644 --- a/test/keystrokes/oocalc/document_enter_text.py +++ b/test/keystrokes/oocalc/document_enter_text.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation when typing in a cell.""" diff --git a/test/keystrokes/oocalc/document_enter_text_no_context.py b/test/keystrokes/oocalc/document_enter_text_no_context.py index b82ac39..33c8947 100644 --- a/test/keystrokes/oocalc/document_enter_text_no_context.py +++ b/test/keystrokes/oocalc/document_enter_text_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation when typing in a cell.""" diff --git a/test/keystrokes/oocalc/document_nav_dynamic_headers.py b/test/keystrokes/oocalc/document_nav_dynamic_headers.py index 7c2ec33..83c849b 100644 --- a/test/keystrokes/oocalc/document_nav_dynamic_headers.py +++ b/test/keystrokes/oocalc/document_nav_dynamic_headers.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test dynamic header support.""" diff --git a/test/keystrokes/oocalc/document_text_attributes.py b/test/keystrokes/oocalc/document_text_attributes.py index 15ab597..236841d 100644 --- a/test/keystrokes/oocalc/document_text_attributes.py +++ b/test/keystrokes/oocalc/document_text_attributes.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation of character attributes.""" diff --git a/test/keystrokes/oocalc/manage_names_combobox.py b/test/keystrokes/oocalc/manage_names_combobox.py index 49c4fda..a73a8ea 100644 --- a/test/keystrokes/oocalc/manage_names_combobox.py +++ b/test/keystrokes/oocalc/manage_names_combobox.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation of the Manage Names combobox""" diff --git a/test/keystrokes/oocalc/manage_names_combobox_no_context.py b/test/keystrokes/oocalc/manage_names_combobox_no_context.py index 0ff8ffc..41a1315 100644 --- a/test/keystrokes/oocalc/manage_names_combobox_no_context.py +++ b/test/keystrokes/oocalc/manage_names_combobox_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation of the Manage Names combobox""" diff --git a/test/keystrokes/oocalc/messages_dynamic_headers.py b/test/keystrokes/oocalc/messages_dynamic_headers.py index cacd3da..1fe8dfa 100644 --- a/test/keystrokes/oocalc/messages_dynamic_headers.py +++ b/test/keystrokes/oocalc/messages_dynamic_headers.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of messages associated with dynamic headers.""" diff --git a/test/keystrokes/oocalc/ui_role_check_menu_item.py b/test/keystrokes/oocalc/ui_role_check_menu_item.py index 72fd208..1584f64 100644 --- a/test/keystrokes/oocalc/ui_role_check_menu_item.py +++ b/test/keystrokes/oocalc/ui_role_check_menu_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation of checked menu item state.""" diff --git a/test/keystrokes/ooimpress/bug_462239.py b/test/keystrokes/ooimpress/bug_462239.py index 0c8e596..be6ea46 100644 --- a/test/keystrokes/ooimpress/bug_462239.py +++ b/test/keystrokes/ooimpress/bug_462239.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify bug #462239 is still fixed. OpenOffice OOo-dev 2.3.0 Presentation application crashes when trying diff --git a/test/keystrokes/ooimpress/bug_462256.py b/test/keystrokes/ooimpress/bug_462256.py index 1999658..699d843 100644 --- a/test/keystrokes/ooimpress/bug_462256.py +++ b/test/keystrokes/ooimpress/bug_462256.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify bug #462256 is still fixed. Cthulhu doesn't speak/braille anything when going to the 2nd screen in diff --git a/test/keystrokes/ooimpress/bug_462547.py b/test/keystrokes/ooimpress/bug_462547.py index 47dcf97..d1b219e 100644 --- a/test/keystrokes/ooimpress/bug_462547.py +++ b/test/keystrokes/ooimpress/bug_462547.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify bug #462547 is still fixed. OOo-dev 2.3.0 simpress application startup wizard hangs the desktop. diff --git a/test/keystrokes/ooimpress/bug_465449.py b/test/keystrokes/ooimpress/bug_465449.py index 4ee6db5..dbfb280 100644 --- a/test/keystrokes/ooimpress/bug_465449.py +++ b/test/keystrokes/ooimpress/bug_465449.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify bug #465449 is still fixed. OOo simpress crashes when trying to change view modes. diff --git a/test/keystrokes/oowriter/document_nav_cell.py b/test/keystrokes/oowriter/document_nav_cell.py index 56398cd..c65a67e 100644 --- a/test/keystrokes/oowriter/document_nav_cell.py +++ b/test/keystrokes/oowriter/document_nav_cell.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of speech output when tabbing amongst table cells.""" diff --git a/test/keystrokes/oowriter/document_nav_line.py b/test/keystrokes/oowriter/document_nav_line.py index 719b702..b63c041 100644 --- a/test/keystrokes/oowriter/document_nav_line.py +++ b/test/keystrokes/oowriter/document_nav_line.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation of caret navigation by line.""" diff --git a/test/keystrokes/oowriter/document_nav_line_bullets.py b/test/keystrokes/oowriter/document_nav_line_bullets.py index ef1592f..1c14a8b 100644 --- a/test/keystrokes/oowriter/document_nav_line_bullets.py +++ b/test/keystrokes/oowriter/document_nav_line_bullets.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation of caret navigation by line in list with bullets.""" diff --git a/test/keystrokes/oowriter/document_nav_paragraph.py b/test/keystrokes/oowriter/document_nav_paragraph.py index f228d1b..c262118 100644 --- a/test/keystrokes/oowriter/document_nav_paragraph.py +++ b/test/keystrokes/oowriter/document_nav_paragraph.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of caret navigation by paragraph.""" diff --git a/test/keystrokes/oowriter/document_nav_word.py b/test/keystrokes/oowriter/document_nav_word.py index bdfab0a..6c98452 100644 --- a/test/keystrokes/oowriter/document_nav_word.py +++ b/test/keystrokes/oowriter/document_nav_word.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation of caret navigation by word.""" diff --git a/test/keystrokes/oowriter/document_new.py b/test/keystrokes/oowriter/document_new.py index 89258cf..f1fce1e 100644 --- a/test/keystrokes/oowriter/document_new.py +++ b/test/keystrokes/oowriter/document_new.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify what is announced when you create a new document.""" diff --git a/test/keystrokes/oowriter/flat_review_context_menu.py b/test/keystrokes/oowriter/flat_review_context_menu.py index 3f94a4c..bd0d18d 100644 --- a/test/keystrokes/oowriter/flat_review_context_menu.py +++ b/test/keystrokes/oowriter/flat_review_context_menu.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/oowriter/flat_review_line.py b/test/keystrokes/oowriter/flat_review_line.py index 3a20ae0..a8bda6e 100644 --- a/test/keystrokes/oowriter/flat_review_line.py +++ b/test/keystrokes/oowriter/flat_review_line.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test flat review by line.""" diff --git a/test/keystrokes/oowriter/flat_review_line_columns.py b/test/keystrokes/oowriter/flat_review_line_columns.py index a4c4fa0..d95aa00 100644 --- a/test/keystrokes/oowriter/flat_review_line_columns.py +++ b/test/keystrokes/oowriter/flat_review_line_columns.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test flat review in multi-columned text.""" diff --git a/test/keystrokes/oowriter/flat_review_platform_menubar.py b/test/keystrokes/oowriter/flat_review_platform_menubar.py index 7025720..19150cc 100644 --- a/test/keystrokes/oowriter/flat_review_platform_menubar.py +++ b/test/keystrokes/oowriter/flat_review_platform_menubar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test flat review on menubar.""" diff --git a/test/keystrokes/oowriter/flat_review_word.py b/test/keystrokes/oowriter/flat_review_word.py index 8384bab..863deaf 100644 --- a/test/keystrokes/oowriter/flat_review_word.py +++ b/test/keystrokes/oowriter/flat_review_word.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test flat review by word.""" diff --git a/test/keystrokes/oowriter/messages_table.py b/test/keystrokes/oowriter/messages_table.py index ad923bb..7eedddf 100644 --- a/test/keystrokes/oowriter/messages_table.py +++ b/test/keystrokes/oowriter/messages_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify table message presentation.""" diff --git a/test/keystrokes/oowriter/messages_table_no_context.py b/test/keystrokes/oowriter/messages_table_no_context.py index c6b35eb..b99d5fe 100644 --- a/test/keystrokes/oowriter/messages_table_no_context.py +++ b/test/keystrokes/oowriter/messages_table_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify table message presentation.""" diff --git a/test/keystrokes/oowriter/say_all.py b/test/keystrokes/oowriter/say_all.py index 7dd39ec..c94eebd 100644 --- a/test/keystrokes/oowriter/say_all.py +++ b/test/keystrokes/oowriter/say_all.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify SayAll works in Writer.""" diff --git a/test/keystrokes/oowriter/say_all_no_sentences.py b/test/keystrokes/oowriter/say_all_no_sentences.py index 2e02ce6..c934712 100644 --- a/test/keystrokes/oowriter/say_all_no_sentences.py +++ b/test/keystrokes/oowriter/say_all_no_sentences.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test SayAll presentation in document without sentence punctuation.""" diff --git a/test/keystrokes/oowriter/say_all_table.py b/test/keystrokes/oowriter/say_all_table.py index 2b50b15..88db0c2 100644 --- a/test/keystrokes/oowriter/say_all_table.py +++ b/test/keystrokes/oowriter/say_all_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify SayAll works in Writer.""" diff --git a/test/keystrokes/oowriter/say_all_table_no_context.py b/test/keystrokes/oowriter/say_all_table_no_context.py index 5075d58..392fbb7 100644 --- a/test/keystrokes/oowriter/say_all_table_no_context.py +++ b/test/keystrokes/oowriter/say_all_table_no_context.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify SayAll works in Writer.""" diff --git a/test/keystrokes/oowriter/selection_word.py b/test/keystrokes/oowriter/selection_word.py index 9d811ab..82c86bd 100644 --- a/test/keystrokes/oowriter/selection_word.py +++ b/test/keystrokes/oowriter/selection_word.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Cthulhu's presentation of Writer word navigation.""" diff --git a/test/keystrokes/oowriter/spellcheck.py b/test/keystrokes/oowriter/spellcheck.py index cc75f72..fd7d22b 100644 --- a/test/keystrokes/oowriter/spellcheck.py +++ b/test/keystrokes/oowriter/spellcheck.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify spell checking support.""" diff --git a/test/keystrokes/oowriter/spoken_indentation.py b/test/keystrokes/oowriter/spoken_indentation.py index 29c89fd..1928485 100644 --- a/test/keystrokes/oowriter/spoken_indentation.py +++ b/test/keystrokes/oowriter/spoken_indentation.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of presentation of indentation.""" diff --git a/test/keystrokes/oowriter/structural_nav_table.py b/test/keystrokes/oowriter/structural_nav_table.py index e35aa9f..95eaff3 100644 --- a/test/keystrokes/oowriter/structural_nav_table.py +++ b/test/keystrokes/oowriter/structural_nav_table.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test for structural navigation amongst table cells in Writer.""" diff --git a/test/keystrokes/oowriter/table_cell_row.py b/test/keystrokes/oowriter/table_cell_row.py index 6503080..77022ef 100644 --- a/test/keystrokes/oowriter/table_cell_row.py +++ b/test/keystrokes/oowriter/table_cell_row.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of cell and row reading in Writer tables.""" diff --git a/test/keystrokes/oowriter/text_attributes.py b/test/keystrokes/oowriter/text_attributes.py index 158e17a..06ba378 100644 --- a/test/keystrokes/oowriter/text_attributes.py +++ b/test/keystrokes/oowriter/text_attributes.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test presentation of character attributes.""" diff --git a/test/keystrokes/oowriter/ui_find.py b/test/keystrokes/oowriter/ui_find.py index c111be6..d212091 100644 --- a/test/keystrokes/oowriter/ui_find.py +++ b/test/keystrokes/oowriter/ui_find.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu from macaroon.playback import * import utils diff --git a/test/keystrokes/oowriter/ui_navigator.py b/test/keystrokes/oowriter/ui_navigator.py index 31399b0..8496c87 100644 --- a/test/keystrokes/oowriter/ui_navigator.py +++ b/test/keystrokes/oowriter/ui_navigator.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify presentation of the navigator.""" diff --git a/test/keystrokes/oowriter/ui_role_combo_box.py b/test/keystrokes/oowriter/ui_role_combo_box.py index 30f9d2e..aad7083 100644 --- a/test/keystrokes/oowriter/ui_role_combo_box.py +++ b/test/keystrokes/oowriter/ui_role_combo_box.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Cthulhu's presentation of a combo box.""" diff --git a/test/keystrokes/oowriter/ui_role_label.py b/test/keystrokes/oowriter/ui_role_label.py index 1469e4a..e3e9634 100644 --- a/test/keystrokes/oowriter/ui_role_label.py +++ b/test/keystrokes/oowriter/ui_role_label.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify presentation of focusable labels.""" diff --git a/test/keystrokes/oowriter/ui_role_list_item.py b/test/keystrokes/oowriter/ui_role_list_item.py index d308f73..c165657 100644 --- a/test/keystrokes/oowriter/ui_role_list_item.py +++ b/test/keystrokes/oowriter/ui_role_list_item.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify presentation of selectable list items.""" diff --git a/test/keystrokes/oowriter/ui_role_menu.py b/test/keystrokes/oowriter/ui_role_menu.py index bf5102d..043f2d6 100644 --- a/test/keystrokes/oowriter/ui_role_menu.py +++ b/test/keystrokes/oowriter/ui_role_menu.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test to verify result of entering and escaping out of a submenu.""" diff --git a/test/keystrokes/oowriter/ui_role_menu_flat_review.py b/test/keystrokes/oowriter/ui_role_menu_flat_review.py index 6cd70d4..fa5e3e3 100644 --- a/test/keystrokes/oowriter/ui_role_menu_flat_review.py +++ b/test/keystrokes/oowriter/ui_role_menu_flat_review.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of menu and menu item output.""" diff --git a/test/keystrokes/oowriter/ui_role_toolbar.py b/test/keystrokes/oowriter/ui_role_toolbar.py index 1b707fd..dda2776 100644 --- a/test/keystrokes/oowriter/ui_role_toolbar.py +++ b/test/keystrokes/oowriter/ui_role_toolbar.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of Cthulhu's presentation of Writer toolbar buttons.""" diff --git a/test/keystrokes/oowriter/where_am_i_document.py b/test/keystrokes/oowriter/where_am_i_document.py index 3a88b41..168417c 100644 --- a/test/keystrokes/oowriter/where_am_i_document.py +++ b/test/keystrokes/oowriter/where_am_i_document.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test WhereAmI presentation.""" diff --git a/test/keystrokes/progressbar/progress_updates.py b/test/keystrokes/progressbar/progress_updates.py index bda4af4..c4b28dc 100644 --- a/test/keystrokes/progressbar/progress_updates.py +++ b/test/keystrokes/progressbar/progress_updates.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of progressbar output using custom program.""" diff --git a/test/keystrokes/slider/slider.py b/test/keystrokes/slider/slider.py index fac9958..fbfb841 100644 --- a/test/keystrokes/slider/slider.py +++ b/test/keystrokes/slider/slider.py @@ -20,8 +20,8 @@ # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. # -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca +# Forked from Orca screen reader. +# Cthulhu project: https://git.stormux.org/storm/cthulhu """Test of slider output using custom program."""