mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-02 15:42:36 +00:00
resources
This commit is contained in:
Binary file not shown.
@@ -1,16 +1,16 @@
|
||||
/*
|
||||
* Copyright (C) 2010-2015 JPEXS
|
||||
*
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
/*
|
||||
* Copyright (C) 2010-2015 JPEXS
|
||||
*
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
@@ -18,6 +18,7 @@ package com.jpexs.decompiler.flash.gui.helpers;
|
||||
|
||||
import com.jpexs.decompiler.flash.gui.AboutDialog;
|
||||
import com.jpexs.decompiler.flash.gui.AdvancedSettingsDialog;
|
||||
import com.jpexs.decompiler.flash.gui.DebugLogDialog;
|
||||
import com.jpexs.decompiler.flash.gui.ErrorLogFrame;
|
||||
import com.jpexs.decompiler.flash.gui.ExportDialog;
|
||||
import com.jpexs.decompiler.flash.gui.FontEmbedDialog;
|
||||
@@ -30,6 +31,7 @@ import com.jpexs.decompiler.flash.gui.MainFrame;
|
||||
import com.jpexs.decompiler.flash.gui.ModeFrame;
|
||||
import com.jpexs.decompiler.flash.gui.NewVersionDialog;
|
||||
import com.jpexs.decompiler.flash.gui.RenameDialog;
|
||||
import com.jpexs.decompiler.flash.gui.ReplaceTraceDialog;
|
||||
import com.jpexs.decompiler.flash.gui.SearchDialog;
|
||||
import com.jpexs.decompiler.flash.gui.SearchResultsDialog;
|
||||
import com.jpexs.decompiler.flash.gui.SelectLanguageDialog;
|
||||
@@ -41,8 +43,9 @@ import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.PrintStream;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
import java.util.Set;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
@@ -56,6 +59,7 @@ public class CheckResources {
|
||||
Class[] classes = new Class[]{
|
||||
AboutDialog.class,
|
||||
AdvancedSettingsDialog.class,
|
||||
DebugLogDialog.class,
|
||||
ErrorLogFrame.class,
|
||||
ExportDialog.class,
|
||||
FontEmbedDialog.class,
|
||||
@@ -69,49 +73,73 @@ public class CheckResources {
|
||||
ModeFrame.class,
|
||||
NewVersionDialog.class,
|
||||
RenameDialog.class,
|
||||
ReplaceTraceDialog.class,
|
||||
SearchDialog.class,
|
||||
SearchResultsDialog.class,
|
||||
SelectLanguageDialog.class,
|
||||
ProxyFrame.class,
|
||||
// ABC
|
||||
DeobfuscationDialog.class,
|
||||
NewTraitDialog.class,
|
||||
UsageFrame.class,};
|
||||
for (Class clazz : classes) {
|
||||
checkResources(clazz, stream);
|
||||
}
|
||||
UsageFrame.class,
|
||||
// Proxy
|
||||
ProxyFrame.class,};
|
||||
checkResources(classes, stream);
|
||||
}
|
||||
|
||||
public static void checkResources(Class clazz, PrintStream stream) {
|
||||
private static void checkResources(Class[] classes, PrintStream stream) {
|
||||
try {
|
||||
Properties prop = new Properties();
|
||||
String[] languages = SelectLanguageDialog.getAvailableLanguages();
|
||||
String resourcePath = getResourcePath(clazz, null);
|
||||
InputStream is = CheckResources.class.getResourceAsStream(resourcePath);
|
||||
if (is == null) {
|
||||
stream.println("Resource file not found: " + resourcePath);
|
||||
return;
|
||||
Map<Class, Properties> properties = new HashMap<>();
|
||||
for (Class clazz : classes) {
|
||||
String resourcePath = getResourcePath(clazz, null);
|
||||
InputStream is = CheckResources.class.getResourceAsStream(resourcePath);
|
||||
if (is == null) {
|
||||
stream.println("Resource file not found: " + resourcePath);
|
||||
return;
|
||||
}
|
||||
Properties prop = new Properties();
|
||||
prop.load(is);
|
||||
properties.put(clazz, prop);
|
||||
}
|
||||
prop.load(is);
|
||||
Set<Object> keys = prop.keySet();
|
||||
|
||||
for (String lang : languages) {
|
||||
if (lang.equals("en")) {
|
||||
continue;
|
||||
}
|
||||
Properties prop2 = new Properties();
|
||||
resourcePath = getResourcePath(clazz, lang);
|
||||
is = CheckResources.class.getResourceAsStream(resourcePath);
|
||||
if (is == null) {
|
||||
stream.println(lang + ": Resource file not found: " + resourcePath);
|
||||
continue;
|
||||
}
|
||||
prop2.load(is);
|
||||
|
||||
for (Object key : keys) {
|
||||
String value = prop2.getProperty((String) key);
|
||||
if (value == null) {
|
||||
stream.println(lang + ": Property not found in resource file: " + clazz.getSimpleName() + ", property: " + key);
|
||||
boolean firstMissing = true;
|
||||
for (Class clazz : classes) {
|
||||
Properties prop = properties.get(clazz);
|
||||
Properties prop2 = new Properties();
|
||||
String resourcePath = getResourcePath(clazz, lang);
|
||||
InputStream is = CheckResources.class.getResourceAsStream(resourcePath);
|
||||
if (is == null) {
|
||||
stream.println(lang + ": Resource file not found: " + resourcePath);
|
||||
continue;
|
||||
}
|
||||
try {
|
||||
prop2.load(is);
|
||||
} catch (Exception ex) {
|
||||
Logger.getLogger(CheckResources.class.getName()).log(Level.SEVERE, "Cannot load resource:" + clazz.getSimpleName() + " " + lang, ex);
|
||||
}
|
||||
|
||||
for (Object key : prop.keySet()) {
|
||||
String keyStr = (String) key;
|
||||
String value = prop2.getProperty(keyStr);
|
||||
if (value == null) {
|
||||
if (firstMissing) {
|
||||
stream.println(lang);
|
||||
stream.println("-----------------------------");
|
||||
firstMissing = false;
|
||||
}
|
||||
|
||||
stream.println(clazz.getSimpleName() + ", property: " + key + "=" + prop.getProperty(keyStr));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!firstMissing) {
|
||||
stream.println();
|
||||
}
|
||||
}
|
||||
} catch (FileNotFoundException ex) {
|
||||
@@ -127,7 +155,7 @@ public class CheckResources {
|
||||
name = name.substring("com.jpexs.decompiler.flash.gui.".length());
|
||||
name = "/com/jpexs/decompiler/flash/gui/locales/" + name.replace(".", "/");
|
||||
if (lang != null) {
|
||||
name += "_" + lang;
|
||||
name += "_" + lang.replace("-", "_");
|
||||
}
|
||||
name += ".properties";
|
||||
}
|
||||
|
||||
@@ -12,4 +12,3 @@
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
@@ -12,4 +12,3 @@
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
@@ -12,4 +12,3 @@
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
@@ -16,4 +16,4 @@
|
||||
dialog.title = Debugger Log
|
||||
button.clear = Clear
|
||||
button.close = Close
|
||||
msg.header = connection %clientid%:
|
||||
msg.header = connection %clientid%:
|
||||
|
||||
@@ -12,4 +12,3 @@
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
@@ -16,4 +16,4 @@
|
||||
dialog.title = Log Debuggeru
|
||||
button.clear = Vypr\u00e1zdnit
|
||||
button.close = Zav\u0159\u00edt
|
||||
msg.header = spojen\u00ed %clientid%:
|
||||
msg.header = spojen\u00ed %clientid%:
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -16,4 +16,4 @@
|
||||
dialog.title = Journal du d\u00e9boggueur
|
||||
button.clear = Effacer
|
||||
button.close = Fermer
|
||||
msg.header = connection %clientid%:
|
||||
msg.header = connection %clientid%:
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
dialog.title = Debugger Log
|
||||
button.clear = T\u00f6r\u00f6l
|
||||
button.close = Bez\u00e1r
|
||||
msg.header = kapcsolat %clientid%:
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -16,4 +16,4 @@
|
||||
dialog.title = \u041b\u043e\u0433 \u043e\u0442\u043b\u0430\u0434\u0447\u0438\u043a\u0430
|
||||
button.clear = \u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c
|
||||
button.close = \u0417\u0430\u043a\u0440\u044b\u0442\u044c
|
||||
msg.header = \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 %clientid%:
|
||||
msg.header = \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 %clientid%:
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -15,6 +15,7 @@
|
||||
shapes = Formes
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
shapes.canvas = Tela HTML5
|
||||
|
||||
texts = Texts
|
||||
@@ -62,6 +63,7 @@ frames.avi = AVI
|
||||
frames.svg = SVG
|
||||
frames.canvas = Tela HTML5
|
||||
frames.pdf = PDF
|
||||
frames.bmp = BMP
|
||||
|
||||
fonts = Tipografies
|
||||
fonts.ttf = TTF
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
shapes = Tvary
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
shapes.canvas = HTML5 Canvas
|
||||
|
||||
texts = Texty
|
||||
@@ -26,6 +27,7 @@ images = Obr\u00e1zky
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = Videa
|
||||
movies.flv = FLV (bez zvuku)
|
||||
@@ -62,6 +64,7 @@ frames.avi = AVI
|
||||
frames.svg = SVG
|
||||
frames.canvas = HTML5 Canvas
|
||||
frames.pdf = PDF
|
||||
frames.bmp = BMP
|
||||
|
||||
fonts = P\u00edsma
|
||||
fonts.ttf = TTF
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
shapes = Formen
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
|
||||
texts = Texte
|
||||
texts.plain = Klartext
|
||||
@@ -21,6 +23,9 @@ texts.formatted = Formatierter Text
|
||||
|
||||
images = Bilder
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = Movies
|
||||
movies.flv = FLV (Keine Ger\u00e4usche)
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
shapes = Formas
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
|
||||
texts = Textos
|
||||
texts.plain = Texto plano
|
||||
@@ -21,6 +23,9 @@ texts.formatted = Texto formateado
|
||||
|
||||
images = Im\u00e1genes
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = Pel\u00edculas
|
||||
movies.flv = FLV (No audio)
|
||||
@@ -49,12 +54,15 @@ movies = Movies
|
||||
movies.flv = FLV (Sin audio)
|
||||
sounds.mp3_wav = MP3/WAV
|
||||
sounds.wav = WAV
|
||||
|
||||
binaryData = Datos binarios
|
||||
binaryData.raw = Crudo
|
||||
|
||||
morphshapes = Morphshapes
|
||||
morphshapes.gif = GIF
|
||||
morphshapes.svg = SVG
|
||||
morphshapes.canvas = HTML5 Canvas
|
||||
|
||||
frames = Marcos
|
||||
frames.png = PNG
|
||||
frames.gif = GIF
|
||||
@@ -62,10 +70,12 @@ frames.avi = AVI
|
||||
frames.svg = SVG
|
||||
frames.canvas = HTML5 Canvas
|
||||
frames.pdf = PDF
|
||||
frames.bmp = BMP
|
||||
|
||||
fonts = Fonts
|
||||
fonts.ttf = TTF
|
||||
fonts.woff = WOFF
|
||||
|
||||
zoom = Ampliar
|
||||
zoom.percent = %
|
||||
zoom.invalid = Valor inv\u00e1lido para ampliar.
|
||||
zoom.invalid = Valor inv\u00e1lido para ampliar.
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
shapes = Alakzatok
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
shapes.canvas = HTML5 V\u00e1szon
|
||||
|
||||
texts = Sz\u00f6vegek
|
||||
@@ -26,6 +27,7 @@ images = K\u00e9pek
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = Mozg\u00f3k\u00e9pek
|
||||
movies.flv = FLV (Hang n\u00e9lk\u00fcl)
|
||||
@@ -62,6 +64,7 @@ frames.avi = AVI
|
||||
frames.svg = SVG
|
||||
frames.canvas = HTML5 V\u00e1szon
|
||||
frames.pdf = PDF
|
||||
frames.bmp = BMP
|
||||
|
||||
fonts = Bet\u0171t\u00edpusok
|
||||
fonts.ttf = TTF
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
shapes = Vormen
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
|
||||
texts = Teksten
|
||||
texts.plain = Platte tekst
|
||||
@@ -21,6 +23,9 @@ texts.formatted = Geformatteerde tekst
|
||||
|
||||
images = Images
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = Films
|
||||
movies.flv = FLV (Geen audio)
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
shapes = Kszta\u0142ty
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
shapes.canvas = HTML5 Canvas
|
||||
|
||||
texts = Teksty
|
||||
@@ -26,6 +27,7 @@ images = Obrazy
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = Filmy
|
||||
movies.flv = FLV (Bez d\u017awi\u0119ku)
|
||||
@@ -62,6 +64,7 @@ frames.avi = AVI
|
||||
frames.svg = SVG
|
||||
frames.canvas = HTML5 Canvas
|
||||
frames.pdf = PDF
|
||||
frames.bmp = BMP
|
||||
|
||||
fonts = Czcionki
|
||||
fonts.ttf = TTF
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
shapes = Formas
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
|
||||
texts = Textos
|
||||
texts.plain = Texto simples
|
||||
@@ -21,6 +23,9 @@ texts.formatted = Texto Formatador
|
||||
|
||||
images = Imagens
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = Filmes
|
||||
movies.flv = FLV (No audio)
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
shapes = Formas
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
|
||||
texts = Textos
|
||||
texts.plain = Texto simples
|
||||
@@ -21,6 +23,9 @@ texts.formatted = Texto Formatador
|
||||
|
||||
images = Imagens
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = Filmes
|
||||
movies.flv = FLV (Sem som)
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
shapes = \u0424\u043e\u0440\u043c\u044b
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
shapes.canvas = \u041a\u0430\u043d\u0432\u0430\u0441 HTML5
|
||||
|
||||
texts = \u0422\u0435\u043a\u0441\u0442\u044b
|
||||
@@ -26,6 +27,7 @@ images = \u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = \u0412\u0438\u0434\u0435\u043e
|
||||
movies.flv = FLV (\u0411\u0435\u0437 \u0437\u0432\u0443\u043a\u0430)
|
||||
@@ -62,6 +64,7 @@ frames.avi = AVI
|
||||
frames.svg = SVG
|
||||
frames.canvas = \u041a\u0430\u043d\u0432\u0430\u0441 HTML5
|
||||
frames.pdf = PDF
|
||||
frames.bmp = BMP
|
||||
|
||||
fonts = \u0428\u0440\u0438\u0444\u0442\u044b
|
||||
fonts.ttf = TTF
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
shapes = Former
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
|
||||
texts = Texter
|
||||
texts.plain = Oformaterad text
|
||||
@@ -21,6 +23,9 @@ texts.formatted = Formaterad text
|
||||
|
||||
images = Bilder
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = Filmer
|
||||
movies.flv = FLV (Inget Ljud)
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
shapes = \u0424\u043e\u0440\u043c\u0438
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
|
||||
texts = \u0422\u0435\u043a\u0441\u0442\u0438
|
||||
texts.plain = \u0417\u0432\u0438\u0447\u0430\u0439\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442
|
||||
@@ -21,6 +23,9 @@ texts.formatted = \u0424\u043e\u0440\u043c\u0430\u0442\u043e\u0432\u0430\u043d\u
|
||||
|
||||
images = \u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = \u0412\u0456\u0434\u0435\u043e
|
||||
movies.flv = FLV (\u0411\u0435\u0437 \u0437\u0432\u0443\u043a\u0443)
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
shapes = \u56fe\u5f62
|
||||
shapes.svg = SVG
|
||||
shapes.png = PNG
|
||||
shapes.bmp = BMP
|
||||
|
||||
texts = \u6587\u672c
|
||||
texts.plain = \u7eaf\u6587\u672c
|
||||
@@ -21,6 +23,9 @@ texts.formatted = \u683c\u5f0f\u5316\u7684\u6587\u672c
|
||||
|
||||
images = \u56fe\u7247
|
||||
images.png_jpeg = PNG/JPEG
|
||||
images.png = PNG
|
||||
images.jpeg = JPEG
|
||||
images.bmp = BMP
|
||||
|
||||
movies = \u5f71\u7247
|
||||
movies.flv = FLV (\u65e0\u97f3\u9891)
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
range.description = %name% (%available% sur %total% caract\u00e8res)
|
||||
dialog.title = Police incorpor\u00e9e
|
||||
label.individual = Caract\u00e8re personnalis\u00e9:
|
||||
button.loadfont = Charger les polices de caract\u0e8res \u00e0 partir du disque...
|
||||
button.loadfont = Charger les polices de caract\u00e8res \u00e0 partir du disque...
|
||||
filter.ttf = Fichier de police True Type (*.ttf)
|
||||
error.invalidfontfile = Fichier de police invalide
|
||||
error.cannotreadfontfile = Impossible de lire le fichier de police
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -1,15 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -17,4 +17,4 @@ dialog.title = Replace Trace function calls
|
||||
|
||||
function.debugAlert = debugAlert - web browser javascript alert
|
||||
function.debugConsole = debugConsole - web browser javascript console.log
|
||||
function.debugSocket = debugSocket - socket connection to the decompiler
|
||||
function.debugSocket = debugSocket - socket connection to the decompiler
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -17,4 +17,4 @@ dialog.title = Nahrazen\u00ed vol\u00e1n\u00ed funkce Trace
|
||||
|
||||
function.debugAlert = debugAlert - javascriptov\u00e1 funkce alert webov\u00e9ho prohl\u00ed\u017ee\u010de
|
||||
function.debugConsole = debugConsole - javascriptov\u00e1 funkce console.log webov\u00e9ho prohl\u00ed\u017ee\u010de
|
||||
function.debugSocket = debugSocket - p\u0159ipojen\u00ed sockety k dekompil\u00e1toru
|
||||
function.debugSocket = debugSocket - p\u0159ipojen\u00ed sockety k dekompil\u00e1toru
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -17,4 +17,4 @@ dialog.title = Remplacer les appels de fonction Trace
|
||||
|
||||
function.debugAlert = debugAlert - Alerte du navigateur web Javascript
|
||||
function.debugConsole = debugConsole - Navigateur Web javascript console.log
|
||||
function.debugSocket = debugSocket - socket de connection vers le d\u00e9compileur
|
||||
function.debugSocket = debugSocket - socket de connection vers le d\u00e9compileur
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
dialog.title = Trace f\u00fcggv\u00e9ny h\u00edv\u00e1sok cser\u00e9je
|
||||
|
||||
function.debugAlert = debugAlert - web b\u00f6ng\u00e9sz\u0151 javascript alert
|
||||
function.debugConsole = debugConsole - web b\u00f6ngsz\u0151 javascript console.log
|
||||
function.debugSocket = debugSocket - socket kapcsolat a decompilerhez
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -17,4 +17,4 @@ dialog.title = \u0417\u0430\u043c\u0435\u043d\u0430 \u0432\u044b\u0437\u043e\u04
|
||||
|
||||
function.debugAlert = debugAlert - javascript \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u0432 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435
|
||||
function.debugConsole = debugConsole - javascript console.log \u0432 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435
|
||||
function.debugSocket = debugSocket - \u0441\u043e\u043a\u0435\u0442\u043d\u043e\u0435 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0441 \u0434\u0435\u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0442\u043e\u0440\u043e\u043c
|
||||
function.debugSocket = debugSocket - \u0441\u043e\u043a\u0435\u0442\u043d\u043e\u0435 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0441 \u0434\u0435\u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0442\u043e\u0440\u043e\u043c
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@@ -32,4 +32,4 @@ error.replace = Cannot replace data
|
||||
error.start.server = Cannot start server on port %port%. Please check if port is not blocked by other application.
|
||||
column.accessed = Accessed
|
||||
column.size = Size
|
||||
column.url = URL
|
||||
column.url = URL
|
||||
|
||||
@@ -32,4 +32,4 @@ error.replace = Nelze nahradit data
|
||||
error.start.server = Nelze spustit server na portu %port%. Pros\u00edm zkontroljte zda port nen\u00ed blokov\u00e1n jinou aplikac\u00ed.
|
||||
column.accessed = P\u0159\u00edstup
|
||||
column.size = Velikost
|
||||
column.url = URL
|
||||
column.url = URL
|
||||
|
||||
@@ -23,4 +23,4 @@ remove = Entfernen
|
||||
sniff = Suchen:
|
||||
dialog.title = Proxy
|
||||
error = Error
|
||||
error.port = Falsches Format f\u00fcr die Portnummer.
|
||||
error.port = Falsches Format f\u00fcr die Portnummer.
|
||||
|
||||
@@ -32,4 +32,4 @@ error.replace = Impossible de remplacer les donn\u00e9es
|
||||
error.start.server = Impossible de d\u00e9marrer le serveur sur le port %port%. Veuillez v\u00e9rifier que ce port ne soit pas bloqu\u00e9 par une autre application.
|
||||
column.accessed = Acc\u00e9d\u00e9
|
||||
column.size = Taille
|
||||
column.url = URL
|
||||
column.url = URL
|
||||
|
||||
@@ -24,3 +24,12 @@ sniff = Sniff:
|
||||
dialog.title = Proxy
|
||||
error = Hiba
|
||||
error.port = Hib\u00e1s portsz\u00e1m form\u00e1tum.
|
||||
copy.url = URL m\u00e1sol\u00e1sa
|
||||
save.as = Ment\u00e9s m\u00e9sk\u00e9nt...
|
||||
replace = Csere...
|
||||
error.save.as = Nem lehet menteni a f\u00e1jlt
|
||||
error.replace = Nem lehet cser\u00e9lni az adatot
|
||||
error.start.server = Nem tudom elind\u00edtani a kiszolg\u00e1l\u00f3t a %port% sz\u00e1m\u00fa porton. K\u00e9rem ellen\u0151rizze, hogy blokkolja-e az adaott portot egy m\u00e1sik program.
|
||||
column.accessed = Hozz\u00e1f\u00e9rve
|
||||
column.size = M\u00e9ret
|
||||
column.url = URL
|
||||
|
||||
@@ -32,4 +32,4 @@ error.replace = \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0
|
||||
error.start.server = \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0430 \u043f\u043e\u0440\u0442\u0443 %port%. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043f\u043e\u0440\u0442 \u043d\u0435 \u0437\u0430\u043d\u044f\u0442 \u0434\u0440\u0443\u0433\u0438\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c.
|
||||
column.accessed = \u0414\u043e\u0441\u0442\u0443\u043f
|
||||
column.size = \u0420\u0430\u0437\u043c\u0435\u0440
|
||||
column.url = URL
|
||||
column.url = URL
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
dialog.title = Vue chronologique
|
||||
@@ -1,16 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
dialog.title = Timeline view
|
||||
@@ -1,16 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
dialog.title = Vista de la cronologia
|
||||
@@ -1,16 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
dialog.title = Id\u0151vonal n\u00e9zet
|
||||
@@ -1,16 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
dialog.title = Widok linii czasu
|
||||
@@ -1,16 +0,0 @@
|
||||
# Copyright (C) 2010-2015 JPEXS
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
dialog.title = Ver linha do tempo
|
||||
Reference in New Issue
Block a user