about summary refs log tree commit diff
path: root/doc/po
AgeCommit message (Collapse)AuthorLines
2014-02-02Move doc/ to src/doc/Alex Crichton-7174/+0
We generate documentation into the doc/ directory, so we shouldn't be intermingling source files with generated files
2014-02-02Remove rustpkg.Corey Richardson-112/+0
I'm sorry :'( Closes #11859
2014-01-28Update extract-tests.py to use same test directives as rustdoc.William Ting-74/+74
Closes #11362.
2014-01-14Update .po and strip down untranslated entries.OGINO Masanori-12995/+3659
This work is done by execute these commands manually: $ po4a --copyright-holder="The Rust Project Developers" \ --package-name="Rust" \ --package-version="0.10-pre" \ -M UTF-8 -L UTF-8 \ doc/po4a.conf $ for f in doc/po/**/*.po; do > msgattrib --translated $f -o $f.strip > if [ -e $f.strip ]; then > mv $f.strip $f > else > rm $f > fi > done It should be managed by the build system automatically to use in our translation workflow, but I've not yet done that. Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
2014-01-10Remove *.pot files and ignore them now.OGINO Masanori-15263/+0
The .pot files can be generated automatically and the files contain timestamps in their content. They can cause huge conflicts and take huge space even if you are not a translator. This commit is a part of improvement discussed on https://github.com/mozilla/rust/pull/11383 . Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
2013-12-15std::vec: convert to(_mut)_ptr to as_... methods on &[] and &mut [].Huon Wilson-10/+10
2013-12-15Move std::{str,vec}::raw::set_len to an unsafe method on Owned{Vector,Str}.Huon Wilson-4/+4
2013-11-26librustc: Remove remaining uses of `&fn()` in favor of `||`.Patrick Walton-2/+2
2013-11-26Updating docs with updated closure syntax, `&fn` -> `||`Vijay Korapaty-39/+39
2013-11-18librustc: Convert `~fn()` to `proc()` everywhere.Patrick Walton-8/+8
2013-11-12Check inferred integer literals for overflows, closes #4220Florian Hahn-2/+2
2013-11-02Grammar error and vim syntax highlighting mistake fixed.Matt Carberry-1/+1
2013-11-02Added octal literal support.Matt Carberry-2/+18
2013-10-20doc (en & ja): remove mentions of type float, rust and rusti toolsSébastien Chauvel-216/+209
2013-10-17std: Move size/align functions to std::mem. #2240Brian Anderson-4/+4
2013-09-21Update version numbers to 0.8Brian Anderson-20/+20
2013-08-15auto merge of #8490 : huonw/rust/fromiterator-extendable, r=catamorphismbors-2/+2
If they are on the trait then it is extremely annoying to use them as generic parameters to a function, e.g. with the iterator param on the trait itself, if one was to pass an Extendable<int> to a function that filled it either from a Range or a Map<VecIterator>, one needs to write something like: fn foo<E: Extendable<int, Range<int>> + Extendable<int, Map<&'self int, int, VecIterator<int>>> (e: &mut E, ...) { ... } since using a generic, i.e. `foo<E: Extendable<int, I>, I: Iterator<int>>` means that `foo` takes 2 type parameters, and the caller has to specify them (which doesn't work anyway, as they'll mismatch with the iterators used in `foo` itself). This patch changes it to: fn foo<E: Extendable<int>>(e: &mut E, ...) { ... }
2013-08-15std: Move the iterator param on FromIterator and Extendable to the method.Huon Wilson-2/+2
If they are on the trait then it is extremely annoying to use them as generic parameters to a function, e.g. with the iterator param on the trait itself, if one was to pass an Extendable<int> to a function that filled it either from a Range or a Map<VecIterator>, one needs to write something like: fn foo<E: Extendable<int, Range<int>> + Extendable<int, Map<&'self int, int, VecIterator<int>>> (e: &mut E, ...) { ... } since using a generic, i.e. `foo<E: Extendable<int, I>, I: Iterator<int>>` means that `foo` takes 2 type parameters, and the caller has to specify them (which doesn't work anyway, as they'll mismatch with the iterators used in `foo` itself). This patch changes it to: fn foo<E: Extendable<int>>(e: &mut E, ...) { ... }
2013-08-13tutorial: Add Japanese translationgifnksm-98/+1460
2013-08-12doc: Generate .po files for Japanse translationsgifnksm-0/+15257
2013-08-12doc: Update .pot filesgifnksm-1775/+1840
2013-08-03remove obsolete `foreach` keywordDaniel Micay-14/+14
this has been replaced by `for`
2013-08-01migrate many `for` loops to `foreach`Daniel Micay-14/+14
2013-07-27Change concurrency primitives to standard naming conventionsSteven Stewart-Gallus-17/+17
To be more specific: `UPPERCASETYPE` was changed to `UppercaseType` `type_new` was changed to `Type::new` `type_function(value)` was changed to `value.method()`
2013-07-17Add project information to l10n templates.OGINO Masanori-895/+1198
2013-07-07Generate initial translatable templates for documentationLuca Bruno-0/+14889
These files are automatically genereated by `make docs-l10n` (via po4a), which will also take of updating them if the original .md changes. Signed-off-by: Luca Bruno <lucab@debian.org>