@@ -17,19 +17,19 @@ class Settings {
17
17
18
18
constructor ( ) {
19
19
this . #USER_ROLES[ CONST . USER_ROLES . PLAYER ] = game . i18n . localize (
20
- "ConvenientEffects.Setting.Player " ,
20
+ "ConvenientEffects.SettingPlayer " ,
21
21
) ;
22
22
this . #USER_ROLES[ CONST . USER_ROLES . TRUSTED ] = game . i18n . localize (
23
- "ConvenientEffects.Setting.TrustedPlayer " ,
23
+ "ConvenientEffects.SettingTrustedPlayer " ,
24
24
) ;
25
25
this . #USER_ROLES[ CONST . USER_ROLES . ASSISTANT ] = game . i18n . localize (
26
- "ConvenientEffects.Setting.AssistantGM " ,
26
+ "ConvenientEffects.SettingAssistantGM " ,
27
27
) ;
28
28
this . #USER_ROLES[ CONST . USER_ROLES . GAMEMASTER ] = game . i18n . localize (
29
- "ConvenientEffects.Setting.GameMaster " ,
29
+ "ConvenientEffects.SettingGameMaster " ,
30
30
) ;
31
31
this . #USER_ROLES[ 5 ] = game . i18n . localize (
32
- "ConvenientEffects.Setting.None " ,
32
+ "ConvenientEffects.SettingNone " ,
33
33
) ;
34
34
}
35
35
@@ -54,8 +54,8 @@ class Settings {
54
54
55
55
#registerAppControlsPermission( ) : void {
56
56
game . settings . register ( MODULE_ID , this . #APP_CONTROLS_PERMISSION, {
57
- name : "ConvenientEffects.Setting.AppControlsPermissionName " ,
58
- hint : "ConvenientEffects.Setting.AppControlsPermissionHint " ,
57
+ name : "ConvenientEffects.SettingAppControlsPermissionName " ,
58
+ hint : "ConvenientEffects.SettingAppControlsPermissionHint " ,
59
59
scope : "world" ,
60
60
config : true ,
61
61
default : CONST . USER_ROLES . GAMEMASTER ,
@@ -67,8 +67,8 @@ class Settings {
67
67
68
68
#registerCreateFoldersPermission( ) : void {
69
69
game . settings . register ( MODULE_ID , this . #CREATE_FOLDERS_PERMISSION, {
70
- name : "ConvenientEffects.Setting.CreateFoldersPermissionName " ,
71
- hint : "ConvenientEffects.Setting.CreateFoldersPermissionHint " ,
70
+ name : "ConvenientEffects.SettingCreateFoldersPermissionName " ,
71
+ hint : "ConvenientEffects.SettingCreateFoldersPermissionHint " ,
72
72
scope : "world" ,
73
73
config : true ,
74
74
default : CONST . USER_ROLES . GAMEMASTER ,
0 commit comments