aboutsummaryrefslogtreecommitdiff
path: root/po
Commit message (Collapse)AuthorAgeFilesLines
...
* po: update Polish translation (#8169)Piotr Drąg2018-02-141-126/+142
|
* po: update French translationSylvain Plantefève2018-02-141-131/+145
|
* l10n: update POTFILES.in (#8163)AsciiWolf2018-02-131-0/+1
|
* l10n: update Czech Translation (#8007)AsciiWolf2018-01-261-1/+1
| | | Fix typo
* Added some missing Swedish Strings (#7552)hanklank2017-12-061-0/+31
|
* Add license headers and SPDX identifiers to meson.build filesZbigniew Jędrzejewski-Szmek2017-11-191-0/+17
| | | | | | | So far I avoided adding license headers to meson files, but they are pretty big and important and should carry license headers like everything else. I added my own copyright, even though other people modified those files too. But this is mostly symbolic, so I hope that's OK.
* Add SPDX license identifiers to catalog and po filesZbigniew Jędrzejewski-Szmek2017-11-1927-0/+54
|
* po: specify a glib preset (#7333)Piotr Drąg2017-11-151-1/+1
| | | | It gives us a list of standard arguments passed to gettext, see <http://mesonbuild.com/i18n-module.html#i18ngettext>.
* po: add a copy of polkit its rulesZbigniew Jędrzejewski-Szmek2017-11-142-0/+14
| | | | | It's just a few lines, but this way we avoid a dependency on polkit, and can use meson's i18n stuff on older distros.
* i18n: drop intltool use, use meson's merge_file directlyZbigniew Jędrzejewski-Szmek2017-11-131-8/+0
| | | | | | | | | | | | | | | | | | This didn't work during the initial conversion to meson, but should now. A sufficiently new polkit is also required, for the .its rules files. Note that https://github.com/mesonbuild/meson/blob/master/docs/markdown/i18n-module.md says that 'install' argument was added in meson 0.43.0. If this is accurate, warnigs might be generated with older mesons. Fedora has 0.43.0 across the board, but other distros probably don't, but I guess that a warning is prefereable to having to update do latest meson. The advantages are: - one less dependency (intltool) - using the generic implementation instead of our open-coded calls - we don't need to use the fake "_" prefixes in XML Replaces #1609, fixes #7300.
* po: update french translationSylvain Plantefève2017-10-191-28/+62
|
* l10n: update Czech Translation (#7049)AsciiWolf2017-10-101-113/+99
|
* catalog,po: update Russian translation (#7041)Sergey Ptashnick2017-10-101-46/+92
|
* Updated Turkish translation (#7017)Muhammet Kara2017-10-091-32/+72
|
* po: update Polish translation (#7015)Piotr Drąg2017-10-061-36/+68
|
* Added Romanian Translation (#6674)dasj192017-08-282-0/+619
|
* build-sys: drop gitignore patterns for in-tree buildsZbigniew Jędrzejewski-Szmek2017-07-181-6/+0
| | | | ... and other autotools-generated files.
* Added slovak translation (#6191)Dušan Kazik2017-06-252-0/+557
| | | | Create sk.po and update LINGUAS.
* l10n: update Czech Translation (#6090)AsciiWolf2017-06-061-1/+1
| | | add missing Report-Msgid-Bugs-To
* meson: reindent all files with 8 spacesZbigniew Jędrzejewski-Szmek2017-04-231-2/+0
| | | | | | | The indentation for emacs'es meson-mode is added .dir-locals. All files are reindented automatically, using the lasest meson-mode from git. Indentation should now be fairly consistent.
* meson: use join_paths consistentlyMichael Biebl2017-04-231-1/+1
| | | | | With -Dsplit-usr=true, we set rootprefix to /. This leads to //lib/systemd or //lib/udev for various dir variables. Using join_paths() avoids this.
* meson: build systemd using mesonZbigniew Jędrzejewski-Szmek2017-04-231-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's crucial that we can build systemd using VS2010! ... er, wait, no, that's not the official reason. We need to shed old systems by requring python 3! Oh, no, it's something else. Maybe we need to throw out 345 years of knowlege accumulated in autotools? Whatever, this new thing is cool and shiny, let's use it. This is not complete, I'm throwing it out here for your amusement and critique. - rules for sd-boot are missing. Those might be quite complicated. - rules for tests are missing too. Those are probably quite simple and repetitive, but there's lots of them. - it's likely that I didn't get all the conditions right, I only tested "full" compilation where most deps are provided and nothing is disabled. - busname.target and all .busname units are skipped on purpose. Otherwise, installation into $DESTDIR has the same list of files and the autoconf install, except for .la files. It'd be great if people had a careful look at all the library linking options. I added stuff until things compiled, and in the end there's much less linking then in the old system. But it seems that there's still a lot of unnecessary deps. meson has a `shared_module` statement, which sounds like something appropriate for our nss and pam modules. Unfortunately, I couldn't get it to work. For the nss modules, we need an .so version of '2', but `shared_module` disallows the version argument. For the pam module, it also didn't work, I forgot the reason. The handling of .m4 and .in and .m4.in files is rather awkward. It's likely that this could be simplified. If make support is ever dropped, I think it'd make sense to switch to a different templating system so that two different languages and not required, which would make everything simpler yet. v2: - use get_pkgconfig_variable - use sh not bash - use add_project_arguments v3: - drop required:true and fix progs/prog typo v4: - use find_library('bz2') - add TTY_GID definition - define __SANE_USERSPACE_TYPES__ - use join_paths(prefix, ...) is used on all paths to make them all absolute v5: - replace all declare_dependency's with [] - add more conf.get guards around optional components v6: - drop -pipe, -Wall which are the default in meson - use compiler.has_function() and compiler.has_header_symbol instead of the hand-rolled checks. - fix duplication in 'liblibsystemd' library name - use the right .sym file for pam_systemd - rename 'compiler' to 'cc': shorter, and more idiomatic. v7: - use ENABLE_ENVIRONMENT_D not HAVE_ENVIRONMENT_D - rename prefix to prefixdir, rootprefix to rootprefixdir ("prefix" is too common of a name and too easy to overwrite by mistake) - wrap more stuff with conf.get('ENABLE...') == 1 - use rootprefix=='/' and rootbindir as install_dir, to fix paths under split-usr==true. v8: - use .split() also for src/coredump. Now everything is consistent ;) - add rootlibdir option and use it on the libraries that require it v9: - indentation v10: - fix check for qrencode and libaudit v11: - unify handling of executable paths, provide options for all progs This makes the meson build behave slightly differently than the autoconf-based one, because we always first try to find the executable in the filesystem, and fall back to the default. I think different handling of loadkeys, setfont, and telinit was just a historical accident. In addition to checking in $PATH, also check /usr/sbin/, /sbin for programs. In Fedora $PATH includes /usr/sbin, (and /sbin is is a symlink to /usr/sbin), but in Debian, those directories are not included in the path. C.f. https://github.com/mesonbuild/meson/issues/1576. - call all the options 'xxx-path' for clarity. - sort man/rules/meson.build properly so it's stable
* l10n: update Czech Translation (#5776)AsciiWolf2017-04-211-110/+99
|
* po: fix typo in pt_BRMartin Pitt2017-04-041-1/+1
| | | See https://github.com/systemd/systemd/pull/5694#issuecomment-291446842
* Update Brazilian Portuguese translation (#5694)Rafael Fontenelle2017-04-031-121/+121
|
* Updated Swedish translation (#5614)hanklank2017-03-191-52/+61
|
* l10n: fix file permissions of Indonesian translationAsciiWolf2017-02-071-0/+0
|
* l10n: fix strings formatting in Czech translationAsciiWolf2017-02-071-105/+80
|
* po: Fix invalid date in Croatian translation (#5147)Jakub Wilk2017-01-241-1/+1
|
* l10n: update LINGUAS to add the Catalan language (#5008)Walter Garcia-Fontes2017-01-031-0/+1
| | | Added "ca" to LINGUAS
* Catalan translation (#5003)Walter Garcia-Fontes2017-01-021-0/+525
| | | Contributing the translation into Catalan of systemd
* l10n: update line numbers in Czech translation (#4776)AsciiWolf2016-11-301-8/+8
|
* catalog,po: update Polish translation (#4290)Piotr Drąg2016-10-051-28/+30
|
* po: updated Swedish translation (#4241)andhe2016-10-041-50/+44
| | | | | | | | | | | | | * po: updated Swedish translation * po: swedish: fix login vs write logs to confusion Since previous commit (updated messages) there's now a mix of different translation meanings for the same thing. While both translations are technically correct I think the meaning of the original messages are probably "to login" rather than "to write log messages to". This commit switches all translations to the "login" meaning.
* l10n: update Czech translation (#4203)AsciiWolf2016-09-231-107/+104
|
* l10n: add Czech Translation (#4195)Daniel Maixner2016-09-212-0/+586
|
* Updated Hungarian translation (#4026)Balázs Úr2016-08-231-49/+61
|
* PO: italian updates (#3761)Daniele Medri2016-07-201-27/+18
|
* Added Indonesian translation (#3615)Andika Triwidada2016-06-282-0/+577
|
* l10n: update belarusian translation (#3482)Viktar Vaŭčkievič2016-06-102-98/+120
|
* Updated Turkish translation (#3477)Muhammet Kara2016-06-091-49/+61
|
* Update spanish po file (#3463)Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ]2016-06-091-45/+36
|
* Sort LINGUAS similar to Makefile.am:dist_catalog_DATAAlexander Shopov2016-05-141-7/+7
|
* po, catalog - add Bulgarian translationAlexander Shopov2016-05-142-0/+618
|
* italian: .po updatesDaniele Medri2016-05-071-61/+77
|
* Add croatian translation, hr.po and systemd.hr.catalog filesmuzena2016-04-272-0/+571
|
* po: Update French translation (#3108)Sylvain Plantefève2016-04-241-48/+58
|
* catalog,po: update Polish translation (#3100)Piotr Drąg2016-04-241-47/+57
|
* po/zh_CN: attempt to refresh zh_CN translationMingcong Bai2016-03-011-72/+69
|
* Update zh_TW translation.Jeff Huang2016-02-121-39/+24
|