Fix formatting

ljacqu
2019-03-21 23:05:35 +01:00
parent 5098b4a7dc
commit 2aa57e0144

192
French.md

@@ -2,148 +2,104 @@ Credits: laboriens
FastLogin version: 1.10 FastLogin version: 1.10
***
`# FastLogin localization` ```yaml
# FastLogin localization
# Project site: https://www.spigotmc.org/resources/fastlogin.14153
# Source code: https://github.com/games647/FastLogin
#
# You can access the newest locale here:
# https://github.com/games647/FastLogin/blob/master/core/src/main/resources/messages.yml
#
# You want to have language template? Visit the Github Wiki here:
# https://github.com/games647/FastLogin/wiki/English
`# Project site: https://www.spigotmc.org/resources/fastlogin.14153` # In order to split a message into separate lines you could just make a new line, but keep the '
# Example:
# bla: '&aFirst line
# Second line
# Third line'
`# Source code: https://github.com/games647/FastLogin` # If you want to disable a message, you can just set it to a empty value.
# In this case no message will be sent
# Example:
# bla: ''
`#` # ========= Shared (BungeeCord and Bukkit) ============
`# You can access the newest locale here:` # Switch mode is activated and a new (non-whitelist) cracked player tries to join
switch-kick-message: '&4Seuls les comptes inscrits sur la liste blanche de minecraft sont autorisés à rejoindre ce serveur.'
`# https://github.com/games647/FastLogin/blob/master/core/src/main/resources/messages.yml` # Player activated premium login in order to skip offline authentication
add-premium: '&2Ajouté à la liste des joueurs premium'
`#` # Player activated premium login in order to skip offline authentication
add-premium-other: '&2Le joueur a été ajouté à la liste des primes'
`# You want to have language template? Visit the Github Wiki here:` # Player is already set be a paid account
already-exists: '&4Vous êtes déjà sur la liste des primes'
`# https://github.com/games647/FastLogin/wiki/English` # Player is already set be a paid account
already-exists-other: '&4Le joueur est déjà sur la liste des primes'
`# In order to split a message into separate lines you could just make a new line, but keep the '` # Player was changed to be cracked
remove-premium: '&2Retiré de la liste des joueurs premium'
`# Example:` # Player is already set to be cracked
not-premium: '&4Vous n''êtes pas dans la liste des primes'
`# bla: '&aFirst line` # Player is already set to be cracked
not-premium-other: '&4Le joueur n''est pas dans la liste des primes '
`# Second line` # Admin wanted to change the premium of a user that isn't known to the plugin
player-unknown: '&4Le joueur n''est pas dans la base de données'
`# Third line'` # ========= Bukkit/Spigot ================
# The user skipped the authentication, because it was a premium player
auto-login: '&2Auto connecté'
`# If you want to disable a message, you can just set it to a empty value.` # The user was auto registered on the first join. The user account will be registered to protect it from cracked players
`# In this case no message will be sent` # The password can be used if the mojang servers are down and you still want your premium users to login (PLANNED)
auto-register: '&2Auto enregistré avec mot de passe: %password
Vous voulez peut-être le changer?'
`# Example:` # Player is not able to toggle the premium state of other players
no-permission: '&4Pas assez de permissions'
`# bla: ''` # Although the console can toggle the premium state, it's not possible for the console itself.
# Because the console is not a user. (obviously, isn't it?)
no-console: '&4Vous n''êtes pas un joueur. Vous ne pouvez pas basculer l''état premium pour YOURSELF en console'
`# ========= Shared (BungeeCord and Bukkit) ============` # The user wants to toggle premium state, but BungeeCord support is enabled. This means the server have to communicate
# with the BungeeCord first which will establish a connection with the database server.
wait-on-proxy: '&6Envoyer une requete...'
`# Switch mode is activated and a new (non-whitelist) cracked player tries to join` # When ProtocolLib is enabled and the plugin is unable to continue handling a login request after a requested premium
# authentication. In this state the client expects a success packet with a encrypted connection or disconnect packet.
# So we kick the player, if we cannot encrypt the connection. In other situation (example: premium name check),
# the player will be just authenticated as cracked
error-kick: '&4Erreur est survenue'
`switch-kick-message: '&4Seuls les comptes inscrits sur la liste blanche de minecraft sont autorisés à rejoindre ce serveur.'`
`# Player activated premium login in order to skip offline authentication` # The server sends a verify token within the premium authentication request. If this doesn't match on response,
# it could be another client sending malicious packets
invalid-verify-token: '&4Jeton invalide'
`add-premium: '&2Ajouté à la liste des joueurs premium'` # The client sent no request join server request to the mojang servers which would proof that it's owner of that
# account. Only modified clients would do this.
invalid-session: '&4Session invalide'
`# Player activated premium login in order to skip offline authentication` # The client sent a malicious packet without a login request packet
invalid-requst: '&4Requête invalide'
`add-premium-other: '&2Le joueur a été ajouté à la liste des primes'` # Message if the bukkit isn't fully started to inject the packets
not-started: '&cLe serveur n''est pas encore complètement démarré. Veuillez réessayer'
`# Player is already set be a paid account`
`already-exists: '&4Vous êtes déjà sur la liste des primes'`
`# Player is already set be a paid account`
`already-exists-other: '&4Le joueur est déjà sur la liste des primes'`
`# Player was changed to be cracked`
`remove-premium: '&2Retiré de la liste des joueurs premium'`
`# Player is already set to be cracked`
`not-premium: '&4Vous n''êtes pas dans la liste des primes'`
`# Player is already set to be cracked`
`not-premium-other: '&4Le joueur n''est pas dans la liste des primes '`
`# Admin wanted to change the premium of a user that isn't known to the plugin`
`player-unknown: '&4Le joueur n''est pas dans la base de données'`
`# ========= Bukkit/Spigot ================`
`# The user skipped the authentication, because it was a premium player`
`auto-login: '&2Auto connecté'`
`# The user was auto registered on the first join. The user account will be registered to protect it from cracked players`
`# The password can be used if the mojang servers are down and you still want your premium users to login (PLANNED)`
`auto-register: '&2Auto enregistré avec mot de passe: %password`
`Vous voulez peut-être le changer?'`
`# Player is not able to toggle the premium state of other players`
`no-permission: '&4Pas assez de permissions'`
`# Although the console can toggle the premium state, it's not possible for the console itself.`
`# Because the console is not a user. (obviously, isn't it?)`
`no-console: '&4Vous n''êtes pas un joueur. Vous ne pouvez pas basculer l''état premium pour YOURSELF en console'`
`# The user wants to toggle premium state, but BungeeCord support is enabled. This means the server have to communicate`
`# with the BungeeCord first which will establish a connection with the database server.`
`wait-on-proxy: '&6Envoyer une requete...'`
`# When ProtocolLib is enabled and the plugin is unable to continue handling a login request after a requested premium`
`# authentication. In this state the client expects a success packet with a encrypted connection or disconnect packet.`
`# So we kick the player, if we cannot encrypt the connection. In other situation (example: premium name check),`
`# the player will be just authenticated as cracked`
`error-kick: '&4Erreur est survenue'`
`# The server sends a verify token within the premium authentication request. If this doesn't match on response,`
`# it could be another client sending malicious packets`
`invalid-verify-token: '&4Jeton invalide'`
`# The client sent no request join server request to the mojang servers which would proof that it's owner of that`
`# account. Only modified clients would do this.`
`invalid-session: '&4Session invalide'`
`# The client sent a malicious packet without a login request packet`
`invalid-requst: '&4Requête invalide'`
`# Message if the bukkit isn't fully started to inject the packets`
`not-started: '&cLe serveur n''est pas encore complètement démarré. Veuillez réessayer'`
`# Warning message if a user invoked /premium command`
`premium-warning: '&c&lATTENTION: &6Cette commande devrait &lonly&6 être invoqué si vous êtes propriétaire de ce compte minecraft payant`
`Taper &a/premium&6 à nouveau pour confirmer'`
`# ========= Bungee/Waterfall only ================================`
# Warning message if a user invoked /premium command
premium-warning: '&c&lATTENTION: &6Cette commande devrait &lonly&6 être invoqué si vous êtes propriétaire de ce compte minecraft payant
Taper &a/premium&6 à nouveau pour confirmer'
# ========= Bungee/Waterfall only ================================
```