Go to file
Petr Šplíchal 3d37582bc2 Use FMF filter instead of listing tests manually
There is a new feature in the Standard Test Roles which allows to
use an FMF filter instead of listing all tests manually. All tier
one selinux tests are selected as well, thus extending requires.
2018-10-02 13:48:10 +02:00
tests Use FMF filter instead of listing tests manually 2018-10-02 13:48:10 +02:00
.gitignore Split translations into sub-tarballs 2018-08-07 17:33:39 +02:00
README.translations Update README.translations to reflect recent changes and add default zanata.xml 2018-08-07 18:01:26 +02:00
make-rhat-patches.sh Merge branch 'private-master-2.4' 2015-07-20 18:34:55 +02:00
policycoreutils-fedora.patch policycoreutils-2.8-9 2018-09-14 21:54:29 +02:00
policycoreutils.spec policycoreutils-2.8-10 2018-10-02 09:39:49 +02:00
restorecond-fedora.patch SELinux userspace 2.8-rc1 release candidate 2018-04-23 14:31:24 +02:00
selinux-autorelabel selinux-autorelabel: Increment boot_indeterminate grub environment variable 2018-06-18 11:03:49 +02:00
selinux-autorelabel-generator.sh Use generator approach to fix autorelabel. 2016-07-20 22:31:07 +02:00
selinux-autorelabel-mark.service Do not use symlinks to enable selinux-autorelabel-mark.service 2018-07-16 13:35:12 +02:00
selinux-autorelabel.service Use generator approach to fix autorelabel. 2016-07-20 22:31:07 +02:00
selinux-autorelabel.target Use generator approach to fix autorelabel. 2016-07-20 22:31:07 +02:00
selinux-dbus-fedora.patch policycoreutils-2.8-1 2018-05-25 11:45:50 +02:00
selinux-gui-fedora.patch Use patch'es without translations since they are in separete tarballs 2018-08-07 18:01:26 +02:00
selinux-python-fedora.patch policycoreutils-2.8-10 2018-10-02 09:39:49 +02:00
selinux-sandbox-fedora.patch Use patch'es without translations since they are in separete tarballs 2018-08-07 18:01:26 +02:00
semodule-utils-fedora.patch SELinux userspace 2.8-rc1 release candidate 2018-04-23 14:31:24 +02:00
sepolicy-help.tgz Fixes for sepolicy gui 2013-10-02 16:25:25 -04:00
sepolicy-icons.tgz Speed up startup time of sepolicy gui 2013-11-15 09:06:16 -05:00
sources policycoreutils-2.8-8 2018-09-13 12:49:48 +02:00
system-config-selinux.png Fix empty system-config-selinux.png 2013-02-12 16:16:02 -05:00
zanata.xml Update README.translations to reflect recent changes and add default zanata.xml 2018-08-07 18:01:26 +02:00

README.translations

policycoreutils translations currently live in the following locations:

- https://fedora.zanata.org/project/view/selinux
  - contains translations for both stable (Red Hat Enterprise Linux) and master (Fedora) branches
  - maintains large number of languages (several of which do not actually contain any translated strings)
  - updated by community and partially by RH localization effort

- selinux source repository (https://github.com/fedora-selinux/selinux)
  - is kept up-to-date with fedora.zanata

How to update source files on fedora.zanata:
  $ git clone git@github.com:fedora-selinux/selinux.git
  $ cd selinux

  # generate new potfile
  $ for p in policycoreutils python gui sandbox; do
    cd $p/po
    make $p.pot
    cd -
    done

  # Push potfiles to zanata
  $ zanata-cli push --push-type source

How to pull new translations from zanata
  $ git clone git@github.com:fedora-selinux/selinux.git
  $ cd selinux
  # Make sure "zanata.xml" file pointing to corresponding translations branch is present
  # Optionally update source files on zanata
  # Pull new translations from zanata
  $ zanata-cli -e pull --pull-type trans

How to update translations *-po.tgz files
  $ mkdir zanata
  $ cd zanata
  $ zanata-cli -e pull --project-config ../zanata.xml  --pull-type both
  $ for p in policycoreutils python gui sandbox; do
    cd $p
    tar -c -f ../../$p-po.tgz -z .
    cd -
    done