mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-17 19:20:20 +00:00
Compare commits
71 Commits
zoitechat-
...
zoitechat-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8df91eb382 | ||
|
|
40ed3bc0bc | ||
|
|
437e8fc3d1 | ||
|
|
4c86105183 | ||
|
|
87e9d93f5e | ||
|
|
b6fba447da | ||
|
|
95d31bad57 | ||
|
|
19fbceec93 | ||
|
|
4c13b96bd9 | ||
|
|
113c026ffa | ||
| e985506737 | |||
|
|
d858b12d8e | ||
|
|
e97937f82c | ||
|
|
960b51933d | ||
|
|
ccc6580652 | ||
| f473f3d4b9 | |||
| 2c349deee2 | |||
|
|
94e92b8edf | ||
| 85d0edbbed | |||
| b1fc133883 | |||
| f480366c87 | |||
|
|
51bd5376aa | ||
|
|
44880a41f9 | ||
|
|
1766ec558f | ||
|
|
58073542ff | ||
|
|
b7177b9fe6 | ||
|
|
c7dd1d6eef | ||
| 19d47c1d13 | |||
|
|
e5e22fc103 | ||
|
|
84f62080c4 | ||
|
|
2f30c86be8 | ||
| 46da9fe581 | |||
|
|
33efa85ac9 | ||
|
|
724f71b650 | ||
|
|
93cd47de5c | ||
|
|
e270199560 | ||
|
|
3fdd639028 | ||
|
|
90b227ed59 | ||
|
|
44f6fc357e | ||
|
|
20dca7dc2f | ||
|
|
81b2325aa1 | ||
|
|
fa1912bb5d | ||
|
|
7df9b08313 | ||
|
|
d54669982a | ||
| e79564b501 | |||
| 1be65ff216 | |||
| 0bcf4bee6e | |||
| 78c4b474db | |||
| af12c6557a | |||
|
|
24a5c3b50d | ||
| 708fb3de42 | |||
|
|
7ecc469385 | ||
|
|
34575bc603 | ||
|
|
7021031ea0 | ||
|
|
8cdc6cb966 | ||
|
|
cc359bd3e3 | ||
|
|
3225a28e12 | ||
|
|
758f879700 | ||
|
|
d8460692ac | ||
|
|
5e4bc8966c | ||
|
|
4373516256 | ||
|
|
4ebdaf7c1e | ||
|
|
3690011933 | ||
|
|
212b6d8a57 | ||
|
|
de4812cf93 | ||
|
|
37babfa29a | ||
|
|
9e6850eb4f | ||
|
|
f544a9d009 | ||
|
|
d455b44fef | ||
|
|
f33801e59b | ||
|
|
e70085a8c4 |
17
.github/workflows/appimage-build.yml
vendored
17
.github/workflows/appimage-build.yml
vendored
@@ -10,6 +10,12 @@ jobs:
|
|||||||
appimage_build:
|
appimage_build:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
attestations: write
|
||||||
|
artifact-metadata: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
@@ -36,7 +42,6 @@ jobs:
|
|||||||
meson setup build \
|
meson setup build \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
-Dtext-frontend=true \
|
-Dtext-frontend=true \
|
||||||
-Dtheme-manager=true \
|
|
||||||
-Dauto_features=enabled
|
-Dauto_features=enabled
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
@@ -105,8 +110,8 @@ jobs:
|
|||||||
|
|
||||||
./linuxdeploy-x86_64.AppImage \
|
./linuxdeploy-x86_64.AppImage \
|
||||||
--appdir AppDir \
|
--appdir AppDir \
|
||||||
--desktop-file AppDir/usr/share/applications/io.github.Zoitechat.desktop \
|
--desktop-file AppDir/usr/share/applications/net.zoite.Zoitechat.desktop \
|
||||||
--icon-file AppDir/usr/share/icons/hicolor/48x48/apps/io.github.Zoitechat.png \
|
--icon-file AppDir/usr/share/icons/hicolor/48x48/apps/net.zoite.Zoitechat.png \
|
||||||
--custom-apprun ./AppRun \
|
--custom-apprun ./AppRun \
|
||||||
--plugin gtk \
|
--plugin gtk \
|
||||||
--output appimage
|
--output appimage
|
||||||
@@ -114,6 +119,12 @@ jobs:
|
|||||||
appimage_path="$(ls -1 *.AppImage | grep -v linuxdeploy | head -n 1)"
|
appimage_path="$(ls -1 *.AppImage | grep -v linuxdeploy | head -n 1)"
|
||||||
mv "$appimage_path" "Zoitechat-${VERSION}-x86_64.AppImage"
|
mv "$appimage_path" "Zoitechat-${VERSION}-x86_64.AppImage"
|
||||||
|
|
||||||
|
- name: Attest AppImage (Build Provenance)
|
||||||
|
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
|
||||||
|
uses: actions/attest-build-provenance@v3
|
||||||
|
with:
|
||||||
|
subject-path: Zoitechat-*-x86_64.AppImage
|
||||||
|
|
||||||
- name: Upload AppImage artifact
|
- name: Upload AppImage artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
1
.github/workflows/debian-build.yml
vendored
1
.github/workflows/debian-build.yml
vendored
@@ -35,7 +35,6 @@ jobs:
|
|||||||
rm -rf build
|
rm -rf build
|
||||||
meson setup build \
|
meson setup build \
|
||||||
-Dtext-frontend=true \
|
-Dtext-frontend=true \
|
||||||
-Dtheme-manager=true \
|
|
||||||
-Dauto_features=enabled
|
-Dauto_features=enabled
|
||||||
# If configure fails, show the project's actual option names in the log.
|
# If configure fails, show the project's actual option names in the log.
|
||||||
- name: Show Meson options (on failure)
|
- name: Show Meson options (on failure)
|
||||||
|
|||||||
26
.github/workflows/flatpak-build.yml
vendored
26
.github/workflows/flatpak-build.yml
vendored
@@ -9,6 +9,13 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
flatpak_build:
|
flatpak_build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
attestations: write
|
||||||
|
artifact-metadata: write
|
||||||
|
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-49
|
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-49
|
||||||
options: --privileged
|
options: --privileged
|
||||||
@@ -18,8 +25,23 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
- name: Build Flatpak
|
||||||
|
id: flatpak_builder
|
||||||
|
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
||||||
with:
|
with:
|
||||||
bundle: zoitechat.flatpak
|
bundle: zoitechat.flatpak
|
||||||
manifest-path: flatpak/io.github.Zoitechat.json
|
manifest-path: flatpak/net.zoite.Zoitechat.json
|
||||||
cache-key: flatpak-builder-${{ github.sha }}
|
cache-key: flatpak-builder-${{ github.sha }}
|
||||||
|
|
||||||
|
- name: Upload Flatpak Bundle
|
||||||
|
id: upload_flatpak
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: zoitechat.flatpak
|
||||||
|
path: zoitechat.flatpak
|
||||||
|
|
||||||
|
- name: Attest Flatpak Bundle (Build Provenance)
|
||||||
|
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
|
||||||
|
uses: actions/attest-build-provenance@v3
|
||||||
|
with:
|
||||||
|
subject-path: zoitechat.flatpak
|
||||||
|
|||||||
117
.github/workflows/openbsd-build.yml
vendored
Normal file
117
.github/workflows/openbsd-build.yml
vendored
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
name: OpenBSD Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
openbsd_package:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Build OpenBSD package
|
||||||
|
uses: vmactions/openbsd-vm@v1
|
||||||
|
with:
|
||||||
|
release: '7.5'
|
||||||
|
usesh: true
|
||||||
|
sync: rsync
|
||||||
|
run: |
|
||||||
|
set -eux
|
||||||
|
|
||||||
|
rdate -n pool.ntp.org
|
||||||
|
export PKG_PATH="https://ftp.openbsd.org/pub/OpenBSD/7.5/packages/$(uname -m)/"
|
||||||
|
|
||||||
|
pkg_add -U \
|
||||||
|
git \
|
||||||
|
meson ninja pkgconf gmake \
|
||||||
|
gettext-tools \
|
||||||
|
glib2 gtk+2 dbus-glib libcanberra \
|
||||||
|
luajit mono libgdiplus openssl
|
||||||
|
|
||||||
|
work="$(mktemp -d /tmp/zoitechat.XXXXXX)"
|
||||||
|
trap 'rm -rf "$work"' EXIT
|
||||||
|
|
||||||
|
rsync -a --delete "$GITHUB_WORKSPACE"/ "$work/src/"
|
||||||
|
cd "$work/src"
|
||||||
|
|
||||||
|
rm -rf build
|
||||||
|
meson setup build \
|
||||||
|
--prefix=/usr/local \
|
||||||
|
-Dtext-frontend=true \
|
||||||
|
-Dplugin=false \
|
||||||
|
-Dauto_features=enabled
|
||||||
|
|
||||||
|
ninja -C build
|
||||||
|
|
||||||
|
staging="$work/staging"
|
||||||
|
rm -rf "$staging"
|
||||||
|
mkdir -p "$staging"
|
||||||
|
|
||||||
|
# Staged install
|
||||||
|
DESTDIR="$staging" meson install -C build --no-rebuild
|
||||||
|
|
||||||
|
# If these exist, something ignored DESTDIR (install scripts are leaking)
|
||||||
|
ls -l /usr/local/bin/zoitechat /usr/local/bin/thememan 2>/dev/null || true
|
||||||
|
|
||||||
|
sync
|
||||||
|
sleep 1
|
||||||
|
sync
|
||||||
|
|
||||||
|
# Freeze staged tree so pkg_create doesn't see moving targets
|
||||||
|
snap="$work/staging-snap"
|
||||||
|
rm -rf "$snap"
|
||||||
|
mkdir -p "$snap"
|
||||||
|
(cd "$staging" && pax -rw -pe . "$snap")
|
||||||
|
|
||||||
|
version="$(meson introspect --projectinfo build | sed -n 's/.*"version"[[:space:]]*:[[:space:]]*"\([^"]*\)".*/\1/p')"
|
||||||
|
pkg_name="zoitechat-${version}"
|
||||||
|
pkg_file="${pkg_name}.tgz"
|
||||||
|
plist="$work/openbsd-plist"
|
||||||
|
desc="$work/DESCR"
|
||||||
|
|
||||||
|
cat >"$desc" <<'EOF'
|
||||||
|
ZoiteChat is an IRC client (HexChat-derived) with a GTK UI and optional tools.
|
||||||
|
EOF
|
||||||
|
|
||||||
|
{
|
||||||
|
echo "@cwd /usr/local"
|
||||||
|
|
||||||
|
# Files + symlinks
|
||||||
|
find "$snap/usr/local" \( -type f -o -type l \) -print \
|
||||||
|
| LC_ALL=C sort \
|
||||||
|
| sed "s#^$snap/usr/local/##"
|
||||||
|
|
||||||
|
# Directories (reverse so children removed first)
|
||||||
|
find "$snap/usr/local" -mindepth 1 -type d -print \
|
||||||
|
| LC_ALL=C sort -r \
|
||||||
|
| sed "s#^$snap/usr/local/##" \
|
||||||
|
| sed 's#^#@dir #'
|
||||||
|
} > "$plist"
|
||||||
|
|
||||||
|
# OpenBSD pkg_create: COMMENT is set via -D COMMENT=... (mandatory), no -c flag exists.
|
||||||
|
# Create the .tgz in $work so we can copy it back out.
|
||||||
|
cd "$work"
|
||||||
|
pkg_create \
|
||||||
|
-B "$snap" \
|
||||||
|
-p /usr/local \
|
||||||
|
-f "$plist" \
|
||||||
|
-d "$desc" \
|
||||||
|
-D "COMMENT=ZoiteChat IRC client" \
|
||||||
|
-D "FULLPKGPATH=net/zoitechat" \
|
||||||
|
"$pkg_file"
|
||||||
|
|
||||||
|
mkdir -p "$GITHUB_WORKSPACE/artifacts"
|
||||||
|
cp "$work/$pkg_file" "$GITHUB_WORKSPACE/artifacts/"
|
||||||
|
|
||||||
|
- name: Upload OpenBSD package
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: openbsd-package
|
||||||
|
path: artifacts/*.tgz
|
||||||
56
.github/workflows/windows-build.yml
vendored
56
.github/workflows/windows-build.yml
vendored
@@ -11,6 +11,13 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
windows_build:
|
windows_build:
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
attestations: write
|
||||||
|
artifact-metadata: write
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
platform: [x64, win32]
|
platform: [x64, win32]
|
||||||
@@ -27,7 +34,7 @@ jobs:
|
|||||||
|
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.8'
|
python-version: '3.14.2'
|
||||||
architecture: ${{ matrix.arch }}
|
architecture: ${{ matrix.arch }}
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
@@ -52,29 +59,28 @@ jobs:
|
|||||||
Invoke-WebRequest https://github.com/zoitechat/gvsbuild/releases/download/zoitechat-2.17.0/perl-5.20.0-${{ matrix.arch }}.7z -OutFile deps\perl-${{ matrix.arch }}.7z
|
Invoke-WebRequest https://github.com/zoitechat/gvsbuild/releases/download/zoitechat-2.17.0/perl-5.20.0-${{ matrix.arch }}.7z -OutFile deps\perl-${{ matrix.arch }}.7z
|
||||||
& 7z.exe x deps\perl-${{ matrix.arch }}.7z -oC:\gtk-build\perl-5.20\${{ matrix.platform }}
|
& 7z.exe x deps\perl-${{ matrix.arch }}.7z -oC:\gtk-build\perl-5.20\${{ matrix.platform }}
|
||||||
|
|
||||||
New-Item -Path "C:\gtk-build\python-3.8" -ItemType Directory -Force | Out-Null
|
# Resolve python root from setup-python
|
||||||
|
|
||||||
$pyRoot = $env:pythonLocation
|
$pyRoot = $env:pythonLocation
|
||||||
if (-not $pyRoot) {
|
if (-not $pyRoot) { $pyRoot = & python -c "import sys; print(sys.prefix)" }
|
||||||
$pyRoot = & python -c "import sys; print(sys.prefix)"
|
|
||||||
|
# Create BOTH paths because the .vcxproj hard-codes python-3.14\...
|
||||||
|
foreach ($pyDir in @("C:\gtk-build\python-3.14.2", "C:\gtk-build\python-3.14")) {
|
||||||
|
New-Item -Path $pyDir -ItemType Directory -Force | Out-Null
|
||||||
|
$target = Join-Path $pyDir "${{ matrix.platform }}"
|
||||||
|
if (Test-Path $target) { Remove-Item $target -Recurse -Force }
|
||||||
|
New-Item -Path $pyDir -Name "${{ matrix.platform }}" -ItemType Junction -Value $pyRoot | Out-Null
|
||||||
}
|
}
|
||||||
|
|
||||||
$target = "C:\gtk-build\python-3.8\${{ matrix.platform }}"
|
|
||||||
if (Test-Path $target) { Remove-Item $target -Recurse -Force }
|
|
||||||
|
|
||||||
New-Item -Path "C:\gtk-build\python-3.8" -Name "${{ matrix.platform }}" -ItemType Junction -Value $pyRoot | Out-Null
|
|
||||||
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install cffi
|
python -m pip install cffi
|
||||||
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat"
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat"
|
||||||
|
|
||||||
set "PYTHON_DIR=C:\gtk-build\python-3.8\${{ matrix.platform }}"
|
set "PYTHON_DIR=C:\gtk-build\python-3.14.2\${{ matrix.platform }}"
|
||||||
if not exist "%PYTHON_DIR%\libs\python38.lib" (
|
if not exist "%PYTHON_DIR%\libs\python314.lib" (
|
||||||
echo Missing %PYTHON_DIR%\libs\python38.lib
|
echo Missing %PYTHON_DIR%\libs\python314.lib
|
||||||
dir "%PYTHON_DIR%\libs"
|
dir "%PYTHON_DIR%\libs"
|
||||||
exit /b 1
|
exit /b 1
|
||||||
)
|
)
|
||||||
@@ -91,12 +97,30 @@ jobs:
|
|||||||
move ..\zoitechat-build .\
|
move ..\zoitechat-build .\
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- name: Upload Installer
|
||||||
|
id: upload_installer
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Installer ${{ matrix.arch }}
|
name: Installer ${{ matrix.arch }}
|
||||||
path: ZoiteChat*.exe
|
path: ZoiteChat*.exe
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- name: Attest Installer (Artifact Attestation)
|
||||||
|
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
|
||||||
|
uses: actions/attest-build-provenance@v3
|
||||||
|
with:
|
||||||
|
subject-name: Installer ${{ matrix.arch }}
|
||||||
|
subject-digest: sha256:${{ steps.upload_installer.outputs.artifact-digest }}
|
||||||
|
|
||||||
|
- name: Upload Build Files
|
||||||
|
id: upload_buildfiles
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Build Files ${{ matrix.arch }}
|
name: Build Files ${{ matrix.arch }}
|
||||||
path: zoitechat-build
|
path: zoitechat-build
|
||||||
|
|
||||||
|
- name: Attest Build Files (Artifact Attestation)
|
||||||
|
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
|
||||||
|
uses: actions/attest-build-provenance@v3
|
||||||
|
with:
|
||||||
|
subject-name: Build Files ${{ matrix.arch }}
|
||||||
|
subject-digest: sha256:${{ steps.upload_buildfiles.outputs.artifact-digest }}
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
icondir = join_paths(get_option('datadir'), 'icons/hicolor')
|
icondir = join_paths(get_option('datadir'), 'icons/hicolor')
|
||||||
install_data(
|
install_data(
|
||||||
'zoitechat.png',
|
'zoitechat.png',
|
||||||
rename: 'io.github.Zoitechat.png',
|
rename: 'net.zoite.Zoitechat.png',
|
||||||
install_dir: join_paths(icondir, '48x48/apps')
|
install_dir: join_paths(icondir, '48x48/apps')
|
||||||
)
|
)
|
||||||
install_data(
|
install_data(
|
||||||
'zoitechat.svg',
|
'zoitechat.svg',
|
||||||
rename: 'io.github.Zoitechat.svg',
|
rename: 'net.zoite.Zoitechat.svg',
|
||||||
install_dir: join_paths(icondir, 'scalable/apps')
|
install_dir: join_paths(icondir, 'scalable/apps')
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -6,6 +6,4 @@ if get_option('gtk-frontend')
|
|||||||
subdir('icons')
|
subdir('icons')
|
||||||
subdir('misc')
|
subdir('misc')
|
||||||
subdir('man')
|
subdir('man')
|
||||||
elif get_option('theme-manager')
|
|
||||||
subdir('misc')
|
|
||||||
endif
|
endif
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=ZoiteChat Theme Manager
|
|
||||||
Comment=A simple theme manager for ZoiteChat
|
|
||||||
Exec=thememan %f
|
|
||||||
Icon=zoitechat
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
MimeType=application/x-hct;
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
|
|
||||||
<mime-type type="application/x-hct">
|
|
||||||
<comment>ZoiteChat theme archives</comment>
|
|
||||||
<icon name="zoitechat" />
|
|
||||||
<glob pattern="*.hct" weight="100" />
|
|
||||||
</mime-type>
|
|
||||||
</mime-info>
|
|
||||||
@@ -1,12 +1,13 @@
|
|||||||
appdir = join_paths(get_option('datadir'), 'applications')
|
appdir = join_paths(get_option('datadir'), 'applications')
|
||||||
metainfodir = join_paths(get_option('datadir'), 'metainfo')
|
metainfodir = join_paths(get_option('datadir'), 'metainfo')
|
||||||
|
mimedir = join_paths(get_option('datadir'), 'mime', 'packages')
|
||||||
desktop_utils = find_program('desktop-file-validate', required: false)
|
desktop_utils = find_program('desktop-file-validate', required: false)
|
||||||
|
|
||||||
if get_option('gtk-frontend')
|
if get_option('gtk-frontend')
|
||||||
if get_option('install-appdata')
|
if get_option('install-appdata')
|
||||||
zoitechat_appdata = i18n.merge_file(
|
zoitechat_appdata = i18n.merge_file(
|
||||||
input: 'io.github.Zoitechat.appdata.xml.in',
|
input: 'net.zoite.Zoitechat.appdata.xml.in',
|
||||||
output: 'io.github.Zoitechat.appdata.xml',
|
output: 'net.zoite.Zoitechat.appdata.xml',
|
||||||
po_dir: '../../po',
|
po_dir: '../../po',
|
||||||
install: true,
|
install: true,
|
||||||
install_dir: metainfodir
|
install_dir: metainfodir
|
||||||
@@ -14,7 +15,7 @@ if get_option('gtk-frontend')
|
|||||||
|
|
||||||
appstream_util = find_program('appstream-util', required: false)
|
appstream_util = find_program('appstream-util', required: false)
|
||||||
if appstream_util.found()
|
if appstream_util.found()
|
||||||
test('Validate io.github.Zoitechat.appdata.xml', appstream_util,
|
test('Validate net.zoite.Zoitechat.appdata.xml', appstream_util,
|
||||||
args: ['validate-relax', zoitechat_appdata]
|
args: ['validate-relax', zoitechat_appdata]
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
@@ -28,48 +29,31 @@ if get_option('gtk-frontend')
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
desktop_file = configure_file(
|
desktop_file = configure_file(
|
||||||
input: 'io.github.Zoitechat.desktop.in.in',
|
input: 'net.zoite.Zoitechat.desktop.in.in',
|
||||||
output: 'io.github.Zoitechat.desktop.in',
|
output: 'net.zoite.Zoitechat.desktop.in',
|
||||||
configuration: desktop_conf
|
configuration: desktop_conf
|
||||||
)
|
)
|
||||||
|
|
||||||
zoitechat_desktop = i18n.merge_file(
|
zoitechat_desktop = i18n.merge_file(
|
||||||
input: desktop_file,
|
input: desktop_file,
|
||||||
output: 'io.github.Zoitechat.desktop',
|
output: 'net.zoite.Zoitechat.desktop',
|
||||||
po_dir: '../../po',
|
po_dir: '../../po',
|
||||||
type: 'desktop',
|
type: 'desktop',
|
||||||
install: true,
|
install: true,
|
||||||
install_dir: appdir
|
install_dir: appdir
|
||||||
)
|
)
|
||||||
|
|
||||||
|
install_data('net.zoite.Zoitechat.mime.xml',
|
||||||
|
install_dir: mimedir
|
||||||
|
)
|
||||||
|
|
||||||
if desktop_utils.found()
|
if desktop_utils.found()
|
||||||
test('Validate io.github.Zoitechat.desktop', desktop_utils,
|
test('Validate net.zoite.Zoitechat.desktop', desktop_utils,
|
||||||
args: [zoitechat_desktop]
|
args: [zoitechat_desktop]
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('theme-manager')
|
|
||||||
htm_desktop = i18n.merge_file(
|
|
||||||
input: 'io.github.Zoitechat.ThemeManager.desktop.in',
|
|
||||||
output: 'io.github.Zoitechat.ThemeManager.desktop',
|
|
||||||
po_dir: '../../po',
|
|
||||||
type: 'desktop',
|
|
||||||
install: true,
|
|
||||||
install_dir: appdir
|
|
||||||
)
|
|
||||||
|
|
||||||
if desktop_utils.found()
|
|
||||||
test('Validate io.github.Zoitechat.ThemeManager.desktop', desktop_utils,
|
|
||||||
args: [htm_desktop]
|
|
||||||
)
|
|
||||||
endif
|
|
||||||
|
|
||||||
install_data('io.github.Zoitechat.ThemeManager.xml',
|
|
||||||
install_dir: join_paths(get_option('datadir'), 'mime/packages')
|
|
||||||
)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if get_option('plugin')
|
if get_option('plugin')
|
||||||
plugin_metainfo = []
|
plugin_metainfo = []
|
||||||
|
|
||||||
@@ -118,8 +102,8 @@ if get_option('plugin')
|
|||||||
conf.set('LICENSE', metainfo[2])
|
conf.set('LICENSE', metainfo[2])
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
input: 'io.github.Zoitechat.Plugin.metainfo.xml.in',
|
input: 'net.zoite.Zoitechat.Plugin.metainfo.xml.in',
|
||||||
output: 'io.github.Zoitechat.Plugin.@0@.metainfo.xml'.format(name),
|
output: 'net.zoite.Zoitechat.Plugin.@0@.metainfo.xml'.format(name),
|
||||||
configuration: conf,
|
configuration: conf,
|
||||||
install_dir: get_option('install-plugin-metainfo') ? metainfodir : '',
|
install_dir: get_option('install-plugin-metainfo') ? metainfodir : '',
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<component type="addon">
|
<component type="addon">
|
||||||
<id>io.github.Zoitechat.Plugin.@NAME@</id>
|
<id>net.zoite.Zoitechat.Plugin.@NAME@</id>
|
||||||
<extends>io.github.Zoitechat</extends>
|
<extends>net.zoite.Zoitechat</extends>
|
||||||
<name>@NAME@ Plugin</name>
|
<name>@NAME@ Plugin</name>
|
||||||
<summary>@SUMMARY@</summary>
|
<summary>@SUMMARY@</summary>
|
||||||
<url type="homepage">https://zoitechat.zoite.net/</url>
|
<url type="homepage">https://zoitechat.zoite.net/</url>
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<component type="desktop-application">
|
<component type="desktop-application">
|
||||||
<id>io.github.Zoitechat</id>
|
<id>net.zoite.Zoitechat</id>
|
||||||
<name>ZoiteChat</name>
|
<name>ZoiteChat</name>
|
||||||
<launchable type="desktop-id">io.github.Zoitechat.desktop</launchable>
|
<launchable type="desktop-id">net.zoite.Zoitechat.desktop</launchable>
|
||||||
<developer_name>ZoiteChat</developer_name>
|
<developer_name>ZoiteChat</developer_name>
|
||||||
<metadata_license>CC0-1.0</metadata_license>
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
<project_license>GPL-2.0+</project_license>
|
<project_license>GPL-2.0+</project_license>
|
||||||
@@ -12,19 +12,38 @@
|
|||||||
<p>ZoiteChat is an easy to use yet extensible IRC Client based on Hexchat. It allows you to securely join multiple networks and talk to users privately or in channels using a customizable interface. You can even transfer files.</p>
|
<p>ZoiteChat is an easy to use yet extensible IRC Client based on Hexchat. It allows you to securely join multiple networks and talk to users privately or in channels using a customizable interface. You can even transfer files.</p>
|
||||||
<p>ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, logging, custom themes, and Python/Perl scripts.</p>
|
<p>ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, logging, custom themes, and Python/Perl scripts.</p>
|
||||||
</description>
|
</description>
|
||||||
<url type="homepage">http://zoitechat.github.io</url>
|
<url type="homepage">http://zoitechat.zoite.net</url>
|
||||||
<url type="bugtracker">https://github.com/zoitechat/zoitechat</url>
|
<url type="bugtracker">https://github.com/zoitechat/zoitechat</url>
|
||||||
<url type="help">https://hexchat.readthedocs.io/en/latest/</url>
|
<url type="help">https://zoitechat.zoite.net/docs</url>
|
||||||
<screenshots>
|
<screenshots>
|
||||||
<screenshot type="default">
|
<screenshot type="default">
|
||||||
<image>https://zoitechat.github.io/assets/ZoiteChat.png</image>
|
<image>https://zoitechat.zoite.net/assets/ZoiteChat.png</image>
|
||||||
<caption>Main Chat Window</caption>
|
<caption>Main Chat Window</caption>
|
||||||
</screenshot>
|
</screenshot>
|
||||||
</screenshots>
|
</screenshots>
|
||||||
<provides>
|
<provides>
|
||||||
<id>zoitechat.desktop</id>
|
<id>zoitechat.desktop</id>
|
||||||
</provides>
|
</provides>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release date="2026-01-17" version="2.17.3">
|
||||||
|
<description>
|
||||||
|
<p>Fixes and minor features:</p>
|
||||||
|
<ul>
|
||||||
|
<li>SNI extension handling: RFC 6066-compliant validation (ASCII-only hostnames; skips IP literals) before setting SNI on SSL connections.</li>
|
||||||
|
<li>Logs an SSL message when an invalid SNI host name is skipped to aid troubleshooting.</li>
|
||||||
|
<li>Theme support integrated into Preferences; removed the standalone Theme Manager application.</li>
|
||||||
|
<li>Added colour emoji support and an emoji selector menu.</li>
|
||||||
|
<li>Updated bundled Python to v3.14.2.</li>
|
||||||
|
<li>Fixed newline issues affecting syncing of Windows/Linux server list files.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>Known issues:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Opening a theme file (.zct or .hct) spawns a new ZoiteChat instance during import; import succeeds but leaves an extra window open.</li>
|
||||||
|
<li>Colour emojis render in all builds except Windows (GTK2 limitation/issue on Windows).</li>
|
||||||
|
</ul>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
<release date="2026-01-13" version="2.17.2">
|
<release date="2026-01-13" version="2.17.2">
|
||||||
<description>
|
<description>
|
||||||
<p>This is a release with small fixes:</p>
|
<p>This is a release with small fixes:</p>
|
||||||
@@ -127,7 +146,7 @@
|
|||||||
<description>
|
<description>
|
||||||
<p>This is largely a bug fix release though it has some large behind the scenes changes:</p>
|
<p>This is largely a bug fix release though it has some large behind the scenes changes:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Rename data files to use *io.github.Zoitechat* name</li>
|
<li>Rename data files to use *net.zoite.Zoitechat* name</li>
|
||||||
<li>Add option (irc_reconnect_rejoin) to disable auto-rejoin on reconnect</li>
|
<li>Add option (irc_reconnect_rejoin) to disable auto-rejoin on reconnect</li>
|
||||||
<li>Add ability to set custom tray icon separate of app icon</li>
|
<li>Add ability to set custom tray icon separate of app icon</li>
|
||||||
<li>Fix Enchant 2.0+ support</li>
|
<li>Fix Enchant 2.0+ support</li>
|
||||||
@@ -4,14 +4,14 @@ GenericName=IRC Client
|
|||||||
Comment=Chat with other people online
|
Comment=Chat with other people online
|
||||||
Keywords=IM;Chat;
|
Keywords=IM;Chat;
|
||||||
Exec=@exec_command@
|
Exec=@exec_command@
|
||||||
Icon=io.github.Zoitechat
|
Icon=net.zoite.Zoitechat
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=GTK;Network;IRCClient;
|
Categories=GTK;Network;IRCClient;
|
||||||
StartupNotify=true
|
StartupNotify=true
|
||||||
StartupWMClass=Zoitechat
|
StartupWMClass=Zoitechat
|
||||||
X-GNOME-UsesNotifications=true
|
X-GNOME-UsesNotifications=true
|
||||||
MimeType=x-scheme-handler/irc;x-scheme-handler/ircs;
|
MimeType=x-scheme-handler/irc;x-scheme-handler/ircs;application/x-zoitechat-theme;application/x-hexchat-theme;
|
||||||
Actions=SafeMode;
|
Actions=SafeMode;
|
||||||
|
|
||||||
[Desktop Action SafeMode]
|
[Desktop Action SafeMode]
|
||||||
11
data/misc/net.zoite.Zoitechat.mime.xml
Normal file
11
data/misc/net.zoite.Zoitechat.mime.xml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
|
||||||
|
<mime-type type="application/x-zoitechat-theme">
|
||||||
|
<comment>ZoiteChat Theme</comment>
|
||||||
|
<glob pattern="*.zct"/>
|
||||||
|
</mime-type>
|
||||||
|
<mime-type type="application/x-hexchat-theme">
|
||||||
|
<comment>HexChat Theme</comment>
|
||||||
|
<glob pattern="*.hct"/>
|
||||||
|
</mime-type>
|
||||||
|
</mime-info>
|
||||||
2
debian/control
vendored
2
debian/control
vendored
@@ -21,7 +21,7 @@ Standards-Version: 4.6.0
|
|||||||
Rules-Requires-Root: no
|
Rules-Requires-Root: no
|
||||||
Vcs-Git: https://github.com/zoitechat/zoitechat.git
|
Vcs-Git: https://github.com/zoitechat/zoitechat.git
|
||||||
Vcs-Browser: https://github.com/zoitechat/zoitechat
|
Vcs-Browser: https://github.com/zoitechat/zoitechat
|
||||||
Homepage: https://zoitechat.github.io
|
Homepage: https://zoitechat.zoite.net
|
||||||
|
|
||||||
Package: zoitechat
|
Package: zoitechat
|
||||||
Architecture: any
|
Architecture: any
|
||||||
|
|||||||
2
debian/copyright
vendored
2
debian/copyright
vendored
@@ -1,6 +1,6 @@
|
|||||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
Upstream-Name: zoitechat
|
Upstream-Name: zoitechat
|
||||||
Source: https://zoitechat.github.io
|
Source: https://zoitechat.zoite.net
|
||||||
|
|
||||||
Files: *
|
Files: *
|
||||||
Copyright: 1998-2010 Peter Zelezny
|
Copyright: 1998-2010 Peter Zelezny
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<component type="desktop-application">
|
<component type="desktop-application">
|
||||||
<id>io.github.Zoitechat</id>
|
<id>net.zoite.Zoitechat</id>
|
||||||
<name>ZoiteChat</name>
|
<name>ZoiteChat</name>
|
||||||
<summary>IRC client for GNOME</summary>
|
<summary>IRC client for GNOME</summary>
|
||||||
<metadata_license>CC0-1.0</metadata_license>
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
@@ -11,10 +11,10 @@
|
|||||||
<p>Current Flatpak builds have a known issue where the Python plugin can freeze the client.</p>
|
<p>Current Flatpak builds have a known issue where the Python plugin can freeze the client.</p>
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<launchable type="desktop-id">io.github.Zoitechat.desktop</launchable>
|
<launchable type="desktop-id">net.zoite.Zoitechat.desktop</launchable>
|
||||||
<provides>
|
<provides>
|
||||||
<binary>zoitechat</binary>
|
<binary>zoitechat</binary>
|
||||||
</provides>
|
</provides>
|
||||||
|
|
||||||
<url type="homepage">https://zoitechat.github.io/</url>
|
<url type="homepage">https://zoitechat.zoite.net/</url>
|
||||||
</component>
|
</component>
|
||||||
2
debian/zoitechat.install
vendored
2
debian/zoitechat.install
vendored
@@ -1,3 +1,3 @@
|
|||||||
usr/bin/zoitechat
|
usr/bin/zoitechat
|
||||||
usr/share/applications
|
usr/share/applications
|
||||||
usr/share/metainfo/io.github.Zoitechat.appdata.xml
|
usr/share/metainfo/net.zoite.Zoitechat.appdata.xml
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"app-id": "io.github.Zoitechat",
|
"app-id": "net.zoite.Zoitechat",
|
||||||
"branch": "stable",
|
"branch": "stable",
|
||||||
"runtime": "org.gnome.Platform",
|
"runtime": "org.gnome.Platform",
|
||||||
"runtime-version": "49",
|
"runtime-version": "49",
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
"--talk-name=org.mpris.MediaPlayer2.*"
|
"--talk-name=org.mpris.MediaPlayer2.*"
|
||||||
],
|
],
|
||||||
"add-extensions": {
|
"add-extensions": {
|
||||||
"io.github.Zoitechat.Plugin": {
|
"net.zoite.Zoitechat.Plugin": {
|
||||||
"version": "20.08",
|
"version": "20.08",
|
||||||
"directory": "extensions",
|
"directory": "extensions",
|
||||||
"add-ld-path": "lib",
|
"add-ld-path": "lib",
|
||||||
@@ -52,6 +52,7 @@
|
|||||||
"--buildtype=release",
|
"--buildtype=release",
|
||||||
"-Ddbus-service-use-appid=true",
|
"-Ddbus-service-use-appid=true",
|
||||||
"-Dwith-perl=false",
|
"-Dwith-perl=false",
|
||||||
|
"-Dwith-python=false",
|
||||||
"-Dwith-lua=lua"
|
"-Dwith-lua=lua"
|
||||||
],
|
],
|
||||||
"build-options": {
|
"build-options": {
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
project('zoitechat', 'c',
|
project('zoitechat', 'c',
|
||||||
version: '2.17.2',
|
version: '2.17.3',
|
||||||
meson_version: '>= 0.47.0',
|
meson_version: '>= 0.47.0',
|
||||||
default_options: [
|
default_options: [
|
||||||
'c_std=gnu89',
|
'c_std=gnu89',
|
||||||
@@ -165,9 +165,7 @@ if cc.get_id() != 'msvc'
|
|||||||
subdir('data')
|
subdir('data')
|
||||||
subdir('po') # FIXME: build xgettext
|
subdir('po') # FIXME: build xgettext
|
||||||
|
|
||||||
meson.add_install_script('meson_post_install.py',
|
meson.add_install_script('meson_post_install.py')
|
||||||
'@0@'.format(get_option('theme-manager'))
|
|
||||||
)
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if meson.version().version_compare('>= 0.53.0')
|
if meson.version().version_compare('>= 0.53.0')
|
||||||
|
|||||||
@@ -5,9 +5,6 @@ option('gtk-frontend', type: 'boolean',
|
|||||||
option('text-frontend', type: 'boolean', value: false,
|
option('text-frontend', type: 'boolean', value: false,
|
||||||
description: 'Text interface (not generally useful)'
|
description: 'Text interface (not generally useful)'
|
||||||
)
|
)
|
||||||
option('theme-manager', type: 'boolean', value: false,
|
|
||||||
description: 'Utility to help manage themes, requires mono/.net'
|
|
||||||
)
|
|
||||||
|
|
||||||
# Features
|
# Features
|
||||||
option('tls', type: 'feature', value: 'enabled',
|
option('tls', type: 'feature', value: 'enabled',
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ import subprocess
|
|||||||
|
|
||||||
prefix = os.environ.get('MESON_INSTALL_PREFIX', '/usr/local')
|
prefix = os.environ.get('MESON_INSTALL_PREFIX', '/usr/local')
|
||||||
datadir = os.path.join(prefix, 'share')
|
datadir = os.path.join(prefix, 'share')
|
||||||
with_thememan = sys.argv[1] == 'true'
|
|
||||||
|
|
||||||
# Packaging tools define DESTDIR and this isn't needed for them
|
# Packaging tools define DESTDIR and this isn't needed for them
|
||||||
if 'DESTDIR' not in os.environ:
|
if 'DESTDIR' not in os.environ:
|
||||||
@@ -17,8 +16,3 @@ if 'DESTDIR' not in os.environ:
|
|||||||
print('Updating desktop database...')
|
print('Updating desktop database...')
|
||||||
subprocess.call(['update-desktop-database', '-q',
|
subprocess.call(['update-desktop-database', '-q',
|
||||||
os.path.join(datadir, 'applications')])
|
os.path.join(datadir, 'applications')])
|
||||||
|
|
||||||
if with_thememan:
|
|
||||||
print('Updating mime database...')
|
|
||||||
subprocess.call(['update-mime-database',
|
|
||||||
os.path.join(datadir, 'mime')])
|
|
||||||
|
|||||||
@@ -22,6 +22,22 @@
|
|||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>@VERSION@</string>
|
<string>@VERSION@</string>
|
||||||
|
<key>CFBundleDocumentTypes</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeExtensions</key>
|
||||||
|
<array>
|
||||||
|
<string>zct</string>
|
||||||
|
<string>hct</string>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleTypeIconFile</key>
|
||||||
|
<string>zoitechat.icns</string>
|
||||||
|
<key>CFBundleTypeName</key>
|
||||||
|
<string>ZoiteChat Theme</string>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Viewer</string>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
<key>NSHumanReadableCopyright</key>
|
<key>NSHumanReadableCopyright</key>
|
||||||
<string></string>
|
<string></string>
|
||||||
<key>LSMinimumSystemVersion</key>
|
<key>LSMinimumSystemVersion</key>
|
||||||
|
|||||||
@@ -1460,14 +1460,14 @@ perl_load_file (char *filename)
|
|||||||
"You must have a Visual C++ build of Perl "
|
"You must have a Visual C++ build of Perl "
|
||||||
PERL_REQUIRED_VERSION " installed in order to\n"
|
PERL_REQUIRED_VERSION " installed in order to\n"
|
||||||
"run Perl scripts. A reboot may be required.\n\n"
|
"run Perl scripts. A reboot may be required.\n\n"
|
||||||
"http://zoitechat.github.io/downloads.html\n\n"
|
"http://zoitechat.zoite.net/downloads.html\n\n"
|
||||||
"I have found Perl 5.6, but that is too old.");
|
"I have found Perl 5.6, but that is too old.");
|
||||||
} else {
|
} else {
|
||||||
thread_mbox ("Cannot open " PERL_DLL "!\n\n"
|
thread_mbox ("Cannot open " PERL_DLL "!\n\n"
|
||||||
"You must have a Visual C++ build of Perl "
|
"You must have a Visual C++ build of Perl "
|
||||||
PERL_REQUIRED_VERSION " installed in order to\n"
|
PERL_REQUIRED_VERSION " installed in order to\n"
|
||||||
"run Perl scripts. A reboot may be required.\n\n"
|
"run Perl scripts. A reboot may be required.\n\n"
|
||||||
"http://zoitechat.github.io/downloads.html\n\n"
|
"http://zoitechat.zoite.net/downloads.html\n\n"
|
||||||
"Make sure Perl's bin directory is in your PATH.");
|
"Make sure Perl's bin directory is in your PATH.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include "zoitechat-plugin.h"
|
#include "zoitechat-plugin.h"
|
||||||
|
|
||||||
#define APPCAST_URL "https://zoitechat.github.io/appcast.xml"
|
#define APPCAST_URL "https://zoitechat.zoite.net/appcast.xml"
|
||||||
|
|
||||||
static zoitechat_plugin *ph; /* plugin handle */
|
static zoitechat_plugin *ph; /* plugin handle */
|
||||||
static char name[] = "Update Checker";
|
static char name[] = "Update Checker";
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
data/misc/io.github.Zoitechat.appdata.xml.in
|
data/misc/net.zoite.Zoitechat.appdata.xml.in
|
||||||
data/misc/io.github.Zoitechat.desktop.in.in
|
data/misc/net.zoite.Zoitechat.desktop.in.in
|
||||||
data/misc/io.github.Zoitechat.ThemeManager.desktop.in
|
data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in
|
||||||
src/common/cfgfiles.c
|
src/common/cfgfiles.c
|
||||||
src/common/chanopt.c
|
src/common/chanopt.c
|
||||||
src/common/dcc.c
|
src/common/dcc.c
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
data/misc/io.github.Zoitechat.desktop.in.in
|
data/misc/net.zoite.Zoitechat.desktop.in.in
|
||||||
|
|||||||
28
po/af.po
28
po/af.po
@@ -18,52 +18,52 @@ msgstr ""
|
|||||||
"Language: af\n"
|
"Language: af\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/am.po
28
po/am.po
@@ -18,52 +18,52 @@ msgstr ""
|
|||||||
"Language: am\n"
|
"Language: am\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/ast.po
28
po/ast.po
@@ -19,52 +19,52 @@ msgstr ""
|
|||||||
"Language: ast\n"
|
"Language: ast\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/az.po
28
po/az.po
@@ -18,52 +18,52 @@ msgstr ""
|
|||||||
"Language: az\n"
|
"Language: az\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/be.po
28
po/be.po
@@ -17,52 +17,52 @@ msgstr ""
|
|||||||
"Language: be\n"
|
"Language: be\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/bg.po
28
po/bg.po
@@ -20,52 +20,52 @@ msgstr ""
|
|||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/ca.po
28
po/ca.po
@@ -24,52 +24,52 @@ msgstr ""
|
|||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Client IRC"
|
msgstr "Client IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat és un client IRC extensible i fàcil d'utilitzar. Et permet unir-te a múltiples xarxes amb seguretat i parlar amb altres usuaris en privat o en canals utilitzant una interfície personalitzable. Fins i tot pots transferir fitxers."
|
msgstr "ZoiteChat és un client IRC extensible i fàcil d'utilitzar. Et permet unir-te a múltiples xarxes amb seguretat i parlar amb altres usuaris en privat o en canals utilitzant una interfície personalitzable. Fins i tot pots transferir fitxers."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat té suport per: DCC, SASL, proxis, correcció d'escriptura, notificacions, registre, temes personalitzats i scripts en Python o Perl."
|
msgstr "ZoiteChat té suport per: DCC, SASL, proxis, correcció d'escriptura, notificacions, registre, temes personalitzats i scripts en Python o Perl."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Finestra de xat principal"
|
msgstr "Finestra de xat principal"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Xategeu amb altres persones en línia"
|
msgstr "Xategeu amb altres persones en línia"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "MI;Xat;"
|
msgstr "MI;Xat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Obre el mode segur"
|
msgstr "Obre el mode segur"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Gestor de temes d'ZoiteChat"
|
msgstr "Gestor de temes d'ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/cs.po
28
po/cs.po
@@ -24,52 +24,52 @@ msgstr ""
|
|||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC klient"
|
msgstr "IRC klient"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat je snadno použitelný a rozšířitelný IRC klient. Umožňuje vám se bezpečně připojit k více sítím a psát si s lidmi soukromě nebo v kanálech pomocí přizpůsobitelného prostředí. Dokonce můžete přenášet soubory."
|
msgstr "ZoiteChat je snadno použitelný a rozšířitelný IRC klient. Umožňuje vám se bezpečně připojit k více sítím a psát si s lidmi soukromě nebo v kanálech pomocí přizpůsobitelného prostředí. Dokonce můžete přenášet soubory."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat podporuje funkce jako DCC, SASL, brány proxy, kontrolu pravopisu, ukládání záznamů, vlastní motivy a skripty v jazycích Python nebo Perl."
|
msgstr "ZoiteChat podporuje funkce jako DCC, SASL, brány proxy, kontrolu pravopisu, ukládání záznamů, vlastní motivy a skripty v jazycích Python nebo Perl."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Hlavní okno chatu"
|
msgstr "Hlavní okno chatu"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Chatujte online s ostatními lidmi"
|
msgstr "Chatujte online s ostatními lidmi"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr " IM;Chat;"
|
msgstr " IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Otevřít Nouzový režim"
|
msgstr "Otevřít Nouzový režim"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat manažer témat"
|
msgstr "ZoiteChat manažer témat"
|
||||||
|
|
||||||
|
|||||||
28
po/da.po
28
po/da.po
@@ -29,52 +29,52 @@ msgstr ""
|
|||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC-klient"
|
msgstr "IRC-klient"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat er en IRC-klient, der er nem at bruge, men som alligevel også kan udvides. Den tillader dig sikkert at forbinde til flere netværk og tale med brugere privat eller i kanaler ved brug af en tilpasselig grænseflade. Du kan endda overføre filer."
|
msgstr "ZoiteChat er en IRC-klient, der er nem at bruge, men som alligevel også kan udvides. Den tillader dig sikkert at forbinde til flere netværk og tale med brugere privat eller i kanaler ved brug af en tilpasselig grænseflade. Du kan endda overføre filer."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat understøtter funktioner som: DCC, SASL, proxyer, stavekontrol, underretninger, logning, tilpassede temaer og Python-/Perl-scripts."
|
msgstr "ZoiteChat understøtter funktioner som: DCC, SASL, proxyer, stavekontrol, underretninger, logning, tilpassede temaer og Python-/Perl-scripts."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Primære chatvindue"
|
msgstr "Primære chatvindue"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Chat med andre personer online"
|
msgstr "Chat med andre personer online"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Åbn fejlsikret tilstand"
|
msgstr "Åbn fejlsikret tilstand"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat-temahåndtering"
|
msgstr "ZoiteChat-temahåndtering"
|
||||||
|
|
||||||
|
|||||||
28
po/de.po
28
po/de.po
@@ -46,52 +46,52 @@ msgstr ""
|
|||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC-Client"
|
msgstr "IRC-Client"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "HexChar ist ein einfach zu benutzender, aber dennoch erweiterbarer IRC-Client. Er erlaubt es, sicher mehreren Netzwerken beizutreten und sich mithilfe der anpassbaren Benutzerschnittstelle privat oder auch in Kanälen zu unterhalten. Sogar Dateiübertragungen sind möglich."
|
msgstr "HexChar ist ein einfach zu benutzender, aber dennoch erweiterbarer IRC-Client. Er erlaubt es, sicher mehreren Netzwerken beizutreten und sich mithilfe der anpassbaren Benutzerschnittstelle privat oder auch in Kanälen zu unterhalten. Sogar Dateiübertragungen sind möglich."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat unterstützt Features wie: DCC, SASL, Proxies, Rechtschreibprüfung, Benachrichtigungen, Logging, Benutzerdesigns und Python/Perl-Skripte"
|
msgstr "ZoiteChat unterstützt Features wie: DCC, SASL, Proxies, Rechtschreibprüfung, Benachrichtigungen, Logging, Benutzerdesigns und Python/Perl-Skripte"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Hauptchatfenster"
|
msgstr "Hauptchatfenster"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Online mit anderen Menschen chatten"
|
msgstr "Online mit anderen Menschen chatten"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Im sicheren Modus öffnen"
|
msgstr "Im sicheren Modus öffnen"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat-Themenverwalter"
|
msgstr "ZoiteChat-Themenverwalter"
|
||||||
|
|
||||||
|
|||||||
28
po/el.po
28
po/el.po
@@ -25,52 +25,52 @@ msgstr ""
|
|||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Πελάτης IRC"
|
msgstr "Πελάτης IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "Το ZoiteChat υποστηρίζει λειτουργίες όπως: DCC, SASL, διαμεσολαβητές, ορθογραφική διόρθωση, ειδοποιήσεις, logging, προσαρμοσμένα θέματα, και Python/Perl scripts."
|
msgstr "Το ZoiteChat υποστηρίζει λειτουργίες όπως: DCC, SASL, διαμεσολαβητές, ορθογραφική διόρθωση, ειδοποιήσεις, logging, προσαρμοσμένα θέματα, και Python/Perl scripts."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Κεντρικό Παράθυρο Συζήτησης"
|
msgstr "Κεντρικό Παράθυρο Συζήτησης"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Συνομιλήστε με άλλους χρήστες σε απευθείας σύνδεση"
|
msgstr "Συνομιλήστε με άλλους χρήστες σε απευθείας σύνδεση"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Άνοιγμα ασφαλούς λειτουργίας"
|
msgstr "Άνοιγμα ασφαλούς λειτουργίας"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Διαχειριστής θεμάτων ZoiteChat"
|
msgstr "Διαχειριστής θεμάτων ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/en_GB.po
28
po/en_GB.po
@@ -25,52 +25,52 @@ msgstr ""
|
|||||||
"Language: en_GB\n"
|
"Language: en_GB\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC Client"
|
msgstr "IRC Client"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat is an easy to use yet extensible IRC Client. It allows you to securely join multiple networks and talk to users privately or in channels using a customisable interface. You can even transfer files."
|
msgstr "ZoiteChat is an easy to use yet extensible IRC Client. It allows you to securely join multiple networks and talk to users privately or in channels using a customisable interface. You can even transfer files."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, logging, custom themes, and Python/Perl scripts."
|
msgstr "ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, logging, custom themes, and Python/Perl scripts."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Main Chat Window"
|
msgstr "Main Chat Window"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Chat with other people online"
|
msgstr "Chat with other people online"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Open Safe Mode"
|
msgstr "Open Safe Mode"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat Theme Manager"
|
msgstr "ZoiteChat Theme Manager"
|
||||||
|
|
||||||
|
|||||||
28
po/es.po
28
po/es.po
@@ -31,52 +31,52 @@ msgstr ""
|
|||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Cliente de IRC"
|
msgstr "Cliente de IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat es un cliente de IRC fácil de usar. Permite unirse a múltiples redes de manera segura y hablar con los usuarios en privado o en los canales usando una interfaz personalizable. Incluso puede enviar archivos."
|
msgstr "ZoiteChat es un cliente de IRC fácil de usar. Permite unirse a múltiples redes de manera segura y hablar con los usuarios en privado o en los canales usando una interfaz personalizable. Incluso puede enviar archivos."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat soporta características como: DCC, SASL, proxies, autocorrector, alertas, registro automático, temas personalizados, y scripts en Python/Perl."
|
msgstr "ZoiteChat soporta características como: DCC, SASL, proxies, autocorrector, alertas, registro automático, temas personalizados, y scripts en Python/Perl."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Ventana principal de charla"
|
msgstr "Ventana principal de charla"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Charlar con otras personas en línea"
|
msgstr "Charlar con otras personas en línea"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Abrir en modo seguro"
|
msgstr "Abrir en modo seguro"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Administrador de temas de ZoiteChat"
|
msgstr "Administrador de temas de ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/et.po
28
po/et.po
@@ -21,52 +21,52 @@ msgstr ""
|
|||||||
"Language: et\n"
|
"Language: et\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC klient"
|
msgstr "IRC klient"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat on lihtne ja paljude võimalustega IRC klient. See võimaldab turvaliselt ühenduda mitme võrguda samaaegselt ja suhelda inimestega privaatselt või liituda vestluskanalitega, kasutades selleks kohandatavat rakendust. Samuti on võimalus failivahetuseks."
|
msgstr "ZoiteChat on lihtne ja paljude võimalustega IRC klient. See võimaldab turvaliselt ühenduda mitme võrguda samaaegselt ja suhelda inimestega privaatselt või liituda vestluskanalitega, kasutades selleks kohandatavat rakendust. Samuti on võimalus failivahetuseks."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat toetab kasutamiseks: DCC, SASL, hoiatusi, logide koguminst, kohandatud teemasid ja Python/Perl skripte."
|
msgstr "ZoiteChat toetab kasutamiseks: DCC, SASL, hoiatusi, logide koguminst, kohandatud teemasid ja Python/Perl skripte."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Vestle teiste kasutajatega internetis"
|
msgstr "Vestle teiste kasutajatega internetis"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Ava turvarežiim"
|
msgstr "Ava turvarežiim"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat teemahaldur"
|
msgstr "ZoiteChat teemahaldur"
|
||||||
|
|
||||||
|
|||||||
28
po/eu.po
28
po/eu.po
@@ -20,52 +20,52 @@ msgstr ""
|
|||||||
"Language: eu\n"
|
"Language: eu\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC bezeroa"
|
msgstr "IRC bezeroa"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;Txat;"
|
msgstr "IM;Chat;Txat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/fi.po
28
po/fi.po
@@ -20,52 +20,52 @@ msgstr ""
|
|||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC-asiakassovellus"
|
msgstr "IRC-asiakassovellus"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat on helppokäyttäinen IRC-asiakassovellus, joka on helposti laajennettavissa. Sen avulla voit liittyä lukuisiin eri verkkoihin ja keskustella muiden kanssa kanavilla tai yksityiskeskusteluissa. Voit myös siirtää tiedostoja muiden käyttäjien kanssa."
|
msgstr "ZoiteChat on helppokäyttäinen IRC-asiakassovellus, joka on helposti laajennettavissa. Sen avulla voit liittyä lukuisiin eri verkkoihin ja keskustella muiden kanssa kanavilla tai yksityiskeskusteluissa. Voit myös siirtää tiedostoja muiden käyttäjien kanssa."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat tukee muun muassa seuraavia ominaisuuksia: DCC, SASL, välityspalvelimet, oikoluku, hälytykset, lokitus, mukautettavat teemat ja Python-/Perl-skriptit."
|
msgstr "ZoiteChat tukee muun muassa seuraavia ominaisuuksia: DCC, SASL, välityspalvelimet, oikoluku, hälytykset, lokitus, mukautettavat teemat ja Python-/Perl-skriptit."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Keskustele muiden kanssa verkossa"
|
msgstr "Keskustele muiden kanssa verkossa"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;pikaviestin;keskustelu;"
|
msgstr "IM;Chat;pikaviestin;keskustelu;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat-teemojen hallinta"
|
msgstr "ZoiteChat-teemojen hallinta"
|
||||||
|
|
||||||
|
|||||||
28
po/fr.po
28
po/fr.po
@@ -28,52 +28,52 @@ msgstr ""
|
|||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Client IRC"
|
msgstr "Client IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat est un client IRC facile à utiliser et extensible. Il vous permet de rejoindre en toute sécurité plusieurs réseaux et de parler à d'autres utilisateurs en privé ou dans des canaux grâce à une interface personnalisable. Vous pouvez même transférer des fichiers."
|
msgstr "ZoiteChat est un client IRC facile à utiliser et extensible. Il vous permet de rejoindre en toute sécurité plusieurs réseaux et de parler à d'autres utilisateurs en privé ou dans des canaux grâce à une interface personnalisable. Vous pouvez même transférer des fichiers."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat prend en charge des fonctionnalités telles que : DCC, SASL, serveurs mandataires, vérification orthographique, alertes, journalisation, thèmes personnalisés et scripts Python et Perl."
|
msgstr "ZoiteChat prend en charge des fonctionnalités telles que : DCC, SASL, serveurs mandataires, vérification orthographique, alertes, journalisation, thèmes personnalisés et scripts Python et Perl."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Fenêtre de conversation principale"
|
msgstr "Fenêtre de conversation principale"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Discutez avec d'autres personnes en ligne"
|
msgstr "Discutez avec d'autres personnes en ligne"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Ouvrir le mode sans échec"
|
msgstr "Ouvrir le mode sans échec"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Gestionnaire de thèmes ZoiteChat"
|
msgstr "Gestionnaire de thèmes ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/gl.po
28
po/gl.po
@@ -18,52 +18,52 @@ msgstr ""
|
|||||||
"Language: gl\n"
|
"Language: gl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Cliente de IRC"
|
msgstr "Cliente de IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Xestor de temas de ZoiteChat"
|
msgstr "Xestor de temas de ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/gu.po
28
po/gu.po
@@ -17,52 +17,52 @@ msgstr ""
|
|||||||
"Language: gu\n"
|
"Language: gu\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/hi.po
28
po/hi.po
@@ -19,52 +19,52 @@ msgstr ""
|
|||||||
"Language: hi\n"
|
"Language: hi\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/hu.po
28
po/hu.po
@@ -24,52 +24,52 @@ msgstr ""
|
|||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC kliens"
|
msgstr "IRC kliens"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/id.po
28
po/id.po
@@ -21,52 +21,52 @@ msgstr ""
|
|||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Klien IRC"
|
msgstr "Klien IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat adalah klien IRC yang mudah digunakan tetapi bisa diperluas. Hal ini memungkinkan anda aman dalam bergabung ke beberapa jaringan dan berbicara ke pengguna secara pribadi atau dalam saluran dengan menggunakan antarmuka yang dapat disesuaikan. Anda bahkan dapat mentransfer berkas."
|
msgstr "ZoiteChat adalah klien IRC yang mudah digunakan tetapi bisa diperluas. Hal ini memungkinkan anda aman dalam bergabung ke beberapa jaringan dan berbicara ke pengguna secara pribadi atau dalam saluran dengan menggunakan antarmuka yang dapat disesuaikan. Anda bahkan dapat mentransfer berkas."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat mendukung fitur seperti: DCC, SASL, proksi, periksa ejaan, peringatan, pencatatan, tema kustom, dan skrip Python/Perl."
|
msgstr "ZoiteChat mendukung fitur seperti: DCC, SASL, proksi, periksa ejaan, peringatan, pencatatan, tema kustom, dan skrip Python/Perl."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Mengobrol dengan orang lain daring"
|
msgstr "Mengobrol dengan orang lain daring"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Obrolan;"
|
msgstr "IM;Obrolan;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Buka Mode Aman"
|
msgstr "Buka Mode Aman"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Pengelola Tema ZoiteChat"
|
msgstr "Pengelola Tema ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/it.po
28
po/it.po
@@ -22,52 +22,52 @@ msgstr ""
|
|||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Client IRC"
|
msgstr "Client IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat è un client IRC semplice ed estensibile. Consente di accedere in modo sicuro a più reti e comunicare con altri utenti privatamente o nei canali usando una interfaccia personalizzabile. È inoltre possibile trasferire file."
|
msgstr "ZoiteChat è un client IRC semplice ed estensibile. Consente di accedere in modo sicuro a più reti e comunicare con altri utenti privatamente o nei canali usando una interfaccia personalizzabile. È inoltre possibile trasferire file."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat supporta caratteristiche come: DCC, SASL, proxy, controllo ortografico, avvisi, registrazione delle conversazioni, temi personalizzati e script Python e Perl."
|
msgstr "ZoiteChat supporta caratteristiche come: DCC, SASL, proxy, controllo ortografico, avvisi, registrazione delle conversazioni, temi personalizzati e script Python e Perl."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Finestra di chat principale"
|
msgstr "Finestra di chat principale"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Chiacchiera con altri utenti online"
|
msgstr "Chiacchiera con altri utenti online"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;Messaggistica Istantanea;IRC;"
|
msgstr "IM;Chat;Messaggistica Istantanea;IRC;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Apri modalità sicura"
|
msgstr "Apri modalità sicura"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Gestore temi di ZoiteChat"
|
msgstr "Gestore temi di ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/ja_JP.po
28
po/ja_JP.po
@@ -24,52 +24,52 @@ msgstr ""
|
|||||||
"Language: ja_JP\n"
|
"Language: ja_JP\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRCクライアント"
|
msgstr "IRCクライアント"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChatは使いやすく、しかも拡張可能なIRCクライアントです。安全に複数のネットワークに参加でき、カスタマイズ可能なインターフェイスを使用してチャネルのユーザーと話すことが可能、さらにファイルを転送することができます。"
|
msgstr "ZoiteChatは使いやすく、しかも拡張可能なIRCクライアントです。安全に複数のネットワークに参加でき、カスタマイズ可能なインターフェイスを使用してチャネルのユーザーと話すことが可能、さらにファイルを転送することができます。"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChatは、次の機能をサポートしています: DCC, SASL, プロキシ, スペルチェック, アラート, カスタムテーマ, Python/Perl スクリプト"
|
msgstr "ZoiteChatは、次の機能をサポートしています: DCC, SASL, プロキシ, スペルチェック, アラート, カスタムテーマ, Python/Perl スクリプト"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "他の人とオンラインチャットをします"
|
msgstr "他の人とオンラインチャットをします"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "セーフモードで開く"
|
msgstr "セーフモードで開く"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChatテーママネージャー"
|
msgstr "ZoiteChatテーママネージャー"
|
||||||
|
|
||||||
|
|||||||
28
po/kn.po
28
po/kn.po
@@ -19,52 +19,52 @@ msgstr ""
|
|||||||
"Language: kn\n"
|
"Language: kn\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/ko.po
28
po/ko.po
@@ -21,52 +21,52 @@ msgstr ""
|
|||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "헥스채트"
|
msgstr "헥스채트"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC 클라이언트"
|
msgstr "IRC 클라이언트"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "헥스채트는 사용하기 쉽고 확장성이 뛰어난 IRC 클라이언트 입니다. 여러 네트워크에 안전하게 참여할 수 있으며, 여러분이 직접 유연하게 꾸밀 수 있는 인터페이스를 사용하여 다른 사람과 개인적으로 대화하거나 대화방에서 대화할 수 있습니다. 게다가 파일도 보낼 수 있습니다."
|
msgstr "헥스채트는 사용하기 쉽고 확장성이 뛰어난 IRC 클라이언트 입니다. 여러 네트워크에 안전하게 참여할 수 있으며, 여러분이 직접 유연하게 꾸밀 수 있는 인터페이스를 사용하여 다른 사람과 개인적으로 대화하거나 대화방에서 대화할 수 있습니다. 게다가 파일도 보낼 수 있습니다."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "핵스채트는 DCC, SASL, 프록시 서버, 철자 검사, 경고, 기록, 사용자 정의 테마, 파이썬/펄 스크립트 같은 기능을 지원합니다."
|
msgstr "핵스채트는 DCC, SASL, 프록시 서버, 철자 검사, 경고, 기록, 사용자 정의 테마, 파이썬/펄 스크립트 같은 기능을 지원합니다."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "주 대화 창"
|
msgstr "주 대화 창"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "온라인에 있는 여러 사람과 대화합니다"
|
msgstr "온라인에 있는 여러 사람과 대화합니다"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;인스턴트 메신저;Chat;대화;"
|
msgstr "IM;인스턴트 메신저;Chat;대화;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "공개 안전 모드"
|
msgstr "공개 안전 모드"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "핵스채트 테마 관리자"
|
msgstr "핵스채트 테마 관리자"
|
||||||
|
|
||||||
|
|||||||
28
po/lt.po
28
po/lt.po
@@ -24,52 +24,52 @@ msgstr ""
|
|||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC klientas"
|
msgstr "IRC klientas"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat yra paprastas naudoti IRC klientas, leidžiantis jums saugiai prisijungti prie kelių tinklų, privačiai kalbėtis su atskirais naudotojais arba kanaluose, naudojant tinkinamą sąsają. Jūs netgi galite persiųsti failus."
|
msgstr "ZoiteChat yra paprastas naudoti IRC klientas, leidžiantis jums saugiai prisijungti prie kelių tinklų, privačiai kalbėtis su atskirais naudotojais arba kanaluose, naudojant tinkinamą sąsają. Jūs netgi galite persiųsti failus."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat palaiko tokias galimybes kaip: DCC, SASL, įgaliotuosius serverius, rašybos tikrinimą, signalizavimą, registravimą, tinkintas temas bei Phyton/Perl scenarijus."
|
msgstr "ZoiteChat palaiko tokias galimybes kaip: DCC, SASL, įgaliotuosius serverius, rašybos tikrinimą, signalizavimą, registravimą, tinkintas temas bei Phyton/Perl scenarijus."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Pagrindinis pokalbių langas"
|
msgstr "Pagrindinis pokalbių langas"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Kalbėkite su kitais žmonėmis internete"
|
msgstr "Kalbėkite su kitais žmonėmis internete"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Pokalbiai;"
|
msgstr "IM;Pokalbiai;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Atvira saugi veiksena"
|
msgstr "Atvira saugi veiksena"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat temų tvarkytuvė"
|
msgstr "ZoiteChat temų tvarkytuvė"
|
||||||
|
|
||||||
|
|||||||
28
po/lv.po
28
po/lv.po
@@ -19,52 +19,52 @@ msgstr ""
|
|||||||
"Language: lv\n"
|
"Language: lv\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC klients"
|
msgstr "IRC klients"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Tērzēt ar citiem cilvēkiem tiešsaistē"
|
msgstr "Tērzēt ar citiem cilvēkiem tiešsaistē"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "TZ;Tērzēšana"
|
msgstr "TZ;Tērzēšana"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Atvērt drošo režīmu"
|
msgstr "Atvērt drošo režīmu"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat motīvu pārvaldnieks"
|
msgstr "ZoiteChat motīvu pārvaldnieks"
|
||||||
|
|
||||||
|
|||||||
28
po/mk.po
28
po/mk.po
@@ -18,52 +18,52 @@ msgstr ""
|
|||||||
"Language: mk\n"
|
"Language: mk\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/ml.po
28
po/ml.po
@@ -22,52 +22,52 @@ msgstr ""
|
|||||||
"Language: ml\n"
|
"Language: ml\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/ms.po
28
po/ms.po
@@ -18,52 +18,52 @@ msgstr ""
|
|||||||
"Language: ms\n"
|
"Language: ms\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/nb.po
28
po/nb.po
@@ -27,52 +27,52 @@ msgstr ""
|
|||||||
"Language: nb\n"
|
"Language: nb\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC-klient"
|
msgstr "IRC-klient"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat er en enkel og fleksibel IRC-klient. Den gir deg muligheten til å sikkert koble deg til nettverk, ha samtaler i kanaler eller privat med brukere, og dette med et tilpassbart grensesnitt. Du kan også utføre filoverføringer."
|
msgstr "ZoiteChat er en enkel og fleksibel IRC-klient. Den gir deg muligheten til å sikkert koble deg til nettverk, ha samtaler i kanaler eller privat med brukere, og dette med et tilpassbart grensesnitt. Du kan også utføre filoverføringer."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat støtter funksjoner som: DCC, SASL, mellomtjenere, stavekontroll, varslinger, logging, tilpassbare temaer, samt Python-/Perl-skript."
|
msgstr "ZoiteChat støtter funksjoner som: DCC, SASL, mellomtjenere, stavekontroll, varslinger, logging, tilpassbare temaer, samt Python-/Perl-skript."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Hovedsludrevinduet "
|
msgstr "Hovedsludrevinduet "
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Prat med andre folk på nettet"
|
msgstr "Prat med andre folk på nettet"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Åpne i sikker modus"
|
msgstr "Åpne i sikker modus"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Temabehandler for ZoiteChat"
|
msgstr "Temabehandler for ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/nl.po
28
po/nl.po
@@ -23,52 +23,52 @@ msgstr ""
|
|||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/no.po
28
po/no.po
@@ -18,52 +18,52 @@ msgstr ""
|
|||||||
"Language: no\n"
|
"Language: no\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/pa.po
28
po/pa.po
@@ -19,52 +19,52 @@ msgstr ""
|
|||||||
"Language: pa\n"
|
"Language: pa\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/pl.po
28
po/pl.po
@@ -33,52 +33,52 @@ msgstr ""
|
|||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Klient IRC"
|
msgstr "Klient IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat jest prostym, lecz dowolnie poszerzalnym klientem IRC. Pozwala na bezpieczne dołączenie do wielu sieci i rozmawianie z użytkownikami prywatnie bądź na kanałach. Można nawet przesyłać pliki."
|
msgstr "ZoiteChat jest prostym, lecz dowolnie poszerzalnym klientem IRC. Pozwala na bezpieczne dołączenie do wielu sieci i rozmawianie z użytkownikami prywatnie bądź na kanałach. Można nawet przesyłać pliki."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat wspiera takie funkcje, jak: DCC, SASL, serwery proxy, sprawdzanie pisowni, alerty, logi, własne motywy i skrypty w Pythonie/Perlu."
|
msgstr "ZoiteChat wspiera takie funkcje, jak: DCC, SASL, serwery proxy, sprawdzanie pisowni, alerty, logi, własne motywy i skrypty w Pythonie/Perlu."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Główne okno czatu"
|
msgstr "Główne okno czatu"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Rozmawiaj z innymi ludźmi przez internet"
|
msgstr "Rozmawiaj z innymi ludźmi przez internet"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Otwórz tryb bezpieczny"
|
msgstr "Otwórz tryb bezpieczny"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Menedżer motywów ZoiteChat"
|
msgstr "Menedżer motywów ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/pt.po
28
po/pt.po
@@ -23,52 +23,52 @@ msgstr ""
|
|||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Cliente de IRC"
|
msgstr "Cliente de IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "O ZoiteChat é um Cliente de IRC fácil de usar, mas também fácil de expandir. Ele permite que te juntes de forma segura a várias redes e que fales com outros utilizadores em privado ou em canais através de uma interface personalizável. Se quiseres, podes até transferir ficheiros!"
|
msgstr "O ZoiteChat é um Cliente de IRC fácil de usar, mas também fácil de expandir. Ele permite que te juntes de forma segura a várias redes e que fales com outros utilizadores em privado ou em canais através de uma interface personalizável. Se quiseres, podes até transferir ficheiros!"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "O ZoiteChat suporta funcionalidades como: DCC, SASL, proxies, verificação de erros ortográficos, alertas, registos, temas personalizados, e scripts em Python/Perl."
|
msgstr "O ZoiteChat suporta funcionalidades como: DCC, SASL, proxies, verificação de erros ortográficos, alertas, registos, temas personalizados, e scripts em Python/Perl."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Janela de Chat Principal"
|
msgstr "Janela de Chat Principal"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Conversa com outras pessoas online"
|
msgstr "Conversa com outras pessoas online"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Abrir Modo Seguro"
|
msgstr "Abrir Modo Seguro"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Gestor de Temas do ZoiteChat"
|
msgstr "Gestor de Temas do ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/pt_BR.po
28
po/pt_BR.po
@@ -29,52 +29,52 @@ msgstr ""
|
|||||||
"Language: pt_BR\n"
|
"Language: pt_BR\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Cliente IRC"
|
msgstr "Cliente IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat é um cliente IRC extensível e fácil de usar. Ele permite que, de forma segura, você acesse múltiplas redes e tenha conversas privadas com outros usuários ou ainda em canais públicos, tudo isso através de uma interface personalizável. Você poderá até mesmo transferir arquivos."
|
msgstr "ZoiteChat é um cliente IRC extensível e fácil de usar. Ele permite que, de forma segura, você acesse múltiplas redes e tenha conversas privadas com outros usuários ou ainda em canais públicos, tudo isso através de uma interface personalizável. Você poderá até mesmo transferir arquivos."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat suporta recursos como: DCC, SASL, proxies, corretor ortográfico, alertas, registros, temas personalizados, e scripts em Python/Perl"
|
msgstr "ZoiteChat suporta recursos como: DCC, SASL, proxies, corretor ortográfico, alertas, registros, temas personalizados, e scripts em Python/Perl"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Janela principal de bate-papo"
|
msgstr "Janela principal de bate-papo"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Converse com outras pessoas na rede"
|
msgstr "Converse com outras pessoas na rede"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chat;"
|
msgstr "IM;Chat;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Abrir modo seguro"
|
msgstr "Abrir modo seguro"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Gerenciador de temas"
|
msgstr "Gerenciador de temas"
|
||||||
|
|
||||||
|
|||||||
28
po/ru.po
28
po/ru.po
@@ -32,52 +32,52 @@ msgstr ""
|
|||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC Клиент"
|
msgstr "IRC Клиент"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat - это лёгкий в использовании, но расширяемый IRC Клиент. Он позволяет безопасно соединяться со множеством сетей и общаться с пользователями лично или на каналах, используя настраиваемый интерфейс. Вы даже можете передавать файлы."
|
msgstr "ZoiteChat - это лёгкий в использовании, но расширяемый IRC Клиент. Он позволяет безопасно соединяться со множеством сетей и общаться с пользователями лично или на каналах, используя настраиваемый интерфейс. Вы даже можете передавать файлы."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat поддерживает следующие функции: DCC, SASL, прокси, проверка орфографии, уведомления, ведение логов, настраиваемые темы и скрипты на Python/Perl."
|
msgstr "ZoiteChat поддерживает следующие функции: DCC, SASL, прокси, проверка орфографии, уведомления, ведение логов, настраиваемые темы и скрипты на Python/Perl."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Главное окно чата"
|
msgstr "Главное окно чата"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Общаться с другими людьми онлайн"
|
msgstr "Общаться с другими людьми онлайн"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Чат;"
|
msgstr "IM;Чат;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Открыть безопасный режим"
|
msgstr "Открыть безопасный режим"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Управление темами ZoiteChat"
|
msgstr "Управление темами ZoiteChat"
|
||||||
|
|
||||||
|
|||||||
28
po/rw.po
28
po/rw.po
@@ -26,52 +26,52 @@ msgstr ""
|
|||||||
"Language: rw\n"
|
"Language: rw\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/sk.po
28
po/sk.po
@@ -20,52 +20,52 @@ msgstr ""
|
|||||||
"Language: sk\n"
|
"Language: sk\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/sl.po
28
po/sl.po
@@ -23,52 +23,52 @@ msgstr ""
|
|||||||
"Language: sl\n"
|
"Language: sl\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC Client"
|
msgstr "IRC Client"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Klepet;"
|
msgstr "IM;Klepet;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/sq.po
28
po/sq.po
@@ -21,52 +21,52 @@ msgstr ""
|
|||||||
"Language: sq\n"
|
"Language: sq\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "Klient IRC"
|
msgstr "Klient IRC"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat-i është një klient IRC-je i lehtë për t’u përdorur, por prapëseprapë shumë i zgjerueshëm. Ju lejon të hyni në mënyrë të sigurt, në shumë rrjete njëherësh, dhe të bisedoni me përdoruesit privatisht ose në kanale, duke përdorur një ndërfaqe të personalizueshme. Mundeni madje edhe të shkëmbeni kartela."
|
msgstr "ZoiteChat-i është një klient IRC-je i lehtë për t’u përdorur, por prapëseprapë shumë i zgjerueshëm. Ju lejon të hyni në mënyrë të sigurt, në shumë rrjete njëherësh, dhe të bisedoni me përdoruesit privatisht ose në kanale, duke përdorur një ndërfaqe të personalizueshme. Mundeni madje edhe të shkëmbeni kartela."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat-i mbulon veçori të tilla si: DCC, SASL, ndërmjetës, drejtshkrim, sinjalizime, regjistrim veprimtarie, tema të personalizueshme, dhe programthe Python/Perl."
|
msgstr "ZoiteChat-i mbulon veçori të tilla si: DCC, SASL, ndërmjetës, drejtshkrim, sinjalizime, regjistrim veprimtarie, tema të personalizueshme, dhe programthe Python/Perl."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Dritarja Kryesore e Fjalosjeve"
|
msgstr "Dritarja Kryesore e Fjalosjeve"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Bisedoni në linjë me persona të tjerë"
|
msgstr "Bisedoni në linjë me persona të tjerë"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Fjalosje;"
|
msgstr "IM;Fjalosje;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Hap Mënyrën e Sigurt"
|
msgstr "Hap Mënyrën e Sigurt"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "Përgjegjës Temash ZoiteChat-i"
|
msgstr "Përgjegjës Temash ZoiteChat-i"
|
||||||
|
|
||||||
|
|||||||
28
po/sr.po
28
po/sr.po
@@ -20,52 +20,52 @@ msgstr ""
|
|||||||
"Language: sr\n"
|
"Language: sr\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ХексЧет"
|
msgstr "ХексЧет"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "ИРЦ клијент"
|
msgstr "ИРЦ клијент"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Ћаскајте са пријатељима онлајн"
|
msgstr "Ћаскајте са пријатељима онлајн"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "ИМ;Ћаскање;"
|
msgstr "ИМ;Ћаскање;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Отвори у Сигурном моду"
|
msgstr "Отвори у Сигурном моду"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ХексЧет Избор Теме"
|
msgstr "ХексЧет Избор Теме"
|
||||||
|
|
||||||
|
|||||||
@@ -22,52 +22,52 @@ msgstr ""
|
|||||||
"Language: sr@latin\n"
|
"Language: sr@latin\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/sv.po
28
po/sv.po
@@ -28,52 +28,52 @@ msgstr ""
|
|||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC klient"
|
msgstr "IRC klient"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat är en lättanvänd men även utbyggbar IRC-klient. Den låter dig ansluta säkert till flera nätverk och prata med användare privat eller i kanaler med ett anpassningsbart utseende. Du kan till och med överföra filer."
|
msgstr "ZoiteChat är en lättanvänd men även utbyggbar IRC-klient. Den låter dig ansluta säkert till flera nätverk och prata med användare privat eller i kanaler med ett anpassningsbart utseende. Du kan till och med överföra filer."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat stödjer funktioner som: DCC, SASL, proxytjänster, stavningskontroll, notifikationer, loggning, egna teman, och Python/Perl-skript."
|
msgstr "ZoiteChat stödjer funktioner som: DCC, SASL, proxytjänster, stavningskontroll, notifikationer, loggning, egna teman, och Python/Perl-skript."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Primärt chattfönster"
|
msgstr "Primärt chattfönster"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Chatta med andra människor online"
|
msgstr "Chatta med andra människor online"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Chatt;"
|
msgstr "IM;Chatt;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Öppna säkert läge"
|
msgstr "Öppna säkert läge"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat temahanterare "
|
msgstr "ZoiteChat temahanterare "
|
||||||
|
|
||||||
|
|||||||
28
po/th.po
28
po/th.po
@@ -19,52 +19,52 @@ msgstr ""
|
|||||||
"Language: th\n"
|
"Language: th\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/tr.po
28
po/tr.po
@@ -39,52 +39,52 @@ msgstr ""
|
|||||||
"Language: tr\n"
|
"Language: tr\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC İstemcisi"
|
msgstr "IRC İstemcisi"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat kullanımı kolay ve işlevleri arttırılabilir bir IRC İstemcisidir. Kişiselleştirilebilir bir arayüz kullanarak birden fazla ağa güvenli şekilde bağlanmanızı ve kullanıcılarla özel olarak veya kanallar üzerinde sohbet etmenizi sağlar. Hatta dosya aktarımı da yapabilirsiniz."
|
msgstr "ZoiteChat kullanımı kolay ve işlevleri arttırılabilir bir IRC İstemcisidir. Kişiselleştirilebilir bir arayüz kullanarak birden fazla ağa güvenli şekilde bağlanmanızı ve kullanıcılarla özel olarak veya kanallar üzerinde sohbet etmenizi sağlar. Hatta dosya aktarımı da yapabilirsiniz."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat şu özellikleri destekler: DCC, SASL, vekil sunucular, yazım denetimi, alarmlar, günlük kaydı, kişisel temalar ve Python/Perl betikleri."
|
msgstr "ZoiteChat şu özellikleri destekler: DCC, SASL, vekil sunucular, yazım denetimi, alarmlar, günlük kaydı, kişisel temalar ve Python/Perl betikleri."
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "Ana Sohbet Penceresi"
|
msgstr "Ana Sohbet Penceresi"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "Başka insanlarla çevrimiçi sohbet edin"
|
msgstr "Başka insanlarla çevrimiçi sohbet edin"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;Sohbet;"
|
msgstr "IM;Sohbet;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "Güvenli Kipi Aç"
|
msgstr "Güvenli Kipi Aç"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat Tema Yöneticisi"
|
msgstr "ZoiteChat Tema Yöneticisi"
|
||||||
|
|
||||||
|
|||||||
28
po/uk.po
28
po/uk.po
@@ -21,52 +21,52 @@ msgstr ""
|
|||||||
"Language: uk\n"
|
"Language: uk\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/vi.po
28
po/vi.po
@@ -17,52 +17,52 @@ msgstr ""
|
|||||||
"Language: vi\n"
|
"Language: vi\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/wa.po
28
po/wa.po
@@ -18,52 +18,52 @@ msgstr ""
|
|||||||
"Language: wa\n"
|
"Language: wa\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
28
po/zh_CN.po
28
po/zh_CN.po
@@ -35,52 +35,52 @@ msgstr ""
|
|||||||
"Language: zh_CN\n"
|
"Language: zh_CN\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr "ZoiteChat"
|
msgstr "ZoiteChat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr "IRC 客户端"
|
msgstr "IRC 客户端"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr "ZoiteChat 是一款易于使用的可扩展 IRC 客户端。它允许以安全的方式进入多个网络,与用户进行私密聊天,或者在频道中使用自定义界面,甚至还可以传送文件。"
|
msgstr "ZoiteChat 是一款易于使用的可扩展 IRC 客户端。它允许以安全的方式进入多个网络,与用户进行私密聊天,或者在频道中使用自定义界面,甚至还可以传送文件。"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr "ZoiteChat 支持以下特性: DCC、SASL、代理、拼写检查、消息提醒、聊天记录、自定义主题和 Python/Perl 脚本。"
|
msgstr "ZoiteChat 支持以下特性: DCC、SASL、代理、拼写检查、消息提醒、聊天记录、自定义主题和 Python/Perl 脚本。"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr "主聊天窗口"
|
msgstr "主聊天窗口"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr "与其他人在线聊天"
|
msgstr "与其他人在线聊天"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr "IM;聊天;"
|
msgstr "IM;聊天;"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr "zoitechat"
|
msgstr "zoitechat"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr "打开安全模式"
|
msgstr "打开安全模式"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr "ZoiteChat 主题管理器"
|
msgstr "ZoiteChat 主题管理器"
|
||||||
|
|
||||||
|
|||||||
28
po/zh_TW.po
28
po/zh_TW.po
@@ -27,52 +27,52 @@ msgstr ""
|
|||||||
"Language: zh_TW\n"
|
"Language: zh_TW\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:4
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:4
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:5
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:5
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:3
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:3
|
||||||
msgid "ZoiteChat"
|
msgid "ZoiteChat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:9
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:9
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:4
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:4
|
||||||
msgid "IRC Client"
|
msgid "IRC Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:11
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
"ZoiteChat is an easy to use yet extensible IRC Client. It allows you to "
|
||||||
"securely join multiple networks and talk to users privately or in channels "
|
"securely join multiple networks and talk to users privately or in channels "
|
||||||
"using a customizable interface. You can even transfer files."
|
"using a customizable interface. You can even transfer files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:12
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:12
|
||||||
msgid ""
|
msgid ""
|
||||||
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
"ZoiteChat supports features such as: DCC, SASL, proxies, spellcheck, alerts, "
|
||||||
"logging, custom themes, and Python/Perl scripts."
|
"logging, custom themes, and Python/Perl scripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.appdata.xml.in:22
|
#: data/misc/net.zoite.Zoitechat.appdata.xml.in:22
|
||||||
msgid "Main Chat Window"
|
msgid "Main Chat Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:5
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:5
|
||||||
msgid "Chat with other people online"
|
msgid "Chat with other people online"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:6
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:6
|
||||||
msgid "IM;Chat;"
|
msgid "IM;Chat;"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:8
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:8
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:5
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:5
|
||||||
msgid "zoitechat"
|
msgid "zoitechat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.desktop.in.in:19
|
#: data/misc/net.zoite.Zoitechat.desktop.in.in:19
|
||||||
msgid "Open Safe Mode"
|
msgid "Open Safe Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: data/misc/io.github.Zoitechat.ThemeManager.desktop.in:3
|
#: data/misc/net.zoite.Zoitechat.ThemeManager.desktop.in:3
|
||||||
msgid "ZoiteChat Theme Manager"
|
msgid "ZoiteChat Theme Manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -5,11 +5,12 @@
|
|||||||
[](https://github.com/ZoiteChat/zoitechat/actions/workflows/appimage-build.yml)
|
[](https://github.com/ZoiteChat/zoitechat/actions/workflows/appimage-build.yml)
|
||||||
[](https://github.com/ZoiteChat/zoitechat/actions/workflows/windows-build.yml)
|
[](https://github.com/ZoiteChat/zoitechat/actions/workflows/windows-build.yml)
|
||||||
[](https://github.com/ZoiteChat/zoitechat/actions/workflows/msys-build.yml)
|
[](https://github.com/ZoiteChat/zoitechat/actions/workflows/msys-build.yml)
|
||||||
|
[](https://github.com/ZoiteChat/zoitechat/actions/workflows/openbsd-build.yml)
|
||||||
|
|
||||||
ZoiteChat is an HexChat based IRC client for Windows and UNIX-like operating systems.
|
ZoiteChat is an HexChat based IRC client for Windows and UNIX-like operating systems.
|
||||||
See [IRCHelp.org](http://irchelp.org) for information about IRC in general.
|
See [IRCHelp.org](http://irchelp.org) for information about IRC in general.
|
||||||
For more information on ZoiteChat please read our [documentation](https://zoitechat.zoite.net/docs/en/latest/index.html):
|
For more information on ZoiteChat please read our [documentation](https://zoitechat.zoite.net/docs/):
|
||||||
- [Downloads](http://zoitechat.github.io/downloads)
|
- [Downloads](https://zoitechat.zoite.net/download)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -39,7 +39,11 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DEF_FONT "Monospace 9"
|
#define DEF_FONT "Monospace 9"
|
||||||
|
#ifdef WIN32
|
||||||
|
#define DEF_FONT_ALTER "Segoe UI Emoji,Arial Unicode MS,Lucida Sans Unicode,Meiryo,Symbola,Unifont"
|
||||||
|
#else
|
||||||
#define DEF_FONT_ALTER "Arial Unicode MS,Segoe UI Emoji,Lucida Sans Unicode,Meiryo,Symbola,Unifont"
|
#define DEF_FONT_ALTER "Arial Unicode MS,Segoe UI Emoji,Lucida Sans Unicode,Meiryo,Symbola,Unifont"
|
||||||
|
#endif
|
||||||
|
|
||||||
const char * const languages[LANGUAGES_LENGTH] = {
|
const char * const languages[LANGUAGES_LENGTH] = {
|
||||||
"af", "sq", "am", "ast", "az", "eu", "be", "bg", "ca", "zh_CN", /* 0 .. 9 */
|
"af", "sq", "am", "ast", "az", "eu", "be", "bg", "ca", "zh_CN", /* 0 .. 9 */
|
||||||
|
|||||||
@@ -53,6 +53,33 @@ new_param_variant (const char *arg)
|
|||||||
return g_variant_new_tuple (args, 1);
|
return g_variant_new_tuple (args, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
has_theme_argument (void)
|
||||||
|
{
|
||||||
|
char *theme_path = NULL;
|
||||||
|
guint i;
|
||||||
|
|
||||||
|
if (arg_url && zoitechat_theme_path_from_arg (arg_url, &theme_path))
|
||||||
|
{
|
||||||
|
g_free (theme_path);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (arg_urls)
|
||||||
|
{
|
||||||
|
for (i = 0; i < g_strv_length (arg_urls); i++)
|
||||||
|
{
|
||||||
|
if (zoitechat_theme_path_from_arg (arg_urls[i], &theme_path))
|
||||||
|
{
|
||||||
|
g_free (theme_path);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
zoitechat_remote (void)
|
zoitechat_remote (void)
|
||||||
/* TODO: dbus_g_connection_unref (connection) are commented because it makes
|
/* TODO: dbus_g_connection_unref (connection) are commented because it makes
|
||||||
@@ -68,12 +95,17 @@ zoitechat_remote (void)
|
|||||||
GError *error = NULL;
|
GError *error = NULL;
|
||||||
char *command = NULL;
|
char *command = NULL;
|
||||||
guint i;
|
guint i;
|
||||||
|
gboolean allow_remote;
|
||||||
|
|
||||||
/* if there is nothing to do, return now. */
|
/* if there is nothing to do, return now. */
|
||||||
if (!arg_existing || !(arg_url || arg_urls || arg_command)) {
|
if (!(arg_url || arg_urls || arg_command)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
allow_remote = arg_existing || has_theme_argument ();
|
||||||
|
if (!allow_remote)
|
||||||
|
return;
|
||||||
|
|
||||||
arg_dont_autoconnect = TRUE;
|
arg_dont_autoconnect = TRUE;
|
||||||
|
|
||||||
connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
|
connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
|
||||||
|
|||||||
@@ -3770,6 +3770,35 @@ cmd_url (struct session *sess, char *tbuf, char *word[], char *word_eol[])
|
|||||||
{
|
{
|
||||||
if (word[2][0])
|
if (word[2][0])
|
||||||
{
|
{
|
||||||
|
char *theme_path = NULL;
|
||||||
|
if (zoitechat_theme_path_from_arg (word[2], &theme_path))
|
||||||
|
{
|
||||||
|
GError *error = NULL;
|
||||||
|
char *basename = g_path_get_basename (theme_path);
|
||||||
|
char *dot = strrchr (basename, '.');
|
||||||
|
char *message;
|
||||||
|
|
||||||
|
if (dot)
|
||||||
|
*dot = '\0';
|
||||||
|
|
||||||
|
if (zoitechat_import_theme (theme_path, &error))
|
||||||
|
{
|
||||||
|
message = g_strdup_printf (_("Theme \"%s\" imported."), basename);
|
||||||
|
fe_message (message, FE_MSG_INFO);
|
||||||
|
g_free (message);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fe_message (error ? error->message : _("Failed to import theme."),
|
||||||
|
FE_MSG_ERROR);
|
||||||
|
g_clear_error (&error);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_free (basename);
|
||||||
|
g_free (theme_path);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
char *server_name = NULL;
|
char *server_name = NULL;
|
||||||
char *port = NULL;
|
char *port = NULL;
|
||||||
char *channel = NULL;
|
char *channel = NULL;
|
||||||
|
|||||||
@@ -64,6 +64,40 @@
|
|||||||
#ifdef USE_OPENSSL
|
#ifdef USE_OPENSSL
|
||||||
/* local variables */
|
/* local variables */
|
||||||
static struct session *g_sess = NULL;
|
static struct session *g_sess = NULL;
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
ssl_sni_hostname_is_valid (const char *hostname)
|
||||||
|
{
|
||||||
|
const unsigned char *current;
|
||||||
|
char *ip_literal = NULL;
|
||||||
|
size_t hostname_len;
|
||||||
|
|
||||||
|
if (!hostname || !hostname[0])
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
for (current = (const unsigned char *)hostname; *current; current++)
|
||||||
|
{
|
||||||
|
if (*current > 0x7f)
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (g_hostname_is_ip_address (hostname))
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
hostname_len = strlen (hostname);
|
||||||
|
if (hostname[0] == '[' && hostname_len > 2 && hostname[hostname_len - 1] == ']')
|
||||||
|
{
|
||||||
|
ip_literal = g_strndup (hostname + 1, hostname_len - 2);
|
||||||
|
if (g_hostname_is_ip_address (ip_literal))
|
||||||
|
{
|
||||||
|
g_free (ip_literal);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
g_free (ip_literal);
|
||||||
|
}
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static GSList *away_list = NULL;
|
static GSList *away_list = NULL;
|
||||||
@@ -519,7 +553,16 @@ ssl_do_connect (server * serv)
|
|||||||
g_sess = serv->server_session;
|
g_sess = serv->server_session;
|
||||||
|
|
||||||
/* Set SNI hostname before connect */
|
/* Set SNI hostname before connect */
|
||||||
SSL_set_tlsext_host_name(serv->ssl, serv->hostname);
|
if (ssl_sni_hostname_is_valid (serv->hostname))
|
||||||
|
{
|
||||||
|
SSL_set_tlsext_host_name (serv->ssl, serv->hostname);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
g_snprintf (buf, sizeof (buf), "* Skipping invalid SNI hostname: %s",
|
||||||
|
serv->hostname);
|
||||||
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL, NULL, 0);
|
||||||
|
}
|
||||||
|
|
||||||
if (SSL_connect (serv->ssl) <= 0)
|
if (SSL_connect (serv->ssl) <= 0)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -990,11 +990,10 @@ servlist_load (void)
|
|||||||
|
|
||||||
while (fgets (buf, sizeof (buf) - 2, fp))
|
while (fgets (buf, sizeof (buf) - 2, fp))
|
||||||
{
|
{
|
||||||
|
g_strchomp (buf);
|
||||||
len = strlen (buf);
|
len = strlen (buf);
|
||||||
if (!len)
|
if (!len)
|
||||||
continue;
|
continue;
|
||||||
buf[len] = 0;
|
|
||||||
buf[len-1] = 0; /* remove the trailing \n */
|
|
||||||
if (net)
|
if (net)
|
||||||
{
|
{
|
||||||
switch (buf[0])
|
switch (buf[0])
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#include <errno.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
@@ -107,6 +108,298 @@ struct session *current_tab;
|
|||||||
struct session *current_sess = 0;
|
struct session *current_sess = 0;
|
||||||
struct zoitechatprefs prefs;
|
struct zoitechatprefs prefs;
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
zoitechat_theme_path_from_arg (const char *arg, char **path_out)
|
||||||
|
{
|
||||||
|
char *path = NULL;
|
||||||
|
const char *ext;
|
||||||
|
|
||||||
|
if (!arg)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
if (g_str_has_prefix (arg, "file://"))
|
||||||
|
path = g_filename_from_uri (arg, NULL, NULL);
|
||||||
|
else
|
||||||
|
path = g_strdup (arg);
|
||||||
|
|
||||||
|
if (!path)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
ext = strrchr (path, '.');
|
||||||
|
if (!g_file_test (path, G_FILE_TEST_IS_REGULAR) ||
|
||||||
|
!ext ||
|
||||||
|
(g_ascii_strcasecmp (ext, ".zct") != 0 &&
|
||||||
|
g_ascii_strcasecmp (ext, ".hct") != 0))
|
||||||
|
{
|
||||||
|
g_free (path);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (path_out)
|
||||||
|
*path_out = path;
|
||||||
|
else
|
||||||
|
g_free (path);
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
static gboolean
|
||||||
|
zoitechat_has_theme_argument (void)
|
||||||
|
{
|
||||||
|
char *theme_path = NULL;
|
||||||
|
guint i;
|
||||||
|
|
||||||
|
if (arg_url && zoitechat_theme_path_from_arg (arg_url, &theme_path))
|
||||||
|
{
|
||||||
|
g_free (theme_path);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (arg_urls)
|
||||||
|
{
|
||||||
|
for (i = 0; i < g_strv_length (arg_urls); i++)
|
||||||
|
{
|
||||||
|
if (zoitechat_theme_path_from_arg (arg_urls[i], &theme_path))
|
||||||
|
{
|
||||||
|
g_free (theme_path);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static HWND
|
||||||
|
zoitechat_find_running_window (void)
|
||||||
|
{
|
||||||
|
HWND hwnd = FindWindowA ("ZoiteChat", NULL);
|
||||||
|
|
||||||
|
if (!hwnd)
|
||||||
|
hwnd = FindWindowA ("zoitechat", NULL);
|
||||||
|
if (!hwnd)
|
||||||
|
hwnd = FindWindowA (NULL, "ZoiteChat");
|
||||||
|
|
||||||
|
return hwnd;
|
||||||
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
zoitechat_send_command_to_existing (HWND hwnd, const char *command)
|
||||||
|
{
|
||||||
|
COPYDATASTRUCT copy_data;
|
||||||
|
DWORD_PTR send_result = 0;
|
||||||
|
|
||||||
|
if (!hwnd || !command || !*command)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
copy_data.dwData = 0;
|
||||||
|
copy_data.cbData = (DWORD)strlen (command) + 1;
|
||||||
|
copy_data.lpData = (void *)command;
|
||||||
|
|
||||||
|
return SendMessageTimeoutA (hwnd, WM_COPYDATA, (WPARAM)NULL,
|
||||||
|
(LPARAM)©_data,
|
||||||
|
SMTO_ABORTIFHUNG | SMTO_BLOCK,
|
||||||
|
5000, &send_result) != 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
zoitechat_remote_win32 (void)
|
||||||
|
{
|
||||||
|
HWND hwnd;
|
||||||
|
gboolean allow_remote;
|
||||||
|
gboolean sent = FALSE;
|
||||||
|
|
||||||
|
allow_remote = arg_existing || zoitechat_has_theme_argument ();
|
||||||
|
if (!allow_remote)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
hwnd = zoitechat_find_running_window ();
|
||||||
|
if (!hwnd)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
if (arg_url)
|
||||||
|
{
|
||||||
|
char *command = g_strdup_printf ("url %s", arg_url);
|
||||||
|
sent = zoitechat_send_command_to_existing (hwnd, command) || sent;
|
||||||
|
g_free (command);
|
||||||
|
}
|
||||||
|
else if (arg_command)
|
||||||
|
{
|
||||||
|
sent = zoitechat_send_command_to_existing (hwnd, arg_command) || sent;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (arg_urls)
|
||||||
|
{
|
||||||
|
guint i;
|
||||||
|
for (i = 0; i < g_strv_length (arg_urls); i++)
|
||||||
|
{
|
||||||
|
char *command = g_strdup_printf ("url %s", arg_urls[i]);
|
||||||
|
sent = zoitechat_send_command_to_existing (hwnd, command) || sent;
|
||||||
|
g_free (command);
|
||||||
|
}
|
||||||
|
g_strfreev (arg_urls);
|
||||||
|
arg_urls = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return sent;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
zoitechat_import_theme (const char *path, GError **error)
|
||||||
|
{
|
||||||
|
char *themes_dir;
|
||||||
|
char *basename;
|
||||||
|
char *dot;
|
||||||
|
char *theme_dir;
|
||||||
|
char *argv[] = {"unzip", "-o", (char *)path, "-d", NULL, NULL};
|
||||||
|
int status = 0;
|
||||||
|
gboolean ok;
|
||||||
|
#ifdef WIN32
|
||||||
|
char *command = NULL;
|
||||||
|
char *powershell = NULL;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (!path)
|
||||||
|
{
|
||||||
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
|
||||||
|
_("No theme file specified."));
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
themes_dir = g_build_filename (get_xdir (), "themes", NULL);
|
||||||
|
basename = g_path_get_basename (path);
|
||||||
|
if (!basename || basename[0] == '\0')
|
||||||
|
{
|
||||||
|
g_free (themes_dir);
|
||||||
|
g_free (basename);
|
||||||
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
|
||||||
|
_("Failed to determine theme name."));
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
dot = strrchr (basename, '.');
|
||||||
|
if (dot)
|
||||||
|
*dot = '\0';
|
||||||
|
|
||||||
|
theme_dir = g_build_filename (themes_dir, basename, NULL);
|
||||||
|
if (g_mkdir_with_parents (theme_dir, 0700) != 0)
|
||||||
|
{
|
||||||
|
g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno),
|
||||||
|
_("Failed to create theme directory."));
|
||||||
|
g_free (theme_dir);
|
||||||
|
g_free (basename);
|
||||||
|
g_free (themes_dir);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
powershell = g_find_program_in_path ("powershell.exe");
|
||||||
|
if (!powershell)
|
||||||
|
powershell = g_find_program_in_path ("powershell");
|
||||||
|
|
||||||
|
if (!powershell)
|
||||||
|
{
|
||||||
|
g_set_error (error, G_SPAWN_ERROR, G_SPAWN_ERROR_NOENT,
|
||||||
|
_("No archive extractor was found."));
|
||||||
|
ok = FALSE;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
GString *escaped_path = g_string_new ("'");
|
||||||
|
GString *escaped_dir = g_string_new ("'");
|
||||||
|
const char *cursor;
|
||||||
|
|
||||||
|
for (cursor = path; *cursor != '\0'; cursor++)
|
||||||
|
{
|
||||||
|
if (*cursor == '\'')
|
||||||
|
g_string_append (escaped_path, "''");
|
||||||
|
else
|
||||||
|
g_string_append_c (escaped_path, *cursor);
|
||||||
|
}
|
||||||
|
g_string_append_c (escaped_path, '\'');
|
||||||
|
|
||||||
|
for (cursor = theme_dir; *cursor != '\0'; cursor++)
|
||||||
|
{
|
||||||
|
if (*cursor == '\'')
|
||||||
|
g_string_append (escaped_dir, "''");
|
||||||
|
else
|
||||||
|
g_string_append_c (escaped_dir, *cursor);
|
||||||
|
}
|
||||||
|
g_string_append_c (escaped_dir, '\'');
|
||||||
|
|
||||||
|
command = g_strdup_printf (
|
||||||
|
"Add-Type -AssemblyName WindowsBase; "
|
||||||
|
"$ErrorActionPreference='Stop'; "
|
||||||
|
"$package=[System.IO.Packaging.Package]::Open(%s); "
|
||||||
|
"try { "
|
||||||
|
"foreach ($part in $package.GetParts()) { "
|
||||||
|
"$relative=$part.Uri.OriginalString.TrimStart('/'); "
|
||||||
|
"if ([string]::IsNullOrEmpty($relative)) { continue }; "
|
||||||
|
"$destPath=[System.IO.Path]::Combine(%s, $relative); "
|
||||||
|
"$destDir=[System.IO.Path]::GetDirectoryName($destPath); "
|
||||||
|
"if ($destDir -and -not (Test-Path -LiteralPath $destDir)) { "
|
||||||
|
"[System.IO.Directory]::CreateDirectory($destDir) | Out-Null "
|
||||||
|
"}; "
|
||||||
|
"$partStream=$part.GetStream(); "
|
||||||
|
"$fileStream=[System.IO.File]::Open($destPath,[System.IO.FileMode]::Create,[System.IO.FileAccess]::Write); "
|
||||||
|
"$partStream.CopyTo($fileStream); "
|
||||||
|
"$fileStream.Dispose(); "
|
||||||
|
"$partStream.Dispose(); "
|
||||||
|
"} "
|
||||||
|
"} finally { $package.Close(); }",
|
||||||
|
escaped_path->str,
|
||||||
|
escaped_dir->str);
|
||||||
|
g_string_free (escaped_path, TRUE);
|
||||||
|
g_string_free (escaped_dir, TRUE);
|
||||||
|
|
||||||
|
{
|
||||||
|
char *ps_argv[] = {powershell, "-NoProfile", "-NonInteractive", "-Command", command, NULL};
|
||||||
|
ok = g_spawn_sync (NULL, ps_argv, NULL, 0, NULL, NULL,
|
||||||
|
NULL, NULL, &status, error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
argv[4] = theme_dir;
|
||||||
|
ok = g_spawn_sync (NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL,
|
||||||
|
NULL, NULL, &status, error);
|
||||||
|
#endif
|
||||||
|
if (!ok)
|
||||||
|
{
|
||||||
|
#ifdef WIN32
|
||||||
|
g_free (command);
|
||||||
|
g_free (powershell);
|
||||||
|
#endif
|
||||||
|
g_free (theme_dir);
|
||||||
|
g_free (basename);
|
||||||
|
g_free (themes_dir);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!g_spawn_check_exit_status (status, error))
|
||||||
|
{
|
||||||
|
#ifdef WIN32
|
||||||
|
g_free (command);
|
||||||
|
g_free (powershell);
|
||||||
|
#endif
|
||||||
|
g_free (theme_dir);
|
||||||
|
g_free (basename);
|
||||||
|
g_free (themes_dir);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
g_free (command);
|
||||||
|
g_free (powershell);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
g_free (theme_dir);
|
||||||
|
g_free (basename);
|
||||||
|
g_free (themes_dir);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Update the priority queue of the "interesting sessions"
|
* Update the priority queue of the "interesting sessions"
|
||||||
* (sess_list_by_lastact).
|
* (sess_list_by_lastact).
|
||||||
@@ -424,6 +717,7 @@ irc_init (session *sess)
|
|||||||
{
|
{
|
||||||
static int done_init = FALSE;
|
static int done_init = FALSE;
|
||||||
char *buf;
|
char *buf;
|
||||||
|
char *theme_path;
|
||||||
|
|
||||||
if (done_init)
|
if (done_init)
|
||||||
return;
|
return;
|
||||||
@@ -446,10 +740,41 @@ irc_init (session *sess)
|
|||||||
|
|
||||||
if (arg_url != NULL)
|
if (arg_url != NULL)
|
||||||
{
|
{
|
||||||
buf = g_strdup_printf ("server %s", arg_url);
|
theme_path = NULL;
|
||||||
|
if (zoitechat_theme_path_from_arg (arg_url, &theme_path))
|
||||||
|
{
|
||||||
|
GError *error = NULL;
|
||||||
|
char *basename = g_path_get_basename (theme_path);
|
||||||
|
char *dot = strrchr (basename, '.');
|
||||||
|
char *message;
|
||||||
|
|
||||||
|
if (dot)
|
||||||
|
*dot = '\0';
|
||||||
|
|
||||||
|
if (zoitechat_import_theme (theme_path, &error))
|
||||||
|
{
|
||||||
|
message = g_strdup_printf (_("Theme \"%s\" imported."), basename);
|
||||||
|
fe_message (message, FE_MSG_INFO);
|
||||||
|
g_free (message);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fe_message (error ? error->message : _("Failed to import theme."),
|
||||||
|
FE_MSG_ERROR);
|
||||||
|
g_clear_error (&error);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_free (basename);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
buf = g_strdup_printf ("server %s", arg_url);
|
||||||
|
handle_command (sess, buf, FALSE);
|
||||||
|
g_free (buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_free (theme_path);
|
||||||
g_free (arg_url); /* from GOption */
|
g_free (arg_url); /* from GOption */
|
||||||
handle_command (sess, buf, FALSE);
|
|
||||||
g_free (buf);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (arg_urls != NULL)
|
if (arg_urls != NULL)
|
||||||
@@ -457,9 +782,40 @@ irc_init (session *sess)
|
|||||||
guint i;
|
guint i;
|
||||||
for (i = 0; i < g_strv_length (arg_urls); i++)
|
for (i = 0; i < g_strv_length (arg_urls); i++)
|
||||||
{
|
{
|
||||||
buf = g_strdup_printf ("%s %s", i==0? "server" : "newserver", arg_urls[i]);
|
theme_path = NULL;
|
||||||
handle_command (sess, buf, FALSE);
|
if (zoitechat_theme_path_from_arg (arg_urls[i], &theme_path))
|
||||||
g_free (buf);
|
{
|
||||||
|
GError *error = NULL;
|
||||||
|
char *basename = g_path_get_basename (theme_path);
|
||||||
|
char *dot = strrchr (basename, '.');
|
||||||
|
char *message;
|
||||||
|
|
||||||
|
if (dot)
|
||||||
|
*dot = '\0';
|
||||||
|
|
||||||
|
if (zoitechat_import_theme (theme_path, &error))
|
||||||
|
{
|
||||||
|
message = g_strdup_printf (_("Theme \"%s\" imported."), basename);
|
||||||
|
fe_message (message, FE_MSG_INFO);
|
||||||
|
g_free (message);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fe_message (error ? error->message : _("Failed to import theme."),
|
||||||
|
FE_MSG_ERROR);
|
||||||
|
g_clear_error (&error);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_free (basename);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
buf = g_strdup_printf ("%s %s", i==0? "server" : "newserver", arg_urls[i]);
|
||||||
|
handle_command (sess, buf, FALSE);
|
||||||
|
g_free (buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_free (theme_path);
|
||||||
}
|
}
|
||||||
g_strfreev (arg_urls);
|
g_strfreev (arg_urls);
|
||||||
}
|
}
|
||||||
@@ -1089,7 +1445,12 @@ main (int argc, char *argv[])
|
|||||||
ret = fe_args (argc, argv);
|
ret = fe_args (argc, argv);
|
||||||
if (ret != -1)
|
if (ret != -1)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
if (zoitechat_remote_win32 ())
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef USE_DBUS
|
#ifdef USE_DBUS
|
||||||
zoitechat_remote ();
|
zoitechat_remote ();
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -29,6 +29,9 @@
|
|||||||
#ifndef HEXCHAT_H
|
#ifndef HEXCHAT_H
|
||||||
#define HEXCHAT_H
|
#define HEXCHAT_H
|
||||||
|
|
||||||
|
gboolean zoitechat_theme_path_from_arg (const char *arg, char **path_out);
|
||||||
|
gboolean zoitechat_import_theme (const char *path, GError **error);
|
||||||
|
|
||||||
#ifdef USE_OPENSSL
|
#ifdef USE_OPENSSL
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
#define __AVAILABILITYMACROS__
|
#define __AVAILABILITYMACROS__
|
||||||
|
|||||||
5475
src/fe-gtk/maingui.c
5475
src/fe-gtk/maingui.c
File diff suppressed because it is too large
Load Diff
3406
src/fe-gtk/setup.c
3406
src/fe-gtk/setup.c
File diff suppressed because it is too large
Load Diff
337
src/htm/Main.Designer.cs
generated
337
src/htm/Main.Designer.cs
generated
@@ -1,337 +0,0 @@
|
|||||||
/**
|
|
||||||
* ZoiteChat Theme Manager
|
|
||||||
*
|
|
||||||
* Copyright (C) 2012 Patrick Griffs
|
|
||||||
* Copyright (C) 2012 Berke Viktor
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace thememan
|
|
||||||
{
|
|
||||||
partial class HTM
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Required designer variable.
|
|
||||||
/// </summary>
|
|
||||||
private System.ComponentModel.IContainer components = null;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Clean up any resources being used.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
||||||
protected override void Dispose(bool disposing)
|
|
||||||
{
|
|
||||||
if (disposing && (components != null))
|
|
||||||
{
|
|
||||||
components.Dispose();
|
|
||||||
}
|
|
||||||
base.Dispose(disposing);
|
|
||||||
}
|
|
||||||
|
|
||||||
#region Windows Form Designer generated code
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Required method for Designer support - do not modify
|
|
||||||
/// the contents of this method with the code editor.
|
|
||||||
/// </summary>
|
|
||||||
private void InitializeComponent()
|
|
||||||
{
|
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HTM));
|
|
||||||
this.themelist = new System.Windows.Forms.ListBox();
|
|
||||||
this.themecolor0 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolor1 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolor2 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolor3 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolor4 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolor5 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolor6 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolor7 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolor8 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolor9 = new System.Windows.Forms.Label();
|
|
||||||
this.themecolora = new System.Windows.Forms.Label();
|
|
||||||
this.themecolorb = new System.Windows.Forms.Label();
|
|
||||||
this.themecolorc = new System.Windows.Forms.Label();
|
|
||||||
this.themecolord = new System.Windows.Forms.Label();
|
|
||||||
this.themecolore = new System.Windows.Forms.Label();
|
|
||||||
this.themecolorf = new System.Windows.Forms.Label();
|
|
||||||
this.themecolorfg = new System.Windows.Forms.Label();
|
|
||||||
this.themecolortextbg = new System.Windows.Forms.Label();
|
|
||||||
this.importbutton = new System.Windows.Forms.Button();
|
|
||||||
this.applybutton = new System.Windows.Forms.Button();
|
|
||||||
this.themecolorfgmarked = new System.Windows.Forms.Label();
|
|
||||||
this.deleteButton = new System.Windows.Forms.Button();
|
|
||||||
this.SuspendLayout();
|
|
||||||
//
|
|
||||||
// themelist
|
|
||||||
//
|
|
||||||
this.themelist.FormattingEnabled = true;
|
|
||||||
this.themelist.Location = new System.Drawing.Point(12, 12);
|
|
||||||
this.themelist.Name = "themelist";
|
|
||||||
this.themelist.Size = new System.Drawing.Size(160, 199);
|
|
||||||
this.themelist.TabIndex = 0;
|
|
||||||
this.themelist.SelectedIndexChanged += new System.EventHandler(this.theme_selected);
|
|
||||||
//
|
|
||||||
// themecolor0
|
|
||||||
//
|
|
||||||
this.themecolor0.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor0.Location = new System.Drawing.Point(189, 36);
|
|
||||||
this.themecolor0.Name = "themecolor0";
|
|
||||||
this.themecolor0.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor0.TabIndex = 6;
|
|
||||||
//
|
|
||||||
// themecolor1
|
|
||||||
//
|
|
||||||
this.themecolor1.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor1.Location = new System.Drawing.Point(239, 36);
|
|
||||||
this.themecolor1.Name = "themecolor1";
|
|
||||||
this.themecolor1.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor1.TabIndex = 10;
|
|
||||||
//
|
|
||||||
// themecolor2
|
|
||||||
//
|
|
||||||
this.themecolor2.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor2.Location = new System.Drawing.Point(289, 36);
|
|
||||||
this.themecolor2.Name = "themecolor2";
|
|
||||||
this.themecolor2.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor2.TabIndex = 14;
|
|
||||||
//
|
|
||||||
// themecolor3
|
|
||||||
//
|
|
||||||
this.themecolor3.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor3.Location = new System.Drawing.Point(339, 36);
|
|
||||||
this.themecolor3.Name = "themecolor3";
|
|
||||||
this.themecolor3.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor3.TabIndex = 18;
|
|
||||||
//
|
|
||||||
// themecolor4
|
|
||||||
//
|
|
||||||
this.themecolor4.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor4.Location = new System.Drawing.Point(189, 87);
|
|
||||||
this.themecolor4.Name = "themecolor4";
|
|
||||||
this.themecolor4.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor4.TabIndex = 4;
|
|
||||||
//
|
|
||||||
// themecolor5
|
|
||||||
//
|
|
||||||
this.themecolor5.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor5.Location = new System.Drawing.Point(239, 87);
|
|
||||||
this.themecolor5.Name = "themecolor5";
|
|
||||||
this.themecolor5.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor5.TabIndex = 8;
|
|
||||||
//
|
|
||||||
// themecolor6
|
|
||||||
//
|
|
||||||
this.themecolor6.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor6.Location = new System.Drawing.Point(289, 87);
|
|
||||||
this.themecolor6.Name = "themecolor6";
|
|
||||||
this.themecolor6.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor6.TabIndex = 12;
|
|
||||||
//
|
|
||||||
// themecolor7
|
|
||||||
//
|
|
||||||
this.themecolor7.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor7.Location = new System.Drawing.Point(339, 87);
|
|
||||||
this.themecolor7.Name = "themecolor7";
|
|
||||||
this.themecolor7.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor7.TabIndex = 16;
|
|
||||||
//
|
|
||||||
// themecolor8
|
|
||||||
//
|
|
||||||
this.themecolor8.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor8.Location = new System.Drawing.Point(189, 138);
|
|
||||||
this.themecolor8.Name = "themecolor8";
|
|
||||||
this.themecolor8.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor8.TabIndex = 5;
|
|
||||||
//
|
|
||||||
// themecolor9
|
|
||||||
//
|
|
||||||
this.themecolor9.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolor9.Location = new System.Drawing.Point(239, 138);
|
|
||||||
this.themecolor9.Name = "themecolor9";
|
|
||||||
this.themecolor9.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolor9.TabIndex = 9;
|
|
||||||
//
|
|
||||||
// themecolora
|
|
||||||
//
|
|
||||||
this.themecolora.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolora.Location = new System.Drawing.Point(289, 138);
|
|
||||||
this.themecolora.Name = "themecolora";
|
|
||||||
this.themecolora.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolora.TabIndex = 13;
|
|
||||||
//
|
|
||||||
// themecolorb
|
|
||||||
//
|
|
||||||
this.themecolorb.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolorb.Location = new System.Drawing.Point(339, 138);
|
|
||||||
this.themecolorb.Name = "themecolorb";
|
|
||||||
this.themecolorb.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolorb.TabIndex = 17;
|
|
||||||
//
|
|
||||||
// themecolorc
|
|
||||||
//
|
|
||||||
this.themecolorc.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolorc.Location = new System.Drawing.Point(189, 189);
|
|
||||||
this.themecolorc.Name = "themecolorc";
|
|
||||||
this.themecolorc.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolorc.TabIndex = 7;
|
|
||||||
//
|
|
||||||
// themecolord
|
|
||||||
//
|
|
||||||
this.themecolord.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolord.Location = new System.Drawing.Point(239, 189);
|
|
||||||
this.themecolord.Name = "themecolord";
|
|
||||||
this.themecolord.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolord.TabIndex = 11;
|
|
||||||
//
|
|
||||||
// themecolore
|
|
||||||
//
|
|
||||||
this.themecolore.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolore.Location = new System.Drawing.Point(289, 189);
|
|
||||||
this.themecolore.Name = "themecolore";
|
|
||||||
this.themecolore.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolore.TabIndex = 15;
|
|
||||||
//
|
|
||||||
// themecolorf
|
|
||||||
//
|
|
||||||
this.themecolorf.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
||||||
this.themecolorf.Location = new System.Drawing.Point(339, 189);
|
|
||||||
this.themecolorf.Name = "themecolorf";
|
|
||||||
this.themecolorf.Size = new System.Drawing.Size(40, 40);
|
|
||||||
this.themecolorf.TabIndex = 19;
|
|
||||||
//
|
|
||||||
// themecolorfg
|
|
||||||
//
|
|
||||||
this.themecolorfg.AutoSize = true;
|
|
||||||
this.themecolorfg.BackColor = System.Drawing.Color.Transparent;
|
|
||||||
this.themecolorfg.Location = new System.Drawing.Point(190, 18);
|
|
||||||
this.themecolorfg.Name = "themecolorfg";
|
|
||||||
this.themecolorfg.Size = new System.Drawing.Size(66, 13);
|
|
||||||
this.themecolorfg.TabIndex = 21;
|
|
||||||
this.themecolorfg.Text = "Sample Text";
|
|
||||||
//
|
|
||||||
// themecolortextbg
|
|
||||||
//
|
|
||||||
this.themecolortextbg.Location = new System.Drawing.Point(180, 15);
|
|
||||||
this.themecolortextbg.Name = "themecolortextbg";
|
|
||||||
this.themecolortextbg.Size = new System.Drawing.Size(208, 223);
|
|
||||||
this.themecolortextbg.TabIndex = 20;
|
|
||||||
//
|
|
||||||
// importbutton
|
|
||||||
//
|
|
||||||
this.importbutton.Location = new System.Drawing.Point(12, 217);
|
|
||||||
this.importbutton.Name = "importbutton";
|
|
||||||
this.importbutton.Size = new System.Drawing.Size(52, 23);
|
|
||||||
this.importbutton.TabIndex = 1;
|
|
||||||
this.importbutton.Text = "Add...";
|
|
||||||
this.importbutton.UseVisualStyleBackColor = true;
|
|
||||||
this.importbutton.Click += new System.EventHandler(this.importbutton_Click_1);
|
|
||||||
//
|
|
||||||
// applybutton
|
|
||||||
//
|
|
||||||
this.applybutton.Location = new System.Drawing.Point(120, 217);
|
|
||||||
this.applybutton.Name = "applybutton";
|
|
||||||
this.applybutton.Size = new System.Drawing.Size(52, 23);
|
|
||||||
this.applybutton.TabIndex = 3;
|
|
||||||
this.applybutton.Text = "Apply";
|
|
||||||
this.applybutton.UseVisualStyleBackColor = true;
|
|
||||||
this.applybutton.Click += new System.EventHandler(this.applybutton_Click_1);
|
|
||||||
//
|
|
||||||
// themecolorfgmarked
|
|
||||||
//
|
|
||||||
this.themecolorfgmarked.AutoSize = true;
|
|
||||||
this.themecolorfgmarked.Location = new System.Drawing.Point(313, 18);
|
|
||||||
this.themecolorfgmarked.Name = "themecolorfgmarked";
|
|
||||||
this.themecolorfgmarked.Size = new System.Drawing.Size(67, 13);
|
|
||||||
this.themecolorfgmarked.TabIndex = 22;
|
|
||||||
this.themecolorfgmarked.Text = "Marked Text";
|
|
||||||
//
|
|
||||||
// deleteButton
|
|
||||||
//
|
|
||||||
this.deleteButton.Location = new System.Drawing.Point(66, 217);
|
|
||||||
this.deleteButton.Name = "deleteButton";
|
|
||||||
this.deleteButton.Size = new System.Drawing.Size(52, 23);
|
|
||||||
this.deleteButton.TabIndex = 2;
|
|
||||||
this.deleteButton.Text = "Delete";
|
|
||||||
this.deleteButton.UseVisualStyleBackColor = true;
|
|
||||||
this.deleteButton.Click += new System.EventHandler(this.deleteButton_Click);
|
|
||||||
//
|
|
||||||
// HTM
|
|
||||||
//
|
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
||||||
this.ClientSize = new System.Drawing.Size(397, 248);
|
|
||||||
this.Controls.Add(this.deleteButton);
|
|
||||||
this.Controls.Add(this.themecolorfgmarked);
|
|
||||||
this.Controls.Add(this.themecolorfg);
|
|
||||||
this.Controls.Add(this.themecolorf);
|
|
||||||
this.Controls.Add(this.themecolor3);
|
|
||||||
this.Controls.Add(this.themecolorb);
|
|
||||||
this.Controls.Add(this.themecolor7);
|
|
||||||
this.Controls.Add(this.themecolore);
|
|
||||||
this.Controls.Add(this.themecolor2);
|
|
||||||
this.Controls.Add(this.themecolora);
|
|
||||||
this.Controls.Add(this.themecolor6);
|
|
||||||
this.Controls.Add(this.themecolord);
|
|
||||||
this.Controls.Add(this.themecolor1);
|
|
||||||
this.Controls.Add(this.themecolor9);
|
|
||||||
this.Controls.Add(this.themecolor5);
|
|
||||||
this.Controls.Add(this.themecolorc);
|
|
||||||
this.Controls.Add(this.themecolor0);
|
|
||||||
this.Controls.Add(this.themecolor8);
|
|
||||||
this.Controls.Add(this.themecolor4);
|
|
||||||
this.Controls.Add(this.importbutton);
|
|
||||||
this.Controls.Add(this.applybutton);
|
|
||||||
this.Controls.Add(this.themelist);
|
|
||||||
this.Controls.Add(this.themecolortextbg);
|
|
||||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
||||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
||||||
this.MaximizeBox = false;
|
|
||||||
this.Name = "HTM";
|
|
||||||
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
|
||||||
this.Text = "ZoiteChat Theme Manager";
|
|
||||||
this.ResumeLayout(false);
|
|
||||||
this.PerformLayout();
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
private System.Windows.Forms.ListBox themelist;
|
|
||||||
private System.Windows.Forms.Label themecolor0;
|
|
||||||
private System.Windows.Forms.Label themecolor1;
|
|
||||||
private System.Windows.Forms.Label themecolor2;
|
|
||||||
private System.Windows.Forms.Label themecolor3;
|
|
||||||
private System.Windows.Forms.Label themecolor4;
|
|
||||||
private System.Windows.Forms.Label themecolor5;
|
|
||||||
private System.Windows.Forms.Label themecolor6;
|
|
||||||
private System.Windows.Forms.Label themecolor7;
|
|
||||||
private System.Windows.Forms.Label themecolor8;
|
|
||||||
private System.Windows.Forms.Label themecolor9;
|
|
||||||
private System.Windows.Forms.Label themecolora;
|
|
||||||
private System.Windows.Forms.Label themecolorb;
|
|
||||||
private System.Windows.Forms.Label themecolorc;
|
|
||||||
private System.Windows.Forms.Label themecolord;
|
|
||||||
private System.Windows.Forms.Label themecolore;
|
|
||||||
private System.Windows.Forms.Label themecolorf;
|
|
||||||
private System.Windows.Forms.Label themecolorfg;
|
|
||||||
private System.Windows.Forms.Label themecolortextbg;
|
|
||||||
private System.Windows.Forms.Button importbutton;
|
|
||||||
private System.Windows.Forms.Button applybutton;
|
|
||||||
private System.Windows.Forms.Label themecolorfgmarked;
|
|
||||||
private System.Windows.Forms.Button deleteButton;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
381
src/htm/Main.cs
381
src/htm/Main.cs
@@ -1,381 +0,0 @@
|
|||||||
/**
|
|
||||||
* ZoiteChat Theme Manager
|
|
||||||
*
|
|
||||||
* Copyright (C) 2012 Patrick Griffs
|
|
||||||
* Copyright (C) 2012 Berke Viktor
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
||||||
*/
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Collections;
|
|
||||||
using System.ComponentModel;
|
|
||||||
using System.Data;
|
|
||||||
using System.Drawing;
|
|
||||||
using System.IO;
|
|
||||||
/* using System.IO.Compression; */
|
|
||||||
using System.IO.Packaging;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Windows.Forms;
|
|
||||||
using System.Net;
|
|
||||||
|
|
||||||
namespace thememan
|
|
||||||
{
|
|
||||||
public partial class HTM : Form
|
|
||||||
{
|
|
||||||
public string zoitechatdir;
|
|
||||||
public string themedir;
|
|
||||||
|
|
||||||
OpenFileDialog importDialog;
|
|
||||||
|
|
||||||
static bool IsPortable(out string directory)
|
|
||||||
{
|
|
||||||
System.Reflection.Assembly asm = System.Reflection.Assembly.GetExecutingAssembly();
|
|
||||||
directory = asm != null ? asm.Location : string.Empty;
|
|
||||||
if (string.IsNullOrEmpty(directory))
|
|
||||||
{
|
|
||||||
directory = string.Empty;
|
|
||||||
return File.Exists("portable-mode");
|
|
||||||
}
|
|
||||||
directory = Path.GetDirectoryName(directory);
|
|
||||||
return File.Exists(Path.Combine(directory, "portable-mode"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public HTM ()
|
|
||||||
{
|
|
||||||
InitializeComponent ();
|
|
||||||
string portableDir;
|
|
||||||
|
|
||||||
if (RunningOnWindows() && IsPortable(out portableDir))
|
|
||||||
{
|
|
||||||
zoitechatdir = Path.Combine(portableDir, "config\\");
|
|
||||||
|
|
||||||
if (!Directory.Exists(zoitechatdir))
|
|
||||||
{
|
|
||||||
MessageBox.Show("ZoiteChat installation not found!\nCheck your .\\config folder", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
||||||
Environment.Exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
/* Environment.SpecialFolder.ApplicationData
|
|
||||||
* Windows: %APPDATA%
|
|
||||||
* Unix: ~/.config
|
|
||||||
* Windows is case-insensitive so 'zoitechat' should be fine for both
|
|
||||||
*/
|
|
||||||
zoitechatdir = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "zoitechat");
|
|
||||||
|
|
||||||
if (!Directory.Exists(zoitechatdir))
|
|
||||||
{
|
|
||||||
if (RunningOnWindows())
|
|
||||||
{
|
|
||||||
MessageBox.Show("ZoiteChat installation not found!\nCheck your %APPDATA%\\ZoiteChat folder", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
MessageBox.Show("ZoiteChat installation not found!\nCheck your ~/.config/zoitechat folder", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
||||||
}
|
|
||||||
|
|
||||||
Environment.Exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
themedir = Path.Combine(zoitechatdir, "themes");
|
|
||||||
ListThemes();
|
|
||||||
|
|
||||||
String[] arguments = Environment.GetCommandLineArgs();
|
|
||||||
if (arguments.Length > 1)
|
|
||||||
{
|
|
||||||
FileInfo fi = new FileInfo(arguments[1]);
|
|
||||||
attemptImport(fi);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool RunningOnWindows()
|
|
||||||
{
|
|
||||||
if (Environment.OSVersion.ToString().ToLower().Contains("windows"))
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void ListThemes()
|
|
||||||
{
|
|
||||||
themelist.Items.Clear();
|
|
||||||
|
|
||||||
if (Directory.Exists(themedir))
|
|
||||||
{
|
|
||||||
foreach (string theme in Directory.GetDirectories(themedir))
|
|
||||||
{
|
|
||||||
themelist.Items.Add(theme.Remove(0, themedir.Length + 1));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Directory.CreateDirectory(themedir);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (themelist.Items.Count == 0)
|
|
||||||
{
|
|
||||||
applybutton.Enabled = false;
|
|
||||||
deleteButton.Enabled = false;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
themelist.SetSelected(0, true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void ShowColors(List<List<string>> themecolors)
|
|
||||||
{
|
|
||||||
List<Control> labels = this.Controls.OfType<Label>().Cast<Control>().OrderBy(label => label.Name).ToList();
|
|
||||||
for (byte themecolor = 0; themecolor < themecolors.Count; themecolor++)
|
|
||||||
{
|
|
||||||
byte rval = Convert.ToByte(int.Parse(themecolors[themecolor][0].ToString(), System.Globalization.NumberStyles.HexNumber) / 257);
|
|
||||||
byte gval = Convert.ToByte(int.Parse(themecolors[themecolor][1].ToString(), System.Globalization.NumberStyles.HexNumber) / 257);
|
|
||||||
byte bval = Convert.ToByte(int.Parse(themecolors[themecolor][2].ToString(), System.Globalization.NumberStyles.HexNumber) / 257);
|
|
||||||
|
|
||||||
if (themecolor <= 15)
|
|
||||||
labels[themecolor].BackColor = Color.FromArgb(rval, gval, bval);
|
|
||||||
else if (themecolor == 16)
|
|
||||||
themecolorfgmarked.ForeColor = Color.FromArgb(rval, gval, bval);
|
|
||||||
else if (themecolor == 17)
|
|
||||||
themecolorfgmarked.BackColor = Color.FromArgb(rval, gval, bval);
|
|
||||||
else if (themecolor == 18)
|
|
||||||
themecolorfg.ForeColor = Color.FromArgb(rval, gval, bval);
|
|
||||||
else if (themecolor == 19)
|
|
||||||
{
|
|
||||||
themecolortextbg.BackColor = Color.FromArgb(rval, gval, bval);
|
|
||||||
themecolorfg.BackColor = themecolortextbg.BackColor;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<List<string>> ReadTheme(string theme)
|
|
||||||
{
|
|
||||||
List<List<string>> themecolors = new List<List<string>>();
|
|
||||||
foreach (string line in File.ReadLines(Path.Combine(themedir, theme, "colors.conf")))
|
|
||||||
{
|
|
||||||
List<string> colors = new List<string>();
|
|
||||||
List<string> colorlist = new List<string>();
|
|
||||||
string[] possiblecolors = { "color_256", "color_257", "color_258", "color_259" };
|
|
||||||
|
|
||||||
for (byte num = 16; num <=31; num++)
|
|
||||||
colorlist.Add("color_" + num);
|
|
||||||
colorlist.AddRange(possiblecolors);
|
|
||||||
|
|
||||||
string[] config = line.Split(new char[] { ' ' });
|
|
||||||
if(colorlist.Contains(config[0]) == true)
|
|
||||||
{
|
|
||||||
colors.Add(config[2]);
|
|
||||||
colors.Add(config[3]);
|
|
||||||
colors.Add(config[4]);
|
|
||||||
themecolors.Add(colors);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return themecolors;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void applybutton_Click_1(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
DialogResult result = MessageBox.Show("ZoiteChat must be closed and this will overwrite your current theme!\n\nDo you wish to continue?", "Warning", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning);
|
|
||||||
if (result == DialogResult.OK)
|
|
||||||
{
|
|
||||||
File.Copy(Path.Combine(themedir, themelist.SelectedItem.ToString(), "colors.conf"), Path.Combine(zoitechatdir, "colors.conf"), true);
|
|
||||||
if (File.Exists(Path.Combine(themedir, themelist.SelectedItem.ToString(), "pevents.conf")))
|
|
||||||
{
|
|
||||||
File.Copy(Path.Combine(themedir, themelist.SelectedItem.ToString(), "pevents.conf"), Path.Combine(zoitechatdir, "pevents.conf"), true);
|
|
||||||
}
|
|
||||||
else if (File.Exists(Path.Combine(zoitechatdir, "pevents.conf")))
|
|
||||||
{
|
|
||||||
File.Delete(Path.Combine(zoitechatdir, "pevents.conf"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void theme_selected(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
if (themelist.SelectedItem != null)
|
|
||||||
{
|
|
||||||
ShowColors(ReadTheme(themelist.SelectedItem.ToString()));
|
|
||||||
applybutton.Enabled = true;
|
|
||||||
deleteButton.Enabled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void importbutton_Click_1(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
importDialog = new OpenFileDialog();
|
|
||||||
importDialog.Filter = "ZoiteChat Theme Files|*.hct";
|
|
||||||
importDialog.FilterIndex = 1;
|
|
||||||
importDialog.FileOk += new CancelEventHandler(importdialog_FileOk);
|
|
||||||
importDialog.ShowDialog();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void importdialog_FileOk(object sender, System.ComponentModel.CancelEventArgs e)
|
|
||||||
{
|
|
||||||
FileInfo fi = new FileInfo(importDialog.FileName);
|
|
||||||
attemptImport(fi);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void attemptImport(FileInfo fi)
|
|
||||||
{
|
|
||||||
string themeName = fi.Name.Remove(fi.Name.Length - fi.Extension.Length);
|
|
||||||
int result = extractTheme(fi);
|
|
||||||
ListThemes();
|
|
||||||
/* although a check is added to ListThemes(), this would still fail if the theme file was invalid or the theme is already installed */
|
|
||||||
switch (result)
|
|
||||||
{
|
|
||||||
case 0:
|
|
||||||
themelist.SetSelected(themelist.FindStringExact(themeName), true);
|
|
||||||
/* required for command line invoking */
|
|
||||||
ShowColors(ReadTheme(themeName));
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
MessageBox.Show("This theme is already installed!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
|
||||||
themelist.SetSelected(themelist.FindStringExact(themeName), true);
|
|
||||||
/* required for command line invoking */
|
|
||||||
ShowColors(ReadTheme(themeName));
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
MessageBox.Show("Invalid theme file!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* gzip solution, not good enough coz we need multiple files
|
|
||||||
*
|
|
||||||
public string extractTheme(FileInfo fi)
|
|
||||||
{
|
|
||||||
using (FileStream inFile = fi.OpenRead())
|
|
||||||
{
|
|
||||||
string themeName = fi.Name.Remove(fi.Name.Length - fi.Extension.Length);
|
|
||||||
string destFolder = xchatdir + themedir + themeName;
|
|
||||||
|
|
||||||
if (!Directory.Exists(destFolder))
|
|
||||||
{
|
|
||||||
Directory.CreateDirectory(destFolder);
|
|
||||||
}
|
|
||||||
|
|
||||||
using (FileStream outFile = File.Create(destFolder + "\\colors.conf"))
|
|
||||||
{
|
|
||||||
using (GZipStream Decompress = new GZipStream(inFile, CompressionMode.Decompress))
|
|
||||||
{
|
|
||||||
Decompress.CopyTo(outFile);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return themeName;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* using System.IO.Package:
|
|
||||||
* http://weblogs.asp.net/jgalloway/archive/2007/10/25/creating-zip-archives-in-net-without-an-external-library-like-sharpziplib.aspx
|
|
||||||
* [Content_Types].xml must be present for every zip file
|
|
||||||
*/
|
|
||||||
|
|
||||||
private const long BUFFER_SIZE = 4096;
|
|
||||||
|
|
||||||
private int extractTheme(FileInfo zipFile)
|
|
||||||
{
|
|
||||||
string themeName = zipFile.Name.Remove(zipFile.Name.Length - zipFile.Extension.Length);
|
|
||||||
string destFolder = Path.Combine(themedir, themeName);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
using (Package zip = Package.Open(zipFile.FullName, FileMode.Open, FileAccess.Read))
|
|
||||||
{
|
|
||||||
PackagePartCollection parts = zip.GetParts();
|
|
||||||
|
|
||||||
if (Directory.Exists(destFolder))
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Directory.CreateDirectory(destFolder);
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach (PackagePart part in parts)
|
|
||||||
{
|
|
||||||
/* not sure what's this good for */
|
|
||||||
/* String archive = part.Uri.ToString().Replace(@"/", @"\"); */
|
|
||||||
String destFile = destFolder + part.Uri.ToString();
|
|
||||||
|
|
||||||
using (FileStream outFileStream = new FileStream(destFile, FileMode.CreateNew, FileAccess.ReadWrite))
|
|
||||||
{
|
|
||||||
using (Stream inStream = part.GetStream())
|
|
||||||
{
|
|
||||||
long bufferSize = inStream.Length < BUFFER_SIZE ? inStream.Length : BUFFER_SIZE;
|
|
||||||
byte[] buffer = new byte[bufferSize];
|
|
||||||
int bytesRead = 0;
|
|
||||||
long bytesWritten = 0;
|
|
||||||
|
|
||||||
while ((bytesRead = inStream.Read(buffer, 0, buffer.Length)) != 0)
|
|
||||||
{
|
|
||||||
outFileStream.Write(buffer, 0, bytesRead);
|
|
||||||
bytesWritten += bufferSize;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (System.IO.FileFormatException)
|
|
||||||
{
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (IsDirectoryEmpty(destFolder))
|
|
||||||
{
|
|
||||||
Directory.Delete(destFolder);
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool IsDirectoryEmpty(string path)
|
|
||||||
{
|
|
||||||
return !Directory.EnumerateFileSystemEntries(path).Any();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void deleteButton_Click(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
DialogResult result = MessageBox.Show("Are you sure you want to delete this theme from the theme repo?\n\nYour currently applied theme won't be affected.", "Warning", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning);
|
|
||||||
if (result == DialogResult.OK)
|
|
||||||
{
|
|
||||||
Directory.Delete(Path.Combine(themedir, themelist.SelectedItem.ToString()), true);
|
|
||||||
ListThemes();
|
|
||||||
if (themelist.Items.Count == 0)
|
|
||||||
{
|
|
||||||
deleteButton.Enabled = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,287 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
|
||||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
AAABAAEAMDAAAAEAIACoJQAAFgAAACgAAAAwAAAAYAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAQAAAAHAAAACQAAAAgAAAAFAAAAAgAAAAEAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAABwAAABEBAQEbBAQEIQICAh4AAAAVAAAACwAA
|
|
||||||
AAQAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAIAAAAFwMDAywDAwM/AwMDSQUF
|
|
||||||
BUUEBAQ1AQEBHwAAAA0AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAUAAAAZAgICRQMD
|
|
||||||
A3IBAQGDAQEBegICA20EBARYBAQEOgEBARsAAAAIAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAA
|
|
||||||
ABQEBARjGhsZricnJcsXFxbYBgYGzgAAAJwCAgJwBQUFTwICAioAAAANAAAAAgAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAgAAAAIAAAACAAAAAQAA
|
|
||||||
AAEAAAABAAAABQMDAlM8Pjqcp6ug17O3rPiFiID3NTcz6QEBAdMBAQGPBAQEWgICAjQAAAATAAAABAAA
|
|
||||||
AAEAAAABAAAAAgAAAAUAAAAHAAAACAAAAAcAAAAEAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAAAYAAAAKAAAADAAA
|
|
||||||
AA0AAAAMAAAACwAAAAgAAAAGAQEBGRcYF3uqrqPU3ePV+MrPwv+usqf+b3Ns8QcHB+QAAACnBAQEYAQE
|
|
||||||
BDsAAAAYAAAABwAAAAUAAAAIAAAADgAAABUCAgIdAgICIAEBARwAAAASAAAACQAAAAMAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAADgEB
|
|
||||||
ARkDAwMiAgICJwICAikCAgIoAgICJQAAAB8AAAAXAQIBTmFjXaTX3c/p4uja/9bczv/Cx7v+en127hMU
|
|
||||||
E+QAAAC3BAQEZQQEBD4AAAAfAAAAEgAAABUBAQEeAgICKgICAjcCAgNEAwMDSAQEBEACAgIuAQEBGQAA
|
|
||||||
AAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA
|
|
||||||
AAUAAAARAwMDJgMDAzsDAwNJAgICTwICAlICAgJTBAQETwMDA0cEAwQ5AgICd5WZj9vq8OL54ObY/9/l
|
|
||||||
1//Kz8P/fYF57BscGt4AAADBAgICbAMDA0UAAAAwAAAALQICAjcCAgJNAgICbgICAoUBAQGJAQEBeAIC
|
|
||||||
AmQDAwNMBAQELQAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAgAAAA0AAAA0AgICbAICAo8CAgGbAQEBngAAAJkBAQGOAgICfAMDA28CAgJfAgICjJyf
|
|
||||||
lufo7d/+5Orc/+Pp2v/Gy7//io2F6SEiINQAAADDAQEBcwMDA1UCAgJSAwMDaQYGBosSExKePD46vjw9
|
|
||||||
OtYTFBPTAgICuwAAAJADAwNdBAQEOQICAhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAQEBBwYGBkgZGhiOJSYkszAxLsgsLSvRHyAe2RESEd0KCgrdAgICzwAA
|
|
||||||
ALQAAACKAgICoJygl+ru9OX+6/Hi/+Dl2P7N0sb/jJCI6hscGtEAAADBAgIBgwcHB4MTExKmMzQwvXh8
|
|
||||||
dM2hpZvms7mt9Kito/qEiH/2IiMg3QICAr0BAQJrAwMDNgAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBQUFGS8wLYO1uq/Yyc/C8sLHu/awtan4n6OZ+pGV
|
|
||||||
jPtydW70Li8s4RUVFNoCAgLGAQEBvZGUjOjt8+X86O7g/+Xq3P/S18r/g4Z+7A8PDs4EBATFGxwax0dI
|
|
||||||
RM6RlIvjvsK29sXKvfi6vrL9w8m8/8TJvf+mq6D7UFJN3gUGBb4BAQFqAgICKAAAAA8AAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAACAAAAAgAAAAIAAAAEBwcHOFBSTZjb4NPw6O7g/uHn
|
|
||||||
2f7U2s3/yc3B/7q/s/+2uq/+pquh+4WIgPYrLCrhBwcH03x+d+Lk6dv78Pbn/+nv4f/Y3tD9jZCH6RkZ
|
|
||||||
GM48PTnXm56V8MXKvfrK0ML90dXI/8rPwv+3vLH/wsi7/8DFuf+bnpT4LC0qzQICAqQBAQFKAAAAFgAA
|
|
||||||
AAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAMAAAAEAAAABQAAAAcAAAAJAgICMyco
|
|
||||||
JpW4vLHa3ePV+Nzh1Pvc4tT/1NnM/8zRxP/HzL//t7uw/6qvpP+Sl433QkQ/2n1/eOHf5Nb88vjp/+/1
|
|
||||||
5v/i6Nr8sLWq732AeOimqp/2ub6y/r7EuP+9wrf/vcK2/7/Dt/+3vLD/ub+y/6Wpnvtwc2vmEBEQswEB
|
|
||||||
AWQAAAAdAAAACQAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAADAAAABQAAAAcAAAAJAAAADAAA
|
|
||||||
AA8AAAATAAAAHwYGBm88Pjqom5+V2MTJvfPGy7//wMW5/77Ct/+9wbX/uL2y/7O3rP+3vLD/o6id8rm9
|
|
||||||
svLl693+6e/g/+bs3f/c4tP/x83A/7G1qv6mqqD/nKCW/5ygl/+go5r/o6ed/6aqoP+kqJ7/j5OK81VY
|
|
||||||
UtwREhG4AQEBbAAAACUAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAQAAAAHAAAACgAA
|
|
||||||
AA4AAAATAAAAGQAAAB4AAAAjAAAAKwAAAEQCAgKJHB0bul5gW9eQlIvyn6OZ/p6imP+go5r/pqqg/6+z
|
|
||||||
qf+5vrL/wMS5/rm+s/+XnJL/eX11/3J4c/9zgoP/Z3R0/2xxbP+ChX3/g4Z+/3+Cev+BhHv/iIyD/32A
|
|
||||||
eP5iZF3wNjc01goKCbQAAAB4AAAALAAAAA8AAAAFAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAADAAAABAAA
|
|
||||||
AAgAAAANAAAAFAAAABoAAAAiAAAAKgAAADIAAAA7AAAARQAAAFMAAABrAAAAkAoLCrwpKifkVVdS9Hh7
|
|
||||||
dPuDhn7/j5KK/5uflv+anpX/aWxl/0ZOTP9BVl3/M1Ff/ytIV/8wTmD/MEpZ/zRIUv9FTk//cXRu/3p+
|
|
||||||
dv5ydW7+UFJO+CorKOwPDw7UAQEBrQICAoECAgJOAwMDLwAAABgAAAAKAAAAAwAAAAAAAAABAAAAAgAA
|
|
||||||
AAMAAAAGAAAACgAAABAAAAAYAAAAIQAAACoAAAA1AAAAPwAAAEsAAABYAAAAZQAAAHMAAACAAAAAjgAA
|
|
||||||
AKEBAQG1Dg4N0iEiIOpAQj71cHNs/ICDfP1WWVT+LDk8/0Rsdv9UhZH/Uomd/0CBoP88b4r/PGB1/y9K
|
|
||||||
W/8rQEz/SE9P/jIzMPQiIyHoEhMS3AECAdQAAADCAQEBngICAnoEBARkBQUFTQMDAzMAAAAaAAAACgAA
|
|
||||||
AAIAAAACAAAAAwAAAAYAAAALAAAAEgAAABsAAAAmAAAAMQAAAD0AAABKAAAAWAAAAGcAAAB2AAAAhgAA
|
|
||||||
AJUAAAClAAAAsQAAALoFBQXFDAwM1gcHB+MJCQnrKCkn8lRWUfZDTU7/VX+M/054gv9KVVj/V2Fk/zxc
|
|
||||||
av9EUln/U1pf/ztRX/8wTF3/JzU9/0ZKRvk/QT3lODo34R4fHecJCQnjAQEB0wAAALABAQGGAwMDagQE
|
|
||||||
BFEDAwMzAAAAFwAAAAcAAAADAAAABgAAAAsAAAATAAAAHAAAACkAAAA2AAAARQAAAFQAAABkAAAAdAAA
|
|
||||||
AIUAAACZAAAAsAMDA8QWFhbXKSkp5j4+PvRLS0v5Ojo6+iAgH/YpKifxYGJc+HFzbf1FWmL/XZiu/0td
|
|
||||||
Yf9iY2P/uLm5/1laW/9jZGT/t7i4/05ZX/9AYXf/LURS/2RqZ/+Ch378goZ+/ICDe/hLTUjtHB0b6wUF
|
|
||||||
BeUAAADBAQEBjgICAmoFBQVLAwMDJwAAAA0AAAAEAAAACQAAABEAAAAdAAAAKQAAADgAAABIAAAAWgAA
|
|
||||||
AGwAAAB/AQEBmQICArgcHBzUR0dH7G9vb/uUlJT9u7u7/tra2v+NjY39JSUk+DY3NPdbXVj7eXx1/nh7
|
|
||||||
dP88TVT/WI6k/1prcP/P0ND/09TU/2psbP/Q0dH/0tPU/1NjbP9Oe5f/OFFe/4SLhf+ippz/n6OZ/5+j
|
|
||||||
mf+Rloz+en529Ts8OekMDAvlAAEAxgEBAYYDAwNXBAQEMAAAABIAAAAHAAAADwAAABsAAAApAAAAOQAA
|
|
||||||
AEsAAABdAAAAcgEBAYwICAi1Kioq3GxsbPOnp6f92dnZ//r6+v/9/f3//Pz8/5ycm/4rLCv6Kiso+EZH
|
|
||||||
Q/xhY13+fH94/4qNhf9bYV7/QV9s/010g/9ve37/bnyA/09weP9vfYH/aXqB/0qCn/9ThaH/P0tQ/6So
|
|
||||||
n//DyLz/wsa7/7a7r/+zuKz/rbKm/5KXjvdVWFLrEREQ3QEBAawBAQJVAgICLwAAABIAAAALAAAAFgAA
|
|
||||||
ACQAAAA3AAAASgAAAF8AAAB3CwsLpCsrK9p1dXXzx8fH/u3t7f/////////////////+/v7/vb29/zY2
|
|
||||||
Nv0cHRv8LS8s+0JDP/xZW1b8dHdw/I+Tiv6NkYf8TFNS+UBpevxiqcL/d8fc/4Ta7v95yd//Z7jd/1+h
|
|
||||||
w/9EW2X/e4F6/8TJvf/R1sn/1NnM/9HWyf/N08X/yc/C/8TJvP+qrqP6WVtW3AcHBrACAgJKAwMDJQAA
|
|
||||||
AA4AAAAPAAAAHAAAAC8AAABEAAAAXAICAnsXFxezY2Nj6sjIyP3w8PD/8/P0//Pz8///////////////
|
|
||||||
///39/f/jIyM/hsbG/0WFxX8IyQh+jM0MfpAQT34RUdD90BBPfJCREDcKisotj9KTdVCYGv+THOA/3Cs
|
|
||||||
xf9wr8z/TXWJ/0hZYP9/hX//ztPH/ubr3f7m7N3/7/Xm//D25//m7N3/3+XX/9bczv7L0MP2kJSLwQ4O
|
|
||||||
DYcCAgJCAQEBFgAAAAgAAAAUAAAAJAAAADkAAABTAgICdiMjI7iHh4f25eXl/v7+/v/+/v//oaHs/62t
|
|
||||||
vP/4+Pj/////////////////5OTk/25ubv4iIiL9CwwL+wwNDPgMDQzvDAwM1wgIB7AFBQWHAQEBhHN2
|
|
||||||
b7enraTzjJKN/3SCgv90goP/mqKc/77Dt/+Tl473YGNd7ImNhfG/xLj55evd+OTq3Pjb4dP40NXJ+MXK
|
|
||||||
vuutsaa9RkhDiQUFBWQAAAAiAAAACQAAAAMAAAAYAAAAKwAAAEQDAwNrKCgot5iYmPb39/f/////////
|
|
||||||
////////oqL3/1pauv/k5OT//////////////////////+fn5/+np6f/T09P+QsLC+gAAADMAAAArwAA
|
|
||||||
AI8AAAByAQEBhllbVqXKz8Pi2+HT/9zi1P/f5df/5evd/+Pp2/+us6j1MTMw2BUVFMInKCW1Ojs4p0FC
|
|
||||||
PqxAQj2qNDYyqC0uK54gIB6JBwcGXgAAACIAAAAHAAAAAgAAAAAAAAAaAAAAMAEBAVQjIyOrm5ub9Pf3
|
|
||||||
9///////////////////////vr76/0FBzv/S0tT///////z8/P/o6On/2tra//Pz8//9/f3/2dnZ/3Nz
|
|
||||||
c/gRERHbAAAAtgAAAJkAAAB9AAAAhRQUE5KorKHE3uTW+O3z5P/x9+j/6O7g/97k1v+vs6juLi8tzAAA
|
|
||||||
AJICAgJPAgICPgQEBEcDAwNNAQEBPgAAACYAAAATAAAACwAAAAMAAAABAAAAAAAAAAAAAAAcAAAANQwM
|
|
||||||
DH5zc3Pm6urq////////////////////////////6Oj9/0ND3v+ysrn/3Nzj/5OTx/87O83/Li63/39/
|
|
||||||
nP/o6Oj//////97e3v9WVlb0BQUFywAAAKcAAACKAAAAeQICApdGSESVxMm9zOju4Pru9OX/5Orc/97j
|
|
||||||
1f+WmZDfHh8dwAEBAX0CAgIyAAAAFAAAAAcAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAcAAAARDo6Ora8vLz9///////////////////////////+/v7/7e31/0JC5v9KSqb/LS3T/wYG
|
|
||||||
8/8AAP7/AQH9/yoqz//Ly9b//v7+//7+/v+np6f+ISEh4gAAALQAAACTAAAAdAAAAIgFBQWjV1lUpMvQ
|
|
||||||
xNHr8eP85evd/9ne0fdrbWfQCgoJpgEBAVEAAAAdAAAACQAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAaAAAAU1lZWeDp6en//////////////////v7+//Ly8//BwdT/ZmbI/xMR
|
|
||||||
6P8KBfL/AAD//wAA/v8SEvX/V1ft/8DA7v/4+Pv////////////f39//Ozs78QAAALsAAACYAAAAeAAA
|
|
||||||
AGMAAAByBgYFm0NFQcO1uq/Z3ePV6qqupM4pKii4AAAAcQAAACMAAAALAAAAAwAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAWGRkZPP9/f3////////////s7O//s7PQ/1pa
|
|
||||||
xf8TE+j/AgL6/wAA/v8ZDOf/Dw7w/2lp6f/IyPL/+fn8///////////////////////39/f/R0dH+AAA
|
|
||||||
AL0AAACYAAAAeAAAAFcAAAA8AAAARAkJCHM0NjKdUVNOuDM0MZcEBQRkAAAAJgAAAAkAAAADAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAUWJiYu35+fn///////j4
|
|
||||||
/v9ycuv/ERHp/wEB/f8AAP//AwP8/yws8P9DQe7/Wlq8/+rq7P//////////////////////////////
|
|
||||||
///z8/P/RERE9QAAALgAAACSAAAAcgAAAFEAAAAyAAAAGwAAABcAAAAmAAAANwAAAC8AAAASAAAABAAA
|
|
||||||
AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAPlJS
|
|
||||||
Uszb29v+//////7+//+4uPz/JSX8/w0N+v82NvL/nJzr/+jo9/+2tvn/Tk7C/9ra2///////////////
|
|
||||||
///////////////////Nzc3+NDQ05wAAAKsAAACHAAAAZwAAAEUAAAApAAAAFQAAAAgAAAAEAAAABAAA
|
|
||||||
AAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAKAAAAIi4uLo6lpaX1/Pz8////////////6Oj+/9DQ+f/z8/v//v7+///////R0fv/OzvY/8LC
|
|
||||||
yP/+/v7///////////////////////n5+f+MjIz5FxcXygAAAJcAAAB2AAAAVwAAADkAAAAgAAAADgAA
|
|
||||||
AAQAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAGAAAADgQEBEBWVlbA0dHR/P7+/v//////////////////////////////
|
|
||||||
///x8f7/S0vn/6mpuf/8/Pz//////////////////f39/8DAwP05OTndAQEBoAAAAH4AAABhAAAARAAA
|
|
||||||
ACkAAAAVAAAACAAAAAIAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAACAEBARUXFxdYWVlZyby8vPj19fX/////////
|
|
||||||
///////////////////7+///c3P1/5iYyP/5+fn///////7+/v/x8fH/rKys+kRERN0ICAiiAAAAfAAA
|
|
||||||
AGMAAABIAAAALwAAABoAAAALAAAAAwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAABQAAAAoBAQEXDw8PRjs7
|
|
||||||
O6h9fX3ox8fH+ubm5v/19fX//Pz8////////////4uL+/9zc9P/y8vL/5OTk/76+vvpvb2/tKSkpwgUF
|
|
||||||
BYwAAABvAAAAWgAAAEUAAAAwAAAAHAAAAA4AAAAFAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAA
|
|
||||||
AAUAAAAJAAAAEgcHBysWFhZqKysrsFlZWdaHh4fppaWl9re3t/y5ubn+tra2/KGhofWAgIDrUFBQ2yMj
|
|
||||||
I70ODg6NAgICZwAAAFcAAABLAAAAPAAAACwAAAAcAAAADwAAAAYAAAACAAAAAQAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAQAAAAIAAAAEAAAACAAAAA0AAAAVAwMDJwkJCUwLCwt0DAwMjwwMDJ8MDAylDAwMoQsL
|
|
||||||
C5UJCQl/BgYGYQEBAUkAAABAAAAAOwAAADUAAAAsAAAAIgAAABcAAAANAAAABgAAAAIAAAABAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAAAUAAAAIAAAADAAAABEAAAAVAAAAGgAA
|
|
||||||
AB0AAAAgAAAAIwAAACQAAAAkAAAAJAAAACMAAAAhAAAAHgAAABoAAAAVAAAADwAAAAoAAAAFAAAAAgAA
|
|
||||||
AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAADAAAABQAA
|
|
||||||
AAcAAAAJAAAACwAAAA4AAAAPAAAAEAAAABAAAAARAAAAEAAAAA8AAAAOAAAADQAAAAsAAAAIAAAABQAA
|
|
||||||
AAQAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABgAAAAYAAAAGAAAABQAAAAQAAAAEAAAAAwAA
|
|
||||||
AAMAAAACAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAACAAAAAgAAAAIAAAACAAAAAQAA
|
|
||||||
AAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
||||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////8AAP///////wAA////////
|
|
||||||
AAD///////8AAP///////wAA/////f//AAD////wf/8AAP///+A//wAA////4D//AAD////AP/8AAP//
|
|
||||||
/8A/nwAA//+DgDwHAAD//gAAAAcAAP/8AAAABwAA//wAAAAHAAD//AAAAA8AAP/+AAAAHwAA//4AAAA/
|
|
||||||
AAD//wAAAD8AAP/+AAAAfwAA//gAAAAfAAD/4AAAAA8AAP/AAAAABwAA/wAAAAAHAAD+AAAAAAcAAPwA
|
|
||||||
AAAABwAA+AAAAAAPAADwAACAAB8AAOAAAIAP/wAA4AAAQB//AADAAABAH/8AAMAAAHA//wAAwAAAfH//
|
|
||||||
AADAAAB///8AAMAAAH///wAAwAAA////AADgAAH///8AAPAAA////wAA+AAH////AAD+AB////8AAP/B
|
|
||||||
/////wAA////////AAD///////8AAP///////wAA////////AAD///////8AAP///////wAA////////
|
|
||||||
AAA=
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
/**
|
|
||||||
* ZoiteChat Theme Manager
|
|
||||||
*
|
|
||||||
* Copyright (C) 2012 Patrick Griffs
|
|
||||||
* Copyright (C) 2012 Berke Viktor
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
||||||
*/
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Windows.Forms;
|
|
||||||
|
|
||||||
namespace thememan
|
|
||||||
{
|
|
||||||
static class Program
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// The main entry point for the application.
|
|
||||||
/// </summary>
|
|
||||||
[STAThread]
|
|
||||||
static void Main()
|
|
||||||
{
|
|
||||||
Application.EnableVisualStyles();
|
|
||||||
Application.SetCompatibleTextRenderingDefault(false);
|
|
||||||
Application.Run(new HTM());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
/**
|
|
||||||
* ZoiteChat Theme Manager
|
|
||||||
*
|
|
||||||
* Copyright (C) 2012 Patrick Griffs
|
|
||||||
* Copyright (C) 2012 Berke Viktor
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
||||||
*/
|
|
||||||
|
|
||||||
using System.Reflection;
|
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
using System.Resources;
|
|
||||||
|
|
||||||
// General Information about an assembly is controlled through the following
|
|
||||||
// set of attributes. Change these attribute values to modify the information
|
|
||||||
// associated with an assembly.
|
|
||||||
[assembly: AssemblyTitle("ZoiteChat Theme Manager")]
|
|
||||||
[assembly: AssemblyDescription("Manages ZoiteChat Themes.")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCompany("")]
|
|
||||||
[assembly: AssemblyProduct("thememan")]
|
|
||||||
[assembly: AssemblyCopyright("Copyright © 2012")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
|
|
||||||
// Setting ComVisible to false makes the types in this assembly not visible
|
|
||||||
// to COM components. If you need to access a type in this assembly from
|
|
||||||
// COM, set the ComVisible attribute to true on that type.
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|
||||||
[assembly: Guid("adb04fa6-faee-4dcc-be53-7ba67e74c2a0")]
|
|
||||||
|
|
||||||
// Version information for an assembly consists of the following four values:
|
|
||||||
//
|
|
||||||
// Major Version
|
|
||||||
// Minor Version
|
|
||||||
// Build Number
|
|
||||||
// Revision
|
|
||||||
//
|
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
|
||||||
// by using the '*' as shown below:
|
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
|
||||||
[assembly: AssemblyVersion("1.0.0.0")]
|
|
||||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
||||||
[assembly: NeutralResourcesLanguageAttribute("en-US")]
|
|
||||||
63
src/htm/Properties/Resources.Designer.cs
generated
63
src/htm/Properties/Resources.Designer.cs
generated
@@ -1,63 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by a tool.
|
|
||||||
// Runtime Version:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
namespace thememan.Properties {
|
|
||||||
using System;
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
|
||||||
/// </summary>
|
|
||||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
|
||||||
// class via a tool like ResGen or Visual Studio.
|
|
||||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
|
||||||
// with the /str option, or rebuild your VS project.
|
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
|
||||||
internal class Resources {
|
|
||||||
|
|
||||||
private static global::System.Resources.ResourceManager resourceMan;
|
|
||||||
|
|
||||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
|
||||||
|
|
||||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
|
||||||
internal Resources() {
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Returns the cached ResourceManager instance used by this class.
|
|
||||||
/// </summary>
|
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
|
||||||
get {
|
|
||||||
if (object.ReferenceEquals(resourceMan, null)) {
|
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("thememan.Properties.Resources", typeof(Resources).Assembly);
|
|
||||||
resourceMan = temp;
|
|
||||||
}
|
|
||||||
return resourceMan;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Overrides the current thread's CurrentUICulture property for all
|
|
||||||
/// resource lookups using this strongly typed resource class.
|
|
||||||
/// </summary>
|
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
||||||
internal static global::System.Globalization.CultureInfo Culture {
|
|
||||||
get {
|
|
||||||
return resourceCulture;
|
|
||||||
}
|
|
||||||
set {
|
|
||||||
resourceCulture = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
@@ -1,120 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
</root>
|
|
||||||
26
src/htm/Properties/Settings.Designer.cs
generated
26
src/htm/Properties/Settings.Designer.cs
generated
@@ -1,26 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by a tool.
|
|
||||||
// Runtime Version:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
namespace thememan.Properties {
|
|
||||||
|
|
||||||
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")]
|
|
||||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
|
||||||
|
|
||||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
|
||||||
|
|
||||||
public static Settings Default {
|
|
||||||
get {
|
|
||||||
return defaultInstance;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
|
||||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
|
||||||
<Profiles>
|
|
||||||
<Profile Name="(Default)" />
|
|
||||||
</Profiles>
|
|
||||||
<Settings />
|
|
||||||
</SettingsFile>
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user