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
452 B
JavaScript
15 lines
452 B
JavaScript
import inherited from 'mastodon/locales/de.json';
|
|
|
|
const messages = {
|
|
'notification.reaction': '{name} hat auf deinen Beitrag reagiert',
|
|
'notifications.column_settings.reaction': 'Reaktionen:',
|
|
|
|
'tooltips.reactions': 'Reaktionen',
|
|
|
|
'settings.enter_amount_prompt': 'Gib eine Zahl ein',
|
|
'settings.num_visible_reactions': 'Anzahl sichtbarer Reaktionen',
|
|
|
|
'status.react': 'Reagieren',
|
|
};
|
|
|
|
export default Object.assign({}, inherited, messages);
|