Open Ticket v3.5.9
**Improved:** - Updated discord.js to `v14.17.2` **Fixed:** - discord.js PermissionOverwrites => `Supplied parameter is not a User nor a Role` - message `"ephemeral"` is deprecated warning - A few config checker typos
This commit is contained in:
+1
-1
@@ -9,7 +9,7 @@ Below, you can find a list with the status of every open ticket version. This li
|
|||||||
|
|
||||||
| Version | Supported | Until |
|
| Version | Supported | Until |
|
||||||
|-----------|-----------|-----------------------------|
|
|-----------|-----------|-----------------------------|
|
||||||
| 3.5.8 | ✅ | |
|
| 3.5.9 | ✅ | |
|
||||||
| 3.5.7 | ✅ | September 2024 |
|
| 3.5.7 | ✅ | September 2024 |
|
||||||
| 3.5.6 | 🟧 | September 2024 |
|
| 3.5.6 | 🟧 | September 2024 |
|
||||||
| < 3.5.6 | ❌ | |
|
| < 3.5.6 | ❌ | |
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ Plugins will be 100x better and advanced than the current system!
|
|||||||
|
|
||||||
<img src="https://apis.dj-dj.be/cdn/openticket/logo.png" alt="Open Ticket" width="600px">
|
<img src="https://apis.dj-dj.be/cdn/openticket/logo.png" alt="Open Ticket" width="600px">
|
||||||
|
|
||||||
[](https://discord.com/invite/26vT9wt3n3) [](https://github.com/DJj123dj/open-ticket/releases/tag/v3.5.8) []() [](https://github.com/DJj123dj/open-ticket/blob/main/LICENSE) [](https://otdocs.dj-dj.be)
|
[](https://discord.com/invite/26vT9wt3n3) [](https://github.com/DJj123dj/open-ticket/releases/tag/v3.5.9) []() [](https://github.com/DJj123dj/open-ticket/blob/main/LICENSE) [](https://otdocs.dj-dj.be)
|
||||||
|
|
||||||
### Open Ticket
|
### Open Ticket
|
||||||
Open Ticket is the most customisable discord ticket bot that you will ever find on Github! There are more than 150+ options to configure! This includes html transcripts, claiming, unlimited tickets, custom embeds & more! Did you know that even the transcripts are highly customisable? Don't wait and check it out! If you're having trouble setting the bot up, feel free to join our support server and we will help you further!
|
Open Ticket is the most customisable discord ticket bot that you will ever find on Github! There are more than 150+ options to configure! This includes html transcripts, claiming, unlimited tickets, custom embeds & more! Did you know that even the transcripts are highly customisable? Don't wait and check it out! If you're having trouble setting the bot up, feel free to join our support server and we will help you further!
|
||||||
@@ -108,7 +108,7 @@ Please help us grow by giving a star! It would help us a lot!
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
## 📎 Links
|
## 📎 Links
|
||||||
current version: _v3.5.8_
|
current version: _v3.5.9_
|
||||||
</br>Changelog: [click here](https://otgithub.dj-dj.be/releases)
|
</br>Changelog: [click here](https://otgithub.dj-dj.be/releases)
|
||||||
</br>Documentation: [click here](https://otdocs.dj-dj.be/)
|
</br>Documentation: [click here](https://otdocs.dj-dj.be/)
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -72,7 +72,7 @@ module.exports = () => {
|
|||||||
|
|
||||||
if (!permsChecker.ticket(interaction.user.id,interaction.guild.id,ticketId)){
|
if (!permsChecker.ticket(interaction.user.id,interaction.guild.id,ticketId)){
|
||||||
permsChecker.sendUserNoPerms(interaction.user)
|
permsChecker.sendUserNoPerms(interaction.user)
|
||||||
return interaction.reply({content:":x: "+l.errors.noPermsTitle,ephemeral:true})
|
return interaction.reply({content:":x: "+l.errors.noPermsTitle,flags:["Ephemeral"]})
|
||||||
}
|
}
|
||||||
|
|
||||||
await interaction.deferReply()
|
await interaction.deferReply()
|
||||||
|
|||||||
+1
-1
@@ -79,7 +79,7 @@ module.exports = () => {
|
|||||||
|
|
||||||
if (!permsChecker.ticket(interaction.user.id,interaction.guild.id,ticketId)){
|
if (!permsChecker.ticket(interaction.user.id,interaction.guild.id,ticketId)){
|
||||||
permsChecker.sendUserNoPerms(interaction.user)
|
permsChecker.sendUserNoPerms(interaction.user)
|
||||||
interaction.reply({content:":x: "+l.errors.noPermsTitle,ephemeral:true})
|
interaction.reply({content:":x: "+l.errors.noPermsTitle,flags:["Ephemeral"]})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -110,7 +110,7 @@
|
|||||||
"dropdown":false,
|
"dropdown":false,
|
||||||
|
|
||||||
"enableFooter":false,
|
"enableFooter":false,
|
||||||
"footer":"Open Ticket v3.5.8 - I'm a footer!",
|
"footer":"Open Ticket v3.5.9 - I'm a footer!",
|
||||||
|
|
||||||
"enableFooterImage":false,
|
"enableFooterImage":false,
|
||||||
"footerImage":"https://www.example.com/catmemes/cat.png",
|
"footerImage":"https://www.example.com/catmemes/cat.png",
|
||||||
|
|||||||
+2
-2
@@ -415,7 +415,7 @@ exports.checker = async () => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
checkHexColor(config.color,"main_color")
|
checkHexColor(config.color,"color")
|
||||||
checkDiscord("serverid",config.serverId,"serverId")
|
checkDiscord("serverid",config.serverId,"serverId")
|
||||||
|
|
||||||
if (!require("./api/api.json").disable.checkerjs.token && !config.token.fromENV) checkToken(config.token.value)
|
if (!require("./api/api.json").disable.checkerjs.token && !config.token.fromENV) checkToken(config.token.value)
|
||||||
@@ -462,7 +462,7 @@ exports.checker = async () => {
|
|||||||
"vietnamese"
|
"vietnamese"
|
||||||
]
|
]
|
||||||
if (!languageList.some((l) => config.languageFile.startsWith(l))){
|
if (!languageList.some((l) => config.languageFile.startsWith(l))){
|
||||||
createError("'languageFile' | invalid language, more info in the wiki")
|
createError("'languageFile' | invalid language, more info in the documentation")
|
||||||
}
|
}
|
||||||
|
|
||||||
//status:
|
//status:
|
||||||
|
|||||||
@@ -116,14 +116,14 @@ exports.closeManager = async (member,channel,prefix,mode,reason,nomessage) => {
|
|||||||
const pfb = discord.PermissionFlagsBits
|
const pfb = discord.PermissionFlagsBits
|
||||||
|
|
||||||
if (!isDatabaseError) permissionArray.push({
|
if (!isDatabaseError) permissionArray.push({
|
||||||
id:ticketOpener,
|
id:ticketOpener.id,
|
||||||
type:"member",
|
type:"member",
|
||||||
allow:[pfb.ViewChannel],
|
allow:[pfb.ViewChannel],
|
||||||
deny:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages]
|
deny:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages]
|
||||||
})
|
})
|
||||||
|
|
||||||
permissionArray.push({
|
permissionArray.push({
|
||||||
id:guild.roles.everyone,
|
id:guild.roles.everyone.id,
|
||||||
type:"role",
|
type:"role",
|
||||||
deny:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel]
|
deny:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel]
|
||||||
})
|
})
|
||||||
@@ -135,7 +135,7 @@ exports.closeManager = async (member,channel,prefix,mode,reason,nomessage) => {
|
|||||||
if (!adminrole) return
|
if (!adminrole) return
|
||||||
|
|
||||||
permissionArray.push({
|
permissionArray.push({
|
||||||
id:adminrole,
|
id:adminrole.id,
|
||||||
type:"role",
|
type:"role",
|
||||||
allow:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel],
|
allow:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel],
|
||||||
deny:[]
|
deny:[]
|
||||||
@@ -163,7 +163,7 @@ exports.closeManager = async (member,channel,prefix,mode,reason,nomessage) => {
|
|||||||
if (!adminrole) return
|
if (!adminrole) return
|
||||||
|
|
||||||
permissionArray.push({
|
permissionArray.push({
|
||||||
id:adminrole,
|
id:adminrole.id,
|
||||||
type:"role",
|
type:"role",
|
||||||
allow:[pfb.AddReactions,pfb.ViewChannel,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages],
|
allow:[pfb.AddReactions,pfb.ViewChannel,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages],
|
||||||
deny:[]
|
deny:[]
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ module.exports = () => {
|
|||||||
|
|
||||||
if (interaction.isButton() || interaction.isStringSelectMenu() || interaction.isChatInputCommand()){
|
if (interaction.isButton() || interaction.isStringSelectMenu() || interaction.isChatInputCommand()){
|
||||||
try{
|
try{
|
||||||
await interaction.deferReply({ephemeral:config.system.answerInEphemeralOnOpen})
|
await interaction.deferReply({flags:config.system.answerInEphemeralOnOpen ? ["Ephemeral"] : undefined})
|
||||||
}catch{}
|
}catch{}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,7 +79,7 @@ module.exports = () => {
|
|||||||
|
|
||||||
//set @everyone no ticket access
|
//set @everyone no ticket access
|
||||||
permissionsArray.push({
|
permissionsArray.push({
|
||||||
id:interaction.guild.roles.everyone,
|
id:interaction.guild.roles.everyone.id,
|
||||||
type:"role",
|
type:"role",
|
||||||
allow:[],
|
allow:[],
|
||||||
deny:[pfb.ViewChannel]
|
deny:[pfb.ViewChannel]
|
||||||
@@ -87,7 +87,7 @@ module.exports = () => {
|
|||||||
|
|
||||||
//add the user that created the ticket
|
//add the user that created the ticket
|
||||||
permissionsArray.push({
|
permissionsArray.push({
|
||||||
id:interaction.member.user,
|
id:interaction.member.id,
|
||||||
type:"member",
|
type:"member",
|
||||||
allow:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel,pfb.ReadMessageHistory]
|
allow:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel,pfb.ReadMessageHistory]
|
||||||
})
|
})
|
||||||
@@ -99,7 +99,7 @@ module.exports = () => {
|
|||||||
if (!adminrole) return
|
if (!adminrole) return
|
||||||
|
|
||||||
permissionsArray.push({
|
permissionsArray.push({
|
||||||
id:adminrole,
|
id:adminrole.id,
|
||||||
type:"role",
|
type:"role",
|
||||||
allow:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel,pfb.ReadMessageHistory]
|
allow:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel,pfb.ReadMessageHistory]
|
||||||
})
|
})
|
||||||
@@ -118,7 +118,7 @@ module.exports = () => {
|
|||||||
if (!adminrole) return
|
if (!adminrole) return
|
||||||
|
|
||||||
permissionsArray.push({
|
permissionsArray.push({
|
||||||
id:adminrole,
|
id:adminrole.id,
|
||||||
type:"role",
|
type:"role",
|
||||||
allow:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel,pfb.ReadMessageHistory]
|
allow:[pfb.AddReactions,pfb.AttachFiles,pfb.EmbedLinks,pfb.SendMessages,pfb.ViewChannel,pfb.ReadMessageHistory]
|
||||||
})
|
})
|
||||||
@@ -135,7 +135,7 @@ module.exports = () => {
|
|||||||
if (!adminrole) return
|
if (!adminrole) return
|
||||||
|
|
||||||
permissionsArray.push({
|
permissionsArray.push({
|
||||||
id:adminrole,
|
id:adminrole.id,
|
||||||
type:"role",
|
type:"role",
|
||||||
allow:[pfb.AddReactions,pfb.ViewChannel,pfb.ReadMessageHistory],
|
allow:[pfb.AddReactions,pfb.ViewChannel,pfb.ReadMessageHistory],
|
||||||
deny:[pfb.SendMessages,pfb.AttachFiles,pfb.EmbedLinks]
|
deny:[pfb.SendMessages,pfb.AttachFiles,pfb.EmbedLinks]
|
||||||
@@ -151,7 +151,7 @@ module.exports = () => {
|
|||||||
const userrole = guild.roles.cache.find(r => r.id == config.system.memberRole)
|
const userrole = guild.roles.cache.find(r => r.id == config.system.memberRole)
|
||||||
if (userrole){
|
if (userrole){
|
||||||
permissionsArray.push({
|
permissionsArray.push({
|
||||||
id:userrole,
|
id:userrole.id,
|
||||||
type:"role",
|
type:"role",
|
||||||
deny:[pfb.ViewChannel]
|
deny:[pfb.ViewChannel]
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
INFORMATION:
|
INFORMATION:
|
||||||
============
|
============
|
||||||
Open Ticket v3.5.8 - © DJdj Development
|
Open Ticket v3.5.9 - © DJdj Development
|
||||||
|
|
||||||
discord: https://discord.dj-dj.be
|
discord: https://discord.dj-dj.be
|
||||||
website: https://www.dj-dj.be
|
website: https://www.dj-dj.be
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"deqressing",
|
"_CREDITS":"deqressing",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors": {
|
"errors": {
|
||||||
"missingArgsTitle": "قيمة غير صالحة!",
|
"missingArgsTitle": "قيمة غير صالحة!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"Stragar",
|
"_CREDITS":"Stragar",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Грешни Аргументи!",
|
"missingArgsTitle":"Грешни Аргументи!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"DJdj Development",
|
"_CREDITS":"DJdj Development",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Invalid Arguments!",
|
"missingArgsTitle":"Invalid Arguments!",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"spyeye_",
|
"_CREDITS":"spyeye_",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Neplatný Argument!",
|
"missingArgsTitle":"Neplatný Argument!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":".the_gamer",
|
"_CREDITS":".the_gamer",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors": {
|
"errors": {
|
||||||
"missingArgsTitle": "Ugyldigt Argument!",
|
"missingArgsTitle": "Ugyldigt Argument!",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"djj123dj",
|
"_CREDITS":"djj123dj",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Onjuiste parameters!",
|
"missingArgsTitle":"Onjuiste parameters!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"DJdj Development",
|
"_CREDITS":"DJdj Development",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Invalid Arguments!",
|
"missingArgsTitle":"Invalid Arguments!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"iamnotmega",
|
"_CREDITS":"iamnotmega",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Puuduvad argumendid!",
|
"missingArgsTitle":"Puuduvad argumendid!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"iamnotmega",
|
"_CREDITS":"iamnotmega",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Virheelliset argumentit!",
|
"missingArgsTitle":"Virheelliset argumentit!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"tostam",
|
"_CREDITS":"tostam",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Arguments invalides !",
|
"missingArgsTitle":"Arguments invalides !",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"david.3",
|
"_CREDITS":"david.3",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Ungültiges Argument!",
|
"missingArgsTitle":"Ungültiges Argument!",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"ꙅoᴎɒᎸɘƚꙅ#3744",
|
"_CREDITS":"ꙅoᴎɒᎸɘƚꙅ#3744",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Invalid Arguments!",
|
"missingArgsTitle":"Invalid Arguments!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"kornel0706",
|
"_CREDITS":"kornel0706",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Hibás paraméter!",
|
"missingArgsTitle":"Hibás paraméter!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"erxg",
|
"_CREDITS":"erxg",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Argumen tidak valid!",
|
"missingArgsTitle":"Argumen tidak valid!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"maurizio26",
|
"_CREDITS":"maurizio26",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Argomenti non validi!",
|
"missingArgsTitle":"Argomenti non validi!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS": "iamnotmega",
|
"_CREDITS": "iamnotmega",
|
||||||
"_INFO": "This file is a translation for open ticket 3.5.8",
|
"_INFO": "This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors": {
|
"errors": {
|
||||||
"missingArgsTitle": "매개 변수가 누락되었습니다!",
|
"missingArgsTitle": "매개 변수가 누락되었습니다!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS": "iamnotmega",
|
"_CREDITS": "iamnotmega",
|
||||||
"_INFO": "This file is a translation for open ticket 3.5.8",
|
"_INFO": "This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors": {
|
"errors": {
|
||||||
"missingArgsTitle": "매개 변수가 누락되었습니다!",
|
"missingArgsTitle": "매개 변수가 누락되었습니다!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"raze.hama",
|
"_CREDITS":"raze.hama",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"ئهوهی ههڵتبژاردوه نادروسته",
|
"missingArgsTitle":"ئهوهی ههڵتبژاردوه نادروسته",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"Ronalds1398",
|
"_CREDITS":"Ronalds1398",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Nepareizi argumenti!",
|
"missingArgsTitle":"Nepareizi argumenti!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"noonenook",
|
"_CREDITS":"noonenook",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Ugyldige argumenter!",
|
"missingArgsTitle":"Ugyldige argumenter!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"sasanwm",
|
"_CREDITS":"sasanwm",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"آرگومانهای گم شده!",
|
"missingArgsTitle":"آرگومانهای گم شده!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"mkevas",
|
"_CREDITS":"mkevas",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Nieprawidłowe argumenty!",
|
"missingArgsTitle":"Nieprawidłowe argumenty!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"quiradon",
|
"_CREDITS":"quiradon",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Argumentos inválidos!",
|
"missingArgsTitle":"Argumentos inválidos!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"Sanke#6086",
|
"_CREDITS":"Sanke#6086",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Argumente Invalide",
|
"missingArgsTitle":"Argumente Invalide",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"apexo & ander",
|
"_CREDITS":"apexo & ander",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Неверные аргументы!",
|
"missingArgsTitle":"Неверные аргументы!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"iamnotmega",
|
"_CREDITS":"iamnotmega",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"缺少参数!",
|
"missingArgsTitle":"缺少参数!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"n1kkec",
|
"_CREDITS":"n1kkec",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Napačen argument!",
|
"missingArgsTitle":"Napačen argument!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"redactado & josuens",
|
"_CREDITS":"redactado & josuens",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"¡Argumentos inválidos!",
|
"missingArgsTitle":"¡Argumentos inválidos!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"iamnotmega",
|
"_CREDITS":"iamnotmega",
|
||||||
"_INFO":"Denna fil är en översättning för öppen biljett 3.5.8",
|
"_INFO":"Denna fil är en översättning för öppen biljett 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Ogiltiga argument!",
|
"missingArgsTitle":"Ogiltiga argument!",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"modshd",
|
"_CREDITS":"modshd",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"อาร์กิวเมนต์ไม่ถูกต้อง",
|
"missingArgsTitle":"อาร์กิวเมนต์ไม่ถูกต้อง",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"iamnotmega",
|
"_CREDITS":"iamnotmega",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"缺少參數!",
|
"missingArgsTitle":"缺少參數!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"0x15d3",
|
"_CREDITS":"0x15d3",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Geçersiz argümanlar!",
|
"missingArgsTitle":"Geçersiz argümanlar!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"ander",
|
"_CREDITS":"ander",
|
||||||
"_INFO":"Цей файл є перекладом для open ticket 3.5.8",
|
"_INFO":"Цей файл є перекладом для open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Невірні аргументи!",
|
"missingArgsTitle":"Невірні аргументи!",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_CREDITS":"iamnotmega",
|
"_CREDITS":"iamnotmega",
|
||||||
"_INFO":"This file is a translation for open ticket 3.5.8",
|
"_INFO":"This file is a translation for open ticket 3.5.9",
|
||||||
|
|
||||||
"errors":{
|
"errors":{
|
||||||
"missingArgsTitle":"Đối số không hợp lệ!",
|
"missingArgsTitle":"Đối số không hợp lệ!",
|
||||||
|
|||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "open-ticket",
|
"name": "open-ticket",
|
||||||
"author": "DJdj Development",
|
"author": "DJdj Development",
|
||||||
"version": "3.5.8",
|
"version": "3.5.9",
|
||||||
"description": "The most advanced open-source discord ticket bot with HTML transcripts and plugins! It uses discord.js v14 & no database required!",
|
"description": "The most advanced open-source discord ticket bot with HTML transcripts and plugins! It uses discord.js v14 & no database required!",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.6.2",
|
"axios": "^1.6.2",
|
||||||
"chalk": "^5.0.1",
|
"chalk": "^5.0.1",
|
||||||
"discord.js": "^14.15.3"
|
"discord.js": "^14.17.2"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|||||||
Reference in New Issue
Block a user