Fixed some typos in texts.

* BUG: fixed typography errors and things like this.
This commit is contained in:
Amaury Carrade 2016-05-21 20:55:03 +02:00
parent cd3aeb8cab
commit 79004336a0
No known key found for this signature in database
GPG Key ID: 73235214BDBB8752
5 changed files with 11 additions and 11 deletions

View File

@ -43,7 +43,7 @@ public class GetRemainingCommand extends IoMCommand
if(givenMaps == 0)
{
error(I.t("Your inventory is full ! Make some space before requesting the remaining maps."));
error(I.t("Your inventory is full! Make some space before requesting the remaining maps."));
}
else
{

View File

@ -64,7 +64,7 @@ public class NewCommand extends IoMCommand
@Override
public void finished(ImageMap result)
{
player.sendMessage(I.t("{cst}Rendering finished !"));
player.sendMessage(I.t("{cst}Rendering finished!"));
if(result.give(player))
{
info(I.t("The rendered map was too big to fit in your inventory."));

View File

@ -113,7 +113,7 @@ public class ConfirmDeleteMapGui extends ActionGui
.loreLine()
.lore(I.t("{gray}Name: {white}{0}",mapToDelete.getName()))
.lore(I.t("{gray}Map ID: {white}{0}", mapToDelete.getId()))
.lore(I.t("{grayMaps inside: {white}{0}", mapToDelete.getMapsIDs().length))
.lore(I.t("{gray}Maps inside: {white}{0}", mapToDelete.getMapsIDs().length))
.hideAttributes()
);

View File

@ -241,7 +241,7 @@ public class V3Migrator implements Runnable
*/
private void backupMapData() throws IOException
{
PluginLogger.info("Backing up map data before migrating ...");
PluginLogger.info("Backing up map data before migrating...");
if(!backupsPrev3Directory.exists()) backupsPrev3Directory.mkdirs();
if(!backupsPostv3Directory.exists()) backupsPostv3Directory.mkdirs();
@ -342,7 +342,7 @@ public class V3Migrator implements Runnable
*/
private void fetchUUIDs() throws IOException, InterruptedException
{
PluginLogger.info(I.t("Fetching UUIDs from Mojang ..."));
PluginLogger.info(I.t("Fetching UUIDs from Mojang..."));
try
{
usersUUIDs = UUIDFetcher.fetch(new ArrayList<String>(userNamesToFetch));
@ -415,7 +415,7 @@ public class V3Migrator implements Runnable
private void mergeMapData()
{
PluginLogger.info(I.t("Merging map data ..."));
PluginLogger.info(I.t("Merging map data..."));
ArrayDeque<OldSavedMap> remainingMaps = new ArrayDeque<>();
ArrayDeque<OldSavedPoster> remainingPosters = new ArrayDeque<>();
@ -456,20 +456,20 @@ public class V3Migrator implements Runnable
private void saveChanges()
{
PluginLogger.info(I.t("Saving changes ..."));
PluginLogger.info(I.t("Saving changes..."));
MapManager.save();
}
private void cleanup() throws IOException
{
PluginLogger.info(I.t("Cleaning up old data files ..."));
PluginLogger.info(I.t("Cleaning up old data files..."));
//Cleaning maps file
if(oldMapsFile != null)
{
if(mapsToMigrate.isEmpty())
{
PluginLogger.info(I.t("Deleting old map data file ..."));
PluginLogger.info(I.t("Deleting old map data file..."));
oldMapsFile.delete();
}
else
@ -492,7 +492,7 @@ public class V3Migrator implements Runnable
{
if(postersToMigrate.isEmpty())
{
PluginLogger.info(I.t("Deleting old poster data file ..."));
PluginLogger.info(I.t("Deleting old poster data file..."));
oldPostersFile.delete();
}
else

View File

@ -53,7 +53,7 @@ abstract public class SplatterMapManager
.loreLine(ChatColor.BLUE, I.t("How to use this?"))
.lore(GuiUtils.generateLore(ChatColor.GRAY + I.t("Place empty item frames on a wall, enough to host the whole map. Then, right-click on the bottom-left frame with this map.")))
.loreLine()
.lore(GuiUtils.generateLore(ChatColor.GRAY + I.t("Shift-click one of the placed maps to remove the whole poster at a single time.")))
.lore(GuiUtils.generateLore(ChatColor.GRAY + I.t("Shift-click one of the placed maps to remove the whole poster in one shot.")))
.glow()
.hideAttributes()
.item();