Skip to content

Commit

Permalink
feat(Translations): french support
Browse files Browse the repository at this point in the history
  • Loading branch information
tomiichx committed May 7, 2023
1 parent d50bc48 commit b15b6b6
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fxmanifest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lua54 'yes'
author 'tomiichx'
description 'Adds territories for illegal organizations to your FiveM ESX Server.'

version 'v3.1.4'
version 'v3.1.5'

ui_page 'web/index.html'

Expand Down
4 changes: 2 additions & 2 deletions server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ function logAction(header, message, footer)
{
['color'] = 16711680,
['title'] = header or '',
['description'] = message or '',
['description'] = GetCurrentResourceName() .. ' | ' .. (message or ''),
['footer'] = {
['text'] = footer or ('devTomic | ' .. os.date('%Y-%m-%d %H:%M:%S'))
}
Expand Down Expand Up @@ -353,7 +353,7 @@ RegisterCommand("terbug", function(source, args, rawCommand)
end

local sourceInfo = {
['name'] = xPlayer.getName() .. ' (' .. GetPlayerName(source) .. ')' or 'Unknown',
['name'] = (xPlayer.getName() .. ' (' .. GetPlayerName(source) .. ')') or 'Unknown',
['steam'] = xPlayer.identifier or 'Unknown',
}

Expand Down
79 changes: 76 additions & 3 deletions shared.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
shared = {
language = 'en', -- language [en/hr]
language = 'en', -- language [en/hr/fr]
adminCommand = 'territory', -- /territory (create/delete)
playerCommand = 'territories', -- /territories [territory list]
groups = {'admin', 'superadmin'}, -- group required to manage territories
Expand Down Expand Up @@ -206,6 +206,81 @@ shared = {
['territory_reward'] = 'Dobili ste $%s kao nagradu za zauzimanje teritorije: %s',
['already_used'] = 'Već ste iskoristili tu komadnu! Pričekajte server restart.',
['no_message'] = 'Poruka je prazna.'
},
['fr'] = {
-- Client Notifications
['something_went_wrong'] = 'Quelque chose s\'est mal passé !',
['fill_all_fields_out'] = 'Vous devez remplir tous les champs correctement !',
['incorrect_amount'] = 'Le montant ne peut pas être inférieur à 1 !',
['territory_not_owned'] = 'Vous n\'êtes pas propriétaire de ce territoire !',
['territory_already_owned'] = 'Ce territoire vous appartient déjà !',
['capture_in_progress'] = 'Quelqu\'un prend déjà le territoire !',
['territory_on_cooldown'] = 'Ce territoire a été récemment capturé, ou une tentative de capture a été effectuée !',
['too_far_away'] = 'Vous êtes trop loin du territoire !',
['territory_captured'] = 'Vous avez capturé avec succès %s!',
['territory_cause_death'] = 'Tu es mort, la progression de la capture s\'est arrêtée !',
['territory_cause_distance'] = 'Vous avez quitté le territoire, la progression de la capture s\'est arrêtée !',
['territory_show_text'] = '[E] - Info | %s',
['territory_capture_progress_bar'] = 'Capture en cours...',
-- Blips
['territory_blip_occupied'] = 'Territoire: %s | Propriétaire: %s',
['territory_blip_unoccupied'] = 'Inoccupé',
-- Client Context Menu
['territory_menu_context_title'] = 'Liste des territoires',
['territory_menu_title'] = 'Territoires | 🎲',
['territory_list_title'] = 'Liste des territoires | 🚩',
['territory_list_metadata'] = 'Liste des territoires.',
['territory_list_territory_name'] = '💀 | Territoires: %s',
['territory_list_territory_owner'] = '🚩 | Propriétaire: %s',
['territory_list_territory_capturing'] = 'Capture: %s',
['territory_list_territory_cooldown'] = 'Attendez : %s',
['territory_info_menu'] = 'Territoires : %s | 🎲',
['territory_info_menu_capture'] = 'Capture le territoire | 🚩',
['territory_info_menu_stash'] = 'Réserve du territoire | 📦',
['territory_info_menu_sell'] = 'Racheteur | 🌿',
['territory_info_menu_buy'] = 'Vendeur | 🛒',
['territory_info_menu_sell_title'] = 'Articles vendables',
['territory_info_menu_buy_title'] = 'Articles achetables',
['territory_info_menu_buy_sell_price'] = '💸 | Prix : $%s',
['territory_rankings_menu_context_title'] = 'Liste de classement',
['territory_rankings_title'] = 'Liste de classement | 🏆',
['territory_rankings_metadata'] = 'Afficher la liste de toutes les organisations illégales, ainsi que les points...',
['territory_rankings_all_time'] = '⭐ | Points de tous les temps : %s',
['territory_rankings_monthly'] = '⭐ | Points mensuels : %s',
['territory_rankings_weekly'] = '⭐ | Points hebdomadaires : %s',
['territory_rankings_gang'] = '💀 | Gangs: %s',
['territory_rankings_position'] = '🏆 | Position: %s',
['territory_create_input'] = 'Créer un nouveau territoire',
['territory_create_name'] = 'Nom du territoire',
['territory_create_radius'] = 'Radius',
['territory_create_type'] = 'Type de territoire',
['territory_create_type_market'] = 'Marché (Achat)',
['territory_create_type_dealer'] = 'Marché (Vente)',
['territory_create_type_default'] = 'Par défaut (cache uniquement)',
['territory_delete_input'] = 'Supprimer un territoire',
['territory_delete_input_name'] = 'Nom du territoire',
['context_yes'] = 'Oui',
['context_no'] = 'Non',
['amount'] = 'Combien',
-- NUI Messages
['defender_message'] = 'Défendez votre territoire !',
['attacker_message'] = 'Capture en cours !',
-- Server Notifications
['no_permission'] = 'Vous n\'êtes pas autorisé à utiliser cette commande !',
['no_args'] = 'Utiliser: /territory [créer/supprimer]',
['territory_already_exists'] = 'Le territoire portant ce nom existe déjà !',
['territory_creation_failed'] = 'La création du territoire a échoué !',
['territory_created'] = 'Territoire créé !',
['territory_deletion_failed'] = 'Échec de la suppression du territoire !',
['territory_deleted'] = 'Territoire supprimé !',
['territory_being_attacked'] = 'Territoires: %s est attaqué par un autre gang !',
['territory_started_attacking'] = 'Votre gang a commencé à attaquer Territoire: %s',
['invalid_amount'] = 'Vous n\'avez pas ce montant !',
['not_enough_money'] = 'Vous n\'avez pas assez d\'argent !',
['not_enough_space'] = 'Vous n\'avez plus de place dans votre inventaire !',
['territory_reward'] = 'Vous avez $%s en récompense pour avoir capturé : %s',
['already_used'] = 'Attendez le redémarrage pour utiliser à nouveau la commande.',
['no_message'] = 'Le message est vide.'
}
},
debugging = {
Expand Down Expand Up @@ -248,6 +323,4 @@ function debugPrint(msg)

TriggerServerEvent('tomic_territories:logAction', logHeader, logMessage)
end

return
end

0 comments on commit b15b6b6

Please sign in to comment.