@@ -1078,7 +1078,7 @@ process_presence_error(From, Packet, Lang, StateData) ->
1078
1078
true ->
1079
1079
ErrorText
1080
1080
= <<" This participant is kicked from the room because he sent an error presence" >>,
1081
- expulse_participant (Packet , From , StateData , translate : translate (Lang , ErrorText ));
1081
+ expulse_participant (Packet , From , StateData , service_translations : do (Lang , ErrorText ));
1082
1082
_ ->
1083
1083
StateData
1084
1084
end .
@@ -2862,8 +2862,8 @@ get_affected_jid(Item, Lang, StateData) ->
2862
2862
{S , _ } when undefined =/= S ->
2863
2863
case jid :from_binary (S ) of
2864
2864
error ->
2865
- ErrText = <<(translate : translate (Lang , <<" Jabber ID " >>))/binary ,
2866
- S /binary , (translate : translate (Lang , <<" is invalid" >>))/binary >>,
2865
+ ErrText = <<(service_translations : do (Lang , <<" Jabber ID " >>))/binary ,
2866
+ S /binary , (service_translations : do (Lang , <<" is invalid" >>))/binary >>,
2867
2867
{error , mongoose_xmpp_errors :not_acceptable (Lang , ErrText )};
2868
2868
J ->
2869
2869
{value , J }
@@ -2872,8 +2872,8 @@ get_affected_jid(Item, Lang, StateData) ->
2872
2872
case find_jids_by_nick (N , StateData ) of
2873
2873
[] ->
2874
2874
ErrText
2875
- = <<(translate : translate (Lang , <<" Nickname " >>))/binary , N /binary ,
2876
- (translate : translate (Lang , <<" does not exist in the room" >>))/binary >>,
2875
+ = <<(service_translations : do (Lang , <<" Nickname " >>))/binary , N /binary ,
2876
+ (service_translations : do (Lang , <<" does not exist in the room" >>))/binary >>,
2877
2877
{error , mongoose_xmpp_errors :not_acceptable (Lang , ErrText )};
2878
2878
[FirstSessionJid | _RestOfSessions ] ->
2879
2879
{value , FirstSessionJid }
@@ -2945,7 +2945,7 @@ which_property_changed(Item, Lang) ->
2945
2945
{undefined , BAffiliation } ->
2946
2946
case catch binary_to_affiliation (BAffiliation ) of
2947
2947
{'EXIT' , _ } ->
2948
- ErrText1 = <<(translate : translate (Lang , <<" Invalid affiliation " >>))/binary ,
2948
+ ErrText1 = <<(service_translations : do (Lang , <<" Invalid affiliation " >>))/binary ,
2949
2949
BAffiliation /binary >>,
2950
2950
{error , mongoose_xmpp_errors :not_acceptable (Lang , ErrText1 )};
2951
2951
Affiliation ->
@@ -2954,7 +2954,7 @@ which_property_changed(Item, Lang) ->
2954
2954
{BRole , _ } ->
2955
2955
case catch binary_to_role (BRole ) of
2956
2956
{'EXIT' , _ } ->
2957
- ErrText1 = <<(translate : translate (Lang , <<" Invalid role " >>))/binary ,
2957
+ ErrText1 = <<(service_translations : do (Lang , <<" Invalid role " >>))/binary ,
2958
2958
BRole /binary >>,
2959
2959
{error , mongoose_xmpp_errors :bad_request (Lang , ErrText1 )};
2960
2960
Role ->
@@ -3178,7 +3178,7 @@ process_authorized_iq_owner(From, get, Lang, SubEl, StateData, _StateName) ->
3178
3178
BAffiliation ->
3179
3179
case catch binary_to_affiliation (BAffiliation ) of
3180
3180
{'EXIT' , _ } ->
3181
- InvAffT = translate : translate (Lang , <<" Invalid affiliation " >>),
3181
+ InvAffT = service_translations : do (Lang , <<" Invalid affiliation " >>),
3182
3182
ErrText = <<InvAffT /binary , BAffiliation /binary >>,
3183
3183
{error , mongoose_xmpp_errors :not_acceptable (Lang , ErrText )};
3184
3184
Affiliation ->
@@ -3294,7 +3294,7 @@ get_default_room_maxusers(RoomState) ->
3294
3294
get_config (Lang , StateData , From ) ->
3295
3295
AccessPersistent = access_persistent (StateData ),
3296
3296
Config = StateData # state .config ,
3297
- TitleTxt = translate : translate (Lang , <<" Configuration of room " >>),
3297
+ TitleTxt = service_translations : do (Lang , <<" Configuration of room " >>),
3298
3298
Title = <<TitleTxt /binary , (jid :to_binary (StateData # state .jid ))/binary >>,
3299
3299
Fields =
3300
3300
[stringxfield (<<" Room title" >>,
@@ -3370,18 +3370,18 @@ get_config(Lang, StateData, From) ->
3370
3370
Config # config .logging , Lang )];
3371
3371
_ -> []
3372
3372
end ,
3373
- InstructionsTxt = translate : translate (
3373
+ InstructionsTxt = service_translations : do (
3374
3374
Lang , <<" You need an x:data capable client to configure room" >>),
3375
3375
{result , [# xmlel {name = <<" instructions" >>, children = [# xmlcdata {content = InstructionsTxt }]},
3376
3376
mongoose_data_forms :form (#{title => Title , ns => ? NS_MUC_CONFIG , fields => Fields })],
3377
3377
StateData }.
3378
3378
3379
3379
-spec getmemberlist_field (Lang :: ejabberd :lang ()) -> mongoose_data_forms :field ().
3380
3380
getmemberlist_field (Lang ) ->
3381
- LabelTxt = translate : translate (
3381
+ LabelTxt = service_translations : do (
3382
3382
Lang , <<" Roles and affiliations that may retrieve member list" >>),
3383
3383
Values = [<<" moderator" >>, <<" participant" >>, <<" visitor" >>],
3384
- Options = [{translate : translate (Lang , Opt ), Opt } || Opt <- Values ],
3384
+ Options = [{service_translations : do (Lang , Opt ), Opt } || Opt <- Values ],
3385
3385
#{type => <<" list-multi" >>, label => LabelTxt ,
3386
3386
var => <<" muc#roomconfig_getmemberlist" >>, values => Values , options => Options }.
3387
3387
@@ -3394,10 +3394,10 @@ maxusers_field(Lang, StateData) ->
3394
3394
{N , integer_to_binary (N )};
3395
3395
_ -> {0 , <<" none" >>}
3396
3396
end ,
3397
- LabelTxt = translate : translate (Lang , <<" Maximum Number of Occupants" >>),
3397
+ LabelTxt = service_translations : do (Lang , <<" Maximum Number of Occupants" >>),
3398
3398
Options = if
3399
3399
is_integer (ServiceMaxUsers ) -> [];
3400
- true -> {translate : translate (Lang , <<" No limit" >>), <<" none" >>}
3400
+ true -> {service_translations : do (Lang , <<" No limit" >>), <<" none" >>}
3401
3401
end ++
3402
3402
[integer_to_binary (N ) ||
3403
3403
N <- lists :usort ([ServiceMaxUsers , DefaultRoomMaxUsers , MaxUsersRoomInteger |
@@ -3410,9 +3410,9 @@ whois_field(Lang, Config) ->
3410
3410
Value = if Config # config .anonymous -> <<" moderators" >>;
3411
3411
true -> <<" anyone" >>
3412
3412
end ,
3413
- Options = [{translate : translate (Lang , <<" moderators only" >>), <<" moderators" >>},
3414
- {translate : translate (Lang , <<" anyone" >>), <<" anyone" >>}],
3415
- #{type => <<" list-single" >>, label => translate : translate (Lang , <<" moderators only" >>),
3413
+ Options = [{service_translations : do (Lang , <<" moderators only" >>), <<" moderators" >>},
3414
+ {service_translations : do (Lang , <<" anyone" >>), <<" anyone" >>}],
3415
+ #{type => <<" list-single" >>, label => service_translations : do (Lang , <<" moderators only" >>),
3416
3416
var => <<" muc#roomconfig_whois" >>, values => [Value ], options => Options }.
3417
3417
3418
3418
-spec set_config ([{binary (), [binary ()]}], state ()) -> any ().
@@ -3792,7 +3792,7 @@ iq_disco_info_extras(Lang, StateData) ->
3792
3792
3793
3793
- spec info_field (binary (), binary (), binary (), ejabberd :lang ()) -> mongoose_disco :info_field ().
3794
3794
info_field (Label , Var , Value , Lang ) ->
3795
- #{label => translate : translate (Lang , Label ), var => Var , values => [Value ]}.
3795
+ #{label => service_translations : do (Lang , Label ), var => Var , values => [Value ]}.
3796
3796
3797
3797
- spec process_iq_disco_items (jid :jid (), 'get' | 'set' , ejabberd :lang (),
3798
3798
state ()) -> {'error' , exml :element ()}
@@ -3845,7 +3845,7 @@ get_roomdesc_tail(StateData, Lang) ->
3845
3845
true ->
3846
3846
<<>>;
3847
3847
_ ->
3848
- translate : translate (Lang , <<" private, " >>)
3848
+ service_translations : do (Lang , <<" private, " >>)
3849
3849
end ,
3850
3850
Count = count_users (StateData ),
3851
3851
CountBin = integer_to_binary (Count ),
@@ -4026,11 +4026,11 @@ invite_body_text(FromJID, Reason, Lang,
4026
4026
password = Password }}) ->
4027
4027
BFromJID = jid :to_binary (FromJID ),
4028
4028
BRoomJID = jid :to_binary (RoomJID ),
4029
- ITranslate = translate : translate (Lang , <<" invites you to the room " >>),
4029
+ ITranslate = service_translations : do (Lang , <<" invites you to the room " >>),
4030
4030
IMessage = <<BFromJID /binary , ITranslate /binary , BRoomJID /binary >>,
4031
4031
BPassword = case IsProtected of
4032
4032
true ->
4033
- PTranslate = translate : translate (Lang , <<" the password is" >>),
4033
+ PTranslate = service_translations : do (Lang , <<" the password is" >>),
4034
4034
<<" , " , PTranslate /binary , " '" , Password /binary , " '" >>;
4035
4035
_ ->
4036
4036
<<>>
@@ -4232,7 +4232,7 @@ route_message(#routed_message{allowed = true, type = <<"error">>, from = From,
4232
4232
true ->
4233
4233
ErrorText
4234
4234
= <<" This participant is kicked from the room because he sent an error message" >>,
4235
- expulse_participant (Packet , From , StateData , translate : translate (Lang , ErrorText ));
4235
+ expulse_participant (Packet , From , StateData , service_translations : do (Lang , ErrorText ));
4236
4236
_ ->
4237
4237
StateData
4238
4238
end ;
@@ -4433,7 +4433,7 @@ route_nick_message(#routed_nick_message{decide = {expulse_sender, _Reason},
4433
4433
" sent an error message to another participant" >>,
4434
4434
? LOG_DEBUG (ls (#{what => muc_expulse_sender , text => ErrorText ,
4435
4435
user => From # jid .luser , exml_packet => Packet }, StateData )),
4436
- expulse_participant (Packet , From , StateData , translate : translate (Lang , ErrorText ));
4436
+ expulse_participant (Packet , From , StateData , service_translations : do (Lang , ErrorText ));
4437
4437
route_nick_message (# routed_nick_message {decide = forget_message }, StateData ) ->
4438
4438
StateData ;
4439
4439
route_nick_message (# routed_nick_message {decide = continue_delivery , allow_pm = true ,
@@ -4537,7 +4537,7 @@ make_voice_approval_form(From, Nick, Role) ->
4537
4537
4538
4538
- spec xfield (binary (), any (), binary (), binary (), ejabberd :lang ()) -> mongoose_data_forms :field ().
4539
4539
xfield (Type , Label , Var , Val , Lang ) ->
4540
- #{type => Type , label => translate : translate (Lang , Label ), var => Var , values => [Val ]}.
4540
+ #{type => Type , label => service_translations : do (Lang , Label ), var => Var , values => [Val ]}.
4541
4541
4542
4542
- spec boolxfield (any (), binary (), any (), ejabberd :lang ()) -> mongoose_data_forms :field ().
4543
4543
boolxfield (Label , Var , Val , Lang ) ->
@@ -4584,7 +4584,7 @@ maybe_add_x_element(#xmlel{children = Children} = Msg) ->
4584
4584
kick_stanza_for_old_protocol (Packet ) ->
4585
4585
Lang = exml_query :attr (Packet , <<" xml:lang" >>, <<>>),
4586
4586
ErrText = <<" You are not in the room." >>,
4587
- ErrText2 = translate : translate (Lang , ErrText ),
4587
+ ErrText2 = service_translations : do (Lang , ErrText ),
4588
4588
Response = # xmlel {name = <<" presence" >>, attrs = #{<<" type" >> => <<" unavailable" >>}},
4589
4589
ItemAttrs = #{<<" affiliation" >> => <<" none" >>, <<" role" >> => <<" none" >>},
4590
4590
ItemEls = [# xmlel {name = <<" reason" >>, children = [# xmlcdata {content = ErrText2 }]}],
0 commit comments