Feature #15850

Think about how to convey best practices to translators

Added by Anonymous 2018-08-26 10:14:02 . Updated 2019-02-21 13:07:36 .

Status:
Resolved
Priority:
Low
Assignee:
Category:
Target version:
Start date:
2018-08-26
Due date:
% Done:

0%

Feature Branch:
Type of work:
Contributors documentation
Blueprint:

Starter:
Affected tool:
Deliverable for:

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

#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.