Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update IT Translaction #35

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions language/it/activitystats_acp.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@
'ACTIVITY_STATS_CHECK_PERMISSIONS' => 'Check permissions',
'ACTIVITY_STATS_CHECK_PERMISSIONS_EXP' => 'no=everybody should see the activity stats (ignore permission-settings); yes=use configured permissions (e.g. allow it for registered users only: ACP->permissions->global permissions -> group permissions -> registered users -> Advanced permissions -> Misc -> "Can see activity stats")',

'ACTIVITY_STATS_MODE' => 'Displaying users of ...',
'ACTIVITY_STATS_MODE_EXP' => 'Displaying users of today (since 00:00 board-timezone), or of the period set in the next option.',
'ACTIVITY_STATS_MODE_TODAY' => 'Today',
'ACTIVITY_STATS_MODE_PERIOD' => 'Period of time',
'ACTIVITY_STATS_MODE_PERIOD_EXP' => 'type 0, if you want to display the users of the last 24h',
'ACTIVITY_STATS_MODE_PERIOD_EXP2' => 'disabled, if you have choosen "today"',
'ACTIVITY_STATS_MODE_PERIOD_EXP3' => 'seconds',
'ACTIVITY_STATS_MODE' => 'Visualizza gli utenti di ...',
'ACTIVITY_STATS_MODE_EXP' => 'Visualizza gli utenti di oggi (dalle 00:00 dell\'orario del server), o del periodo impostato nella successivo parametro.',
'ACTIVITY_STATS_MODE_TODAY' => 'Oggi',
'ACTIVITY_STATS_MODE_PERIOD' => 'Periodo di tempo',
'ACTIVITY_STATS_MODE_PERIOD_EXP' => 'type 0, se vuoi visualizzare gli utenti delle ultime 24 ore',
'ACTIVITY_STATS_MODE_PERIOD_EXP2' => 'disattivato, se si è scelto "oggi"',
'ACTIVITY_STATS_MODE_PERIOD_EXP3' => 'secondi',

));
4 changes: 2 additions & 2 deletions language/it/info_acp_activitystats.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@

$lang = array_merge($lang, array(
// ACP Module
'ACP_ACTIVITY_STATS_TITLE' => 'Activity Stats',
'ACP_ACTIVITY_STATS_SETTINGS' => 'Settings',
'ACP_ACTIVITY_STATS_TITLE' => 'Statistiche di Attività',
'ACP_ACTIVITY_STATS_SETTINGS' => 'Impostazioni',
));
2 changes: 1 addition & 1 deletion language/it/permissions_activitystats.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
use robertheim\activitystats\PERMISSIONS;

$lang = array_merge($lang, array(
'ACL_'.mb_strtoupper(PERMISSIONS::SEE_STATS) => 'Can see activity stats',
'ACL_'.mb_strtoupper(PERMISSIONS::SEE_STATS) => 'Poò vedere le statistiche di attività',
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please make sure to work on the trunk. You should not use mb_strtoupper and permissions class is lowercase!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi,

the good lines should be like that ?

use robertheim\activitystats\permissions;

 $lang = array_merge($lang, array(
'ACL_'.utf8_strtoupper(permissions::SEE_STATS)  => 'Poò vedere le statistiche di attività',

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes

));