I noticed now, that this string on line 496 in the help files is no more used at all - but it is still in the files:
$helptxt['permissions_board'] = 'If a board is set to 'Global,' it means that the board will not have any special permissions. 'Local' means it will have its own permissions - separate from the global ones. This allows you to have a board that has more or less permissions than another, without requiring you to set them for each and every board.';
Such old strings are sometimes really confusing while translating.
It seems to me, that only some of the german strings have still "global" and "local" in it.
And those strings (and some others) I would change this way now:
In the permission files on line 64 - 70:
english:
$txt['permissions_modify_group'] = 'Modify Group';
$txt['permissions_general'] = 'General Permissions';
$txt['permissions_board'] = 'Default Board Profile Permissions';
$txt['permissions_board_desc'] = '<strong>Note</strong>: changing these board permissions will affect all boards currently assigned the "Default" permissions profile. Boards not using the "Default" profile will not be affected by changes to this page.';
$txt['permissions_commit'] = 'Save changes';
$txt['permissions_on'] = 'in profile';
$txt['permissions_local_for'] = 'Permissions for group';
german (old):
$txt['permissions_modify_group'] = 'Gruppe ändern';
$txt['permissions_general'] = 'Generelle Berechtigungen';
$txt['permissions_board'] = 'Globale Board-Berechtigungen';
$txt['permissions_board_desc'] = 'Bitte beachte, dass Änderungen am Standard-Profil sämtliche Boards betreffen, denen dieses Profil zugeordnet ist.';
$txt['permissions_commit'] = 'Änderungen speichern';
$txt['permissions_on'] = 'im Profil';
$txt['permissions_local_for'] = 'Lokale Berechtigungen für die Gruppe';
german (new):
$txt['permissions_modify_group'] = 'Gruppe ändern';
$txt['permissions_general'] = 'Generelle Berechtigungen';
$txt['permissions_board'] = 'Board-Berechtigungen im Standard-Profil';
$txt['permissions_board_desc'] = 'Bitte beachte, dass Änderungen im Standard-Berechtigungsprofil sämtliche Boards betreffen, denen dieses Profil gegenwärtig zugeordnet ist. Boards mit anderen Berechtigungsprofilen werden von Änderungen auf dieser Seite nicht betroffen.';
$txt['permissions_commit'] = 'Änderungen speichern';
$txt['permissions_on'] = 'im Profil';
$txt['permissions_local_for'] = 'Berechtigungen für die Gruppe';
This way there would be no irritation anymore about "global" and "local", if you edit such profiles or the permissions.
On line 66 "Default" is not really needed, but the german string could tell additional "Default" or "Standard". It means the same in this case. I think "Board Profile Permissions"/"Board-Berechtigungen" would be enough. But I changed this now to "Board-Berechtigungen im Standard-Profil".
In the permission files on line 19:
english:
$txt['permissions_profiles_desc'] = 'Permission profiles are assigned to individual boards to allow you to easily manage your security settings. From this area you can create, edit and delete permission profiles.';
german (old):
$txt['permissions_profiles_desc'] = 'Berechtigungsprofile können den einzelnen Boards zugeordnet werden, um die Sicherheitseinstellungen mit einfachen Mitteln zu verwalten. Hier kannst du diese Profile erstellen, editieren und löschen.';
german (new):
$txt['permissions_profiles_desc'] = 'Berechtigungsprofile werden den einzelnen Boards zugeordnet. In den Profilen wird festgelegt, welche Berechtigungen für die verschiedenen Benutzergruppen gelten sollen. Dies erlaubt es dir, deine Einstellungen hinsichtlich Zugriffsmöglichkeiten und Sicherheit auf einfache Weise zu verwalten. Hier kannst du diese Profile erstellen, ändern und löschen.';
In the permission files on line 132:
english:
$txt['permissionhelp_manage_permissions'] = 'This permission allows a user to edit all permissions of a membergroup, globally or for individual boards.';
german (old):
$txt['permissionhelp_manage_permissions'] = 'Diese Berechtigung ermöglicht das Ändern aller Berechtigungen einer Benutzergruppe bzw. eines Boards (global und lokal).';
german (new):
$txt['permissionhelp_manage_permissions'] = 'Diese Berechtigung ermöglicht das Ändern aller Berechtigungen der Benutzergruppen und den Berechtigungsprofilen der Boards.';
In the permission files on line 292:
english:
$txt['permission_by_board_desc'] = 'Here you can set which permission profile a board uses. You can create new permission profiles from the "Edit Profiles" menu.';
german (old):
$txt['permission_by_board_desc'] = 'Hier kannst du einstellen, ob ein Board die globalen Berechtigungen benutzt oder ein anderes Berechtigungsprofil verwendet. Solltest du lokale Berechtigungen verwenden, kannst du im betreffenden Board für jede Benutzergruppe individuelle Berechtigungen angeben.';
german (new):
$txt['permission_by_board_desc'] = 'Hier kannst du einstellen, welche Berechtigungsprofile in den Boards verwendet werden sollen. Im Abschnitt unter dem Button "Profile ändern" kannst du auch selbst neue Berechtigungsprofile erstellen.';