Compare commits
84 Commits
main
...
main-riscv
Author | SHA1 | Date | |
---|---|---|---|
f581087809 | |||
1cce72721b | |||
5f95f83fed | |||
|
c7561ecbd2 | ||
|
71accfa246 | ||
|
1380baee57 | ||
|
8c6c616be7 | ||
|
a8964fd3c2 | ||
|
8b341a2e41 | ||
|
2a2283ce2e | ||
|
5641134af6 | ||
|
98ea1bd9b0 | ||
|
268ac3f856 | ||
|
beddc878be | ||
|
1290a8e054 | ||
|
97e1e2cc23 | ||
|
b5d86f59a6 | ||
|
8b0981ad1e | ||
|
2d2b4eb993 | ||
|
7b7920e745 | ||
|
b43a080535 | ||
|
ff8992e171 | ||
|
a8c4993d97 | ||
|
1e721fb403 | ||
|
3af406b754 | ||
|
2fd4465405 | ||
|
4a0673315e | ||
|
da2ee42e5a | ||
|
626e26c3a3 | ||
|
a0b270d0fb | ||
|
2ab1277746 | ||
|
9b99a9a52c | ||
|
31e421da9b | ||
|
f37332301f | ||
|
0521ea221c | ||
|
4a85907114 | ||
|
0101279afc | ||
|
20935121f3 | ||
|
e1d9c77fcc | ||
|
bfa9b76885 | ||
|
984739a549 | ||
|
ccc9deaf74 | ||
|
832d5fa571 | ||
|
a4c08aa064 | ||
|
e7609e66c2 | ||
|
890c7a0c41 | ||
|
80be2cb347 | ||
|
af1bf44f4c | ||
|
1b4e2a4b20 | ||
|
0d1450578f | ||
|
18e99dd4f0 | ||
|
24d5c1d354 | ||
|
d611ea8cf7 | ||
|
aae71fae00 | ||
|
d08b6b720d | ||
|
35129b8000 | ||
|
52c238fe49 | ||
|
5a72a5b201 | ||
|
ff146b5899 | ||
|
f9fcaedd6e | ||
|
d1faeb15be | ||
|
682a52c916 | ||
|
281400242e | ||
|
5067ded551 | ||
|
1853404a92 | ||
|
239e52066f | ||
|
bb332b310b | ||
|
6ae7e349d7 | ||
|
89b366c20e | ||
|
5193274282 | ||
|
ffa1fbf07f | ||
|
d204fe752e | ||
|
497b6c2bf2 | ||
|
8a0b99cd94 | ||
|
7afe60ee1f | ||
|
133b3d6a38 | ||
|
9d9edf5727 | ||
|
a8f6fa480f | ||
|
b0b16f1538 | ||
|
de3e694d6c | ||
|
84722aa655 | ||
|
7ed4cf8dc3 | ||
|
a4e32a7b04 | ||
568ff9fadf |
6
Makefile
6
Makefile
@ -1,7 +1,7 @@
|
||||
XMLINFILES=$(wildcard *.xml.in)
|
||||
XMLFILES = $(patsubst %.xml.in,%.xml,$(XMLINFILES))
|
||||
|
||||
all: po $(XMLFILES) sort
|
||||
all: comps-eln.xml.in po $(XMLFILES) comps-eln.xml sort
|
||||
|
||||
po: $(XMLINFILES)
|
||||
make -C po -f Makefile || exit 1
|
||||
@ -38,5 +38,5 @@ comps-eln.xml.in: comps-eln.xml.in.in
|
||||
./update-comps $@
|
||||
|
||||
# Add an easy alias to generate a rawhide comps file
|
||||
comps-rawhide.xml comps-rawhide: comps-f40.xml
|
||||
@mv comps-f40.xml comps-rawhide.xml
|
||||
comps-rawhide.xml comps-rawhide: comps-f41.xml
|
||||
@mv comps-f41.xml comps-rawhide.xml
|
||||
|
@ -17,7 +17,7 @@ import subprocess
|
||||
import lxml.etree as ET
|
||||
from collections import defaultdict
|
||||
|
||||
ARCHES = ('aarch64', 'ppc64le', 's390x', 'x86_64')
|
||||
ARCHES = ('aarch64', 'ppc64le', 's390x', 'x86_64', 'riscv64')
|
||||
|
||||
parser = argparse.ArgumentParser(description='Check Fedora comps files for missing packages and packages missing on architectures')
|
||||
parser.add_argument('relver', help='Release version to check')
|
||||
|
@ -239,7 +239,6 @@
|
||||
<packagereq type="mandatory" variant="BaseOS">openssh-server</packagereq>
|
||||
<packagereq type="mandatory" variant="BaseOS">p11-kit</packagereq>
|
||||
<packagereq type="mandatory" variant="BaseOS">parted</packagereq>
|
||||
<packagereq type="mandatory" variant="BaseOS">passwd</packagereq>
|
||||
<packagereq type="mandatory" variant="BaseOS">policycoreutils</packagereq>
|
||||
<packagereq type="mandatory" variant="BaseOS">procps-ng</packagereq>
|
||||
<packagereq type="mandatory" variant="BaseOS">rootfiles</packagereq>
|
||||
@ -260,19 +259,9 @@
|
||||
<packagereq type="default" variant="BaseOS">prefixdevname</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">dnf-plugins-core</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">dracut-config-rescue</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl100-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl105-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl135-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl1000-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl2000-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl2030-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl3160-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl5000-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl5150-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl6000g2a-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl6050-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwl7260-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">NetworkManager</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwlegacy-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwlwifi-dvm-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS" arch="x86_64">iwlwifi-mvm-firmware</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">NetworkManager-team</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">NetworkManager-tui</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">libsysfs</packagereq>
|
||||
@ -511,21 +500,20 @@
|
||||
<uservisible>false</uservisible>
|
||||
<packagelist>
|
||||
<packagereq type="default">bolt</packagereq>
|
||||
<packagereq type="default">iwl100-firmware</packagereq>
|
||||
<packagereq type="default">iwl1000-firmware</packagereq>
|
||||
<packagereq type="default">iwl105-firmware</packagereq>
|
||||
<packagereq type="default">iwl135-firmware</packagereq>
|
||||
<packagereq type="default">iwl2000-firmware</packagereq>
|
||||
<packagereq type="default">iwl2030-firmware</packagereq>
|
||||
<packagereq type="default">iwl3160-firmware</packagereq>
|
||||
<packagereq type="default">iwl5000-firmware</packagereq>
|
||||
<packagereq type="default">iwl5150-firmware</packagereq>
|
||||
<packagereq type="default">iwl6000g2a-firmware</packagereq>
|
||||
<packagereq type="default">iwl6000g2b-firmware</packagereq>
|
||||
<packagereq type="default">iwl6050-firmware</packagereq>
|
||||
<packagereq type="default">iwl7260-firmware</packagereq>
|
||||
<packagereq type="default">amd-gpu-firmware</packagereq>
|
||||
<packagereq type="default" arch="x86_64">amd-ucode-firmware</packagereq>
|
||||
<packagereq type="default">atheros-firmware</packagereq>
|
||||
<packagereq type="default">brcmfmac-firmware</packagereq>
|
||||
<packagereq type="default">intel-gpu-firmware</packagereq>
|
||||
<packagereq type="default">iwlegacy-firmware</packagereq>
|
||||
<packagereq type="default">iwlwifi-dvm-firmware</packagereq>
|
||||
<packagereq type="default">iwlwifi-mvm-firmware</packagereq>
|
||||
<packagereq type="default">netronome-firmware</packagereq>
|
||||
<packagereq type="default">libertas-sd8787-firmware</packagereq>
|
||||
<packagereq type="default">nvidia-gpu-firmware</packagereq>
|
||||
<packagereq type="default">libertas-firmware</packagereq>
|
||||
<packagereq type="default">liquidio-firmware</packagereq>
|
||||
<packagereq type="default">qcom-firmware</packagereq>
|
||||
<packagereq type="default">realtek-firmware</packagereq>
|
||||
<packagereq type="default">usb_modeswitch</packagereq>
|
||||
<packagereq type="optional">lsscsi</packagereq>
|
||||
<packagereq type="optional">opensc</packagereq>
|
||||
@ -744,7 +732,7 @@
|
||||
<uservisible>false</uservisible>
|
||||
<packagelist>
|
||||
<packagereq type="mandatory" variant="AppStream">blktrace</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">iotop</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">iotop-c</packagereq>
|
||||
<packagereq type="default" variant="AppStream">perf</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">elfutils</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">strace</packagereq>
|
||||
@ -907,30 +895,30 @@
|
||||
<packagereq variant="AppStream">mesa-libGLw-devel</packagereq>
|
||||
<packagereq variant="AppStream">nss-devel</packagereq>
|
||||
<packagereq variant="AppStream">pango-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qt3d-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtbase-mysql</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtbase-odbc</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtbase-postgresql</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtconnectivity-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtdoc</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtgraphicaleffects</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtimageformats</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtlocation-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtmultimedia-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtquickcontrols</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtquickcontrols2</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtscript-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtsensors-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtserialport-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtsvg-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qttools-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qttranslations</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtwebchannel-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtwebsockets-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtx11extras-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtxmlpatterns-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtserialbus</packagereq>
|
||||
<packagereq arch="x86_64,ppc64le,aarch64" variant="AppStream">qt5-qtwayland</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qt3d-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtbase-mysql</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtbase-odbc</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtbase-postgresql</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtconnectivity-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtdoc</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtgraphicaleffects</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtimageformats</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtlocation-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtmultimedia-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtquickcontrols</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtquickcontrols2</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtscript-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtsensors-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtserialport-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtsvg-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qttools-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qttranslations</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtwebchannel-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtwebsockets-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtx11extras-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtxmlpatterns-devel</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtserialbus</packagereq>
|
||||
<packagereq arch="x86_64,ppc64le,aarch64" variant="AppStream">qt6-qtwayland</packagereq>
|
||||
<packagereq type="optional" variant="AppStream">spirv-tools</packagereq>
|
||||
<packagereq type="optional" variant="AppStream">spirv-tools-libs</packagereq>
|
||||
<packagereq type="optional" arch="x86_64" variant="AppStream">vulkan-tools</packagereq>
|
||||
@ -1084,6 +1072,7 @@
|
||||
<packagereq type="mandatory" variant="AppStream">rsyslog-gssapi</packagereq>
|
||||
<packagereq type="mandatory" variant="AppStream">rsyslog-relp</packagereq>
|
||||
<packagereq type="mandatory" variant="BaseOS">tuned</packagereq>
|
||||
<packagereq type="default" variant="AppStream">bash-color-prompt</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">bash-completion</packagereq>
|
||||
<packagereq type="default" variant="AppStream">blktrace</packagereq>
|
||||
<packagereq type="default" variant="BaseOS">bpftool</packagereq>
|
||||
@ -1278,7 +1267,7 @@
|
||||
<packagereq type="optional" variant="BaseOS">chrpath</packagereq>
|
||||
<packagereq type="optional" variant="BaseOS">environment-modules</packagereq>
|
||||
<packagereq type="optional" variant="BaseOS">fuse</packagereq>
|
||||
<packagereq type="optional" variant="BaseOS">iotop</packagereq>
|
||||
<packagereq type="optional" variant="BaseOS">iotop-c</packagereq>
|
||||
<packagereq type="optional" variant="BaseOS">lzop</packagereq>
|
||||
<packagereq type="optional" variant="BaseOS">hardlink</packagereq>
|
||||
<packagereq type="default" variant="AppStream">libreswan</packagereq>
|
||||
@ -1712,7 +1701,7 @@
|
||||
<packagereq variant="BaseOS">which</packagereq>
|
||||
<packagereq variant="BaseOS">words</packagereq>
|
||||
<packagereq variant="BaseOS">zip</packagereq>
|
||||
<packagereq variant="AppStream">adwaita-qt5</packagereq>
|
||||
<packagereq variant="AppStream">adwaita-qt6</packagereq>
|
||||
<packagereq variant="AppStream">bind-utils</packagereq>
|
||||
<packagereq variant="AppStream">evolution</packagereq>
|
||||
<packagereq variant="AppStream">evolution-ews</packagereq>
|
||||
@ -1731,10 +1720,10 @@
|
||||
<packagereq variant="AppStream">nmap-ncat</packagereq>
|
||||
<packagereq variant="AppStream">pinentry-gnome3</packagereq>
|
||||
<packagereq variant="AppStream">qgnomeplatform</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtbase</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtbase-gui</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtdeclarative</packagereq>
|
||||
<packagereq variant="AppStream">qt5-qtxmlpatterns</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtbase</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtbase-gui</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtdeclarative</packagereq>
|
||||
<packagereq variant="AppStream">qt6-qtxmlpatterns</packagereq>
|
||||
<packagereq variant="AppStream">setroubleshoot</packagereq>
|
||||
<packagereq variant="AppStream">telnet</packagereq>
|
||||
<packagereq variant="AppStream">xorg-x11-drv-libinput</packagereq>
|
||||
@ -3666,8 +3655,8 @@
|
||||
<packagereq type="default">poppler-cpp-devel</packagereq>
|
||||
<packagereq type="default">poppler-devel</packagereq>
|
||||
<packagereq type="default">poppler-glib-devel</packagereq>
|
||||
<packagereq type="default">poppler-qt5</packagereq>
|
||||
<packagereq type="default">poppler-qt5-devel</packagereq>
|
||||
<packagereq type="default">poppler-qt6</packagereq>
|
||||
<packagereq type="default">poppler-qt6-devel</packagereq>
|
||||
<packagereq type="default">postgresql-docs</packagereq>
|
||||
<packagereq type="default">postgresql-private-devel</packagereq>
|
||||
<packagereq type="default">postgresql-server-devel</packagereq>
|
||||
@ -3717,7 +3706,7 @@
|
||||
<packagereq type="default">python3-pytest-subtests</packagereq>
|
||||
<packagereq type="default">python3-pytest-timeout</packagereq>
|
||||
<packagereq type="default">python3-psutil-tests</packagereq>
|
||||
<packagereq type="default">python3-qt5-devel</packagereq>
|
||||
<packagereq type="default">python3-qt6-devel</packagereq>
|
||||
<packagereq type="default">python3-readthedocs-sphinx-ext</packagereq>
|
||||
<packagereq type="default">python3-rrdtool</packagereq>
|
||||
<packagereq type="default">python3-setuptools_scm</packagereq>
|
||||
@ -3742,16 +3731,15 @@
|
||||
<packagereq type="default">qgpgme-devel</packagereq>
|
||||
<packagereq type="default">qhull-devel</packagereq>
|
||||
<packagereq type="default">qpdf</packagereq>
|
||||
<packagereq type="default">qt5-devel</packagereq>
|
||||
<packagereq type="default">qt5-qtbase-static</packagereq>
|
||||
<packagereq type="default">qt5-qtdeclarative-static</packagereq>
|
||||
<packagereq type="default">qt5-qttools-static</packagereq>
|
||||
<packagereq type="default">qt6-devel</packagereq>
|
||||
<packagereq type="default">qt6-qtbase-static</packagereq>
|
||||
<packagereq type="default">qt6-qtdeclarative-static</packagereq>
|
||||
<packagereq type="default">qt6-qttools-static</packagereq>
|
||||
<packagereq type="default">quota-devel</packagereq>
|
||||
<packagereq type="default">raptor2-devel</packagereq>
|
||||
<packagereq type="default">rasqal-devel</packagereq>
|
||||
<packagereq type="default">redhat-sb-certs</packagereq>
|
||||
<packagereq type="default">redland-devel</packagereq>
|
||||
<packagereq type="default">rhc-devel</packagereq>
|
||||
<packagereq type="default">rpcgen</packagereq>
|
||||
<packagereq type="default">rpcsvc-proto-devel</packagereq>
|
||||
<packagereq type="default">rrdtool-devel</packagereq>
|
||||
|
@ -357,6 +357,17 @@
|
||||
<packagereq type="mandatory">cups</packagereq>
|
||||
</packagelist>
|
||||
</group>
|
||||
<group>
|
||||
<id>vlc</id>
|
||||
<_name>VideoLAN Client</_name>
|
||||
<_description>The cross-platform open-source multimedia framework, player and server</_description>
|
||||
<packagelist>
|
||||
<packagereq type="mandatory">vlc</packagereq>
|
||||
<packagereq type="default">vlc-plugin-ffmpeg</packagereq>
|
||||
<packagereq type="default">vlc-plugin-gstreamer</packagereq>
|
||||
<packagereq type="default">vlc-plugin-pipewire</packagereq>
|
||||
</packagelist>
|
||||
</group>
|
||||
<group>
|
||||
<id>xfce-desktop</id>
|
||||
<_name>Xfce</_name>
|
||||
|
@ -5172,6 +5172,7 @@
|
||||
<packagelist>
|
||||
<packagereq>abrt-cli</packagereq>
|
||||
<packagereq>acl</packagereq>
|
||||
<packagereq>amd-ucode-firmware</packagereq>
|
||||
<packagereq>at</packagereq>
|
||||
<packagereq>attr</packagereq>
|
||||
<packagereq>bash-completion</packagereq>
|
||||
@ -5702,6 +5703,7 @@
|
||||
<uservisible>false</uservisible>
|
||||
<packagelist>
|
||||
<packagereq type="mandatory">amd-gpu-firmware</packagereq>
|
||||
<packagereq type="mandatory">amd-ucode-firmware</packagereq>
|
||||
<packagereq type="mandatory">dnf</packagereq>
|
||||
<packagereq type="mandatory">intel-gpu-firmware</packagereq>
|
||||
<packagereq type="mandatory">linux-firmware</packagereq>
|
||||
|
@ -54,7 +54,6 @@
|
||||
<packagereq type="mandatory">chrony</packagereq>
|
||||
<packagereq type="mandatory">cryptsetup</packagereq>
|
||||
<packagereq type="mandatory">device-mapper-multipath</packagereq>
|
||||
<packagereq type="mandatory">dmraid</packagereq>
|
||||
<packagereq type="mandatory">dosfstools</packagereq>
|
||||
<packagereq type="mandatory">dracut-network</packagereq>
|
||||
<packagereq type="mandatory">e2fsprogs</packagereq>
|
||||
@ -124,7 +123,7 @@
|
||||
<packagereq type="default">alsa-utils</packagereq>
|
||||
<packagereq type="default">alsamixergui</packagereq>
|
||||
<packagereq type="default">ams</packagereq>
|
||||
<packagereq type="default">ardour6</packagereq>
|
||||
<packagereq type="default">ardour8</packagereq>
|
||||
<packagereq type="default">arpage</packagereq>
|
||||
<packagereq arch="aarch64,ppc64le,x86_64" type="default">audacity</packagereq>
|
||||
<packagereq type="default">calf</packagereq>
|
||||
@ -517,6 +516,7 @@
|
||||
<packagereq arch="aarch64,ppc64le,x86_64" type="mandatory">thunderbird</packagereq>
|
||||
<packagereq type="mandatory">tmux</packagereq>
|
||||
<packagereq type="mandatory">tmux-powerline</packagereq>
|
||||
<packagereq type="mandatory">totem-video-thumbnailer</packagereq>
|
||||
<packagereq type="mandatory">transmission</packagereq>
|
||||
<packagereq type="mandatory">vim-powerline</packagereq>
|
||||
<packagereq type="mandatory">xawtv</packagereq>
|
||||
@ -882,6 +882,7 @@
|
||||
<packagereq>freeipa-server-trust-ad</packagereq>
|
||||
<packagereq>opendnssec</packagereq>
|
||||
<packagereq>postgresql</packagereq>
|
||||
<packagereq>realmd</packagereq>
|
||||
</packagelist>
|
||||
</group>
|
||||
<group>
|
||||
@ -2949,6 +2950,8 @@
|
||||
<packagereq type="default">b43-fwcutter</packagereq>
|
||||
<packagereq type="default">b43-openfwwf</packagereq>
|
||||
<packagereq type="default">brcmfmac-firmware</packagereq>
|
||||
<packagereq arch="x86_64" type="default">cirrus-audio-firmware</packagereq>
|
||||
<packagereq arch="x86_64" type="default">intel-audio-firmware</packagereq>
|
||||
<packagereq type="default">intel-gpu-firmware</packagereq>
|
||||
<packagereq type="default">iwlegacy-firmware</packagereq>
|
||||
<packagereq type="default">iwlwifi-dvm-firmware</packagereq>
|
||||
@ -2956,8 +2959,10 @@
|
||||
<packagereq type="default">libertas-firmware</packagereq>
|
||||
<packagereq type="default">mt7xxx-firmware</packagereq>
|
||||
<packagereq type="default">nvidia-gpu-firmware</packagereq>
|
||||
<packagereq type="default">nxpwireless-firmware</packagereq>
|
||||
<packagereq arch="aarch64" type="default">qcom-firmware</packagereq>
|
||||
<packagereq type="default">realtek-firmware</packagereq>
|
||||
<packagereq type="default">tiwilink-firmware</packagereq>
|
||||
<packagereq type="default">usb_modeswitch</packagereq>
|
||||
<packagereq type="optional">acpi</packagereq>
|
||||
<packagereq type="optional">acpitool</packagereq>
|
||||
@ -2970,6 +2975,7 @@
|
||||
<packagereq type="optional">gpsd-clients</packagereq>
|
||||
<packagereq type="optional">hddtemp</packagereq>
|
||||
<packagereq type="optional">hdparm</packagereq>
|
||||
<packagereq arch="x86_64" type="optional">intel-vsc-firmware</packagereq>
|
||||
<packagereq type="optional">iscan-firmware</packagereq>
|
||||
<packagereq type="optional">libifp</packagereq>
|
||||
<packagereq type="optional">liquidio-firmware</packagereq>
|
||||
@ -5018,6 +5024,7 @@
|
||||
<packagelist>
|
||||
<packagereq>abrt-cli</packagereq>
|
||||
<packagereq>acl</packagereq>
|
||||
<packagereq arch="x86_64">amd-ucode-firmware</packagereq>
|
||||
<packagereq>at</packagereq>
|
||||
<packagereq>attr</packagereq>
|
||||
<packagereq>bash-completion</packagereq>
|
||||
@ -5581,6 +5588,7 @@
|
||||
<uservisible>false</uservisible>
|
||||
<packagelist>
|
||||
<packagereq type="mandatory">amd-gpu-firmware</packagereq>
|
||||
<packagereq arch="x86_64" type="mandatory">amd-ucode-firmware</packagereq>
|
||||
<packagereq type="mandatory">dnf</packagereq>
|
||||
<packagereq type="mandatory">intel-gpu-firmware</packagereq>
|
||||
<packagereq type="mandatory">linux-firmware</packagereq>
|
||||
|
@ -54,7 +54,6 @@
|
||||
<packagereq type="mandatory">chrony</packagereq>
|
||||
<packagereq type="mandatory">cryptsetup</packagereq>
|
||||
<packagereq type="mandatory">device-mapper-multipath</packagereq>
|
||||
<packagereq type="mandatory">dmraid</packagereq>
|
||||
<packagereq type="mandatory">dosfstools</packagereq>
|
||||
<packagereq type="mandatory">dracut-network</packagereq>
|
||||
<packagereq type="mandatory">e2fsprogs</packagereq>
|
||||
@ -125,7 +124,7 @@
|
||||
<packagereq type="default">alsa-utils</packagereq>
|
||||
<packagereq type="default">alsamixergui</packagereq>
|
||||
<packagereq type="default">ams</packagereq>
|
||||
<packagereq type="default">ardour6</packagereq>
|
||||
<packagereq type="default">ardour8</packagereq>
|
||||
<packagereq type="default">arpage</packagereq>
|
||||
<packagereq arch="aarch64,ppc64le,x86_64" type="default">audacity</packagereq>
|
||||
<packagereq type="default">calf</packagereq>
|
||||
@ -518,6 +517,7 @@
|
||||
<packagereq arch="aarch64,ppc64le,x86_64" type="mandatory">thunderbird</packagereq>
|
||||
<packagereq type="mandatory">tmux</packagereq>
|
||||
<packagereq type="mandatory">tmux-powerline</packagereq>
|
||||
<packagereq type="mandatory">totem-video-thumbnailer</packagereq>
|
||||
<packagereq type="mandatory">transmission</packagereq>
|
||||
<packagereq type="mandatory">vim-powerline</packagereq>
|
||||
<packagereq type="mandatory">xawtv</packagereq>
|
||||
@ -787,6 +787,7 @@
|
||||
<default>false</default>
|
||||
<uservisible>false</uservisible>
|
||||
<packagelist>
|
||||
<packagereq type="mandatory">bash-color-prompt</packagereq>
|
||||
<packagereq type="mandatory">dconf</packagereq>
|
||||
<packagereq type="mandatory">gdm</packagereq>
|
||||
<packagereq type="mandatory">gnome-classic-session</packagereq>
|
||||
@ -883,6 +884,7 @@
|
||||
<packagereq>freeipa-server-trust-ad</packagereq>
|
||||
<packagereq>opendnssec</packagereq>
|
||||
<packagereq>postgresql</packagereq>
|
||||
<packagereq>realmd</packagereq>
|
||||
</packagelist>
|
||||
</group>
|
||||
<group>
|
||||
@ -893,6 +895,7 @@
|
||||
<default>false</default>
|
||||
<uservisible>false</uservisible>
|
||||
<packagelist>
|
||||
<packagereq type="mandatory">bash-color-prompt</packagereq>
|
||||
<packagereq arch="aarch64,ppc64le,x86_64" type="mandatory">fprintd-pam</packagereq>
|
||||
</packagelist>
|
||||
</group>
|
||||
@ -2917,6 +2920,8 @@
|
||||
<packagereq type="default">b43-fwcutter</packagereq>
|
||||
<packagereq type="default">b43-openfwwf</packagereq>
|
||||
<packagereq type="default">brcmfmac-firmware</packagereq>
|
||||
<packagereq arch="x86_64" type="default">cirrus-audio-firmware</packagereq>
|
||||
<packagereq arch="x86_64" type="default">intel-audio-firmware</packagereq>
|
||||
<packagereq type="default">intel-gpu-firmware</packagereq>
|
||||
<packagereq type="default">iwlegacy-firmware</packagereq>
|
||||
<packagereq type="default">iwlwifi-dvm-firmware</packagereq>
|
||||
@ -2924,8 +2929,10 @@
|
||||
<packagereq type="default">libertas-firmware</packagereq>
|
||||
<packagereq type="default">mt7xxx-firmware</packagereq>
|
||||
<packagereq type="default">nvidia-gpu-firmware</packagereq>
|
||||
<packagereq type="default">nxpwireless-firmware</packagereq>
|
||||
<packagereq arch="aarch64" type="default">qcom-firmware</packagereq>
|
||||
<packagereq type="default">realtek-firmware</packagereq>
|
||||
<packagereq type="default">tiwilink-firmware</packagereq>
|
||||
<packagereq type="default">usb_modeswitch</packagereq>
|
||||
<packagereq type="optional">acpi</packagereq>
|
||||
<packagereq type="optional">acpitool</packagereq>
|
||||
@ -2938,6 +2945,7 @@
|
||||
<packagereq type="optional">gpsd-clients</packagereq>
|
||||
<packagereq type="optional">hddtemp</packagereq>
|
||||
<packagereq type="optional">hdparm</packagereq>
|
||||
<packagereq arch="x86_64" type="optional">intel-vsc-firmware</packagereq>
|
||||
<packagereq type="optional">iscan-firmware</packagereq>
|
||||
<packagereq type="optional">libifp</packagereq>
|
||||
<packagereq type="optional">liquidio-firmware</packagereq>
|
||||
@ -3053,6 +3061,7 @@
|
||||
<packagereq type="conditional" requires="gtk4">ibus-gtk4</packagereq>
|
||||
<packagereq type="conditional" requires="qt">ibus-qt</packagereq>
|
||||
<packagereq type="conditional" requires="xfce4-panel">im-chooser-xfce</packagereq>
|
||||
<packagereq type="conditional" requires="plasma-desktop">imsettings-plasma</packagereq>
|
||||
<packagereq type="default">ibus-anthy</packagereq>
|
||||
<packagereq type="default">ibus-hangul</packagereq>
|
||||
<packagereq type="default">ibus-libpinyin</packagereq>
|
||||
@ -3213,7 +3222,6 @@
|
||||
<packagereq type="mandatory">sddm</packagereq>
|
||||
<packagereq type="mandatory">sddm-breeze</packagereq>
|
||||
<packagereq type="mandatory">sddm-kcm</packagereq>
|
||||
<packagereq type="conditional" requires="at-spi2-core">qt-at-spi</packagereq>
|
||||
<packagereq type="default">abrt-desktop</packagereq>
|
||||
<packagereq type="default">adwaita-gtk2-theme</packagereq>
|
||||
<packagereq type="default">ark</packagereq>
|
||||
@ -3251,7 +3259,6 @@
|
||||
<packagereq type="default">kinfocenter</packagereq>
|
||||
<packagereq type="default">kio-admin</packagereq>
|
||||
<packagereq arch="aarch64,x86_64" type="default">kio-gdrive</packagereq>
|
||||
<packagereq type="default">kmag</packagereq>
|
||||
<packagereq type="default">kmenuedit</packagereq>
|
||||
<packagereq type="default">kmousetool</packagereq>
|
||||
<packagereq type="default">konsole5</packagereq>
|
||||
@ -3265,6 +3272,7 @@
|
||||
<packagereq type="default">kwrite</packagereq>
|
||||
<packagereq type="default">libappindicator-gtk3</packagereq>
|
||||
<packagereq type="default">NetworkManager-config-connectivity-fedora</packagereq>
|
||||
<packagereq type="default">orca</packagereq>
|
||||
<packagereq type="default">PackageKit-command-not-found</packagereq>
|
||||
<packagereq type="default">pam-kwallet</packagereq>
|
||||
<packagereq type="default">phonon-qt5-backend-gstreamer</packagereq>
|
||||
@ -3290,6 +3298,7 @@
|
||||
<packagereq type="default">plasma-workspace-geolocation</packagereq>
|
||||
<packagereq type="default">plasma-workspace-x11</packagereq>
|
||||
<packagereq type="default">polkit-kde</packagereq>
|
||||
<packagereq type="default">qt-at-spi</packagereq>
|
||||
<packagereq type="default">qt5-qtdeclarative</packagereq>
|
||||
<packagereq type="default">spectacle</packagereq>
|
||||
<packagereq type="default">systemd-oomd-defaults</packagereq>
|
||||
@ -3410,7 +3419,6 @@
|
||||
<packagereq type="optional">kdewebdev-devel</packagereq>
|
||||
<packagereq type="optional">kiten-devel</packagereq>
|
||||
<packagereq type="optional">krazy2</packagereq>
|
||||
<packagereq type="optional">ktp-common-internals-devel</packagereq>
|
||||
<packagereq type="optional">libkcddb-devel</packagereq>
|
||||
<packagereq type="optional">libkcompactdisc-devel</packagereq>
|
||||
<packagereq type="optional">libkdegames-devel</packagereq>
|
||||
@ -3431,16 +3439,6 @@
|
||||
<packagelist>
|
||||
<packagereq>kaccounts-integration</packagereq>
|
||||
<packagereq arch="aarch64,x86_64">kaccounts-providers</packagereq>
|
||||
<packagereq arch="aarch64,x86_64">ktp-accounts-kcm</packagereq>
|
||||
<packagereq>ktp-approver</packagereq>
|
||||
<packagereq arch="aarch64,x86_64">ktp-auth-handler</packagereq>
|
||||
<packagereq arch="aarch64,x86_64">ktp-contact-list</packagereq>
|
||||
<packagereq arch="aarch64,x86_64">ktp-contact-runner</packagereq>
|
||||
<packagereq>ktp-desktop-applets</packagereq>
|
||||
<packagereq arch="aarch64,x86_64">ktp-filetransfer-handler</packagereq>
|
||||
<packagereq arch="aarch64,x86_64">ktp-kded-integration-module</packagereq>
|
||||
<packagereq arch="aarch64,x86_64">ktp-send-file</packagereq>
|
||||
<packagereq arch="aarch64,x86_64">ktp-text-ui</packagereq>
|
||||
<packagereq>signon-kwallet-extension</packagereq>
|
||||
</packagelist>
|
||||
</group>
|
||||
@ -3861,10 +3859,10 @@
|
||||
<packagereq>dnfdragora-updater</packagereq>
|
||||
<packagereq>engrampa</packagereq>
|
||||
<packagereq>eom</packagereq>
|
||||
<packagereq>f38-backgrounds-base</packagereq>
|
||||
<packagereq>f38-backgrounds-extras-base</packagereq>
|
||||
<packagereq>f38-backgrounds-extras-mate</packagereq>
|
||||
<packagereq>f38-backgrounds-mate</packagereq>
|
||||
<packagereq>f39-backgrounds-base</packagereq>
|
||||
<packagereq>f39-backgrounds-extras-base</packagereq>
|
||||
<packagereq>f39-backgrounds-extras-mate</packagereq>
|
||||
<packagereq>f39-backgrounds-mate</packagereq>
|
||||
<packagereq>filezilla</packagereq>
|
||||
<packagereq>firefox</packagereq>
|
||||
<packagereq>firewall-config</packagereq>
|
||||
@ -4998,6 +4996,7 @@
|
||||
<packagelist>
|
||||
<packagereq>abrt-cli</packagereq>
|
||||
<packagereq>acl</packagereq>
|
||||
<packagereq arch="x86_64">amd-ucode-firmware</packagereq>
|
||||
<packagereq>at</packagereq>
|
||||
<packagereq>attr</packagereq>
|
||||
<packagereq>bash-color-prompt</packagereq>
|
||||
@ -5169,6 +5168,7 @@
|
||||
<packagereq type="default">bolt</packagereq>
|
||||
<packagereq arch="aarch64,ppc64le,x86_64" type="default">fprintd-pam</packagereq>
|
||||
<packagereq type="default">gnome-keyring-pam</packagereq>
|
||||
<packagereq type="default">gnome-themes-extra</packagereq>
|
||||
<packagereq type="default">imv</packagereq>
|
||||
<packagereq type="default">kanshi</packagereq>
|
||||
<packagereq type="default">lxqt-policykit</packagereq>
|
||||
@ -5193,6 +5193,8 @@
|
||||
<packagereq type="default">thunar-archive-plugin</packagereq>
|
||||
<packagereq type="default">wev</packagereq>
|
||||
<packagereq type="default">wl-clipboard</packagereq>
|
||||
<packagereq type="default">wlr-randr</packagereq>
|
||||
<packagereq type="default">wlsunset</packagereq>
|
||||
<!-- provide missing portal implementations -->
|
||||
<packagereq type="default">xdg-desktop-portal-gtk</packagereq>
|
||||
</packagelist>
|
||||
@ -5561,6 +5563,7 @@
|
||||
<uservisible>false</uservisible>
|
||||
<packagelist>
|
||||
<packagereq type="mandatory">amd-gpu-firmware</packagereq>
|
||||
<packagereq arch="x86_64" type="mandatory">amd-ucode-firmware</packagereq>
|
||||
<packagereq type="mandatory">dnf</packagereq>
|
||||
<packagereq type="mandatory">intel-gpu-firmware</packagereq>
|
||||
<packagereq type="mandatory">linux-firmware</packagereq>
|
||||
|
434
comps-f40.xml.in
434
comps-f40.xml.in
File diff suppressed because it is too large
Load Diff
6744
comps-f41.xml.in
Normal file
6744
comps-f41.xml.in
Normal file
File diff suppressed because it is too large
Load Diff
59
po/cs.po
59
po/cs.po
@ -16,13 +16,14 @@
|
||||
# Kevin Fenzi <kevin@scrye.com>, 2016. #zanata
|
||||
# Zdenek <chmelarz@gmail.com>, 2017. #zanata
|
||||
# Josef Hruska <hrusjos@gmail.com>, 2023.
|
||||
# Petr Ptacek <petr106@atlas.cz>, 2024.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-07 13:23-0800\n"
|
||||
"PO-Revision-Date: 2023-03-05 21:20+0000\n"
|
||||
"Last-Translator: Josef Hruska <hrusjos@gmail.com>\n"
|
||||
"PO-Revision-Date: 2024-02-07 15:36+0000\n"
|
||||
"Last-Translator: Petr Ptacek <petr106@atlas.cz>\n"
|
||||
"Language-Team: Czech <https://translate.fedoraproject.org/projects/"
|
||||
"fedora-comps/main/cs/>\n"
|
||||
"Language: cs\n"
|
||||
@ -30,7 +31,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.15.2\n"
|
||||
"X-Generator: Weblate 5.3.1\n"
|
||||
|
||||
#: ../comps-f32.xml.in.h:1 ../comps-f33.xml.in.h:1 ../comps-f34.xml.in.h:1
|
||||
msgid "3D Printing"
|
||||
@ -210,7 +211,7 @@ msgstr "Kritická sada (Aplikace)"
|
||||
|
||||
#: ../comps-f32.xml.in.h:38 ../comps-f33.xml.in.h:36 ../comps-f34.xml.in.h:36
|
||||
msgid "A set of applications that are considered critical path"
|
||||
msgstr "Sada aplikací, které jsou považovány za kritické."
|
||||
msgstr "Sada aplikací, které jsou považovány za kritické"
|
||||
|
||||
#: ../comps-f32.xml.in.h:39 ../comps-f33.xml.in.h:37 ../comps-f34.xml.in.h:37
|
||||
msgid "Critical Path (Base)"
|
||||
@ -221,7 +222,7 @@ msgid ""
|
||||
"A set of packages that provide the shared platform for Critical Path "
|
||||
"functionality on all Fedora spins"
|
||||
msgstr ""
|
||||
"Sada balíčků sdílené platformy kritických funkcí na podporu spinů Fedory."
|
||||
"Sada balíčků sdílené platformy kritických funkcí na podporu spinů Fedory"
|
||||
|
||||
#: ../comps-f32.xml.in.h:41 ../comps-f33.xml.in.h:39 ../comps-f34.xml.in.h:39
|
||||
msgid "Critical Path (Deepin desktop)"
|
||||
@ -231,7 +232,7 @@ msgstr "Kritická cesta (prostředí Deepin)"
|
||||
msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the "
|
||||
"Deepin desktop"
|
||||
msgstr "Sada balíčků poskytující funkce kritické cesty pro prostředí Deepin."
|
||||
msgstr "Sada balíčků poskytující funkce kritické cesty pro prostředí Deepin"
|
||||
|
||||
#: ../comps-f32.xml.in.h:43 ../comps-f33.xml.in.h:41 ../comps-f34.xml.in.h:41
|
||||
msgid "Critical Path (GNOME)"
|
||||
@ -241,7 +242,7 @@ msgstr "Kritická sada (GNOME)"
|
||||
msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the GNOME "
|
||||
"desktop"
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy GNOME."
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy GNOME"
|
||||
|
||||
#: ../comps-f32.xml.in.h:45 ../comps-f33.xml.in.h:43 ../comps-f34.xml.in.h:43
|
||||
#: ../comps-epel8.xml.in.h:3
|
||||
@ -253,7 +254,7 @@ msgstr "Kritická sada (KDE)"
|
||||
msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the KDE "
|
||||
"desktop"
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy KDE."
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy KDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:47 ../comps-f33.xml.in.h:45 ../comps-f34.xml.in.h:45
|
||||
msgid "Critical Path (LXDE)"
|
||||
@ -263,7 +264,7 @@ msgstr "Kritická sada (LXDE)"
|
||||
msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the LXDE "
|
||||
"desktop"
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy LXDE."
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy LXDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:49 ../comps-f33.xml.in.h:47 ../comps-f34.xml.in.h:47
|
||||
msgid "Critical Path (LXQt)"
|
||||
@ -273,7 +274,7 @@ msgstr "Kritická sada (LXQt)"
|
||||
msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the LXQt "
|
||||
"desktop"
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy LXDE."
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy LXDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:51 ../comps-f33.xml.in.h:49 ../comps-f34.xml.in.h:49
|
||||
msgid "Critical Path (Xfce)"
|
||||
@ -283,7 +284,7 @@ msgstr "Kritická sada (Xfce)"
|
||||
msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the Xfce "
|
||||
"desktop"
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy Xfce."
|
||||
msgstr "Sada balíčků kritické funkčnosti pro prostředí pracovní plochy Xfce"
|
||||
|
||||
#: ../comps-f32.xml.in.h:53 ../comps-f33.xml.in.h:51 ../comps-f34.xml.in.h:51
|
||||
msgid "D Development Tools and Libraries"
|
||||
@ -426,7 +427,7 @@ msgstr "Elektronická laboratoř"
|
||||
|
||||
#: ../comps-f32.xml.in.h:83 ../comps-f33.xml.in.h:81 ../comps-f34.xml.in.h:81
|
||||
msgid "Design and simulation tools for hardware engineers"
|
||||
msgstr "Nástroje pro návrhy a simulace hardwarových inženýrů."
|
||||
msgstr "Nástroje pro návrhy a simulace hardwarových inženýrů"
|
||||
|
||||
#: ../comps-f32.xml.in.h:84 ../comps-f33.xml.in.h:82 ../comps-f34.xml.in.h:82
|
||||
msgid "Engineering and Scientific"
|
||||
@ -467,7 +468,7 @@ msgstr "Vývoj balíčků pro Fedoru"
|
||||
|
||||
#: ../comps-f32.xml.in.h:91 ../comps-f33.xml.in.h:87 ../comps-f34.xml.in.h:87
|
||||
msgid "Tools and utilities needed by a Fedora Packager"
|
||||
msgstr "Nástroje a pomocné programy potřebné pro balíčkovací systém Fedory."
|
||||
msgstr "Nástroje a pomocné programy potřebné pro balíčkovací systém Fedory"
|
||||
|
||||
#: ../comps-f32.xml.in.h:92 ../comps-f33.xml.in.h:88 ../comps-f34.xml.in.h:88
|
||||
msgid "Firefox Web Browser"
|
||||
@ -611,7 +612,7 @@ msgstr "Vysoká dostupnost"
|
||||
#: ../comps-f34.xml.in.h:115
|
||||
msgid "Infrastructure for highly available services and/or shared storage."
|
||||
msgstr ""
|
||||
"Infrastruktura pro vysoce dostupné služby a/nebo sdílený úložný prostor"
|
||||
"Infrastruktura pro vysoce dostupné služby a/nebo sdílený úložný prostor."
|
||||
|
||||
#: ../comps-f32.xml.in.h:120 ../comps-f33.xml.in.h:116
|
||||
#: ../comps-f34.xml.in.h:116
|
||||
@ -689,7 +690,7 @@ msgstr "Podpora pro vývoj programů v programovacím jazyku Java."
|
||||
#: ../comps-f32.xml.in.h:134 ../comps-f33.xml.in.h:130
|
||||
#: ../comps-f34.xml.in.h:130
|
||||
msgid "Java Application Server"
|
||||
msgstr "Java aplikační server."
|
||||
msgstr "Java aplikační server"
|
||||
|
||||
#: ../comps-f32.xml.in.h:135 ../comps-f33.xml.in.h:131
|
||||
#: ../comps-f34.xml.in.h:131
|
||||
@ -955,7 +956,7 @@ msgstr "MATE aplikace"
|
||||
#: ../comps-f32.xml.in.h:182 ../comps-f33.xml.in.h:175
|
||||
#: ../comps-f34.xml.in.h:175
|
||||
msgid "Applications for the MATE Desktop."
|
||||
msgstr "Aplikace pro pracovní prostředí MATE"
|
||||
msgstr "Aplikace pro pracovní prostředí MATE."
|
||||
|
||||
#: ../comps-f32.xml.in.h:183 ../comps-f33.xml.in.h:176
|
||||
#: ../comps-f34.xml.in.h:176 ../comps-epel7.xml.in.h:164
|
||||
@ -1013,7 +1014,7 @@ msgstr "MongoDB"
|
||||
#: ../comps-f32.xml.in.h:192 ../comps-f33.xml.in.h:183
|
||||
#: ../comps-f34.xml.in.h:183
|
||||
msgid "Scalable, high-performance NoSQL database."
|
||||
msgstr "Škálovatelná, vysoce výkonná databáze NoSQL"
|
||||
msgstr "Škálovatelná, vysoce výkonná databáze NoSQL."
|
||||
|
||||
#: ../comps-f32.xml.in.h:193 ../comps-f33.xml.in.h:184
|
||||
#: ../comps-f34.xml.in.h:184
|
||||
@ -1145,7 +1146,7 @@ msgstr "Perl pro web"
|
||||
#: ../comps-f32.xml.in.h:215 ../comps-f33.xml.in.h:205
|
||||
#: ../comps-f34.xml.in.h:205
|
||||
msgid "Basic Perl web application support."
|
||||
msgstr "Základní podpora pro Perl web aplikaci"
|
||||
msgstr "Základní podpora pro Perl web aplikaci."
|
||||
|
||||
#: ../comps-f32.xml.in.h:216 ../comps-f33.xml.in.h:208
|
||||
#: ../comps-f34.xml.in.h:208
|
||||
@ -1155,7 +1156,7 @@ msgstr "PHP"
|
||||
#: ../comps-f32.xml.in.h:217 ../comps-f33.xml.in.h:209
|
||||
#: ../comps-f34.xml.in.h:209
|
||||
msgid "General-purpose web development scripting language."
|
||||
msgstr "Široce použitelný skriptovací jazyk pro vývoj webu"
|
||||
msgstr "Široce použitelný skriptovací jazyk pro vývoj webu."
|
||||
|
||||
#: ../comps-f32.xml.in.h:218 ../comps-f33.xml.in.h:210
|
||||
#: ../comps-f34.xml.in.h:210
|
||||
@ -1238,7 +1239,7 @@ msgstr "Ruby on Rails"
|
||||
#: ../comps-f32.xml.in.h:233 ../comps-f33.xml.in.h:225
|
||||
#: ../comps-f34.xml.in.h:225
|
||||
msgid "Ruby on Rails web application stack."
|
||||
msgstr "Webový aplikační stack pro Ruby on Rails"
|
||||
msgstr "Webový aplikační stack pro Ruby on Rails."
|
||||
|
||||
#: ../comps-f32.xml.in.h:234 ../comps-f33.xml.in.h:226
|
||||
#: ../comps-f34.xml.in.h:226
|
||||
@ -1287,7 +1288,7 @@ msgstr "Základ Fedora Serveru"
|
||||
#: ../comps-f32.xml.in.h:242 ../comps-f33.xml.in.h:234
|
||||
#: ../comps-f34.xml.in.h:234
|
||||
msgid "Packages mandatory for the server product."
|
||||
msgstr "Povinné balíčky pro Fedora Server"
|
||||
msgstr "Povinné balíčky pro Fedora Server."
|
||||
|
||||
#: ../comps-f32.xml.in.h:243 ../comps-f33.xml.in.h:235
|
||||
#: ../comps-f34.xml.in.h:235
|
||||
@ -1393,7 +1394,7 @@ msgstr "Tomcat"
|
||||
#: ../comps-f32.xml.in.h:260 ../comps-f33.xml.in.h:252
|
||||
#: ../comps-f34.xml.in.h:252
|
||||
msgid "Tomcat web application server."
|
||||
msgstr "Aplikační web server Tomcat"
|
||||
msgstr "Aplikační web server Tomcat."
|
||||
|
||||
#: ../comps-f32.xml.in.h:261 ../comps-f33.xml.in.h:253
|
||||
#: ../comps-f34.xml.in.h:253
|
||||
@ -1469,7 +1470,7 @@ msgstr "Základ Fedora Workstation"
|
||||
#: ../comps-f32.xml.in.h:276 ../comps-f33.xml.in.h:268
|
||||
#: ../comps-f34.xml.in.h:268
|
||||
msgid "Packages mandatory for the workstation product."
|
||||
msgstr "Povinné balíčky pro Fedora Workstation"
|
||||
msgstr "Povinné balíčky pro Fedora Workstation."
|
||||
|
||||
#: ../comps-f32.xml.in.h:277 ../comps-f33.xml.in.h:269
|
||||
#: ../comps-f34.xml.in.h:269
|
||||
@ -1773,7 +1774,7 @@ msgstr "Obsah"
|
||||
|
||||
#: ../comps-f32.xml.in.h:336
|
||||
msgid "Text and other Free content."
|
||||
msgstr "Text a ostatní volný obsah"
|
||||
msgstr "Text a ostatní volný obsah."
|
||||
|
||||
#: ../comps-f32.xml.in.h:337 ../comps-f33.xml.in.h:327
|
||||
#: ../comps-f34.xml.in.h:327
|
||||
@ -2247,7 +2248,7 @@ msgstr "Java platforma"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:123
|
||||
msgid "Java support for the Enterprise Linux Server and Desktop Platforms."
|
||||
msgstr "Podpora Java pro platformy Enterprise Linux Server a Desktop"
|
||||
msgstr "Podpora Java pro platformy Enterprise Linux Server a Desktop."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:124
|
||||
msgid "Kannada Support"
|
||||
@ -2299,7 +2300,7 @@ msgstr "Podpora velkých systémů"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:137
|
||||
msgid "Performance support tools for large systems"
|
||||
msgstr "Výkonnostní podpůrné nástroje pro velké systémy."
|
||||
msgstr "Výkonnostní podpůrné nástroje pro velké systémy"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:138
|
||||
msgid "Latin Support"
|
||||
@ -2650,7 +2651,7 @@ msgstr "Podpora čipových karet"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:227
|
||||
msgid "Support for using smart card authentication."
|
||||
msgstr "Podpora pro autentifikaci smart card"
|
||||
msgstr "Podpora pro autentifikaci smart card."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:228
|
||||
msgid "Southern Ndebele Support"
|
||||
@ -2746,7 +2747,7 @@ msgstr "Podpora SNMP"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:251
|
||||
msgid "SNMP management agent."
|
||||
msgstr "Agent SNMP"
|
||||
msgstr "Agent SNMP."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:252
|
||||
msgid "Web-Based Enterprise Management"
|
||||
@ -2916,7 +2917,7 @@ msgstr "X Window System"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:294
|
||||
msgid "X Window System Support."
|
||||
msgstr "Podpora X Window"
|
||||
msgstr "Podpora X Window."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:297
|
||||
msgid "Xhosa Support"
|
||||
|
30
po/hu.po
30
po/hu.po
@ -13,13 +13,13 @@
|
||||
# Meskó Balázs <meskobalazs@gmail.com>, 2017. #zanata
|
||||
# Meskó Balázs <meskobalazs@gmail.com>, 2018. #zanata
|
||||
# Balázs Meskó <meskobalazs@mailbox.org>, 2020.
|
||||
# Hoppár Zoltán <hopparz@gmail.com>, 2022.
|
||||
# Hoppár Zoltán <hopparz@gmail.com>, 2022, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-07 13:23-0800\n"
|
||||
"PO-Revision-Date: 2022-09-24 16:19+0000\n"
|
||||
"PO-Revision-Date: 2023-10-03 01:35+0000\n"
|
||||
"Last-Translator: Hoppár Zoltán <hopparz@gmail.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.fedoraproject.org/projects/"
|
||||
"fedora-comps/main/hu/>\n"
|
||||
@ -28,7 +28,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
|
||||
#: ../comps-f32.xml.in.h:1 ../comps-f33.xml.in.h:1 ../comps-f34.xml.in.h:1
|
||||
msgid "3D Printing"
|
||||
@ -1141,10 +1141,8 @@ msgstr "Online súgó és dokumentáció"
|
||||
|
||||
#: ../comps-f32.xml.in.h:210 ../comps-f33.xml.in.h:200
|
||||
#: ../comps-f34.xml.in.h:200
|
||||
#, fuzzy
|
||||
#| msgid "Cinnamon Desktop"
|
||||
msgid "Pantheon Desktop"
|
||||
msgstr "Cinnamon asztali környezet"
|
||||
msgstr "Pantheon asztali környezet"
|
||||
|
||||
#: ../comps-f32.xml.in.h:211 ../comps-f33.xml.in.h:201
|
||||
#: ../comps-f34.xml.in.h:201
|
||||
@ -1183,10 +1181,8 @@ msgstr "Általános célú webfejlesztési szkriptnyelv."
|
||||
|
||||
#: ../comps-f32.xml.in.h:218 ../comps-f33.xml.in.h:210
|
||||
#: ../comps-f34.xml.in.h:210
|
||||
#, fuzzy
|
||||
#| msgid "Marathi Support"
|
||||
msgid "VMware Platform Support"
|
||||
msgstr "Maráthi támogatás"
|
||||
msgstr "VMware Platform támogatás"
|
||||
|
||||
#: ../comps-f32.xml.in.h:219 ../comps-f33.xml.in.h:211
|
||||
#: ../comps-f34.xml.in.h:211
|
||||
@ -1218,10 +1214,8 @@ msgstr "A Python tanításához és megtanulásához használt eszközök."
|
||||
|
||||
#: ../comps-f32.xml.in.h:224 ../comps-f33.xml.in.h:216
|
||||
#: ../comps-f34.xml.in.h:216
|
||||
#, fuzzy
|
||||
#| msgid "Python"
|
||||
msgid "Python Science"
|
||||
msgstr "Python"
|
||||
msgstr "Python Science"
|
||||
|
||||
#: ../comps-f32.xml.in.h:225 ../comps-f33.xml.in.h:217
|
||||
#: ../comps-f34.xml.in.h:217
|
||||
@ -1485,17 +1479,13 @@ msgstr ""
|
||||
#. Translators: Don't translate this product name
|
||||
#: ../comps-f32.xml.in.h:272 ../comps-f33.xml.in.h:264
|
||||
#: ../comps-f34.xml.in.h:264
|
||||
#, fuzzy
|
||||
#| msgid "Fedora Workstation product core"
|
||||
msgid "Fedora Workstation ostree support"
|
||||
msgstr "Fedora Workstation termékmag"
|
||||
msgstr "Fedora Workstation ostree támogatás"
|
||||
|
||||
#: ../comps-f32.xml.in.h:273 ../comps-f33.xml.in.h:265
|
||||
#: ../comps-f34.xml.in.h:265
|
||||
#, fuzzy
|
||||
#| msgid "Packages mandatory for the workstation product."
|
||||
msgid "Packages mandatory for the workstation ostree product."
|
||||
msgstr "A munkaállomás változat kötelező csomagjai."
|
||||
msgstr "A munkaállomás ostree változat kötelező csomagjai."
|
||||
|
||||
#. Translators: Don't translate this product name
|
||||
#: ../comps-f32.xml.in.h:275 ../comps-f33.xml.in.h:267
|
||||
@ -1681,10 +1671,8 @@ msgstr "MATE asztali környezet"
|
||||
|
||||
#: ../comps-f32.xml.in.h:313 ../comps-f33.xml.in.h:305
|
||||
#: ../comps-f34.xml.in.h:305
|
||||
#, fuzzy
|
||||
#| msgid "KDE Desktop"
|
||||
msgid "Deepin Desktop"
|
||||
msgstr "KDE asztali környezet"
|
||||
msgstr "Deepin asztali környezet"
|
||||
|
||||
#: ../comps-f32.xml.in.h:314 ../comps-f33.xml.in.h:306
|
||||
#: ../comps-f34.xml.in.h:306
|
||||
|
285
po/id.po
285
po/id.po
@ -10,21 +10,22 @@
|
||||
# Teguh Dwicaksana <dheche@songolimo.net>, 2005
|
||||
# Kevin Fenzi <kevin@scrye.com>, 2016. #zanata
|
||||
# Andika Triwidada <andika@gmail.com>, 2018. #zanata
|
||||
# Arif Budiman <arifpedia@gmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-07 13:23-0800\n"
|
||||
"PO-Revision-Date: 2018-02-23 02:43+0000\n"
|
||||
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/projects/p/comps/"
|
||||
"language/id/)\n"
|
||||
"PO-Revision-Date: 2023-11-28 16:01+0000\n"
|
||||
"Last-Translator: Arif Budiman <arifpedia@gmail.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.fedoraproject.org/projects/"
|
||||
"fedora-comps/main/id/>\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Zanata 4.6.2\n"
|
||||
"X-Generator: Weblate 5.2.1\n"
|
||||
|
||||
#: ../comps-f32.xml.in.h:1 ../comps-f33.xml.in.h:1 ../comps-f34.xml.in.h:1
|
||||
msgid "3D Printing"
|
||||
@ -53,19 +54,19 @@ msgstr "Peralatan Anaconda"
|
||||
|
||||
#: ../comps-f32.xml.in.h:6 ../comps-f33.xml.in.h:6 ../comps-f34.xml.in.h:6
|
||||
msgid "ARM Tools"
|
||||
msgstr ""
|
||||
msgstr "Alat bantu ARM"
|
||||
|
||||
#: ../comps-f32.xml.in.h:7 ../comps-f33.xml.in.h:7 ../comps-f34.xml.in.h:7
|
||||
msgid "Tools for working with arm systems"
|
||||
msgstr ""
|
||||
msgstr "Alat bantu untuk bekerja dengan sistem arm"
|
||||
|
||||
#: ../comps-f32.xml.in.h:8 ../comps-f33.xml.in.h:8 ../comps-f34.xml.in.h:8
|
||||
msgid "x86 Baremetal Tools"
|
||||
msgstr ""
|
||||
msgstr "Alat bantu Baremetal x86"
|
||||
|
||||
#: ../comps-f32.xml.in.h:9 ../comps-f33.xml.in.h:9 ../comps-f34.xml.in.h:9
|
||||
msgid "Tools for working with baremetal x86 systems"
|
||||
msgstr ""
|
||||
msgstr "Alat bantu untuk bekerja dengan sistem x86 baremetal"
|
||||
|
||||
#: ../comps-f32.xml.in.h:10 ../comps-f33.xml.in.h:10 ../comps-f34.xml.in.h:10
|
||||
msgid "Audio Production"
|
||||
@ -139,6 +140,8 @@ msgid ""
|
||||
"Cinnamon provides a desktop with a traditional layout, advanced features, "
|
||||
"easy to use, powerful and flexible."
|
||||
msgstr ""
|
||||
"Cinnamon menyediakan desktop dengan tata letak tradisional, fitur-fitur "
|
||||
"canggih, mudah digunakan, kuat, dan fleksibel."
|
||||
|
||||
#: ../comps-f32.xml.in.h:25 ../comps-f33.xml.in.h:23 ../comps-f34.xml.in.h:23
|
||||
msgid "Cloud Infrastructure"
|
||||
@ -168,15 +171,16 @@ msgstr "Peralatan Server Cloud"
|
||||
msgid ""
|
||||
"Software for servers and system images that run in \"cloud\" environments"
|
||||
msgstr ""
|
||||
"Perangkat lunak untuk server dan image sistem yang berjalan di lingkungan "
|
||||
"\"cloud\""
|
||||
|
||||
#: ../comps-f32.xml.in.h:31 ../comps-f33.xml.in.h:29 ../comps-f34.xml.in.h:29
|
||||
#, fuzzy
|
||||
msgid "Compiz"
|
||||
msgstr "Destop MATE"
|
||||
msgstr "Compiz"
|
||||
|
||||
#: ../comps-f32.xml.in.h:32 ../comps-f33.xml.in.h:30 ../comps-f34.xml.in.h:30
|
||||
msgid "This package group adds Compiz and Emerald"
|
||||
msgstr ""
|
||||
msgstr "Grup paket ini menambahkan Compiz dan Emerald"
|
||||
|
||||
#: ../comps-f32.xml.in.h:33 ../comps-f33.xml.in.h:31 ../comps-f34.xml.in.h:31
|
||||
msgid "Container Management"
|
||||
@ -201,11 +205,11 @@ msgstr "Jalur Kritis (Aplikasi)"
|
||||
|
||||
#: ../comps-f32.xml.in.h:38 ../comps-f33.xml.in.h:36 ../comps-f34.xml.in.h:36
|
||||
msgid "A set of applications that are considered critical path"
|
||||
msgstr ""
|
||||
msgstr "Satu set aplikasi yang dianggap sebagai jalur kritis"
|
||||
|
||||
#: ../comps-f32.xml.in.h:39 ../comps-f33.xml.in.h:37 ../comps-f34.xml.in.h:37
|
||||
msgid "Critical Path (Base)"
|
||||
msgstr ""
|
||||
msgstr "Jalur Kritis (Dasar)"
|
||||
|
||||
#: ../comps-f32.xml.in.h:40 ../comps-f33.xml.in.h:38 ../comps-f34.xml.in.h:38
|
||||
msgid ""
|
||||
@ -216,20 +220,16 @@ msgstr ""
|
||||
"Critical Path bisa berfungsi pada semua Fedora spins"
|
||||
|
||||
#: ../comps-f32.xml.in.h:41 ../comps-f33.xml.in.h:39 ../comps-f34.xml.in.h:39
|
||||
#, fuzzy
|
||||
#| msgid "Critical Path (KDE)"
|
||||
msgid "Critical Path (Deepin desktop)"
|
||||
msgstr "Jalur Kritis (KDE)"
|
||||
msgstr "Jalur Kritis (desktop Deepin)"
|
||||
|
||||
#: ../comps-f32.xml.in.h:42 ../comps-f33.xml.in.h:40 ../comps-f34.xml.in.h:40
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "A set of packages that provide the Critical Path functionality for the "
|
||||
#| "LXQt desktop"
|
||||
msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the "
|
||||
"Deepin desktop"
|
||||
msgstr "Satu set paket yang menyediakan fungsi Jalur Kritis untuk desktop LXQt"
|
||||
msgstr ""
|
||||
"Satu set paket yang menyediakan fungsionalitas Jalur Kritis untuk desktop "
|
||||
"Deepin"
|
||||
|
||||
#: ../comps-f32.xml.in.h:43 ../comps-f33.xml.in.h:41 ../comps-f34.xml.in.h:41
|
||||
msgid "Critical Path (GNOME)"
|
||||
@ -253,6 +253,7 @@ msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the KDE "
|
||||
"desktop"
|
||||
msgstr ""
|
||||
"Satu set paket yang menyediakan fungsionalitas Jalur Kritis untuk desktop KDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:47 ../comps-f33.xml.in.h:45 ../comps-f34.xml.in.h:45
|
||||
msgid "Critical Path (LXDE)"
|
||||
@ -263,6 +264,8 @@ msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the LXDE "
|
||||
"desktop"
|
||||
msgstr ""
|
||||
"Satu set paket yang menyediakan fungsionalitas Jalur Kritis untuk desktop "
|
||||
"LXDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:49 ../comps-f33.xml.in.h:47 ../comps-f34.xml.in.h:47
|
||||
msgid "Critical Path (LXQt)"
|
||||
@ -283,6 +286,8 @@ msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the Xfce "
|
||||
"desktop"
|
||||
msgstr ""
|
||||
"Satu set paket yang menyediakan fungsionalitas Jalur Kritis untuk desktop "
|
||||
"Xfce"
|
||||
|
||||
#: ../comps-f32.xml.in.h:53 ../comps-f33.xml.in.h:51 ../comps-f34.xml.in.h:51
|
||||
msgid "D Development Tools and Libraries"
|
||||
@ -296,42 +301,36 @@ msgstr ""
|
||||
"geany-tag."
|
||||
|
||||
#: ../comps-f32.xml.in.h:55 ../comps-f33.xml.in.h:53 ../comps-f34.xml.in.h:53
|
||||
#, fuzzy
|
||||
#| msgid "Desktop Environments"
|
||||
msgid "Deepin Desktop Environment"
|
||||
msgstr "Lingkungan Desktop"
|
||||
msgstr "Lingkungan Desktop Deepin"
|
||||
|
||||
#: ../comps-f32.xml.in.h:56 ../comps-f33.xml.in.h:54 ../comps-f34.xml.in.h:54
|
||||
msgid ""
|
||||
"Deepin Desktop is a desktop environment aims at being elegant and easy to "
|
||||
"use."
|
||||
msgstr ""
|
||||
"Desktop Deepin adalah sebuah lingkungan desktop yang bertujuan untuk menjadi "
|
||||
"elegan dan mudah digunakan."
|
||||
|
||||
#: ../comps-f32.xml.in.h:57 ../comps-f33.xml.in.h:55 ../comps-f34.xml.in.h:55
|
||||
#, fuzzy
|
||||
#| msgid "Internet Applications"
|
||||
msgid "Deepin Desktop Applications"
|
||||
msgstr "Aplikasi Internet"
|
||||
msgstr "Aplikasi Desktop Deepin"
|
||||
|
||||
#: ../comps-f32.xml.in.h:58 ../comps-f33.xml.in.h:56 ../comps-f34.xml.in.h:56
|
||||
#, fuzzy
|
||||
#| msgid "Fonts packages for rendering text on the desktop."
|
||||
msgid "Media packages for Deepin Desktop"
|
||||
msgstr "Paket fonta untuk merender teks di desktop."
|
||||
msgstr "Paket media untuk Desktop Deepin"
|
||||
|
||||
#: ../comps-f32.xml.in.h:59 ../comps-f33.xml.in.h:57 ../comps-f34.xml.in.h:57
|
||||
#, fuzzy
|
||||
#| msgid "Remote Desktop Clients"
|
||||
msgid "Deepin Desktop Office"
|
||||
msgstr "Klien Destop Jarak-jauh"
|
||||
msgstr "Office Desktop Deepin"
|
||||
|
||||
#: ../comps-f32.xml.in.h:60 ../comps-f33.xml.in.h:58 ../comps-f34.xml.in.h:58
|
||||
msgid "Office suite for Deepin Desktop"
|
||||
msgstr ""
|
||||
msgstr "Suite Office untuk Desktop Deepin"
|
||||
|
||||
#: ../comps-f32.xml.in.h:61 ../comps-f33.xml.in.h:59 ../comps-f34.xml.in.h:59
|
||||
msgid "Design Suite"
|
||||
msgstr ""
|
||||
msgstr "Suite Desain"
|
||||
|
||||
#: ../comps-f32.xml.in.h:62 ../comps-f33.xml.in.h:60 ../comps-f34.xml.in.h:60
|
||||
msgid ""
|
||||
@ -364,9 +363,8 @@ msgstr ""
|
||||
|
||||
#: ../comps-f32.xml.in.h:67 ../comps-f33.xml.in.h:65 ../comps-f34.xml.in.h:65
|
||||
#: ../comps-epel7.xml.in.h:56
|
||||
#, fuzzy
|
||||
msgid "Dial-up Networking Support"
|
||||
msgstr "Dukungan Dialup Networking"
|
||||
msgstr "Dukungan Jaringan Dial-up"
|
||||
|
||||
#: ../comps-f32.xml.in.h:68 ../comps-f33.xml.in.h:66 ../comps-f34.xml.in.h:66
|
||||
#: ../comps-epel7.xml.in.h:60
|
||||
@ -465,6 +463,8 @@ msgid ""
|
||||
"Enlightenment is a lean, fast, modular and very extensible windowed desktop "
|
||||
"environment."
|
||||
msgstr ""
|
||||
"Enlightenment adalah lingkungan desktop berjendela yang ramping, cepat, "
|
||||
"modular, dan sangat dapat diperluas."
|
||||
|
||||
#: ../comps-f32.xml.in.h:88
|
||||
msgid "Epiphany Web Browser"
|
||||
@ -521,6 +521,8 @@ msgid ""
|
||||
"Provides central directory services for identity, policy management and "
|
||||
"auditing."
|
||||
msgstr ""
|
||||
"Menyediakan layanan direktori pusat untuk identitas, manajemen kebijakan, "
|
||||
"dan audit."
|
||||
|
||||
#: ../comps-f32.xml.in.h:100 ../comps-f33.xml.in.h:96 ../comps-f34.xml.in.h:96
|
||||
msgid "FTP Server"
|
||||
@ -548,16 +550,17 @@ msgstr "GNOME"
|
||||
#: ../comps-f34.xml.in.h:101
|
||||
msgid "GNOME is a highly intuitive and user friendly desktop environment."
|
||||
msgstr ""
|
||||
"GNOME adalah lingkungan desktop yang sangat intuitif dan ramah pengguna."
|
||||
|
||||
#: ../comps-f32.xml.in.h:106 ../comps-f33.xml.in.h:102
|
||||
#: ../comps-f34.xml.in.h:102
|
||||
msgid "Extra games for the GNOME Desktop"
|
||||
msgstr ""
|
||||
msgstr "Permainan tambahan untuk Desktop GNOME"
|
||||
|
||||
#: ../comps-f32.xml.in.h:107 ../comps-f33.xml.in.h:103
|
||||
#: ../comps-f34.xml.in.h:103
|
||||
msgid "A variety of games for the GNOME Desktop"
|
||||
msgstr ""
|
||||
msgstr "Berbagai permainan untuk Desktop GNOME"
|
||||
|
||||
#: ../comps-f32.xml.in.h:108 ../comps-f33.xml.in.h:104
|
||||
#: ../comps-f34.xml.in.h:104
|
||||
@ -578,9 +581,8 @@ msgstr "Internet Grafis"
|
||||
|
||||
#: ../comps-f32.xml.in.h:111 ../comps-f33.xml.in.h:107
|
||||
#: ../comps-f34.xml.in.h:107
|
||||
#, fuzzy
|
||||
msgid "This group includes graphical email, web, and chat clients."
|
||||
msgstr "Grup ini termasuk email grafis, Web dan klien untuk chat."
|
||||
msgstr "Grup ini mencakup email grafis, web, dan klien obrolan."
|
||||
|
||||
#: ../comps-f32.xml.in.h:112 ../comps-f33.xml.in.h:108
|
||||
#: ../comps-f34.xml.in.h:108
|
||||
@ -597,32 +599,34 @@ msgstr ""
|
||||
#: ../comps-f32.xml.in.h:114 ../comps-f33.xml.in.h:110
|
||||
#: ../comps-f34.xml.in.h:110
|
||||
msgid "Guest Agents"
|
||||
msgstr ""
|
||||
msgstr "Agen Tamu"
|
||||
|
||||
#: ../comps-f32.xml.in.h:115 ../comps-f33.xml.in.h:111
|
||||
#: ../comps-f34.xml.in.h:111
|
||||
msgid "Agents used when running under a hypervisor."
|
||||
msgstr ""
|
||||
msgstr "Agen yang digunakan saat berjalan di bawah hypervisor."
|
||||
|
||||
#: ../comps-f32.xml.in.h:116 ../comps-f33.xml.in.h:112
|
||||
#: ../comps-f34.xml.in.h:112
|
||||
msgid "Guest Desktop Agents"
|
||||
msgstr ""
|
||||
msgstr "Agen Desktop Tamu"
|
||||
|
||||
#: ../comps-f32.xml.in.h:117 ../comps-f33.xml.in.h:113
|
||||
#: ../comps-f34.xml.in.h:113
|
||||
msgid "Agents used when running as a virtualized desktop."
|
||||
msgstr ""
|
||||
msgstr "Agen yang digunakan saat berjalan sebagai desktop tervirtualisasi."
|
||||
|
||||
#: ../comps-f32.xml.in.h:118 ../comps-f33.xml.in.h:114
|
||||
#: ../comps-f34.xml.in.h:114
|
||||
msgid "High Availability"
|
||||
msgstr ""
|
||||
msgstr "Ketersediaan Tinggi"
|
||||
|
||||
#: ../comps-f32.xml.in.h:119 ../comps-f33.xml.in.h:115
|
||||
#: ../comps-f34.xml.in.h:115
|
||||
msgid "Infrastructure for highly available services and/or shared storage."
|
||||
msgstr ""
|
||||
"Infrastruktur untuk layanan yang selalu tersedia dan/atau penyimpanan "
|
||||
"bersama."
|
||||
|
||||
#: ../comps-f32.xml.in.h:120 ../comps-f33.xml.in.h:116
|
||||
#: ../comps-f34.xml.in.h:116
|
||||
@ -632,7 +636,7 @@ msgstr "HAProxy"
|
||||
#: ../comps-f32.xml.in.h:121 ../comps-f33.xml.in.h:117
|
||||
#: ../comps-f34.xml.in.h:117
|
||||
msgid "TCP/HTTP Load Balancer."
|
||||
msgstr ""
|
||||
msgstr "Penyeimbang Beban TCP/HTTP."
|
||||
|
||||
#: ../comps-f32.xml.in.h:122 ../comps-f33.xml.in.h:118
|
||||
#: ../comps-f34.xml.in.h:118
|
||||
@ -660,14 +664,13 @@ msgstr ""
|
||||
|
||||
#: ../comps-f32.xml.in.h:126 ../comps-f33.xml.in.h:122
|
||||
#: ../comps-f34.xml.in.h:122
|
||||
#, fuzzy
|
||||
msgid "Headless Management"
|
||||
msgstr "Manajemen Sistem"
|
||||
msgstr "Manajemen Headless"
|
||||
|
||||
#: ../comps-f32.xml.in.h:127 ../comps-f33.xml.in.h:123
|
||||
#: ../comps-f34.xml.in.h:123
|
||||
msgid "Tools for managing the system without an attached graphical console."
|
||||
msgstr ""
|
||||
msgstr "Alat bantu untuk mengelola sistem tanpa konsol grafis yang terpasang."
|
||||
|
||||
#: ../comps-f32.xml.in.h:128 ../comps-f33.xml.in.h:124
|
||||
#: ../comps-f34.xml.in.h:124 ../comps-epel7.xml.in.h:111
|
||||
@ -719,7 +722,7 @@ msgstr "Aplikasi-aplikasi KDE"
|
||||
#: ../comps-f32.xml.in.h:137 ../comps-f33.xml.in.h:133
|
||||
#: ../comps-f34.xml.in.h:133 ../comps-epel8.xml.in.h:6
|
||||
msgid "A set of commonly used KDE applications"
|
||||
msgstr ""
|
||||
msgstr "Satu set aplikasi KDE yang umum digunakan"
|
||||
|
||||
#: ../comps-f32.xml.in.h:138 ../comps-f33.xml.in.h:134
|
||||
#: ../comps-f34.xml.in.h:134 ../comps-epel8.xml.in.h:7
|
||||
@ -733,6 +736,9 @@ msgid ""
|
||||
"which includes a panel, desktop, system icons and desktop widgets, and many "
|
||||
"powerful KDE applications."
|
||||
msgstr ""
|
||||
"KDE Plasma Workspaces, antarmuka pengguna grafis yang sangat mudah "
|
||||
"dikonfigurasi yang meliputi panel, desktop, ikon sistem dan widget desktop, "
|
||||
"dan banyak aplikasi KDE yang canggih."
|
||||
|
||||
#: ../comps-f32.xml.in.h:140 ../comps-f33.xml.in.h:136
|
||||
#: ../comps-f34.xml.in.h:136 ../comps-epel8.xml.in.h:9
|
||||
@ -766,9 +772,8 @@ msgstr "Pengembangan Piranti Lunak KDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:146 ../comps-f33.xml.in.h:142
|
||||
#: ../comps-f34.xml.in.h:142 ../comps-epel8.xml.in.h:15
|
||||
#, fuzzy
|
||||
msgid "Install these packages to develop Qt and KDE graphical applications."
|
||||
msgstr "Install paket ini untuk develop QT dan aplikasi grafis KDE."
|
||||
msgstr "Instal paket-paket ini untuk mengembangkan aplikasi grafis Qt dan KDE."
|
||||
|
||||
#: ../comps-f32.xml.in.h:147 ../comps-f33.xml.in.h:143
|
||||
#: ../comps-f34.xml.in.h:143
|
||||
@ -782,17 +787,17 @@ msgstr "Aplikasi-aplikasi Telepathy untuk KDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:149 ../comps-f33.xml.in.h:145
|
||||
#: ../comps-f34.xml.in.h:145 ../comps-epel8.xml.in.h:16
|
||||
#, fuzzy
|
||||
msgid "KDE Frameworks 5 Software Development"
|
||||
msgstr "Pengembangan Piranti Lunak KDE"
|
||||
msgstr "Pengembangan Perangkat Lunak KDE Frameworks 5"
|
||||
|
||||
#: ../comps-f32.xml.in.h:150 ../comps-f33.xml.in.h:146
|
||||
#: ../comps-f34.xml.in.h:146 ../comps-epel8.xml.in.h:17
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Install these packages to develop applications using Qt5 and KDE Frameworks "
|
||||
"5."
|
||||
msgstr "Install paket ini untuk develop QT dan aplikasi grafis KDE."
|
||||
msgstr ""
|
||||
"Instal paket-paket ini untuk mengembangkan aplikasi menggunakan Qt5 dan KDE "
|
||||
"Frameworks 5."
|
||||
|
||||
#: ../comps-f32.xml.in.h:151 ../comps-f33.xml.in.h:147
|
||||
#: ../comps-f34.xml.in.h:147
|
||||
@ -839,7 +844,7 @@ msgstr "LibreOffice"
|
||||
#: ../comps-f32.xml.in.h:159 ../comps-f33.xml.in.h:152
|
||||
#: ../comps-f34.xml.in.h:152
|
||||
msgid "LibreOffice Productivity Suite"
|
||||
msgstr ""
|
||||
msgstr "Suite Produktivitas LibreOffice"
|
||||
|
||||
#: ../comps-f32.xml.in.h:160 ../comps-f33.xml.in.h:153
|
||||
#: ../comps-f34.xml.in.h:153
|
||||
@ -851,16 +856,18 @@ msgstr "Pengembangan LibreOffice"
|
||||
msgid ""
|
||||
"These packages are helpful when developing LibreOffice extensions or macros."
|
||||
msgstr ""
|
||||
"Paket-paket ini sangat membantu ketika mengembangkan ekstensi atau makro "
|
||||
"LibreOffice."
|
||||
|
||||
#: ../comps-f32.xml.in.h:162 ../comps-f33.xml.in.h:155
|
||||
#: ../comps-f34.xml.in.h:155
|
||||
msgid "Load Balancer"
|
||||
msgstr ""
|
||||
msgstr "Penyeimbang Beban"
|
||||
|
||||
#: ../comps-f32.xml.in.h:163 ../comps-f33.xml.in.h:156
|
||||
#: ../comps-f34.xml.in.h:156
|
||||
msgid "Load balancing support for network traffic"
|
||||
msgstr ""
|
||||
msgstr "Dukungan penyeimbangan beban untuk lalu lintas jaringan"
|
||||
|
||||
#: ../comps-f32.xml.in.h:164 ../comps-f33.xml.in.h:157
|
||||
#: ../comps-f34.xml.in.h:157
|
||||
@ -870,7 +877,7 @@ msgstr "Aplikasi-aplikasi untuk Destop LXDE"
|
||||
#: ../comps-f32.xml.in.h:165 ../comps-f33.xml.in.h:158
|
||||
#: ../comps-f34.xml.in.h:158
|
||||
msgid "A set of commonly used applications for the LXDE Desktop"
|
||||
msgstr ""
|
||||
msgstr "Satu set aplikasi yang umum digunakan untuk Desktop LXDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:166 ../comps-f33.xml.in.h:159
|
||||
#: ../comps-f34.xml.in.h:159
|
||||
@ -895,24 +902,22 @@ msgstr "Dukungan multimedia untuk LXDE"
|
||||
#: ../comps-f32.xml.in.h:169 ../comps-f33.xml.in.h:162
|
||||
#: ../comps-f34.xml.in.h:162
|
||||
msgid "LXDE Office"
|
||||
msgstr ""
|
||||
msgstr "LXDE Office"
|
||||
|
||||
#: ../comps-f32.xml.in.h:170 ../comps-f33.xml.in.h:163
|
||||
#: ../comps-f34.xml.in.h:163
|
||||
msgid "Office suite for LXDE"
|
||||
msgstr ""
|
||||
msgstr "Suite Office untuk LXDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:171 ../comps-f33.xml.in.h:164
|
||||
#: ../comps-f34.xml.in.h:164
|
||||
#, fuzzy
|
||||
msgid "Applications for the LXQt Desktop"
|
||||
msgstr "Aplikasi-aplikasi untuk Destop LXDE"
|
||||
msgstr "Aplikasi untuk Desktop LXQt"
|
||||
|
||||
#: ../comps-f32.xml.in.h:172 ../comps-f33.xml.in.h:165
|
||||
#: ../comps-f34.xml.in.h:165
|
||||
#, fuzzy
|
||||
msgid "A set of commonly used applications for the LXQt Desktop"
|
||||
msgstr "Aplikasi-aplikasi untuk Destop LXDE"
|
||||
msgstr "Satu set aplikasi yang umum digunakan untuk Desktop LXQt"
|
||||
|
||||
#: ../comps-f32.xml.in.h:173 ../comps-f33.xml.in.h:166
|
||||
#: ../comps-f34.xml.in.h:166
|
||||
@ -921,19 +926,18 @@ msgstr "LXQt"
|
||||
|
||||
#: ../comps-f32.xml.in.h:174 ../comps-f33.xml.in.h:167
|
||||
#: ../comps-f34.xml.in.h:167 ../comps-epel7.xml.in.h:150
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"LXQt is a lightweight X11 desktop environment designed for computers with "
|
||||
"low hardware specifications like netbooks, mobile devices or older computers."
|
||||
msgstr ""
|
||||
"LXDE adalah lingkungan desktop ringan X11 yang didesain untuk komputer "
|
||||
"dengan spesifikasi perangkat keras rendah seperti netbook, perangkat mobile "
|
||||
"atau komputer lama."
|
||||
"LXQt adalah lingkungan desktop X11 ringan yang dirancang untuk komputer "
|
||||
"dengan spesifikasi perangkat keras yang rendah seperti netbook, perangkat "
|
||||
"seluler, atau komputer lama."
|
||||
|
||||
#: ../comps-f32.xml.in.h:175 ../comps-f33.xml.in.h:168
|
||||
#: ../comps-f34.xml.in.h:168
|
||||
msgid "Translations of LXQt"
|
||||
msgstr ""
|
||||
msgstr "Terjemahan LXQt"
|
||||
|
||||
#: ../comps-f32.xml.in.h:176 ../comps-f33.xml.in.h:169
|
||||
#: ../comps-f34.xml.in.h:169
|
||||
@ -942,14 +946,13 @@ msgstr "Dukungan multimedia untuk LXQt"
|
||||
|
||||
#: ../comps-f32.xml.in.h:177 ../comps-f33.xml.in.h:170
|
||||
#: ../comps-f34.xml.in.h:170
|
||||
#, fuzzy
|
||||
msgid "LXQt Office"
|
||||
msgstr "Perkantoran KDE"
|
||||
msgstr "Office LXQt"
|
||||
|
||||
#: ../comps-f32.xml.in.h:178 ../comps-f33.xml.in.h:171
|
||||
#: ../comps-f34.xml.in.h:171
|
||||
msgid "Office suite for LXQt"
|
||||
msgstr ""
|
||||
msgstr "Suite Office untuk LXQt"
|
||||
|
||||
#: ../comps-f32.xml.in.h:179 ../comps-f33.xml.in.h:172
|
||||
#: ../comps-f34.xml.in.h:172
|
||||
@ -965,15 +968,13 @@ msgstr ""
|
||||
|
||||
#: ../comps-f32.xml.in.h:181 ../comps-f33.xml.in.h:174
|
||||
#: ../comps-f34.xml.in.h:174
|
||||
#, fuzzy
|
||||
msgid "MATE Applications"
|
||||
msgstr "Aplikasi-aplikasi KDE"
|
||||
msgstr "Aplikasi MATE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:182 ../comps-f33.xml.in.h:175
|
||||
#: ../comps-f34.xml.in.h:175
|
||||
#, fuzzy
|
||||
msgid "Applications for the MATE Desktop."
|
||||
msgstr "Aplikasi-aplikasi untuk Destop LXDE"
|
||||
msgstr "Aplikasi untuk Desktop MATE."
|
||||
|
||||
#: ../comps-f32.xml.in.h:183 ../comps-f33.xml.in.h:176
|
||||
#: ../comps-f34.xml.in.h:176 ../comps-epel7.xml.in.h:164
|
||||
@ -987,6 +988,9 @@ msgid ""
|
||||
"interface for users who seek a simple easy to use traditional desktop "
|
||||
"interface."
|
||||
msgstr ""
|
||||
"MATE Desktop berbasis GNOME 2 dan menyediakan antarmuka pengguna grafis yang "
|
||||
"kuat untuk pengguna yang mencari antarmuka desktop tradisional yang "
|
||||
"sederhana dan mudah digunakan."
|
||||
|
||||
#: ../comps-f32.xml.in.h:185
|
||||
msgid "Medical Applications"
|
||||
@ -994,7 +998,7 @@ msgstr "Aplikasi-aplikasi Medis"
|
||||
|
||||
#: ../comps-f32.xml.in.h:186
|
||||
msgid "This is a group of applications related to health care."
|
||||
msgstr ""
|
||||
msgstr "Ini adalah kelompok aplikasi yang terkait dengan perawatan kesehatan."
|
||||
|
||||
#: ../comps-f32.xml.in.h:187 ../comps-f33.xml.in.h:178
|
||||
#: ../comps-f34.xml.in.h:178 ../comps-epel7.xml.in.h:166
|
||||
@ -1004,12 +1008,12 @@ msgstr "Milkymist"
|
||||
#: ../comps-f32.xml.in.h:188 ../comps-f33.xml.in.h:179
|
||||
#: ../comps-f34.xml.in.h:179 ../comps-epel7.xml.in.h:167
|
||||
msgid "Toolchain for Milkymist hardware engineers."
|
||||
msgstr ""
|
||||
msgstr "Rangkaian alat untuk para insinyur perangkat keras Milkymist."
|
||||
|
||||
#: ../comps-f32.xml.in.h:189 ../comps-f33.xml.in.h:180
|
||||
#: ../comps-f34.xml.in.h:180
|
||||
msgid "MinGW cross-compiler"
|
||||
msgstr ""
|
||||
msgstr "Kompiler silang MinGW"
|
||||
|
||||
#: ../comps-f32.xml.in.h:190 ../comps-f33.xml.in.h:181
|
||||
#: ../comps-f34.xml.in.h:181
|
||||
@ -1017,6 +1021,8 @@ msgid ""
|
||||
"Support for cross-compiling programs to 32 bit Windows targets, testing "
|
||||
"them, and building installers, all from within Fedora."
|
||||
msgstr ""
|
||||
"Dukungan untuk kompilasi silang program ke target Windows 32 bit, "
|
||||
"mengujinya, dan membangun pemasang, semuanya dari dalam Fedora."
|
||||
|
||||
#: ../comps-f32.xml.in.h:191 ../comps-f33.xml.in.h:182
|
||||
#: ../comps-f34.xml.in.h:182
|
||||
@ -1026,7 +1032,7 @@ msgstr "MongoDB"
|
||||
#: ../comps-f32.xml.in.h:192 ../comps-f33.xml.in.h:183
|
||||
#: ../comps-f34.xml.in.h:183
|
||||
msgid "Scalable, high-performance NoSQL database."
|
||||
msgstr ""
|
||||
msgstr "Basis data NoSQL yang dapat diskalakan dan berkinerja tinggi."
|
||||
|
||||
#: ../comps-f32.xml.in.h:193 ../comps-f33.xml.in.h:184
|
||||
#: ../comps-f34.xml.in.h:184
|
||||
@ -1036,7 +1042,7 @@ msgstr "Multimedia"
|
||||
#: ../comps-f32.xml.in.h:194 ../comps-f33.xml.in.h:185
|
||||
#: ../comps-f34.xml.in.h:185
|
||||
msgid "Audio/video framework common to desktops"
|
||||
msgstr ""
|
||||
msgstr "Kerangka kerja audio/video yang umum untuk desktop"
|
||||
|
||||
#: ../comps-f32.xml.in.h:195 ../comps-f33.xml.in.h:186
|
||||
#: ../comps-f34.xml.in.h:186
|
||||
@ -1048,6 +1054,8 @@ msgstr "Basis data MariaDB (MySQL)"
|
||||
msgid ""
|
||||
"This package group contains packages useful for use with MariaDB (MySQL)."
|
||||
msgstr ""
|
||||
"Grup paket ini berisi paket-paket yang berguna untuk digunakan dengan "
|
||||
"MariaDB (MySQL)."
|
||||
|
||||
#: ../comps-f32.xml.in.h:197 ../comps-f33.xml.in.h:188
|
||||
#: ../comps-f34.xml.in.h:188
|
||||
@ -1065,7 +1073,7 @@ msgstr ""
|
||||
#: ../comps-f32.xml.in.h:199 ../comps-f33.xml.in.h:190
|
||||
#: ../comps-f34.xml.in.h:190
|
||||
msgid "Common NetworkManager Submodules"
|
||||
msgstr ""
|
||||
msgstr "Submodul NetworkManager Umum"
|
||||
|
||||
#: ../comps-f32.xml.in.h:200 ../comps-f33.xml.in.h:191
|
||||
#: ../comps-f34.xml.in.h:191
|
||||
@ -1073,11 +1081,13 @@ msgid ""
|
||||
"This group contains NetworkManager submodules that are commonly used, but "
|
||||
"may not be wanted in some streamlined configurations."
|
||||
msgstr ""
|
||||
"Grup ini berisi submodul NetworkManager yang biasanya digunakan, tetapi "
|
||||
"mungkin tidak diinginkan dalam beberapa konfigurasi yang disederhanakan."
|
||||
|
||||
#: ../comps-f32.xml.in.h:201 ../comps-f33.xml.in.h:192
|
||||
#: ../comps-f34.xml.in.h:192
|
||||
msgid "Neuron Modelling Simulators"
|
||||
msgstr ""
|
||||
msgstr "Simulator Pemodelan Neuron"
|
||||
|
||||
#: ../comps-f32.xml.in.h:202 ../comps-f33.xml.in.h:193
|
||||
#: ../comps-f34.xml.in.h:193
|
||||
@ -1085,6 +1095,8 @@ msgid ""
|
||||
"This group includes simulators used in modelling of neurons and their "
|
||||
"networks."
|
||||
msgstr ""
|
||||
"Kelompok ini mencakup simulator yang digunakan dalam pemodelan neuron dan "
|
||||
"jaringannya."
|
||||
|
||||
#: ../comps-f32.xml.in.h:203 ../comps-f33.xml.in.h:194
|
||||
#: ../comps-f34.xml.in.h:194
|
||||
@ -1105,13 +1117,12 @@ msgstr "OCaml"
|
||||
|
||||
#: ../comps-f32.xml.in.h:206 ../comps-f33.xml.in.h:197
|
||||
#: ../comps-f34.xml.in.h:197
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Support for developing software using the Objective Caml programming "
|
||||
"language and libraries."
|
||||
msgstr ""
|
||||
"Dukungan untuk mengembangkan perangkat lunak menggunakan bahasa pemrograman "
|
||||
"dan pustaka Objective CAML. "
|
||||
"dan pustaka Objective Caml."
|
||||
|
||||
#: ../comps-f32.xml.in.h:207 ../comps-f33.xml.in.h:198
|
||||
#: ../comps-f34.xml.in.h:198
|
||||
@ -1129,15 +1140,13 @@ msgstr "Bantuan dan Dokumentasi Online"
|
||||
|
||||
#: ../comps-f32.xml.in.h:210 ../comps-f33.xml.in.h:200
|
||||
#: ../comps-f34.xml.in.h:200
|
||||
#, fuzzy
|
||||
#| msgid "Cinnamon Desktop"
|
||||
msgid "Pantheon Desktop"
|
||||
msgstr "Desktop Cinnamon"
|
||||
msgstr "Desktop Pantheon"
|
||||
|
||||
#: ../comps-f32.xml.in.h:211 ../comps-f33.xml.in.h:201
|
||||
#: ../comps-f34.xml.in.h:201
|
||||
msgid "The Pantheon desktop environment is the DE that powers elementaryOS."
|
||||
msgstr ""
|
||||
msgstr "Lingkungan desktop Pantheon adalah DE yang memberdayakan elementaryOS."
|
||||
|
||||
#: ../comps-f32.xml.in.h:212 ../comps-f33.xml.in.h:202
|
||||
#: ../comps-f34.xml.in.h:202
|
||||
@ -1168,19 +1177,17 @@ msgstr "PHP"
|
||||
#: ../comps-f32.xml.in.h:217 ../comps-f33.xml.in.h:209
|
||||
#: ../comps-f34.xml.in.h:209
|
||||
msgid "General-purpose web development scripting language."
|
||||
msgstr ""
|
||||
msgstr "Bahasa skrip pengembangan web untuk keperluan umum."
|
||||
|
||||
#: ../comps-f32.xml.in.h:218 ../comps-f33.xml.in.h:210
|
||||
#: ../comps-f34.xml.in.h:210
|
||||
#, fuzzy
|
||||
#| msgid "Marathi Support"
|
||||
msgid "VMware Platform Support"
|
||||
msgstr "Dukungan Marathi"
|
||||
msgstr "Dukungan Platform VMware"
|
||||
|
||||
#: ../comps-f32.xml.in.h:219 ../comps-f33.xml.in.h:211
|
||||
#: ../comps-f34.xml.in.h:211
|
||||
msgid "Packages to install in VMware virtual machines"
|
||||
msgstr ""
|
||||
msgstr "Paket yang akan diinstal di mesin virtual VMware"
|
||||
|
||||
#: ../comps-f32.xml.in.h:220 ../comps-f33.xml.in.h:212
|
||||
#: ../comps-f34.xml.in.h:212
|
||||
@ -1198,24 +1205,22 @@ msgstr ""
|
||||
#: ../comps-f32.xml.in.h:222 ../comps-f33.xml.in.h:214
|
||||
#: ../comps-f34.xml.in.h:214
|
||||
msgid "Python Classroom"
|
||||
msgstr ""
|
||||
msgstr "Ruang Kelas Python"
|
||||
|
||||
#: ../comps-f32.xml.in.h:223 ../comps-f33.xml.in.h:215
|
||||
#: ../comps-f34.xml.in.h:215
|
||||
msgid "Tools used to teach and learn Python."
|
||||
msgstr ""
|
||||
msgstr "Alat bantu yang digunakan untuk mengajar dan belajar Python."
|
||||
|
||||
#: ../comps-f32.xml.in.h:224 ../comps-f33.xml.in.h:216
|
||||
#: ../comps-f34.xml.in.h:216
|
||||
#, fuzzy
|
||||
#| msgid "Python"
|
||||
msgid "Python Science"
|
||||
msgstr "Python"
|
||||
msgstr "Sains Python"
|
||||
|
||||
#: ../comps-f32.xml.in.h:225 ../comps-f33.xml.in.h:217
|
||||
#: ../comps-f34.xml.in.h:217
|
||||
msgid "Tools used to do science in Python."
|
||||
msgstr ""
|
||||
msgstr "Alat bantu yang digunakan untuk melakukan sains di Python."
|
||||
|
||||
#: ../comps-f32.xml.in.h:226 ../comps-f33.xml.in.h:218
|
||||
#: ../comps-f34.xml.in.h:218
|
||||
@ -1225,7 +1230,7 @@ msgstr "Robotika"
|
||||
#: ../comps-f32.xml.in.h:227 ../comps-f33.xml.in.h:219
|
||||
#: ../comps-f34.xml.in.h:219
|
||||
msgid "Suite of packages for robotics development"
|
||||
msgstr ""
|
||||
msgstr "Serangkaian paket untuk pengembangan robotika"
|
||||
|
||||
#: ../comps-f32.xml.in.h:228 ../comps-f33.xml.in.h:220
|
||||
#: ../comps-f34.xml.in.h:220
|
||||
@ -1235,7 +1240,7 @@ msgstr "Peralatan untuk Pengembangan RPM"
|
||||
#: ../comps-f32.xml.in.h:229 ../comps-f33.xml.in.h:221
|
||||
#: ../comps-f34.xml.in.h:221
|
||||
msgid "These tools include core development tools such rpmbuild."
|
||||
msgstr ""
|
||||
msgstr "Alat bantu ini termasuk alat pengembangan inti seperti rpmbuild."
|
||||
|
||||
#: ../comps-f32.xml.in.h:230 ../comps-f33.xml.in.h:222
|
||||
#: ../comps-f34.xml.in.h:222
|
||||
@ -1250,17 +1255,17 @@ msgstr "Dukungan dasar untuk bahasa pemrograman "
|
||||
#: ../comps-f32.xml.in.h:232 ../comps-f33.xml.in.h:224
|
||||
#: ../comps-f34.xml.in.h:224
|
||||
msgid "Ruby on Rails"
|
||||
msgstr ""
|
||||
msgstr "Ruby on Rails"
|
||||
|
||||
#: ../comps-f32.xml.in.h:233 ../comps-f33.xml.in.h:225
|
||||
#: ../comps-f34.xml.in.h:225
|
||||
msgid "Ruby on Rails web application stack."
|
||||
msgstr ""
|
||||
msgstr "Tumpukan aplikasi web Ruby on Rails."
|
||||
|
||||
#: ../comps-f32.xml.in.h:234 ../comps-f33.xml.in.h:226
|
||||
#: ../comps-f34.xml.in.h:226
|
||||
msgid "Security Lab"
|
||||
msgstr ""
|
||||
msgstr "Lab Keamanan"
|
||||
|
||||
#: ../comps-f32.xml.in.h:235 ../comps-f33.xml.in.h:227
|
||||
#: ../comps-f34.xml.in.h:227
|
||||
@ -1268,6 +1273,8 @@ msgid ""
|
||||
"Tools for security auditing, forensics, system rescue, and teaching security "
|
||||
"testing methodologies."
|
||||
msgstr ""
|
||||
"Alat bantu untuk audit keamanan, forensik, penyelamatan sistem, dan "
|
||||
"mengajarkan metodologi pengujian keamanan."
|
||||
|
||||
#: ../comps-f32.xml.in.h:236 ../comps-f33.xml.in.h:228
|
||||
#: ../comps-f34.xml.in.h:228
|
||||
@ -1299,12 +1306,12 @@ msgstr ""
|
||||
#: ../comps-f32.xml.in.h:241 ../comps-f33.xml.in.h:233
|
||||
#: ../comps-f34.xml.in.h:233
|
||||
msgid "Fedora Server product core"
|
||||
msgstr ""
|
||||
msgstr "Inti produk Fedora Server"
|
||||
|
||||
#: ../comps-f32.xml.in.h:242 ../comps-f33.xml.in.h:234
|
||||
#: ../comps-f34.xml.in.h:234
|
||||
msgid "Packages mandatory for the server product."
|
||||
msgstr ""
|
||||
msgstr "Paket wajib untuk produk server."
|
||||
|
||||
#: ../comps-f32.xml.in.h:243 ../comps-f33.xml.in.h:235
|
||||
#: ../comps-f34.xml.in.h:235
|
||||
@ -1341,11 +1348,10 @@ msgstr "Basisdata PostgreSQL"
|
||||
|
||||
#: ../comps-f32.xml.in.h:248 ../comps-f33.xml.in.h:240
|
||||
#: ../comps-f34.xml.in.h:240
|
||||
#, fuzzy
|
||||
msgid "This package group includes packages useful for use with PostgreSQL."
|
||||
msgstr ""
|
||||
"Di grup paket ini termasuk paket-paket yang berguna untuk digunakan dengan "
|
||||
"Postgresql."
|
||||
"Grup paket ini mencakup paket-paket yang berguna untuk digunakan dengan "
|
||||
"PostgreSQL."
|
||||
|
||||
#: ../comps-f32.xml.in.h:249 ../comps-f33.xml.in.h:241
|
||||
#: ../comps-f34.xml.in.h:241
|
||||
@ -1355,7 +1361,7 @@ msgstr "Baku"
|
||||
#: ../comps-f32.xml.in.h:250 ../comps-f33.xml.in.h:242
|
||||
#: ../comps-f34.xml.in.h:242
|
||||
msgid "Common set of utilities that extend the minimal installation."
|
||||
msgstr ""
|
||||
msgstr "Kumpulan utilitas umum yang memperluas instalasi minimal."
|
||||
|
||||
#: ../comps-f32.xml.in.h:251 ../comps-f33.xml.in.h:243
|
||||
#: ../comps-f34.xml.in.h:243
|
||||
@ -1399,13 +1405,12 @@ msgstr "Internet berbasis text"
|
||||
|
||||
#: ../comps-f32.xml.in.h:258 ../comps-f33.xml.in.h:250
|
||||
#: ../comps-f34.xml.in.h:250
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"This group includes text-based email, web, and chat clients. These "
|
||||
"applications do not require the X Window System."
|
||||
msgstr ""
|
||||
"Di dalam grup ini termasuk email berbasis text, Web dan klien untuk chat. "
|
||||
"Aplikasi ini tidak memerlukan Sistem X Window."
|
||||
"Kelompok ini mencakup klien email, web, dan obrolan berbasis teks. Aplikasi-"
|
||||
"aplikasi ini tidak memerlukan X Window System."
|
||||
|
||||
#: ../comps-f32.xml.in.h:259 ../comps-f33.xml.in.h:251
|
||||
#: ../comps-f34.xml.in.h:251
|
||||
@ -1425,7 +1430,7 @@ msgstr "Vagrant dengan dukungan libvirt"
|
||||
#: ../comps-f32.xml.in.h:262 ../comps-f33.xml.in.h:254
|
||||
#: ../comps-f34.xml.in.h:254
|
||||
msgid "These packages provide Vagrant with libvirt provider support"
|
||||
msgstr ""
|
||||
msgstr "Paket-paket ini menyediakan Vagrant dengan dukungan penyedia libvirt"
|
||||
|
||||
#: ../comps-f32.xml.in.h:263 ../comps-f33.xml.in.h:255
|
||||
#: ../comps-f34.xml.in.h:255 ../comps-epel7.xml.in.h:277
|
||||
@ -1435,17 +1440,17 @@ msgstr "Virtualisasi"
|
||||
#: ../comps-f32.xml.in.h:264 ../comps-f33.xml.in.h:256
|
||||
#: ../comps-f34.xml.in.h:256
|
||||
msgid "These packages provide a graphical virtualization environment."
|
||||
msgstr ""
|
||||
msgstr "Paket-paket ini menyediakan lingkungan virtualisasi grafis."
|
||||
|
||||
#: ../comps-f32.xml.in.h:265 ../comps-f33.xml.in.h:257
|
||||
#: ../comps-f34.xml.in.h:257
|
||||
msgid "Headless Virtualization"
|
||||
msgstr ""
|
||||
msgstr "Virtualisasi Headless"
|
||||
|
||||
#: ../comps-f32.xml.in.h:266 ../comps-f33.xml.in.h:258
|
||||
#: ../comps-f34.xml.in.h:258
|
||||
msgid "These packages provide a headless virtualization environment."
|
||||
msgstr ""
|
||||
msgstr "Paket-paket ini menyediakan lingkungan virtualisasi headless."
|
||||
|
||||
#: ../comps-f32.xml.in.h:267 ../comps-f33.xml.in.h:259
|
||||
#: ../comps-f34.xml.in.h:259
|
||||
@ -1474,17 +1479,13 @@ msgstr ""
|
||||
#. Translators: Don't translate this product name
|
||||
#: ../comps-f32.xml.in.h:272 ../comps-f33.xml.in.h:264
|
||||
#: ../comps-f34.xml.in.h:264
|
||||
#, fuzzy
|
||||
#| msgid "Fedora Workstation product core"
|
||||
msgid "Fedora Workstation ostree support"
|
||||
msgstr "Inti produk Workstation Fedora"
|
||||
msgstr "Dukungan ostree Fedora Workstation"
|
||||
|
||||
#: ../comps-f32.xml.in.h:273 ../comps-f33.xml.in.h:265
|
||||
#: ../comps-f34.xml.in.h:265
|
||||
#, fuzzy
|
||||
#| msgid "Packages mandatory for the workstation product."
|
||||
msgid "Packages mandatory for the workstation ostree product."
|
||||
msgstr "Paket-paket wajib bagi produk workstation."
|
||||
msgstr "Paket wajib untuk produk workstation ostree."
|
||||
|
||||
#. Translators: Don't translate this product name
|
||||
#: ../comps-f32.xml.in.h:275 ../comps-f33.xml.in.h:267
|
||||
@ -1552,12 +1553,12 @@ msgstr "Dukungan multimedia untuk Xfce"
|
||||
#: ../comps-f32.xml.in.h:286 ../comps-f33.xml.in.h:278
|
||||
#: ../comps-f34.xml.in.h:278
|
||||
msgid "Xfce Office"
|
||||
msgstr ""
|
||||
msgstr "Xfce Office"
|
||||
|
||||
#: ../comps-f32.xml.in.h:287 ../comps-f33.xml.in.h:279
|
||||
#: ../comps-f34.xml.in.h:279
|
||||
msgid "Office suite for Xfce"
|
||||
msgstr ""
|
||||
msgstr "Suite Office untuk Xfce"
|
||||
|
||||
#: ../comps-f32.xml.in.h:288 ../comps-f33.xml.in.h:280
|
||||
#: ../comps-f34.xml.in.h:280
|
||||
@ -1580,7 +1581,7 @@ msgstr "XMonad"
|
||||
#: ../comps-f32.xml.in.h:291 ../comps-f33.xml.in.h:283
|
||||
#: ../comps-f34.xml.in.h:283
|
||||
msgid "A tiling window manager"
|
||||
msgstr ""
|
||||
msgstr "Manajer jendela ubin"
|
||||
|
||||
#: ../comps-f32.xml.in.h:292 ../comps-f33.xml.in.h:284
|
||||
#: ../comps-f34.xml.in.h:284
|
||||
@ -1600,7 +1601,7 @@ msgstr "Sistem Operasi Ubahan Fedora"
|
||||
#: ../comps-f32.xml.in.h:295 ../comps-f33.xml.in.h:287
|
||||
#: ../comps-f34.xml.in.h:287
|
||||
msgid "Basic building block for a custom Fedora system."
|
||||
msgstr ""
|
||||
msgstr "Blok bangunan dasar untuk sistem Fedora khusus."
|
||||
|
||||
#: ../comps-f32.xml.in.h:296 ../comps-f33.xml.in.h:288
|
||||
#: ../comps-f34.xml.in.h:288
|
||||
@ -1672,10 +1673,8 @@ msgstr "Desktop MATE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:313 ../comps-f33.xml.in.h:305
|
||||
#: ../comps-f34.xml.in.h:305
|
||||
#, fuzzy
|
||||
#| msgid "KDE Desktop"
|
||||
msgid "Deepin Desktop"
|
||||
msgstr "Desktop KDE"
|
||||
msgstr "Desktop Deepin"
|
||||
|
||||
#: ../comps-f32.xml.in.h:314 ../comps-f33.xml.in.h:306
|
||||
#: ../comps-f34.xml.in.h:306
|
||||
@ -1683,6 +1682,8 @@ msgid ""
|
||||
"Deepin desktop is the desktop environment released with deepin. It aims at "
|
||||
"being elegant and easy to use."
|
||||
msgstr ""
|
||||
"Deepin desktop adalah lingkungan desktop yang dirilis dengan deepin. "
|
||||
"Lingkungan ini bertujuan untuk menjadi elegan dan mudah digunakan."
|
||||
|
||||
#: ../comps-f32.xml.in.h:315 ../comps-f33.xml.in.h:307
|
||||
#: ../comps-f34.xml.in.h:307
|
||||
@ -1716,7 +1717,7 @@ msgstr "Server Web"
|
||||
#: ../comps-f32.xml.in.h:320 ../comps-f33.xml.in.h:312
|
||||
#: ../comps-f34.xml.in.h:312
|
||||
msgid "Server for serving static and dynamic internet content."
|
||||
msgstr ""
|
||||
msgstr "Server untuk menyajikan konten internet statis dan dinamis."
|
||||
|
||||
#: ../comps-f32.xml.in.h:321 ../comps-f33.xml.in.h:313
|
||||
#: ../comps-f34.xml.in.h:313
|
||||
@ -1726,12 +1727,12 @@ msgstr "Server Infrastruktur"
|
||||
#: ../comps-f32.xml.in.h:322 ../comps-f33.xml.in.h:314
|
||||
#: ../comps-f34.xml.in.h:314
|
||||
msgid "Server for operating network infrastructure services."
|
||||
msgstr ""
|
||||
msgstr "Server untuk mengoperasikan layanan infrastruktur jaringan."
|
||||
|
||||
#: ../comps-f32.xml.in.h:323 ../comps-f33.xml.in.h:315
|
||||
#: ../comps-f34.xml.in.h:315
|
||||
msgid "X Window System with a choice of window manager."
|
||||
msgstr ""
|
||||
msgstr "X Window System dengan pilihan window manager."
|
||||
|
||||
#: ../comps-f32.xml.in.h:324 ../comps-f33.xml.in.h:316
|
||||
#: ../comps-f34.xml.in.h:316 ../comps-epel7.xml.in.h:128
|
||||
@ -1810,20 +1811,20 @@ msgstr "Teks dan konten Bebas lainnya."
|
||||
#: ../comps-f32.xml.in.h:337 ../comps-f33.xml.in.h:327
|
||||
#: ../comps-f34.xml.in.h:327
|
||||
msgid "Neuroscience"
|
||||
msgstr ""
|
||||
msgstr "Ilmu saraf"
|
||||
|
||||
#: ../comps-f32.xml.in.h:338 ../comps-f33.xml.in.h:328
|
||||
#: ../comps-f34.xml.in.h:328
|
||||
msgid "Tools for Neuroscience."
|
||||
msgstr ""
|
||||
msgstr "Alat bantu untuk Ilmu Saraf."
|
||||
|
||||
#: ../comps-f33.xml.in.h:206 ../comps-f34.xml.in.h:206
|
||||
msgid "A phone/tablet UX environment"
|
||||
msgstr ""
|
||||
msgstr "Lingkungan UX ponsel/tablet"
|
||||
|
||||
#: ../comps-f33.xml.in.h:207 ../comps-f34.xml.in.h:207
|
||||
msgid "A phone/tablet desktop UX based on GNOME3 technologies."
|
||||
msgstr ""
|
||||
msgstr "UX desktop untuk ponsel/tablet berdasarkan teknologi GNOME3."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:1
|
||||
msgid "Additional Development"
|
||||
|
28
po/ko.po
28
po/ko.po
@ -11,13 +11,13 @@
|
||||
# Michelle Kim <mkim@redhat.com>, 2002
|
||||
# Kevin Fenzi <kevin@scrye.com>, 2016. #zanata
|
||||
# simmon <simmon@nplob.com>, 2021.
|
||||
# 김인수 <simmon@nplob.com>, 2022, 2023.
|
||||
# 김인수 <simmon@nplob.com>, 2022, 2023, 2024.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-07 13:23-0800\n"
|
||||
"PO-Revision-Date: 2023-05-17 05:21+0000\n"
|
||||
"PO-Revision-Date: 2024-02-07 15:36+0000\n"
|
||||
"Last-Translator: 김인수 <simmon@nplob.com>\n"
|
||||
"Language-Team: Korean <https://translate.fedoraproject.org/projects/"
|
||||
"fedora-comps/main/ko/>\n"
|
||||
@ -26,7 +26,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.15.2\n"
|
||||
"X-Generator: Weblate 5.3.1\n"
|
||||
|
||||
#: ../comps-f32.xml.in.h:1 ../comps-f33.xml.in.h:1 ../comps-f34.xml.in.h:1
|
||||
msgid "3D Printing"
|
||||
@ -2281,7 +2281,7 @@ msgstr "메인프레임(Mainframe) 접근"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:155
|
||||
msgid "Tools for accessing mainframe computing resources."
|
||||
msgstr "메인프레임 컴퓨팅 자원에 접근하기 위한 도구"
|
||||
msgstr "메인프레임 컴퓨팅 자원에 접근하기 위한 도구."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:156
|
||||
msgid "Maithili Support"
|
||||
@ -2325,7 +2325,7 @@ msgstr "MySQL 데이타베이스 서버"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:170
|
||||
msgid "The MySQL SQL database server, and associated packages."
|
||||
msgstr "MySQL SQL 데이타베이스 서버 및 관련 꾸러미"
|
||||
msgstr "MySQL SQL 데이타베이스 서버 및 관련 꾸러미."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:171
|
||||
msgid "MySQL Database client"
|
||||
@ -2361,7 +2361,7 @@ msgstr "네트워킹 도구"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:179
|
||||
msgid "Tools for configuring and analyzing computer networks."
|
||||
msgstr "컴퓨터 네트워크 설정 및 분석을 위한 도구"
|
||||
msgstr "컴퓨터 네트워크 설정 및 분석을 위한 도구."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:180
|
||||
msgid "NFS file server"
|
||||
@ -2421,7 +2421,7 @@ msgstr "PHP 지원"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:194
|
||||
msgid "PHP web application framework."
|
||||
msgstr "PHP 웹 응용프로그램 프레임워크"
|
||||
msgstr "PHP 웹 응용프로그램 프레임워크."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:195
|
||||
msgid "Polish Support"
|
||||
@ -2445,7 +2445,7 @@ msgstr "PostgreSQL 데이타베이스 클라이언트"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:200
|
||||
msgid "The PostgreSQL SQL database client, and associated packages."
|
||||
msgstr "PostgreSQL SQL 데이타베이스 클라이언트 및 관련 꾸러미"
|
||||
msgstr "PostgreSQL SQL 데이타베이스 클라이언트 및 관련 꾸러미."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:201
|
||||
msgid "Printing client"
|
||||
@ -2556,7 +2556,7 @@ msgstr "스마트 카드 지원"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:227
|
||||
msgid "Support for using smart card authentication."
|
||||
msgstr "스마트 카드 인증 사용을 위한 지원"
|
||||
msgstr "스마트 카드 인증 사용을 위한 지원."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:228
|
||||
msgid "Southern Ndebele Support"
|
||||
@ -2620,7 +2620,7 @@ msgstr "시스템 관리 도구"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:243
|
||||
msgid "Utilities useful in system administration."
|
||||
msgstr "시스템 관리에 유용한 유틸리티"
|
||||
msgstr "시스템 관리에 유용한 유틸리티."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:244
|
||||
msgid "System Management"
|
||||
@ -2628,7 +2628,7 @@ msgstr "시스템 관리"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:245
|
||||
msgid "Various low-level hardware management frameworks."
|
||||
msgstr "다양한 저-수준 하드웨어 관리 프레임워크"
|
||||
msgstr "다양한 저-수준 하드웨어 관리 프레임워크."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:246
|
||||
msgid "Messaging Client Support"
|
||||
@ -2652,7 +2652,7 @@ msgstr "SNMP 도구"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:251
|
||||
msgid "SNMP management agent."
|
||||
msgstr "SNMP 관리 에이전트"
|
||||
msgstr "SNMP 관리 대리인."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:252
|
||||
msgid "Web-Based Enterprise Management"
|
||||
@ -2680,7 +2680,7 @@ msgstr "기술문서 작성"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:258
|
||||
msgid "Tools for writing technical documentation."
|
||||
msgstr "기술 문서 작성용 도구"
|
||||
msgstr "기술 문서 작성용 도구."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:259
|
||||
msgid "Telugu Support"
|
||||
@ -2696,7 +2696,7 @@ msgstr "TeX 지원"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:262
|
||||
msgid "Support for the TeX document formatting system."
|
||||
msgstr "TeX 문서 구성 시스템 지원"
|
||||
msgstr "TeX 문서 구성 시스템 지원."
|
||||
|
||||
#: ../comps-epel7.xml.in.h:263
|
||||
msgid "Thai Support"
|
||||
|
266
po/pa.po
266
po/pa.po
@ -13,13 +13,14 @@
|
||||
# Kevin Fenzi <kevin@scrye.com>, 2016. #zanata
|
||||
# A S Alam <aalam@fedoraproject.org>, 2019. #zanata
|
||||
# A S Alam <amanpreet.alam@gmail.com>, 2021.
|
||||
# A S Alam <aalam@users.noreply.translate.fedoraproject.org>, 2023, 2024.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-07 13:23-0800\n"
|
||||
"PO-Revision-Date: 2021-01-24 17:38+0000\n"
|
||||
"Last-Translator: A S Alam <amanpreet.alam@gmail.com>\n"
|
||||
"PO-Revision-Date: 2024-03-01 15:36+0000\n"
|
||||
"Last-Translator: A S Alam <aalam@users.noreply.translate.fedoraproject.org>\n"
|
||||
"Language-Team: Punjabi <https://translate.fedoraproject.org/projects/"
|
||||
"fedora-comps/main/pa/>\n"
|
||||
"Language: pa\n"
|
||||
@ -27,7 +28,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 4.4.2\n"
|
||||
"X-Generator: Weblate 5.4\n"
|
||||
|
||||
#: ../comps-f32.xml.in.h:1 ../comps-f33.xml.in.h:1 ../comps-f34.xml.in.h:1
|
||||
msgid "3D Printing"
|
||||
@ -63,7 +64,7 @@ msgstr "ARM ਸਿਸਟਮ ਨਾਲ ਕੰਮ ਕਰਨ ਵਾਲੇ ਟੂਲ
|
||||
|
||||
#: ../comps-f32.xml.in.h:8 ../comps-f33.xml.in.h:8 ../comps-f34.xml.in.h:8
|
||||
msgid "x86 Baremetal Tools"
|
||||
msgstr ""
|
||||
msgstr "x86 ਬੇਅਰ-ਮੇਟਲ ਟੂਲ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:9 ../comps-f33.xml.in.h:9 ../comps-f34.xml.in.h:9
|
||||
msgid "Tools for working with baremetal x86 systems"
|
||||
@ -75,19 +76,19 @@ msgstr "ਆਡੀਓ ਉਤਪਾਦਨ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:11 ../comps-f33.xml.in.h:11 ../comps-f34.xml.in.h:11
|
||||
msgid "Various tools for audio synthesis and music production."
|
||||
msgstr "ਆਡੀਓ ਸੰਸਲੇਸ਼ਣ ਅਤੇ ਸੰਗੀਤ ਉਤਪਾਦਨ ਲਈ ਵੱਖੋ-ਵੱਖ ਸੰਦ"
|
||||
msgstr "ਆਡੀਓ ਸੰਸਲੇਸ਼ਣ ਅਤੇ ਸੰਗੀਤ ਉਤਪਾਦਨ ਲਈ ਵੱਖੋ-ਵੱਖ ਟੂਲ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:12 ../comps-f33.xml.in.h:12 ../comps-f34.xml.in.h:12
|
||||
msgid "Authoring and Publishing"
|
||||
msgstr "ਪ੍ਰਮਾਣਕਿਤਾ ਅਤੇ ਪ੍ਰਕਾਸ਼ਨ"
|
||||
msgstr "ਪਰਮਾਣੀਕਰਨ ਅਤੇ ਪ੍ਰਕਾਸ਼ਨ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:13 ../comps-f33.xml.in.h:13 ../comps-f34.xml.in.h:13
|
||||
msgid ""
|
||||
"These tools allow you to create documents in the DocBook format and convert "
|
||||
"them into HTML, PDF, Postscript, and text."
|
||||
msgstr ""
|
||||
"ਇਹ ਟੂਲ ਤੁਹਾਨੂੰ DocBook ਫਾਰਮੈਟ ਵਿੱਚ ਡੌਕੂਮੈਂਟ ਬਣਾਉਣ ਵਿੱਚ ਅਤੇ ਉਹਨਾਂ ਨੂੰ HTML, PDF, Postscript, "
|
||||
"ਜਾਂ ਪਾਠ ਵਿੱਚ ਤਬਦੀਲ ਕਰਨ ਵਿੱਚ ਸਹਾਇਕ ਹੈ।"
|
||||
"ਇਹ ਟੂਲ ਤੁਹਾਨੂੰ DocBook ਫਾਰਮੈਟ ਵਿੱਚ ਡੌਕੂਮੈਂਟ ਬਣਾਉਣ ਵਿੱਚ ਅਤੇ ਉਹਨਾਂ ਨੂੰ HTML, "
|
||||
"PDF, Postscript, ਜਾਂ ਲਿਖਤ ਵਿੱਚ ਤਬਦੀਲ ਕਰਨ ਵਿੱਚ ਸਹਾਇਕ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:14 ../comps-f33.xml.in.h:14 ../comps-f34.xml.in.h:14
|
||||
msgid "base-x"
|
||||
@ -103,7 +104,7 @@ msgstr "ਮੁੱਢਲਾ ਡੈਸਕਟਾਪ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:17 ../comps-f33.xml.in.h:17 ../comps-f34.xml.in.h:17
|
||||
msgid "Basic X Window System with a choice of window manager."
|
||||
msgstr ""
|
||||
msgstr "ਵਿੰਡੋ ਮੈਨੇਜਰ ਦੀ ਚੋਣ ਨਾਲ ਮੁ਼ੱਢਲਾ X ਵਿੰਡੋ ਸਿਸਟਮ ਹੈ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:18
|
||||
msgid "Books and Guides"
|
||||
@ -111,7 +112,7 @@ msgstr "ਕਿਤਾਬਾਂ ਅਤੇ ਗਾਈਡਾਂ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:19
|
||||
msgid "Books and Guides for Fedora users and developers"
|
||||
msgstr "ਫੋਡੇਰਾ ਯੂਜ਼ਰ ਅਤੇ ਡਿਵੈਲਪਰ ਲਈ ਕਿਤਾਬਾਂ ਅਤੇ ਗਾਈਡਾਂ"
|
||||
msgstr "ਫੋਡੇਰਾ ਵਰਤੋਂਕਾਰ ਅਤੇ ਡਿਵੈਲਪਰ ਲਈ ਕਿਤਾਬਾਂ ਅਤੇ ਗਾਈਡਾਂ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:20 ../comps-f33.xml.in.h:18 ../comps-f34.xml.in.h:18
|
||||
#: ../comps-epel7.xml.in.h:25
|
||||
@ -166,6 +167,7 @@ msgstr "ਕਲਾਉਡ ਸਰਵਰ ਟੂਲ"
|
||||
msgid ""
|
||||
"Software for servers and system images that run in \"cloud\" environments"
|
||||
msgstr ""
|
||||
"\"ਕਲਾਉਡ\" ਇਨਵਾਇਰਨਮੈੰਟ ਵਿੱਚ ਚੱਲਣ ਵਾਲੇ ਸਰਵਰਾਂ ਅਤੇ ਸਿਸਟਮ ਈਮੇਜ਼ਾਂ ਲਈ ਸਾਫਟਵੇਅਰ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:31 ../comps-f33.xml.in.h:29 ../comps-f34.xml.in.h:29
|
||||
msgid "Compiz"
|
||||
@ -177,7 +179,7 @@ msgstr ""
|
||||
|
||||
#: ../comps-f32.xml.in.h:33 ../comps-f33.xml.in.h:31 ../comps-f34.xml.in.h:31
|
||||
msgid "Container Management"
|
||||
msgstr "ਸਿਸਟਮ ਬੰਦੋਬਸਤ"
|
||||
msgstr "ਕਨਟੇਨਰ ਬੰਦੋਬਸਤ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:34 ../comps-f33.xml.in.h:32 ../comps-f34.xml.in.h:32
|
||||
msgid "Tools for managing Linux containers"
|
||||
@ -194,7 +196,7 @@ msgstr "ਘੱਟੋ-ਘੱਟ ਸੰਭਵ ਇੰਸਟਾਲੇਸ਼ਨ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:37 ../comps-f33.xml.in.h:35 ../comps-f34.xml.in.h:35
|
||||
msgid "Critical Path (Applications)"
|
||||
msgstr "ਨਾਜ਼ੁਕ ਮਾਰਗ (ਐਪਲੀਕੇਸ਼ਨ)"
|
||||
msgstr "ਨਾਜ਼ੁਕ ਮਾਰਗ (ਐਪਲੀਕੇਸ਼ਨਾਂ)"
|
||||
|
||||
#: ../comps-f32.xml.in.h:38 ../comps-f33.xml.in.h:36 ../comps-f34.xml.in.h:36
|
||||
msgid "A set of applications that are considered critical path"
|
||||
@ -202,7 +204,7 @@ msgstr "ਐਪਲੀਕੇਸ਼ਨ ਦਾ ਸੈੱਟ, ਜੋ ਕਿ ਨੁਜ
|
||||
|
||||
#: ../comps-f32.xml.in.h:39 ../comps-f33.xml.in.h:37 ../comps-f34.xml.in.h:37
|
||||
msgid "Critical Path (Base)"
|
||||
msgstr "ਨਾਜ਼ੁਕ ਮਾਰਗ (ਅਧਾਰ)"
|
||||
msgstr "ਨਾਜ਼ੁਕ ਮਾਰਗ (ਬੇਸ)"
|
||||
|
||||
#: ../comps-f32.xml.in.h:40 ../comps-f33.xml.in.h:38 ../comps-f34.xml.in.h:38
|
||||
msgid ""
|
||||
@ -233,7 +235,7 @@ msgstr "ਪੈਕੇਜਾਂ ਦਾ ਸਮੂਹ, ਜੋ ਗਨੋਮ ਡੈਸ
|
||||
#: ../comps-f32.xml.in.h:45 ../comps-f33.xml.in.h:43 ../comps-f34.xml.in.h:43
|
||||
#: ../comps-epel8.xml.in.h:3
|
||||
msgid "Critical Path (KDE)"
|
||||
msgstr "ਨਾਜ਼ੁਕ ਮਾਰਗ (ਕੇਡੀਈ)"
|
||||
msgstr "ਨਾਜ਼ੁਕ ਮਾਰਗ (KDE)"
|
||||
|
||||
#: ../comps-f32.xml.in.h:46 ../comps-f33.xml.in.h:44 ../comps-f34.xml.in.h:44
|
||||
#: ../comps-epel8.xml.in.h:4
|
||||
@ -274,7 +276,7 @@ msgstr "ਪੈਕੇਜਾਂ ਦਾ ਸਮੂਹ, ਜੋ Xfce ਡੈਸਕਟ
|
||||
|
||||
#: ../comps-f32.xml.in.h:53 ../comps-f33.xml.in.h:51 ../comps-f34.xml.in.h:51
|
||||
msgid "D Development Tools and Libraries"
|
||||
msgstr "ਡੀ ਡਿਵੈਲਪਮੈਂਟ ਟੂਲ ਅਤੇ ਲਾਇਬਰੇਰੀਆਂ"
|
||||
msgstr "D ਡਿਵੈਲਪਮੈਂਟ ਟੂਲ ਅਤੇ ਲਾਇਬਰੇਰੀਆਂ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:54 ../comps-f33.xml.in.h:52 ../comps-f34.xml.in.h:52
|
||||
msgid ""
|
||||
@ -284,7 +286,7 @@ msgstr ""
|
||||
|
||||
#: ../comps-f32.xml.in.h:55 ../comps-f33.xml.in.h:53 ../comps-f34.xml.in.h:53
|
||||
msgid "Deepin Desktop Environment"
|
||||
msgstr "ਡੀਪਿੰਨ ਡੈਸਕਟਾਪ ਇੰਵਾਇਰਨਮੈਂਟ"
|
||||
msgstr "ਡੀਪਿੰਨ(Deepin) ਡੈਸਕਟਾਪ ਇੰਵਾਇਰਨਮੈਂਟ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:56 ../comps-f33.xml.in.h:54 ../comps-f34.xml.in.h:54
|
||||
msgid ""
|
||||
@ -392,8 +394,8 @@ msgid ""
|
||||
"Sometimes called text editors, these are programs that allow you to create "
|
||||
"and edit text files. This includes Emacs and Vi."
|
||||
msgstr ""
|
||||
"ਜਿਸ ਨੂੰ ਪਾਠ ਸੰਪਾਦਕ ਵੀ ਕਹਿੰਦੇ ਹਨ, ਇਹ ਤੁਹਾਨੂੰ ਫਾਇਲਾਂ ਬਣਾਉਣ ਅਤੇ ਸੋਧਣ ਦੇ ਕੰਮ ਆਉਦਾ ਹੈ। ਇਸ ਵਿੱਚ "
|
||||
"ਈਮੈਕਸ ਅਤੇ ਵੀਆਈ(Vi) ਸ਼ਾਮਿਲ ਹਨ।"
|
||||
"ਜਿਸ ਨੂੰ ਲਿਖਤ ਸੰਪਾਦਕ ਵੀ ਕਹਿੰਦੇ ਹਨ, ਇਹ ਤੁਹਾਨੂੰ ਫਾਇਲਾਂ ਬਣਾਉਣ ਅਤੇ ਸੋਧਣ ਦੇ ਕੰਮ "
|
||||
"ਆਉਦਾ ਹੈ। ਇਸ ਵਿੱਚ ਈਮੈਕਸ (Emacs) ਅਤੇ Vi ਸ਼ਾਮਿਲ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:80 ../comps-f33.xml.in.h:78 ../comps-f34.xml.in.h:78
|
||||
#: ../comps-epel7.xml.in.h:65
|
||||
@ -515,7 +517,7 @@ msgstr "ਗਨੋਮ"
|
||||
#: ../comps-f32.xml.in.h:105 ../comps-f33.xml.in.h:101
|
||||
#: ../comps-f34.xml.in.h:101
|
||||
msgid "GNOME is a highly intuitive and user friendly desktop environment."
|
||||
msgstr "ਗਨੋਮ ਯੂਜ਼ਰ ਲਈ ਸੌਖਾ ਯੂਜ਼ਰ ਇੰਨਵਾਇਰਨਮੈਂਟ ਹੈ।"
|
||||
msgstr "ਗਨੋਮ ਵਰਤੋਂਕਾਰਾਂ ਲਈ ਅਨੁਭਵੀ ਅਤੇ ਸਰਲ ਡੈਸਕਟਾਪ ਇੰਨਵਾਇਰਨਮੈਂਟ ਹੈ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:106 ../comps-f33.xml.in.h:102
|
||||
#: ../comps-f34.xml.in.h:102
|
||||
@ -577,7 +579,7 @@ msgstr "ਗੈਸਟ ਡੈਸਕਟਾਪ ਏਜੰਟ"
|
||||
#: ../comps-f32.xml.in.h:117 ../comps-f33.xml.in.h:113
|
||||
#: ../comps-f34.xml.in.h:113
|
||||
msgid "Agents used when running as a virtualized desktop."
|
||||
msgstr "ਏਜੰਟ, ਜੋ ਕਿ ਵੁਰਚੁਅਲ ਡੈਸਕਟਾਪ ਚੱਲਣ ਦੌਰਾਨ ਵਰਤੇ ਜਾਂਦੇ ਹਨ।"
|
||||
msgstr "ਏਜੰਟ, ਜੋ ਕਿ ਵਰਚੁਅਲ ਡੈਸਕਟਾਪ ਚੱਲਣ ਦੌਰਾਨ ਵਰਤੇ ਜਾਂਦੇ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:118 ../comps-f33.xml.in.h:114
|
||||
#: ../comps-f34.xml.in.h:114
|
||||
@ -602,13 +604,13 @@ msgstr "TCP/HTTP ਲੋਡ ਬੈਲੈਂਸਰ ਹੈ।"
|
||||
#: ../comps-f32.xml.in.h:122 ../comps-f33.xml.in.h:118
|
||||
#: ../comps-f34.xml.in.h:118
|
||||
msgid "Hardware Support"
|
||||
msgstr "ਜੰਤਰ ਸਹਿਯੋਗ"
|
||||
msgstr "ਹਾਰਡਵੇਅਰ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:123 ../comps-f33.xml.in.h:119
|
||||
#: ../comps-f34.xml.in.h:119
|
||||
msgid ""
|
||||
"This group is a collection of tools for various hardware specific utilities."
|
||||
msgstr "ਇਹ ਗਰੁੱਪ ਵਿੱਚ ਜੰਤਰਾਂ ਲਈ ਖਾਸ ਸਹੂਲਤਾਂ ਉਪਲੱਬਧ ਹਨ।"
|
||||
msgstr "ਇਹ ਗਰੁੱਪ ਵਿੱਚ ਡਿਵਾਈਸਾਂ ਲਈ ਖਾਸ ਸਹੂਲਤਾਂ ਉਪਲੱਬਧ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:124 ../comps-f33.xml.in.h:120
|
||||
#: ../comps-f34.xml.in.h:120 ../comps-epel7.xml.in.h:101
|
||||
@ -633,12 +635,12 @@ msgstr ""
|
||||
#: ../comps-f32.xml.in.h:128 ../comps-f33.xml.in.h:124
|
||||
#: ../comps-f34.xml.in.h:124 ../comps-epel7.xml.in.h:111
|
||||
msgid "Input Methods"
|
||||
msgstr "ਇੰਪੁੱਟ ਢੰਗ"
|
||||
msgstr "ਇਨਪੁੱਟ ਢੰਗ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:129 ../comps-f33.xml.in.h:125
|
||||
#: ../comps-f34.xml.in.h:125
|
||||
msgid "Input method packages for the input of international text."
|
||||
msgstr "ਅੰਤਰਰਾਸ਼ਟਰੀ ਟੈਕਸਟ ਇੰਪੁੱਟ ਕਰਨ ਵਾਸਤੇ ਇੰਪੁੱਟ ਢੰਗ ਪੈਕੇਜ ਹੈ।"
|
||||
msgstr "ਅੰਤਰਰਾਸ਼ਟਰੀ ਟੈਕਸਟ ਇਨਪੁੱਟ ਕਰਨ ਵਾਸਤੇ ਇਨਪੁੱਟ ਢੰਗ ਪੈਕੇਜ ਹੈ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:130 ../comps-f33.xml.in.h:126
|
||||
#: ../comps-f34.xml.in.h:126
|
||||
@ -673,17 +675,17 @@ msgstr "ਜਾਵਾ ਐਪਲੀਕੇਸ਼ਨ ਸਰਵਰ ਹੈ।"
|
||||
#: ../comps-f32.xml.in.h:136 ../comps-f33.xml.in.h:132
|
||||
#: ../comps-f34.xml.in.h:132 ../comps-epel8.xml.in.h:5
|
||||
msgid "KDE Applications"
|
||||
msgstr "ਕੇਡੀਈ ਐਪਲੀਕੇਸ਼ਨ"
|
||||
msgstr "KDE ਐਪਲੀਕੇਸ਼ਨਾਂ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:137 ../comps-f33.xml.in.h:133
|
||||
#: ../comps-f34.xml.in.h:133 ../comps-epel8.xml.in.h:6
|
||||
msgid "A set of commonly used KDE applications"
|
||||
msgstr "ਆਮ ਵਰਤੀਆਂ ਜਾਂਦੀਆਂ ਕੇਡੀਈ ਐਪਲੀਕੇਸ਼ਨ ਦਾ ਸਮੂਹ"
|
||||
msgstr "ਆਮ ਵਰਤੀਆਂ ਜਾਂਦੀਆਂ KDE ਐਪਲੀਕੇਸ਼ਨ ਦਾ ਸਮੂਹ ਹੈ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:138 ../comps-f33.xml.in.h:134
|
||||
#: ../comps-f34.xml.in.h:134 ../comps-epel8.xml.in.h:7
|
||||
msgid "KDE"
|
||||
msgstr "ਕੇਡੀਈ"
|
||||
msgstr "KDE"
|
||||
|
||||
#: ../comps-f32.xml.in.h:139 ../comps-f33.xml.in.h:135
|
||||
#: ../comps-f34.xml.in.h:135 ../comps-epel8.xml.in.h:8
|
||||
@ -692,38 +694,39 @@ msgid ""
|
||||
"which includes a panel, desktop, system icons and desktop widgets, and many "
|
||||
"powerful KDE applications."
|
||||
msgstr ""
|
||||
"ਕੇਡੀਈ (KDE) ਪਲਾਜ਼ਮਾ ਵਰਕਸਪੇਸ, ਪੂਰੀ ਤਰ੍ਹਾਂ ਸੰਰਚਨਾ ਕਰਨ ਯੋਗ ਗਰਾਫਿਕਲ ਯੂਜ਼ਰ ਇੰਟਰਫੇਸ ਹੈ, ਜਿਸ ਵਿੱਚ "
|
||||
"ਪੈਨਲ, ਡੈਸਕਟਾਪ, ਸਿਸਟਮ ਆਈਕਾਨ ਅਤੇ ਡੈਸਕਟਾਪ ਵਿਦਜੈਟ ਹਨ, ਕਈ ਮਜ਼ਬੂਤ ਕੇਡੀਈ ਐਪਲੀਕੇਸ਼ਨ ਸਮੇਤ।"
|
||||
"ਕੇਡੀਈ (KDE) ਪਲਾਜ਼ਮਾ ਵਰਕਸਪੇਸ, ਪੂਰੀ ਤਰ੍ਹਾਂ ਸੰਰਚਨਾ ਕਰਨ ਯੋਗ ਗਰਾਫਿਕਲ ਯੂਜ਼ਰ ਇੰਟਰਫੇਸ "
|
||||
"ਹੈ, ਜਿਸ ਵਿੱਚ ਪੈਨਲ, ਡੈਸਕਟਾਪ, ਸਿਸਟਮ ਆਈਕਾਨ ਅਤੇ ਡੈਸਕਟਾਪ ਵਿਜੈੱਟ ਹਨ, ਕਈ ਮਜ਼ਬੂਤ ਕੇਡੀ"
|
||||
"ਈ ਐਪਲੀਕੇਸ਼ਨ ਸਮੇਤ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:140 ../comps-f33.xml.in.h:136
|
||||
#: ../comps-f34.xml.in.h:136 ../comps-epel8.xml.in.h:9
|
||||
msgid "KDE Educational applications"
|
||||
msgstr "ਕੇਡੀਈ ਵਿਦਿਅਕ ਐਪਲੀਕੇਸ਼ਨ"
|
||||
msgstr "KDE ਵਿਦਿਅਕ ਐਪਲੀਕੇਸ਼ਨਾਂ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:141 ../comps-f33.xml.in.h:137
|
||||
#: ../comps-f34.xml.in.h:137 ../comps-epel8.xml.in.h:10
|
||||
msgid "KDE Multimedia support"
|
||||
msgstr "ਕੇਡੀਈ ਮਲਟੀਮੀਡਿਆ ਸਹਿਯੋਗ"
|
||||
msgstr "KDE ਮਲਟੀਮੀਡਿਆ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:142 ../comps-f33.xml.in.h:138
|
||||
#: ../comps-f34.xml.in.h:138 ../comps-epel8.xml.in.h:11
|
||||
msgid "Multimedia support for KDE"
|
||||
msgstr "ਕੇਡੀਈ ਲਈ ਮਲਟੀਮੀਡਿਆ ਸਹਿਯੋਗ"
|
||||
msgstr "KDE ਲਈ ਮਲਟੀਮੀਡਿਆ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:143 ../comps-f33.xml.in.h:139
|
||||
#: ../comps-f34.xml.in.h:139 ../comps-epel8.xml.in.h:12
|
||||
msgid "KDE Office"
|
||||
msgstr "ਕੇਡੀਈ ਆਫਿਸ"
|
||||
msgstr "KDE ਆਫਿਸ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:144 ../comps-f33.xml.in.h:140
|
||||
#: ../comps-f34.xml.in.h:140 ../comps-epel8.xml.in.h:13
|
||||
msgid "KDE Office applications"
|
||||
msgstr "ਕੇਡੀਈ ਆਫਿਸ ਐਪਲੀਕੇਸ਼ਨ"
|
||||
msgstr "KDE ਆਫਿਸ ਐਪਲੀਕੇਸ਼ਨ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:145 ../comps-f33.xml.in.h:141
|
||||
#: ../comps-f34.xml.in.h:141 ../comps-epel8.xml.in.h:14
|
||||
msgid "KDE Software Development"
|
||||
msgstr "ਕੇਡੀਈ ਸਾਫਟਵੇਅਰ ਡਿਵੈਲਪਮੈਂਟ"
|
||||
msgstr "KDE ਸਾਫਟਵੇਅਰ ਡਿਵੈਲਪਮੈਂਟ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:146 ../comps-f33.xml.in.h:142
|
||||
#: ../comps-f34.xml.in.h:142 ../comps-epel8.xml.in.h:15
|
||||
@ -733,24 +736,27 @@ msgstr "Qt ਅਤੇ KDE ਗਰਾਫਿਕਲ ਐਪਲੀਕੇਸ਼ਨਾਂ
|
||||
#: ../comps-f32.xml.in.h:147 ../comps-f33.xml.in.h:143
|
||||
#: ../comps-f34.xml.in.h:143
|
||||
msgid "KDE Telepathy"
|
||||
msgstr "ਕੇਡੀਈ ਟੈਲੀਪੈਥੀ"
|
||||
msgstr "KDE ਟੈਲੀਪੈਥੀ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:148 ../comps-f33.xml.in.h:144
|
||||
#: ../comps-f34.xml.in.h:144
|
||||
msgid "KDE Telepathy applications"
|
||||
msgstr "ਕੇਡੀਈ ਟੈਲੀਪੈਥੀ ਐਪਲੀਕੇਸ਼ਨ"
|
||||
msgstr "KDE ਟੈਲੀਪੈਥੀ ਐਪਲੀਕੇਸ਼ਨ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:149 ../comps-f33.xml.in.h:145
|
||||
#: ../comps-f34.xml.in.h:145 ../comps-epel8.xml.in.h:16
|
||||
msgid "KDE Frameworks 5 Software Development"
|
||||
msgstr "ਕੇਡੀਈ ਫਰੇਮਵਰਕਸ 5 ਸਾਫਟਵੇਅਰ ਡਿਵੈਲਪਮੈਂਟ"
|
||||
msgstr "KDE ਫਰੇਮਵਰਕਸ 5 ਸਾਫਟਵੇਅਰ ਡਿਵੈਲਪਮੈਂਟ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:150 ../comps-f33.xml.in.h:146
|
||||
#: ../comps-f34.xml.in.h:146 ../comps-epel8.xml.in.h:17
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Install these packages to develop applications using Qt5 and KDE Frameworks "
|
||||
"5."
|
||||
msgstr "Qt5 ਅਤੇ KDE ਫਰੇਮਵਕਸ 5 ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਐਪਲੀਕੇਸ਼ਨ ਵਿਕਸਤ ਲਈ ਇਹ ਪੈਕੇਜਾਂ ਨੂੰ ਇੰਸਟਾਲ ਕਰੋ।"
|
||||
msgstr ""
|
||||
"Qt5 ਅਤੇ KDE ਫਰੇਮਵਕਸ 5 ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਐਪਲੀਕੇਸ਼ਨ ਵਿਕਸਤ ਲਈ ਇਹ ਪੈਕੇਜਾਂ ਨੂੰ ਇੰਸਟਾਲ "
|
||||
"ਕਰੋ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:151 ../comps-f33.xml.in.h:147
|
||||
#: ../comps-f34.xml.in.h:147
|
||||
@ -807,7 +813,7 @@ msgstr "ਲਿਬਰੇਆਫਿਸ ਡਿਵੈਲਪਮੈਂਟ"
|
||||
#: ../comps-f34.xml.in.h:154
|
||||
msgid ""
|
||||
"These packages are helpful when developing LibreOffice extensions or macros."
|
||||
msgstr "ਲਿਬਰੇਆਫਿਸ ਇਕਸਟੈਸ਼ਨ ਜਾਂ ਮਾਈਕਰੋ ਬਣਾਉਣ ਲਈ ਇਹ ਪੈਕੇਜ ਮੱਦਦਗਾਰ ਹਨ।"
|
||||
msgstr "ਲਿਬਰੇਆਫਿਸ ਇਕਸਟੈਸ਼ਨ ਜਾਂ ਮਾਈਕਰੋ ਬਣਾਉਣ ਲਈ ਇਹ ਪੈਕੇਜ ਮਦਦਗਾਰ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:162 ../comps-f33.xml.in.h:155
|
||||
#: ../comps-f34.xml.in.h:155
|
||||
@ -827,7 +833,7 @@ msgstr "LXDE ਡੈਸਕਟਾਪ ਲਈ ਐਪਲੀਕੇਸ਼ਨਾਂ"
|
||||
#: ../comps-f32.xml.in.h:165 ../comps-f33.xml.in.h:158
|
||||
#: ../comps-f34.xml.in.h:158
|
||||
msgid "A set of commonly used applications for the LXDE Desktop"
|
||||
msgstr ""
|
||||
msgstr "LXDE ਡੈਸਕਟਾਪ ਲਈ ਆਮ ਵਰਤੀਆਂ ਜਾਂਦੀਆਂ ਐਪਲੀਕੇਸ਼ਨਾਂ ਦਾ ਸਮੂਹ ਹੈ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:166 ../comps-f33.xml.in.h:159
|
||||
#: ../comps-f34.xml.in.h:159
|
||||
@ -840,18 +846,18 @@ msgid ""
|
||||
"LXDE is a lightweight X11 desktop environment designed for computers with "
|
||||
"low hardware specifications like netbooks, mobile devices or older computers."
|
||||
msgstr ""
|
||||
"LXDE ਇੱਕ ਹਲਕਾ X11 ਡੈਸਕਟਾਪ ਇਨਵਾਇਰਮੈਂਟ ਹੈ ਜੋ ਘੱਟ ਦਰਜੇ ਦੇ ਹਾਰਡਵੇਅਰ ਵਾਲੇ ਕੰਪਿਊਟਰਾਂ ਲਈ ਬਣਾਇਆ ਹੈ "
|
||||
"ਜਿਵੇਂ ਨੈੱਟਬੁੱਕ, ਮੋਬਾਈਲ ਜੰਤਰ ਜਾਂ ਪੁਰਾਣੇ ਕੰਪਿਊਟਰ।"
|
||||
"LXDE ਇੱਕ ਹਲਕਾ X11 ਡੈਸਕਟਾਪ ਇਨਵਾਇਰਮੈਂਟ ਹੈ ਜੋ ਹਲਕੇ ਹਾਰਡਵੇਅਰ ਵਾਲੇ ਕੰਪਿਊਟਰਾਂ ਲਈ "
|
||||
"ਬਣਾਇਆ ਹੈ ਜਿਵੇਂ ਨੈੱਟਬੁੱਕ, ਮੋਬਾਈਲ ਡਿਵਾਈਸਾਂ ਜਾਂ ਪੁਰਾਣੇ ਕੰਪਿਊਟਰ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:168 ../comps-f33.xml.in.h:161
|
||||
#: ../comps-f34.xml.in.h:161
|
||||
msgid "Multimedia support for LXDE"
|
||||
msgstr ""
|
||||
msgstr "LXDE ਲਈ ਮਲਟੀਮੀਡਿਆ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:169 ../comps-f33.xml.in.h:162
|
||||
#: ../comps-f34.xml.in.h:162
|
||||
msgid "LXDE Office"
|
||||
msgstr "LXDE ਔਫਿਸ"
|
||||
msgstr "LXDE ਆਫਿਸ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:170 ../comps-f33.xml.in.h:163
|
||||
#: ../comps-f34.xml.in.h:163
|
||||
@ -879,13 +885,13 @@ msgid ""
|
||||
"LXQt is a lightweight X11 desktop environment designed for computers with "
|
||||
"low hardware specifications like netbooks, mobile devices or older computers."
|
||||
msgstr ""
|
||||
"LXQt ਇੱਕ ਹਲਕਾ X11 ਡੈਸਕਟਾਪ ਇਨਵਾਇਰਮੈਂਟ ਹੈ ਜੋ ਘੱਟ ਦਰਜੇ ਦੇ ਹਾਰਡਵੇਅਰ ਵਾਲੇ ਕੰਪਿਊਟਰਾਂ ਲਈ ਬਣਾਇਆ ਹੈ "
|
||||
"ਜਿਵੇਂ ਨੈੱਟਬੁੱਕ, ਮੋਬਾਈਲ ਜੰਤਰ ਜਾਂ ਪੁਰਾਣੇ ਕੰਪਿਊਟਰ।"
|
||||
"LXQt ਇੱਕ ਹਲਕਾ X11 ਡੈਸਕਟਾਪ ਇਨਵਾਇਰਮੈਂਟ ਹੈ ਜੋ ਹਲਕੇ ਹਾਰਡਵੇਅਰ ਵਾਲੇ ਕੰਪਿਊਟਰਾਂ ਲਈ "
|
||||
"ਬਣਾਇਆ ਹੈ ਜਿਵੇਂ ਨੈੱਟਬੁੱਕ, ਮੋਬਾਈਲ ਡਿਵਾਈਸਾ ਜਾਂ ਪੁਰਾਣੇ ਕੰਪਿਊਟਰ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:175 ../comps-f33.xml.in.h:168
|
||||
#: ../comps-f34.xml.in.h:168
|
||||
msgid "Translations of LXQt"
|
||||
msgstr ""
|
||||
msgstr "LXQt ਲਈ ਅਨੁਵਾਦ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:176 ../comps-f33.xml.in.h:169
|
||||
#: ../comps-f34.xml.in.h:169
|
||||
@ -900,7 +906,7 @@ msgstr "LXQt ਆਫਿਸ"
|
||||
#: ../comps-f32.xml.in.h:178 ../comps-f33.xml.in.h:171
|
||||
#: ../comps-f34.xml.in.h:171
|
||||
msgid "Office suite for LXQt"
|
||||
msgstr ""
|
||||
msgstr "LXQt ਲਈ ਆਫਿਸ ਸਾਫਟਵੇਅਰ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:179 ../comps-f33.xml.in.h:172
|
||||
#: ../comps-f34.xml.in.h:172
|
||||
@ -941,17 +947,17 @@ msgstr "ਡਾਕਟਰੀ ਐਪਲੀਕੇਸ਼ਨ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:186
|
||||
msgid "This is a group of applications related to health care."
|
||||
msgstr ""
|
||||
msgstr "ਸਿਹਤ ਦੇਖਭਾਲ ਨਾਲ ਸੰਬੰਧਿਤ ਐਪਲੀਕੇਸ਼ਨਾਂ ਦਾ ਸਮੂਹ ਹੈ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:187 ../comps-f33.xml.in.h:178
|
||||
#: ../comps-f34.xml.in.h:178 ../comps-epel7.xml.in.h:166
|
||||
msgid "Milkymist"
|
||||
msgstr ""
|
||||
msgstr "ਮਿਲਕ-ਮਿਸਟ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:188 ../comps-f33.xml.in.h:179
|
||||
#: ../comps-f34.xml.in.h:179 ../comps-epel7.xml.in.h:167
|
||||
msgid "Toolchain for Milkymist hardware engineers."
|
||||
msgstr ""
|
||||
msgstr "Milkymist ਹਾਰਡਵੇਅਰ ਇੰਜਨੀਅਰਾਂ ਲਈ ਟੂਲ-ਚੇਨ ਹੈ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:189 ../comps-f33.xml.in.h:180
|
||||
#: ../comps-f34.xml.in.h:180
|
||||
@ -990,7 +996,7 @@ msgstr "ਡੈਸਕਟਾਪ ਲਈ ਸਾਂਝਾ ਆਡੀਓ/ਵਿਡੀ
|
||||
#: ../comps-f32.xml.in.h:195 ../comps-f33.xml.in.h:186
|
||||
#: ../comps-f34.xml.in.h:186
|
||||
msgid "MariaDB (MySQL) Database"
|
||||
msgstr ""
|
||||
msgstr "MariaDB (MySQL) ਡਾਟਾਬੇਸ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:196 ../comps-f33.xml.in.h:187
|
||||
#: ../comps-f34.xml.in.h:187
|
||||
@ -1051,12 +1057,12 @@ msgstr "OCaml"
|
||||
|
||||
#: ../comps-f32.xml.in.h:206 ../comps-f33.xml.in.h:197
|
||||
#: ../comps-f34.xml.in.h:197
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Support for developing software using the Objective Caml programming "
|
||||
"language and libraries."
|
||||
msgstr ""
|
||||
"ਆਬਜੈਕਟ CAML ਪਰੋਗਰਾਮਿੰਗ ਭਾਸ਼ਾ ਅਤੇ ਲਾਇਬਰੇਰੀਆਂ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਸਾਫਟਵੇਅਰ ਡਿਵੈਲਪ ਕਰਨ ਲਈ ਸਹਿਯੋਗ।"
|
||||
"ਆਬਜੈਕਟ Caml ਪਰੋਗਰਾਮਿੰਗ ਭਾਸ਼ਾ ਅਤੇ ਲਾਇਬਰੇਰੀਆਂ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਸਾਫਟਵੇਅਰ ਡਿਵੈਲਪ "
|
||||
"ਕਰਨ ਲਈ ਸਹਿਯੋਗ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:207 ../comps-f33.xml.in.h:198
|
||||
#: ../comps-f34.xml.in.h:198
|
||||
@ -1070,14 +1076,12 @@ msgstr "ਐਪਲੀਕੇਸ਼ਨਾਂ ਵਿੱਚ ਦਫਤਰੀ ਟੂਲ
|
||||
|
||||
#: ../comps-f32.xml.in.h:209
|
||||
msgid "Online Help and Documentation"
|
||||
msgstr "ਆਨਲਾਈਨ ਮੱਦਦ ਅਤੇ ਡੌਕੂਮੈਂਟੇਸ਼ਨ"
|
||||
msgstr "ਆਨਲਾਈਨ ਮਦਦ ਅਤੇ ਦਸਤਾਵੇਜ਼"
|
||||
|
||||
#: ../comps-f32.xml.in.h:210 ../comps-f33.xml.in.h:200
|
||||
#: ../comps-f34.xml.in.h:200
|
||||
#, fuzzy
|
||||
#| msgid "Cinnamon Desktop"
|
||||
msgid "Pantheon Desktop"
|
||||
msgstr "ਸਿਨਾਮੋਨ ਡੈਸਕਟਾਪ"
|
||||
msgstr "ਪੰਥੋਨ ਡੈਸਕਟਾਪ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:211 ../comps-f33.xml.in.h:201
|
||||
#: ../comps-f34.xml.in.h:201
|
||||
@ -1116,20 +1120,18 @@ msgstr ""
|
||||
|
||||
#: ../comps-f32.xml.in.h:218 ../comps-f33.xml.in.h:210
|
||||
#: ../comps-f34.xml.in.h:210
|
||||
#, fuzzy
|
||||
#| msgid "Marathi Support"
|
||||
msgid "VMware Platform Support"
|
||||
msgstr "ਮਰਾਠੀ ਸਹਿਯੋਗ"
|
||||
msgstr "VMware ਪਲੇਟਫਾਰਮ ਲਈ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:219 ../comps-f33.xml.in.h:211
|
||||
#: ../comps-f34.xml.in.h:211
|
||||
msgid "Packages to install in VMware virtual machines"
|
||||
msgstr ""
|
||||
msgstr "VMware ਵਰਚੁਅਲ ਮਸ਼ੀਨਾਂ ਵਿੱਚ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:220 ../comps-f33.xml.in.h:212
|
||||
#: ../comps-f34.xml.in.h:212
|
||||
msgid "Printing Support"
|
||||
msgstr "ਪਰਿੰਟ ਸਹਿਯੋਗ"
|
||||
msgstr "ਪਰਿੰਟ ਕਰਨ ਲਈ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:221 ../comps-f33.xml.in.h:213
|
||||
#: ../comps-f34.xml.in.h:213
|
||||
@ -1140,24 +1142,22 @@ msgstr "ਸਿਸਟਮ ਪਰਿੰਟ ਕਰਨ ਜਾਂ ਪਰਿੰਟ ਸ
|
||||
#: ../comps-f32.xml.in.h:222 ../comps-f33.xml.in.h:214
|
||||
#: ../comps-f34.xml.in.h:214
|
||||
msgid "Python Classroom"
|
||||
msgstr ""
|
||||
msgstr "ਪਾਈਥਨ ਕਲਾਸਰੂਮ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:223 ../comps-f33.xml.in.h:215
|
||||
#: ../comps-f34.xml.in.h:215
|
||||
msgid "Tools used to teach and learn Python."
|
||||
msgstr ""
|
||||
msgstr "ਪਾਈਥਨ ਸਿਖਾਉਣ ਅਤੇ ਸਿੱਖਣ ਲਈ ਵਰਤੇ ਜਾਂਦੇ ਟੂਲ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:224 ../comps-f33.xml.in.h:216
|
||||
#: ../comps-f34.xml.in.h:216
|
||||
#, fuzzy
|
||||
#| msgid "Python"
|
||||
msgid "Python Science"
|
||||
msgstr "ਪਾਈਥਨ"
|
||||
msgstr "ਪਾਈਥਨ ਸਾਇੰਸ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:225 ../comps-f33.xml.in.h:217
|
||||
#: ../comps-f34.xml.in.h:217
|
||||
msgid "Tools used to do science in Python."
|
||||
msgstr ""
|
||||
msgstr "ਪਾਈਥਨ ਵਿੱਚ ਸਾਇੰਸ ਦੇ ਕੰਮ ਕਰਨ ਲਈ ਟੂਲ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:226 ../comps-f33.xml.in.h:218
|
||||
#: ../comps-f34.xml.in.h:218
|
||||
@ -1187,12 +1187,12 @@ msgstr "ਰੂਬੀ"
|
||||
#: ../comps-f32.xml.in.h:231 ../comps-f33.xml.in.h:223
|
||||
#: ../comps-f34.xml.in.h:223
|
||||
msgid "Basic support for the Ruby programming language."
|
||||
msgstr "ਰੂਬੀ ਪ੍ਰੋਗਰਾਮਿੰਗ ਭਾਸ਼ਾ ਲਈ ਮੁੱਢਲਾ ਸਹਿਯੋਗ"
|
||||
msgstr "ਰੂਬੀ ਪ੍ਰੋਗਰਾਮਿੰਗ ਭਾਸ਼ਾ ਲਈ ਮੁੱਢਲਾ ਸਹਿਯੋਗ ਹੈ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:232 ../comps-f33.xml.in.h:224
|
||||
#: ../comps-f34.xml.in.h:224
|
||||
msgid "Ruby on Rails"
|
||||
msgstr ""
|
||||
msgstr "ਰੂਬੀ ਆਨ ਰੇਲਸ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:233 ../comps-f33.xml.in.h:225
|
||||
#: ../comps-f34.xml.in.h:225
|
||||
@ -1241,9 +1241,8 @@ msgstr "ਫੇਡੋਰਾ ਸਰਵਰ ਉਤਪਾਦ ਕੋਰ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:242 ../comps-f33.xml.in.h:234
|
||||
#: ../comps-f34.xml.in.h:234
|
||||
#, fuzzy
|
||||
msgid "Packages mandatory for the server product."
|
||||
msgstr "ਸਰਵਰ ਲਈ ਪਾਲਸੀ ਪੈਕੇਜ"
|
||||
msgstr "ਸਰਵਰ ਉਤਪਾਦ ਲਈ ਲਾਜ਼ਮੀ ਪੈਕੇਜ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:243 ../comps-f33.xml.in.h:235
|
||||
#: ../comps-f34.xml.in.h:235
|
||||
@ -1280,9 +1279,8 @@ msgstr "PostgreSQL ਡਾਟਾਬੇਸ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:248 ../comps-f33.xml.in.h:240
|
||||
#: ../comps-f34.xml.in.h:240
|
||||
#, fuzzy
|
||||
msgid "This package group includes packages useful for use with PostgreSQL."
|
||||
msgstr "ਇਸ ਪੈਕੇਜ ਗਰੁੱਪ ਵਿੱਚ Postgresql ਨਾਲ ਵਰਤਣ ਲਈ ਲਾਭਦਾਇਕ ਪੈਕੇਜ ਸ਼ਾਮਿਲ ਹਨ।"
|
||||
msgstr "ਇਸ ਪੈਕੇਜ ਗਰੁੱਪ ਵਿੱਚ PostgreSQL ਨਾਲ ਵਰਤਣ ਲਈ ਲਾਭਦਾਇਕ ਪੈਕੇਜ ਸ਼ਾਮਿਲ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:249 ../comps-f33.xml.in.h:241
|
||||
#: ../comps-f34.xml.in.h:241
|
||||
@ -1297,7 +1295,7 @@ msgstr ""
|
||||
#: ../comps-f32.xml.in.h:251 ../comps-f33.xml.in.h:243
|
||||
#: ../comps-f34.xml.in.h:243
|
||||
msgid "Additional Sugar Activities"
|
||||
msgstr ""
|
||||
msgstr "ਵਧੀਕ ਸ਼ੂਗਰ ਸਰਗਰਮੀਆਂ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:252 ../comps-f33.xml.in.h:244
|
||||
#: ../comps-f34.xml.in.h:244
|
||||
@ -1335,13 +1333,12 @@ msgstr "ਟੈਕਸਟ-ਅਧਾਰਿਤ ਇੰਟਰਨੈੱਟ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:258 ../comps-f33.xml.in.h:250
|
||||
#: ../comps-f34.xml.in.h:250
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"This group includes text-based email, web, and chat clients. These "
|
||||
"applications do not require the X Window System."
|
||||
msgstr ""
|
||||
"ਇਸ ਗਰੁੱਪ ਵਿੱਚ ਪਾਠ ਈ-ਮੇਲ, ਵੈੱਬ ਅਤੇ ਚੈਟ ਕਲਾਇਟ ਸ਼ਾਮਿਲ ਹਨ। ਇਹਨਾਂ ਐਪਲੀਕੇਸ਼ਨਾਂ ਲਈ X ਵਿੰਡੋ ਸਿਸਟਮ "
|
||||
"ਲੋੜੀਦਾ ਨਹੀ ਹੈ।"
|
||||
"ਇਸ ਗਰੁੱਪ ਵਿੱਚ ਟੈਕਸਟ ਅਧਾਰਿਤ ਈ-ਮੇਲ, ਵੈੱਬ ਅਤੇ ਚੈਟ ਕਲਾਇਟ ਸ਼ਾਮਿਲ ਹਨ। ਇਹਨਾਂ "
|
||||
"ਐਪਲੀਕੇਸ਼ਨਾਂ ਲਈ X ਵਿੰਡੋ ਸਿਸਟਮ ਲੋੜੀਂਦਾ ਨਹੀਂ ਹੈ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:259 ../comps-f33.xml.in.h:251
|
||||
#: ../comps-f34.xml.in.h:251
|
||||
@ -1351,7 +1348,7 @@ msgstr "ਟੋਮਕੈਟ"
|
||||
#: ../comps-f32.xml.in.h:260 ../comps-f33.xml.in.h:252
|
||||
#: ../comps-f34.xml.in.h:252
|
||||
msgid "Tomcat web application server."
|
||||
msgstr "ਟੋਮੈਕਟ ਵੈੱਬ ਐਪਲੀਕੇਸ਼ਨ ਸਰਵਰ ਹੈ।"
|
||||
msgstr "ਟੋਮਕੈਟ ਵੈੱਬ ਐਪਲੀਕੇਸ਼ਨ ਸਰਵਰ ਹੈ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:261 ../comps-f33.xml.in.h:253
|
||||
#: ../comps-f34.xml.in.h:253
|
||||
@ -1371,12 +1368,12 @@ msgstr "ਵੁਰਚੁਲਾਈਜ਼ੇਸ਼ਨ"
|
||||
#: ../comps-f32.xml.in.h:264 ../comps-f33.xml.in.h:256
|
||||
#: ../comps-f34.xml.in.h:256
|
||||
msgid "These packages provide a graphical virtualization environment."
|
||||
msgstr ""
|
||||
msgstr "ਇਹ ਪੈਕੇਜ ਗਰਾਫਿਕਲ ਵਰਚੁਲਾਈਜ਼ੇਸ਼ਨ ਇਨਵਾਇਰਮੈਂਟ ਦਿੰਦੇ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:265 ../comps-f33.xml.in.h:257
|
||||
#: ../comps-f34.xml.in.h:257
|
||||
msgid "Headless Virtualization"
|
||||
msgstr ""
|
||||
msgstr "ਹੈੱਡਲਿਸ ਵਰਚੁਲਾਈਜ਼ੇਸ਼ਨ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:266 ../comps-f33.xml.in.h:258
|
||||
#: ../comps-f34.xml.in.h:258
|
||||
@ -1407,17 +1404,13 @@ msgstr "ਸਧਾਰਨ ਵਿੰਡੋ ਮੈਨੇਜਰ, ਜੋ ਕਿ ਵੱ
|
||||
#. Translators: Don't translate this product name
|
||||
#: ../comps-f32.xml.in.h:272 ../comps-f33.xml.in.h:264
|
||||
#: ../comps-f34.xml.in.h:264
|
||||
#, fuzzy
|
||||
#| msgid "Fedora Workstation product core"
|
||||
msgid "Fedora Workstation ostree support"
|
||||
msgstr "ਫੇਡੋਰਾ ਵਰਕਸਟੇਸ਼ਨ ਉਤਪਾਦ ਕੋਰ"
|
||||
msgstr "ਫੇਡੋਰਾ ਵਰਕਸਟੇਸ਼ਨ ostree ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:273 ../comps-f33.xml.in.h:265
|
||||
#: ../comps-f34.xml.in.h:265
|
||||
#, fuzzy
|
||||
#| msgid "Packages mandatory for the workstation product."
|
||||
msgid "Packages mandatory for the workstation ostree product."
|
||||
msgstr "ਵਰਕਸਟੇਸ਼ਨ ਉਤਪਾਦ ਲਈ ਲਾਜ਼ਮੀ ਪੈਕੇਜ ਹੈ।"
|
||||
msgstr "ਵਰਕਸਟੇਸ਼ਨ ostree ਉਤਪਾਦ ਲਈ ਲਾਜ਼ਮੀ ਪੈਕੇਜ ਹੈ।"
|
||||
|
||||
#. Translators: Don't translate this product name
|
||||
#: ../comps-f32.xml.in.h:275 ../comps-f33.xml.in.h:267
|
||||
@ -1444,7 +1437,7 @@ msgstr "ਇਹ ਪੈਕੇਜ, ਤੁਹਾਡੇ ਲਈ X ਵਿੰਡੋ ਸ
|
||||
#: ../comps-f32.xml.in.h:279 ../comps-f33.xml.in.h:271
|
||||
#: ../comps-f34.xml.in.h:271
|
||||
msgid "Applications for the Xfce Desktop"
|
||||
msgstr ""
|
||||
msgstr "Xfce ਡੈਸਕਟਾਪ ਲਈ ਐਪਲੀਕੇਸ਼ਨਾਂ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:280 ../comps-f33.xml.in.h:272
|
||||
#: ../comps-f34.xml.in.h:272
|
||||
@ -1476,12 +1469,12 @@ msgstr ""
|
||||
#: ../comps-f32.xml.in.h:285 ../comps-f33.xml.in.h:277
|
||||
#: ../comps-f34.xml.in.h:277
|
||||
msgid "Multimedia support for Xfce"
|
||||
msgstr ""
|
||||
msgstr "Xfce ਲਈ ਮਲਟੀਮੀਡਿਆ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:286 ../comps-f33.xml.in.h:278
|
||||
#: ../comps-f34.xml.in.h:278
|
||||
msgid "Xfce Office"
|
||||
msgstr ""
|
||||
msgstr "Xfce ਆਫਿਸ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:287 ../comps-f33.xml.in.h:279
|
||||
#: ../comps-f34.xml.in.h:279
|
||||
@ -1548,7 +1541,7 @@ msgstr "ਕੇਡੀਈ ਪਲਾਜ਼ਮਾ ਵਰਕਸਪੇਸ"
|
||||
#: ../comps-f32.xml.in.h:299 ../comps-f33.xml.in.h:291
|
||||
#: ../comps-f34.xml.in.h:291
|
||||
msgid "Xfce Desktop"
|
||||
msgstr ""
|
||||
msgstr "Xfce ਡੈਸਕਟਾਪ"
|
||||
|
||||
#. Translators: Don't translate this product name
|
||||
#: ../comps-f32.xml.in.h:301 ../comps-f33.xml.in.h:293
|
||||
@ -1579,7 +1572,7 @@ msgstr "ਫੇਡੋਰਾ ਵਰਕਸਟੇਸ਼ਨ ਲੈਪਟਾਪ ਤੇ
|
||||
#: ../comps-f32.xml.in.h:309 ../comps-f33.xml.in.h:301
|
||||
#: ../comps-f34.xml.in.h:301
|
||||
msgid "LXDE Desktop"
|
||||
msgstr ""
|
||||
msgstr "LXDE ਡੈਸਕਟਾਪ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:310 ../comps-f33.xml.in.h:302
|
||||
#: ../comps-f34.xml.in.h:302 ../comps-epel7.xml.in.h:149
|
||||
@ -1598,10 +1591,8 @@ msgstr "ਮੇਟ ਡੈਸਕਟਾਪ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:313 ../comps-f33.xml.in.h:305
|
||||
#: ../comps-f34.xml.in.h:305
|
||||
#, fuzzy
|
||||
#| msgid "KDE Desktop"
|
||||
msgid "Deepin Desktop"
|
||||
msgstr "ਕੇਡੀਈ ਡੈਸਕਟਾਪ"
|
||||
msgstr "ਡੀਪਿਨ ਡੈਸਕਟਾਪ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:314 ../comps-f33.xml.in.h:306
|
||||
#: ../comps-f34.xml.in.h:306
|
||||
@ -1659,7 +1650,7 @@ msgstr ""
|
||||
#: ../comps-f34.xml.in.h:316 ../comps-epel7.xml.in.h:128
|
||||
#: ../comps-epel8.xml.in.h:21
|
||||
msgid "KDE Desktop"
|
||||
msgstr "ਕੇਡੀਈ ਡੈਸਕਟਾਪ"
|
||||
msgstr "KDE ਡੈਸਕਟਾਪ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:325 ../comps-f33.xml.in.h:317
|
||||
#: ../comps-f34.xml.in.h:317 ../comps-epel8.xml.in.h:22
|
||||
@ -1668,14 +1659,14 @@ msgid ""
|
||||
"user interface which includes a panel, desktop, system icons and desktop "
|
||||
"widgets, and many powerful KDE applications."
|
||||
msgstr ""
|
||||
"ਕੇਡੀਈ ਐਸਸੀ ਵਿੱਚ ਕੇਡੀਈ ਪਲਾਜ਼ਮਾ ਡੈਸਕਟਾਪ, ਉੱਚ-ਸੰਰਚਨਾ ਗਰਾਫਿਕਲ ਯੂਜ਼ਰ ਇੰਟਰਫੇਸ ਸ਼ਾਮਿਲ ਹੈ, ਜਿਸ "
|
||||
"ਵਿੱਚ ਪੈਨਲ, ਡੈਸਕਟਾਪ, ਸਿਸਟਮ ਆਈਕਾਨ ਅਤੇ ਡੈਸਕਟਾਪ ਵਿਦਜੈੱਟ ਤੇ ਕੋਈ ਹੋਰ ਮਜ਼ਬੂਤ ਕੇਡੀਈ ਐਪਲੀਕੇਸ਼ਨ ਸ਼ਾਮਿਲ "
|
||||
"ਹਨ।"
|
||||
"KDE ਐਸਸੀ ਵਿੱਚ KDE ਪਲਾਜ਼ਮਾ ਡੈਸਕਟਾਪ, ਉੱਚ-ਸੰਰਚਨਾ ਗਰਾਫਿਕਲ ਯੂਜ਼ਰ ਇੰਟਰਫੇਸ ਸ਼ਾਮਿਲ ਹੈ, "
|
||||
"ਜਿਸ ਵਿੱਚ ਪੈਨਲ, ਡੈਸਕਟਾਪ, ਸਿਸਟਮ ਆਈਕਾਨ ਅਤੇ ਡੈਸਕਟਾਪ ਵਿਜੈੱਟ ਤੇ ਕੋਈ ਹੋਰ ਮਜ਼ਬੂਤ KDE "
|
||||
"ਐਪਲੀਕੇਸ਼ਨ ਸ਼ਾਮਿਲ ਹਨ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:326 ../comps-f33.xml.in.h:318
|
||||
#: ../comps-f34.xml.in.h:318 ../comps-epel7.xml.in.h:303
|
||||
msgid "Applications"
|
||||
msgstr "ਐਪਲੀਕੇਸ਼ਨ"
|
||||
msgstr "ਐਪਲੀਕੇਸ਼ਨਾਂ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:327 ../comps-f33.xml.in.h:319
|
||||
#: ../comps-f34.xml.in.h:319
|
||||
@ -1725,21 +1716,21 @@ msgstr "ਸੰਖੇਪ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:336
|
||||
msgid "Text and other Free content."
|
||||
msgstr "ਟੈਕਸਟ ਅਤੇ ਹੋਰ ਫਰੀ ਸੰਖੇਪ"
|
||||
msgstr "ਟੈਕਸਟ ਅਤੇ ਹੋਰ ਫਰੀ ਸਮੱਗਰੀ।"
|
||||
|
||||
#: ../comps-f32.xml.in.h:337 ../comps-f33.xml.in.h:327
|
||||
#: ../comps-f34.xml.in.h:327
|
||||
msgid "Neuroscience"
|
||||
msgstr ""
|
||||
msgstr "ਨਿਊਰੋ-ਸਾਇੰਸ"
|
||||
|
||||
#: ../comps-f32.xml.in.h:338 ../comps-f33.xml.in.h:328
|
||||
#: ../comps-f34.xml.in.h:328
|
||||
msgid "Tools for Neuroscience."
|
||||
msgstr ""
|
||||
msgstr "ਨਿਊਰੋ-ਸਾਇੰਸ ਲਈ ਟੂਲ ਹਨ।"
|
||||
|
||||
#: ../comps-f33.xml.in.h:206 ../comps-f34.xml.in.h:206
|
||||
msgid "A phone/tablet UX environment"
|
||||
msgstr ""
|
||||
msgstr "ਫ਼ੋਨ/ਟੇਬਲੇਟ UX ਇੰਨਵਾਇਰਮੈਂਟ"
|
||||
|
||||
#: ../comps-f33.xml.in.h:207 ../comps-f34.xml.in.h:207
|
||||
msgid "A phone/tablet desktop UX based on GNOME3 technologies."
|
||||
@ -1796,7 +1787,7 @@ msgstr "ਬੈਕਅੱਪ ਸਰਵਰ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:13
|
||||
msgid "Software to centralize your infrastructure's backups."
|
||||
msgstr "ਤੁਹਾਡੇ ਇੰਫਰਾਸਟੱਕਚਰ ਦੇ ਬੈਕਅੱਪ ਵਾਸਤੇ ਸੈਂਟਰਲਾਈਜ਼ ਲਈ ਸਾਫਟਵੇਅਰ"
|
||||
msgstr "ਤੁਹਾਡੇ ਇੰਫਰਾਸਟੱਕਚਰ ਦੇ ਬੈਕਅੱਪ ਵਾਸਤੇ ਸੈਂਟਰਲਾਈਜ਼ ਲਈ ਸਾਫਟਵੇਅਰ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:14
|
||||
msgid "Base"
|
||||
@ -1898,7 +1889,7 @@ msgstr "ਕੋਪਟਿਕ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:42
|
||||
msgid "Smallest possible installation."
|
||||
msgstr "ਸਭ ਤੋਂ ਛੋਟੀ ਸੰਭਵ ਇੰਸਟਾਲੇਸ਼ਨ"
|
||||
msgstr "ਸਭ ਤੋਂ ਛੋਟੀ ਸੰਭਵ ਇੰਸਟਾਲੇਸ਼ਨ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:43
|
||||
msgid "Croatian Support"
|
||||
@ -1936,7 +1927,7 @@ msgstr "ਡੈਸਕਟਾਪ ਪਲੇਟਫਾਰਮ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:51
|
||||
msgid "Supported libraries for the Enterprise Linux Desktop Platform."
|
||||
msgstr "ਇੰਟਰਪਰਾਈਜ਼ ਲੀਨਕਸ ਡੈਸਕਟਾਪ ਪਲੇਟਫਾਰਮ ਲਈ ਸਹਾਇਕ ਲਾਇਬਰੇਰੀਆਂ"
|
||||
msgstr "ਇੰਟਰਪਰਾਈਜ਼ ਲੀਨਕਸ ਡੈਸਕਟਾਪ ਪਲੇਟਫਾਰਮ ਲਈ ਸਹਾਇਕ ਲਾਇਬਰੇਰੀਆਂ ਹਨ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:52
|
||||
msgid "Desktop Platform Development"
|
||||
@ -1954,7 +1945,7 @@ msgstr "ਡਿਵੈਲਪਮੈਂਟ ਟੂਲ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:55
|
||||
msgid "A basic development environment."
|
||||
msgstr "ਮੁੱਢਲਾ ਡਿਵੈਲਪਮੈਂਟ ਇੰਵਾਇਰਨਮੈਂਟ"
|
||||
msgstr "ਮੁੱਢਲਾ ਡਿਵੈਲਪਮੈਂਟ ਇੰਵਾਇਰਨਮੈਂਟ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:57
|
||||
msgid "Tools for connecting via PPP or ISDN."
|
||||
@ -1974,7 +1965,7 @@ msgstr "ਡੱਚ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:63
|
||||
msgid "Eclipse"
|
||||
msgstr "ਇਲਿਪਸ"
|
||||
msgstr "Eclipse"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:64
|
||||
msgid "Eclipse-based Integrated Development Environment."
|
||||
@ -1982,11 +1973,11 @@ msgstr ""
|
||||
|
||||
#: ../comps-epel7.xml.in.h:66
|
||||
msgid "Educational software for learning."
|
||||
msgstr "ਸਿੱਖਣ ਲਈ ਵਿਦਿਅਕ ਸਾਫਟਵੇਅਰ"
|
||||
msgstr "ਸਿੱਖਣ ਲਈ ਵਿਦਿਅਕ ਸਾਫਟਵੇਅਰ ਹਨ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:68
|
||||
msgid "Design and Simulation tools for hardware engineers."
|
||||
msgstr "ਹਾਰਡਵੇਅਰ ਇੰਜਨੀਅਰਾਂ ਲਈ ਡਿਜ਼ਾਇਨ ਅਤੇ ਸਿਮੂਲੇਸ਼ਨ ਟੂਲ"
|
||||
msgstr "ਹਾਰਡਵੇਅਰ ਇੰਜਨੀਅਰਾਂ ਲਈ ਡਿਜ਼ਾਇਨ ਅਤੇ ਸਿਮੂਲੇਸ਼ਨ ਟੂਲ ਹਨ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:69
|
||||
msgid "Emacs"
|
||||
@ -2066,7 +2057,7 @@ msgstr "ਆਮ ਵਰਤੋਂ ਲਈ ਡੈਸਕਟਾਪ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:90
|
||||
msgid "A general purpose desktop."
|
||||
msgstr "ਆਮ ਵਰਤੋਂ ਲਈ ਡੈਸਕਟਾਪ"
|
||||
msgstr "ਆਮ ਵਰਤੋਂ ਲਈ ਡੈਸਕਟਾਪ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:91
|
||||
msgid "Georgian Support"
|
||||
@ -2209,7 +2200,7 @@ msgstr "ਕਜ਼ਾਕ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:129
|
||||
msgid "A KDE desktop."
|
||||
msgstr "KDE ਡੈਸਕਟਾਪ"
|
||||
msgstr "KDE ਡੈਸਕਟਾਪ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:130
|
||||
msgid "Khmer Support"
|
||||
@ -2253,7 +2244,7 @@ msgstr "ਲਾਟਵੀਅਨ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:140
|
||||
msgid "Legacy UNIX compatibility"
|
||||
msgstr ""
|
||||
msgstr "ਪੁਰਾਣੇ ਯੂਨੈਕਸ ਅਨੁਕੂਲਤਾ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:141
|
||||
msgid ""
|
||||
@ -2263,7 +2254,7 @@ msgstr ""
|
||||
|
||||
#: ../comps-epel7.xml.in.h:142
|
||||
msgid "Legacy X Window System compatibility"
|
||||
msgstr ""
|
||||
msgstr "ਪੁਰਾਣੇ X ਵਿੰਡੋ ਸਿਸਟਮ ਲਈ ਅਨੁਕੂਲਤਾ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:143
|
||||
msgid ""
|
||||
@ -2273,7 +2264,7 @@ msgstr ""
|
||||
|
||||
#: ../comps-epel7.xml.in.h:144
|
||||
msgid "Basic legacy X Window System compatibility"
|
||||
msgstr ""
|
||||
msgstr "ਮੁੱਢਲੀ ਪੁਰਾਣੇ X ਵਿੰਡੋ ਸਿਸਟਮ ਅਨੁਕੂਲਤਾ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:145
|
||||
msgid ""
|
||||
@ -2410,6 +2401,7 @@ msgid "Norwegian Support"
|
||||
msgstr "ਨਾਰਵੇਆਈ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:184
|
||||
#, fuzzy
|
||||
msgid "Occitan Support"
|
||||
msgstr "ਉੱਸੀਤਾਨ ਸਹਿਯੋਗ"
|
||||
|
||||
@ -2419,7 +2411,7 @@ msgstr "ਆਫਿਸ ਸੂਟ ਅਤੇ ਪ੍ਰੋਡੱਕਟਿਵਟੀ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:186
|
||||
msgid "A full-purpose office suite, and other productivity tools."
|
||||
msgstr "ਪੂਰਾ ਆਫਿਸ ਸੂਟ ਅਤੇ ਹੋਰ ਉਤਪਾਦਨ ਟੂਲ ਹਨ।"
|
||||
msgstr "ਪੂਰਾ ਆਫਿਸ ਸਮੂਹ ਅਤੇ ਹੋਰ ਉਤਪਾਦਨ ਟੂਲ ਹਨ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:187
|
||||
msgid "Oriya Support"
|
||||
@ -2443,7 +2435,7 @@ msgstr ""
|
||||
|
||||
#: ../comps-epel7.xml.in.h:192
|
||||
msgid "Persian Support"
|
||||
msgstr "ਪਰਸੀਆਈ ਸਹਿਯੋਗ"
|
||||
msgstr "ਫਾਰਸੀ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:193
|
||||
msgid "PHP Support"
|
||||
@ -2451,7 +2443,7 @@ msgstr "PHP ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:194
|
||||
msgid "PHP web application framework."
|
||||
msgstr "PHP ਵੈਬ ਐਪਲੀਕੇਸ਼ਨ ਫਰੇਮਵਰਕ"
|
||||
msgstr "PHP ਵੈਬ ਐਪਲੀਕੇਸ਼ਨ ਫਰੇਮਵਰਕ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:195
|
||||
msgid "Polish Support"
|
||||
@ -2479,7 +2471,7 @@ msgstr ""
|
||||
|
||||
#: ../comps-epel7.xml.in.h:201
|
||||
msgid "Printing client"
|
||||
msgstr "ਪਰਿੰਟਿੰਗ ਕਲਾਇਟ"
|
||||
msgstr "ਪਰਿੰਟਿੰਗ ਕਲਾਈਂਟ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:202
|
||||
msgid "Tools for printing to a local printer or a remote print server."
|
||||
@ -2499,7 +2491,7 @@ msgstr "ਪੰਜਾਬੀ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:206
|
||||
msgid "Remote Desktop Clients"
|
||||
msgstr "ਰਿਮੋਟ ਡੈਸਕਟਾਪ ਕਲਾਇਟ"
|
||||
msgstr "ਰਿਮੋਟ ਡੈਸਕਟਾਪ ਕਲਾਈਂਟ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:207
|
||||
msgid "Romanian Support"
|
||||
@ -2544,7 +2536,7 @@ msgstr "ਸਰਵਰ ਪਲੇਟਫਾਰਮ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:217
|
||||
msgid "Supported libraries for the Enterprise Linux Server Platform."
|
||||
msgstr "ਇੰਟਰਪਰਾਈਜ਼ ਲੀਨਕਸ ਸਰਵਰ ਪਲੇਟਫਾਰਮ ਲਈ ਸਹਾਇਕ ਲਾਇਬਰੇਰੀਆਂ"
|
||||
msgstr "ਇੰਟਰਪਰਾਈਜ਼ ਲੀਨਕਸ ਸਰਵਰ ਪਲੇਟਫਾਰਮ ਲਈ ਸਹਾਇਕ ਲਾਇਬਰੇਰੀਆਂ ਹਨ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:218
|
||||
msgid "Server Platform Development"
|
||||
@ -2562,7 +2554,7 @@ msgstr "ਸਰਵਰ ਪਾਲਸੀ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:221
|
||||
msgid "Policy packages for the Server variant."
|
||||
msgstr "ਸਰਵਰ ਲਈ ਪਾਲਸੀ ਪੈਕੇਜ"
|
||||
msgstr "ਸਰਵਰ ਲਈ ਪਾਲਸੀ ਪੈਕੇਜ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:222
|
||||
msgid "Sindhi Support"
|
||||
@ -2586,7 +2578,7 @@ msgstr "ਸਮਾਰਟ ਕਾਰਡ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:227
|
||||
msgid "Support for using smart card authentication."
|
||||
msgstr "ਸਮਾਰਟ ਕਾਰਡ ਪਰਮਾਣਕਿਤਾ ਲਈ ਸਹਿਯੋਗ"
|
||||
msgstr "ਸਮਾਰਟ ਕਾਰਡ ਪਰਮਾਣਕਿਤਾ ਲਈ ਸਹਿਯੋਗ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:228
|
||||
msgid "Southern Ndebele Support"
|
||||
@ -2650,7 +2642,7 @@ msgstr "ਸਿਸਟਮ ਪਰਸ਼ਾਸ਼ਨ ਟੂਲ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:243
|
||||
msgid "Utilities useful in system administration."
|
||||
msgstr "ਸਿਸਟਮ ਪਰਸ਼ਾਸ਼ਨ ਲਈ ਲੋੜੀਦੀਆਂ ਸਹੂਲਤਾਂ"
|
||||
msgstr "ਸਿਸਟਮ ਪਰਸ਼ਾਸ਼ਨ ਲਈ ਲੋੜੀਦੀਆਂ ਸਹੂਲਤਾਂ ਹਨ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:244
|
||||
msgid "System Management"
|
||||
@ -2682,7 +2674,7 @@ msgstr "SNMP ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:251
|
||||
msgid "SNMP management agent."
|
||||
msgstr "SNMP ਪ੍ਰਬੰਧ ਏਜੰਟ"
|
||||
msgstr "SNMP ਪ੍ਰਬੰਧ ਏਜੰਟ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:252
|
||||
msgid "Web-Based Enterprise Management"
|
||||
@ -2710,7 +2702,7 @@ msgstr "ਤਕਨੀਕੀ ਲੇਖਣ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:258
|
||||
msgid "Tools for writing technical documentation."
|
||||
msgstr "ਤਕਨੀਕੀ ਦਸਤਾਵੇਜ਼ ਲਿਖਣ ਲਈ ਟੂਲ"
|
||||
msgstr "ਤਕਨੀਕੀ ਦਸਤਾਵੇਜ਼ ਲਿਖਣ ਲਈ ਟੂਲ ਹਨ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:259
|
||||
msgid "Telugu Support"
|
||||
@ -2754,11 +2746,11 @@ msgstr ""
|
||||
|
||||
#: ../comps-epel7.xml.in.h:269
|
||||
msgid "Turkish Support"
|
||||
msgstr "ਤੁਰਕ ਸਹਿਯੋਗ"
|
||||
msgstr "ਤੁਰਕੀ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:270
|
||||
msgid "Turkmen Support"
|
||||
msgstr "ਤੁਰਕ ਸਹਿਯੋਗ"
|
||||
msgstr "ਤੁਰਕਮਨ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:271
|
||||
msgid "Ukrainian Support"
|
||||
@ -2770,7 +2762,7 @@ msgstr "ਅੱਪਰ ਸੋਰਬੀਆਈ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:273
|
||||
msgid "Urdu Support"
|
||||
msgstr "ਉਰਦੂ ਸਹਿਯੋਗ"
|
||||
msgstr "ਉੜਦੂ ਸਹਿਯੋਗ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:274
|
||||
msgid "Uzbek Support"
|
||||
@ -2843,7 +2835,7 @@ msgstr "ਵਰਕਸਟੇਸ਼ਨ ਪਾਲਸੀ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:292
|
||||
msgid "Policy packages for the Workstation variant."
|
||||
msgstr "ਵਰਕਸਟੇਸ਼ਨ ਲਈ ਪਾਲਸੀ ਪੈਕੇਜ"
|
||||
msgstr "ਵਰਕਸਟੇਸ਼ਨ ਲਈ ਪਾਲਸੀ ਪੈਕੇਜ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:293
|
||||
msgid "X Window System"
|
||||
@ -2851,7 +2843,7 @@ msgstr "X ਵਿੰਡੋ ਸਿਸਟਮ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:294
|
||||
msgid "X Window System Support."
|
||||
msgstr "X ਵਿੰਡੋ ਸਿਸਟਮ ਸਹਿਯੋਗ"
|
||||
msgstr "X ਵਿੰਡੋ ਸਿਸਟਮ ਸਹਿਯੋਗ ਹੈ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:297
|
||||
msgid "Xhosa Support"
|
||||
@ -2867,15 +2859,15 @@ msgstr "ਡੈਸਕਟਾਪ"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:302
|
||||
msgid "Desktops and thin clients."
|
||||
msgstr "ਡੈਸਕਟਾਪ ਅਤੇ ਥਿੰਨ ਕਲਾਇਟ"
|
||||
msgstr "ਡੈਸਕਟਾਪ ਅਤੇ ਥਿੰਨ ਕਲਾਈਂਟ ਹਨ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:304
|
||||
msgid "End-user applications."
|
||||
msgstr "ਐਂਡ-ਯੂਜ਼ਰ ਐਪਲੀਕੇਸ਼ਨ।"
|
||||
msgstr "ਐਂਡ-ਯੂਜ਼ਰ ਐਪਲੀਕੇਸ਼ਨ ਹਨ।"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:306
|
||||
msgid "Development tools and libraries."
|
||||
msgstr "ਡਿਵੈਲਪਮੈਂਟ ਟੂਲ ਅਤੇ ਲਾਇਬਰੇਰੀਆਂ"
|
||||
msgstr "ਡਿਵੈਲਪਮੈਂਟ ਟੂਲ ਅਤੇ ਲਾਇਬਰੇਰੀਆਂ ਹਨ।"
|
||||
|
||||
#~ msgid "Bodo Support"
|
||||
#~ msgstr "ਬੋਡੋ ਸਹਿਯੋਗ"
|
||||
|
54
po/zh_CN.po
54
po/zh_CN.po
@ -21,13 +21,13 @@
|
||||
# mosquito <sensor.wen@gmail.com>, 2016. #zanata
|
||||
# Tian Shixiong <tiansworld@gmail.com>, 2020.
|
||||
# Charles Lee <lchopn@gmail.com>, 2020.
|
||||
# Jingge Chen <mariocanfly@hotmail.com>, 2022.
|
||||
# Jingge Chen <mariocanfly@hotmail.com>, 2022, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-07 13:23-0800\n"
|
||||
"PO-Revision-Date: 2022-10-30 13:19+0000\n"
|
||||
"PO-Revision-Date: 2023-12-10 12:43+0000\n"
|
||||
"Last-Translator: Jingge Chen <mariocanfly@hotmail.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://translate.fedoraproject.org/"
|
||||
"projects/fedora-comps/main/zh_CN/>\n"
|
||||
@ -36,7 +36,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
"X-Generator: Weblate 5.2.1\n"
|
||||
|
||||
#: ../comps-f32.xml.in.h:1 ../comps-f33.xml.in.h:1 ../comps-f34.xml.in.h:1
|
||||
msgid "3D Printing"
|
||||
@ -66,15 +66,15 @@ msgstr "ARM工具"
|
||||
|
||||
#: ../comps-f32.xml.in.h:7 ../comps-f33.xml.in.h:7 ../comps-f34.xml.in.h:7
|
||||
msgid "Tools for working with arm systems"
|
||||
msgstr ""
|
||||
msgstr "用于开发ARM系统的工具"
|
||||
|
||||
#: ../comps-f32.xml.in.h:8 ../comps-f33.xml.in.h:8 ../comps-f34.xml.in.h:8
|
||||
msgid "x86 Baremetal Tools"
|
||||
msgstr ""
|
||||
msgstr "x86裸金属工具"
|
||||
|
||||
#: ../comps-f32.xml.in.h:9 ../comps-f33.xml.in.h:9 ../comps-f34.xml.in.h:9
|
||||
msgid "Tools for working with baremetal x86 systems"
|
||||
msgstr ""
|
||||
msgstr "使用裸机 x86 系统的工具"
|
||||
|
||||
#: ../comps-f32.xml.in.h:10 ../comps-f33.xml.in.h:10 ../comps-f34.xml.in.h:10
|
||||
msgid "Audio Production"
|
||||
@ -175,16 +175,12 @@ msgid ""
|
||||
msgstr "为运行在 \"cloud\" 环境中的服务器和系统镜像提供的软件"
|
||||
|
||||
#: ../comps-f32.xml.in.h:31 ../comps-f33.xml.in.h:29 ../comps-f34.xml.in.h:29
|
||||
#, fuzzy
|
||||
#| msgid "MATE Compiz"
|
||||
msgid "Compiz"
|
||||
msgstr "MATE Compiz"
|
||||
msgstr "Compiz"
|
||||
|
||||
#: ../comps-f32.xml.in.h:32 ../comps-f33.xml.in.h:30 ../comps-f34.xml.in.h:30
|
||||
#, fuzzy
|
||||
#| msgid "This package group adds Compiz and Emerald to MATE desktop"
|
||||
msgid "This package group adds Compiz and Emerald"
|
||||
msgstr "此软件组为 MATE 桌面提供 Compiz 和 Emerald"
|
||||
msgstr "该软件包组添加了 Compiz 和 Emerald"
|
||||
|
||||
#: ../comps-f32.xml.in.h:33 ../comps-f33.xml.in.h:31 ../comps-f34.xml.in.h:31
|
||||
msgid "Container Management"
|
||||
@ -226,14 +222,10 @@ msgid "Critical Path (Deepin desktop)"
|
||||
msgstr "关键路径(Deepin桌面)"
|
||||
|
||||
#: ../comps-f32.xml.in.h:42 ../comps-f33.xml.in.h:40 ../comps-f34.xml.in.h:40
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "A set of packages that provide the Critical Path functionality for the "
|
||||
#| "KDE desktop"
|
||||
msgid ""
|
||||
"A set of packages that provide the Critical Path functionality for the "
|
||||
"Deepin desktop"
|
||||
msgstr "一组为 KDE 桌面提供关键路径功能的软件包"
|
||||
msgstr "一组为 Deepin 桌面提供关键路径功能的软件包"
|
||||
|
||||
#: ../comps-f32.xml.in.h:43 ../comps-f33.xml.in.h:41 ../comps-f34.xml.in.h:41
|
||||
msgid "Critical Path (GNOME)"
|
||||
@ -304,7 +296,7 @@ msgstr "Deepin桌面环境"
|
||||
msgid ""
|
||||
"Deepin Desktop is a desktop environment aims at being elegant and easy to "
|
||||
"use."
|
||||
msgstr ""
|
||||
msgstr "Deepin Desktop 是一种桌面环境,旨在优雅、易用。"
|
||||
|
||||
#: ../comps-f32.xml.in.h:57 ../comps-f33.xml.in.h:55 ../comps-f34.xml.in.h:55
|
||||
msgid "Deepin Desktop Applications"
|
||||
@ -892,7 +884,7 @@ msgstr ""
|
||||
#: ../comps-f32.xml.in.h:175 ../comps-f33.xml.in.h:168
|
||||
#: ../comps-f34.xml.in.h:168
|
||||
msgid "Translations of LXQt"
|
||||
msgstr ""
|
||||
msgstr "转移到LXQt"
|
||||
|
||||
#: ../comps-f32.xml.in.h:176 ../comps-f33.xml.in.h:169
|
||||
#: ../comps-f34.xml.in.h:169
|
||||
@ -1032,14 +1024,14 @@ msgstr ""
|
||||
#: ../comps-f32.xml.in.h:201 ../comps-f33.xml.in.h:192
|
||||
#: ../comps-f34.xml.in.h:192
|
||||
msgid "Neuron Modelling Simulators"
|
||||
msgstr ""
|
||||
msgstr "神经元建模模拟器"
|
||||
|
||||
#: ../comps-f32.xml.in.h:202 ../comps-f33.xml.in.h:193
|
||||
#: ../comps-f34.xml.in.h:193
|
||||
msgid ""
|
||||
"This group includes simulators used in modelling of neurons and their "
|
||||
"networks."
|
||||
msgstr ""
|
||||
msgstr "这一组包括用于神经元及其网络建模的模拟器。"
|
||||
|
||||
#: ../comps-f32.xml.in.h:203 ../comps-f33.xml.in.h:194
|
||||
#: ../comps-f34.xml.in.h:194
|
||||
@ -1085,7 +1077,7 @@ msgstr "Pantheon 桌面环境"
|
||||
#: ../comps-f32.xml.in.h:211 ../comps-f33.xml.in.h:201
|
||||
#: ../comps-f34.xml.in.h:201
|
||||
msgid "The Pantheon desktop environment is the DE that powers elementaryOS."
|
||||
msgstr ""
|
||||
msgstr "Pantheon 是支持 elementaryOS 的桌面环境。"
|
||||
|
||||
#: ../comps-f32.xml.in.h:212 ../comps-f33.xml.in.h:202
|
||||
#: ../comps-f34.xml.in.h:202
|
||||
@ -1125,7 +1117,7 @@ msgstr "VMware平台支持"
|
||||
#: ../comps-f32.xml.in.h:219 ../comps-f33.xml.in.h:211
|
||||
#: ../comps-f34.xml.in.h:211
|
||||
msgid "Packages to install in VMware virtual machines"
|
||||
msgstr ""
|
||||
msgstr "在 VMware 虚拟机中安装软件包"
|
||||
|
||||
#: ../comps-f32.xml.in.h:220 ../comps-f33.xml.in.h:212
|
||||
#: ../comps-f34.xml.in.h:212
|
||||
@ -1141,12 +1133,12 @@ msgstr "安装这些工具,使系统能够打印或充当打印服务器。"
|
||||
#: ../comps-f32.xml.in.h:222 ../comps-f33.xml.in.h:214
|
||||
#: ../comps-f34.xml.in.h:214
|
||||
msgid "Python Classroom"
|
||||
msgstr ""
|
||||
msgstr "Python 教室"
|
||||
|
||||
#: ../comps-f32.xml.in.h:223 ../comps-f33.xml.in.h:215
|
||||
#: ../comps-f34.xml.in.h:215
|
||||
msgid "Tools used to teach and learn Python."
|
||||
msgstr ""
|
||||
msgstr "用于教授和学习 Python 的工具。"
|
||||
|
||||
#: ../comps-f32.xml.in.h:224 ../comps-f33.xml.in.h:216
|
||||
#: ../comps-f34.xml.in.h:216
|
||||
@ -1156,7 +1148,7 @@ msgstr "Python 科学"
|
||||
#: ../comps-f32.xml.in.h:225 ../comps-f33.xml.in.h:217
|
||||
#: ../comps-f34.xml.in.h:217
|
||||
msgid "Tools used to do science in Python."
|
||||
msgstr ""
|
||||
msgstr "用 Python 进行科学研究的工具。"
|
||||
|
||||
#: ../comps-f32.xml.in.h:226 ../comps-f33.xml.in.h:218
|
||||
#: ../comps-f34.xml.in.h:218
|
||||
@ -1596,7 +1588,7 @@ msgstr "Deepin 桌面环境"
|
||||
msgid ""
|
||||
"Deepin desktop is the desktop environment released with deepin. It aims at "
|
||||
"being elegant and easy to use."
|
||||
msgstr ""
|
||||
msgstr "Deepin desktop 是与 deepin 一起发布的桌面环境。它的目标是优雅、易用。"
|
||||
|
||||
#: ../comps-f32.xml.in.h:315 ../comps-f33.xml.in.h:307
|
||||
#: ../comps-f34.xml.in.h:307
|
||||
@ -1717,20 +1709,20 @@ msgstr "文本和其它免费内容。"
|
||||
#: ../comps-f32.xml.in.h:337 ../comps-f33.xml.in.h:327
|
||||
#: ../comps-f34.xml.in.h:327
|
||||
msgid "Neuroscience"
|
||||
msgstr ""
|
||||
msgstr "神经科学"
|
||||
|
||||
#: ../comps-f32.xml.in.h:338 ../comps-f33.xml.in.h:328
|
||||
#: ../comps-f34.xml.in.h:328
|
||||
msgid "Tools for Neuroscience."
|
||||
msgstr ""
|
||||
msgstr "神经科学工具。"
|
||||
|
||||
#: ../comps-f33.xml.in.h:206 ../comps-f34.xml.in.h:206
|
||||
msgid "A phone/tablet UX environment"
|
||||
msgstr ""
|
||||
msgstr "手机/平板电脑用户体验环境"
|
||||
|
||||
#: ../comps-f33.xml.in.h:207 ../comps-f34.xml.in.h:207
|
||||
msgid "A phone/tablet desktop UX based on GNOME3 technologies."
|
||||
msgstr ""
|
||||
msgstr "基于 GNOME3 技术的手机/平板电脑用户体验。"
|
||||
|
||||
#: ../comps-epel7.xml.in.h:1
|
||||
msgid "Additional Development"
|
||||
|
@ -39,7 +39,7 @@ def cli(content_resolver_url, content_resolver_view, infile, outfile):
|
||||
comps_group["packagelist"] = OrderedDict()
|
||||
comps_group["packagelist"]["packagereq"] = list()
|
||||
|
||||
ARCHES = ["aarch64", "ppc64le", "s390x", "x86_64"]
|
||||
ARCHES = ["aarch64", "ppc64le", "s390x", "x86_64", "riscv64"]
|
||||
package_arches = defaultdict(set)
|
||||
for arch in ARCHES:
|
||||
r = requests.get(
|
||||
|
Loading…
x
Reference in New Issue
Block a user