mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-12-05 00:59:04 +01:00
6d2ad83c02
This adds an extra item to the local settings for specifying the number of reactions shown in toots. The detailed status view always shows all reactions.
15 lines
448 B
JavaScript
15 lines
448 B
JavaScript
import inherited from 'mastodon/locales/fr.json';
|
|
|
|
const messages = {
|
|
'notification.reaction': '{name} a réagi·e à votre message',
|
|
'notifications.column_settings.reaction': 'Réactions:',
|
|
|
|
'tooltips.reactions': 'Réactions',
|
|
|
|
'settings.enter_amount_prompt': 'Entrez un montant',
|
|
'settings.num_visible_reactions': 'Nombre de réactions visibles',
|
|
|
|
'status.react': 'Réagir',
|
|
};
|
|
|
|
export default Object.assign({}, inherited, messages);
|