Feature #15850
Think about how to convey best practices to translators
Start date:
2018-08-26
Due date:
% Done:
0%
Description
We should provide translators using Git with a git/config file that will prevent them to commit trailing whitespaces.. :) Or find another solution to convey such a practice to them.
Subtasks
History
#1 Updated by Anonymous 2018-11-09 13:27:50
I have ~/.gitconfig:
[core]
editor = vim
[merge]
ff = false
tool = colordiff
[user]
email = user@example.com
name = Tails Amnesia
[push]
default = simple
[color]
ui = true
[color "diff"]
whitespace = red reverse
[apply]
whitespace = error
[alias]
lol = log --decorate --oneline --graph --all
loll = log --decorate --graph --oneline
st = status -s
co = checkout
ci = commit -pevm
br = branch
merff = merge --ff
puff = pull --ff
samend = commit --amend --no-edit
whatsnew = fetch --dry-run
While the alias part is not necessary, it’s kinda cool.
#2 Updated by Anonymous 2018-11-09 13:40:04
- Status changed from Confirmed to In Progress
I committed a line that would raise an error on whitespace issues in bdd58ca066.
We could think about sending an email about this to translators as a next step.
#3 Updated by Anonymous 2018-11-09 13:40:41
- Priority changed from Normal to Low
- Parent task set to
Feature #10034
#4 Updated by Anonymous 2019-02-07 15:18:43
- Parent task changed from
Feature #10034toBug #11736
#5 Updated by Anonymous 2019-02-21 13:07:36
- Status changed from In Progress to Resolved
I added one line to our translation doc, and I think this is enough. Closing.