24 lines
719 B
Python
24 lines
719 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
'''
|
||
|
Created on 2017-8-30
|
||
|
|
||
|
@author: generated by @lolobosse script
|
||
|
'''
|
||
|
LOCALE = [
|
||
|
["à l'instant", "dans un instant"],
|
||
|
["il y a %s secondes", "dans %s secondes"],
|
||
|
["il y a 1 minute", "dans 1 minute"],
|
||
|
["il y a %s minutes", "dans %s minutes"],
|
||
|
["il y a 1 heure", "dans 1 heure"],
|
||
|
["il y a %s heures", "dans %s heures"],
|
||
|
["il y a 1 jour", "dans 1 jour"],
|
||
|
["il y a %s jours", "dans %s jours"],
|
||
|
["il y a 1 semaine", "dans 1 semaine"],
|
||
|
["il y a %s semaines", "dans %s semaines"],
|
||
|
["il y a 1 mois", "dans 1 mois"],
|
||
|
["il y a %s mois", "dans %s mois"],
|
||
|
["il y a 1 an", "dans 1 an"],
|
||
|
["il y a %s ans", "dans %s ans"]
|
||
|
]
|
||
|
|