-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathTranslations.cs
More file actions
21 lines (14 loc) · 915 Bytes
/
Translations.cs
File metadata and controls
21 lines (14 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace ScriptedEvents
{
using Exiled.API.Interfaces;
public class Translations : ITranslation
{
public string MissingPermission { get; set; } = "Missing permission: {PERMISSION}";
public string CommandSuccess { get; set; } = "Successfully ran {SUCCESSAMOUNT} scripts.";
public string CommandSuccessWithFailure { get; set; } = "Successfully ran {SUCCESSAMOUNT} scripts. Failed to run {FAILAMOUNT} scripts: {FAILED}";
public string CommandCooldown { get; set; } = "This command is on cooldown and can be used in {SECONDS} seconds.";
public string CommandCooldownSingular { get; set; } = "This command is on cooldown and can be used in {SECONDS} second.";
public string DisabledScript { get; set; } = "This script is disabled.";
public string MissingScript { get; set; } = "This script could not be found.";
}
}