Leandro Regueiro
Leandro Regueiro
Fixes #114.
Fixes #320.
This comes from https://github.com/translate/pootle/issues/4759. amaGama currently returns a 404 for queries where the source and target language are the same. See https://github.com/translate/amagama/blob/master/amagama/tmdb.py#L441-L443 It was suggested to [return a different HTTP...
Commit 5dc4e384 provides a workaround for the exception thrown when querying for the `''` (being single quotes and double quotes part of the string itself), but this should be properly...
From https://github.com/translate/translate/pull/3264#issuecomment-97351370 The plural rules table should be automatically generated from https://github.com/translate/translate/blob/af446a79/translate/lang/data.py#L24-L189 so we have a single place to keep and maintain them. The only problem are the footnotes https://github.com/translate/l10n-guide/blame/master/docs/l10n/pluralforms.rst#L213-L217
References https://github.com/translate/translate/issues/3263
That way it would also be possible to remove tags by providing their unique slugs. Have in mind that people might want to use URLs like `.../some-object/tags/my-precious-tag/remove/` to remove a...
The `tag` attribute (https://github.com/alex/django-taggit/blob/develop/taggit/models.py#L95) makes more sense to be on ItemBase than in TaggedItemBase. Having `tag` attribute on TaggedItemBase may even confuse users that try to extend GenericTaggedItemBase since they...