mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Importing EDE2 code to svn... NOTE: It doesn't compile! Stuff thats broken: edewm, eworkpanel, eiconman,
emenueditor
This commit is contained in:
22
eiconsconf/Makefile
Executable file
22
eiconsconf/Makefile
Executable file
@@ -0,0 +1,22 @@
|
||||
|
||||
CPPFILES = ../edelib2/Util.cpp ../edelib2/Config.cpp eiconsconf.cpp eicon.cpp
|
||||
TARGET = eiconsconf
|
||||
|
||||
POFILES = locale/ru.po\
|
||||
locale/sr.po\
|
||||
locale/sk.po\
|
||||
locale/hu.po\
|
||||
|
||||
include ../makeinclude
|
||||
|
||||
install:
|
||||
$(INSTALL_PROGRAM) $(TARGET) $(bindir)
|
||||
$(INSTALL_LOCALE)
|
||||
|
||||
uninstall:
|
||||
$(RM) $(bindir)/$(TARGET)
|
||||
|
||||
clean:
|
||||
$(RM) $(TARGET)
|
||||
$(RM) *.o
|
||||
|
||||
98
eiconsconf/eicon.cpp
Executable file
98
eiconsconf/eicon.cpp
Executable file
@@ -0,0 +1,98 @@
|
||||
/*
|
||||
* $Id$
|
||||
*
|
||||
* Icon properties (for eiconman - the EDE desktop)
|
||||
* Part of Equinox Desktop Environment (EDE).
|
||||
* Copyright (c) 2000-2006 EDE Authors.
|
||||
*
|
||||
* This program is licenced under terms of the
|
||||
* GNU General Public Licence version 2 or newer.
|
||||
* See COPYING for details.
|
||||
*/
|
||||
|
||||
#include "eicon.h"
|
||||
|
||||
using namespace fltk;
|
||||
using namespace edelib;
|
||||
|
||||
|
||||
int label_background = 46848
|
||||
;
|
||||
int label_foreground = WHITE;
|
||||
int label_fontsize = 12;
|
||||
int label_maxwidth = 75;
|
||||
int label_gridspacing = 16
|
||||
;
|
||||
bool label_trans = true;
|
||||
bool label_engage_1click = false;
|
||||
bool auto_arr = false;
|
||||
|
||||
static void sendClientMessage(XWindow w, Atom a, long x)
|
||||
{
|
||||
/* XEvent ev;
|
||||
long mask;
|
||||
|
||||
memset(&ev, 0, sizeof(ev));
|
||||
ev.xclient.type = ClientMessage;
|
||||
ev.xclient.window = w;
|
||||
ev.xclient.message_type = a;
|
||||
ev.xclient.format = 32;
|
||||
ev.xclient.data.l[0] = x;
|
||||
ev.xclient.data.l[1] = CurrentTime;
|
||||
mask = 0L;
|
||||
if (w == RootWindow(fl_display, fl_screen))
|
||||
mask = SubstructureRedirectMask;
|
||||
XSendEvent(fl_display, w, False, mask, &ev);*/
|
||||
}
|
||||
|
||||
void sendUpdateInfo()
|
||||
{
|
||||
// no worky
|
||||
/* unsigned int i, nrootwins;
|
||||
Window dw1, dw2, *rootwins = 0;
|
||||
int screen_count = ScreenCount(fl_display);
|
||||
extern Atom FLTKChangeSettings;
|
||||
for (int s = 0; s < screen_count; s++) {
|
||||
Window root = RootWindow(fl_display, s);
|
||||
XQueryTree(fl_display, root, &dw1, &dw2, &rootwins, &nrootwins);
|
||||
for (i = 0; i < nrootwins; i++) {
|
||||
if (rootwins[i]!=RootWindow(fl_display, fl_screen)) {
|
||||
sendClientMessage(rootwins[i], FLTKChangeSettings, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
XFlush(fl_display);*/
|
||||
}
|
||||
|
||||
void
|
||||
readIconsConfiguration()
|
||||
{
|
||||
Config globalConfig(Config::find_file("ede.conf", 0), true, false);
|
||||
globalConfig.set_section("IconManager");
|
||||
|
||||
globalConfig.read("Label Background", label_background, 46848);
|
||||
globalConfig.read("Label Transparent", label_trans, false);
|
||||
globalConfig.read("Label Foreground", label_foreground, WHITE);
|
||||
globalConfig.read("Label Fontsize", label_fontsize, 12);
|
||||
globalConfig.read("Label Maxwidth", label_maxwidth, 75);
|
||||
globalConfig.read("Gridspacing", label_gridspacing, 16);
|
||||
globalConfig.read("OneClickExec", label_engage_1click, false);
|
||||
globalConfig.read("AutoArrange", auto_arr, false);
|
||||
}
|
||||
|
||||
void writeIconsConfiguration()
|
||||
{
|
||||
Config globalConfig(Config::find_file("ede.conf", true));
|
||||
globalConfig.set_section("IconManager");
|
||||
|
||||
globalConfig.write("Label Background", label_background);
|
||||
globalConfig.write("Label Transparent", label_trans);
|
||||
globalConfig.write("Label Foreground", label_foreground);
|
||||
globalConfig.write("Label Fontsize", label_fontsize);
|
||||
globalConfig.write("Label Maxwidth", label_maxwidth);
|
||||
globalConfig.write("Gridspacing", label_gridspacing);
|
||||
globalConfig.write("OneClickExec", label_engage_1click);
|
||||
globalConfig.write("AutoArrange", auto_arr);
|
||||
}
|
||||
|
||||
|
||||
43
eiconsconf/eicon.h
Executable file
43
eiconsconf/eicon.h
Executable file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* $Id$
|
||||
*
|
||||
* Icon properties (for eiconman - the EDE desktop)
|
||||
* Part of Equinox Desktop Environment (EDE).
|
||||
* Copyright (c) 2000-2006 EDE Authors.
|
||||
*
|
||||
* This program is licenced under terms of the
|
||||
* GNU General Public Licence version 2 or newer.
|
||||
* See COPYING for details.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef EICON_H
|
||||
#define EICON_H
|
||||
|
||||
#include <stdlib.h>
|
||||
//#include <efltk/Fl.h>
|
||||
#include <fltk/ask.h> //#include <efltk/fl_ask.h>
|
||||
//#include <efltk/Fl_Color_Chooser.h>
|
||||
#include <fltk/x.h> //#include <efltk/x.h>
|
||||
#include "../edelib2/Config.h"
|
||||
#include "../edelib2/NLS.h"
|
||||
|
||||
extern int label_background;
|
||||
extern int label_foreground;
|
||||
extern int label_fontsize;
|
||||
extern int label_maxwidth;
|
||||
extern int label_gridspacing;
|
||||
extern bool label_trans;
|
||||
extern bool label_engage_1click;
|
||||
extern bool auto_arr;
|
||||
|
||||
void
|
||||
readIconsConfiguration()
|
||||
;
|
||||
void
|
||||
writeIconsConfiguration()
|
||||
;
|
||||
void sendUpdateInfo();
|
||||
|
||||
#endif
|
||||
|
||||
191
eiconsconf/eiconsconf.cpp
Executable file
191
eiconsconf/eiconsconf.cpp
Executable file
@@ -0,0 +1,191 @@
|
||||
// generated by Fast Light User Interface Designer (fluid) version 2.0100
|
||||
|
||||
#include "eiconsconf.h"
|
||||
/*
|
||||
* $Id$
|
||||
*
|
||||
* Icon properties (for eiconman - the EDE desktop)
|
||||
* Part of Equinox Desktop Environment (EDE).
|
||||
* Copyright (c) 2000-2006 EDE Authors.
|
||||
*
|
||||
* This program is licenced under terms of the
|
||||
* GNU General Public Licence version 2 or newer.
|
||||
* See COPYING for details.
|
||||
*/
|
||||
#include <fltk/ColorChooser.h>
|
||||
#include "../edelib2/NLS.h"
|
||||
#include "../edeconf.h"
|
||||
#include "eicon.h"
|
||||
|
||||
fltk::Window *iconsConfWindow=(fltk::Window *)0;
|
||||
|
||||
static void cb_OK(fltk::Button*, void*) {
|
||||
writeIconsConfiguration();
|
||||
sendUpdateInfo();
|
||||
exit(0);
|
||||
}
|
||||
|
||||
static void cb_Cancel(fltk::Button*, void*) {
|
||||
exit(0);
|
||||
}
|
||||
|
||||
static void cb_Apply(fltk::Button*, void*) {
|
||||
writeIconsConfiguration();
|
||||
sendUpdateInfo();
|
||||
}
|
||||
|
||||
fltk::Button *colorButton=(fltk::Button *)0;
|
||||
|
||||
static void cb_colorButton(fltk::Button*, void*) {
|
||||
changeBoxColor(colorButton);
|
||||
label_background = (int) colorButton->color();
|
||||
}
|
||||
|
||||
fltk::Button *colorButton1=(fltk::Button *)0;
|
||||
|
||||
static void cb_colorButton1(fltk::Button*, void*) {
|
||||
changeBoxColor(colorButton1);
|
||||
label_foreground = (int) colorButton1->color();
|
||||
}
|
||||
|
||||
fltk::ValueSlider *maxWidthSlider=(fltk::ValueSlider *)0;
|
||||
|
||||
static void cb_maxWidthSlider(fltk::ValueSlider*, void*) {
|
||||
label_maxwidth = (int) maxWidthSlider->value();
|
||||
}
|
||||
|
||||
fltk::ValueSlider *fontsizeSlider=(fltk::ValueSlider *)0;
|
||||
|
||||
static void cb_fontsizeSlider(fltk::ValueSlider*, void*) {
|
||||
label_fontsize = (int) fontsizeSlider->value();
|
||||
}
|
||||
|
||||
fltk::ValueSlider *gridspaceSlider=(fltk::ValueSlider *)0;
|
||||
|
||||
static void cb_gridspaceSlider(fltk::ValueSlider*, void*) {
|
||||
label_gridspacing = (int) gridspaceSlider->value();
|
||||
}
|
||||
|
||||
fltk::CheckButton *autoArrButton=(fltk::CheckButton *)0;
|
||||
|
||||
static void cb_autoArrButton(fltk::CheckButton* o, void*) {
|
||||
auto_arr = (o->value()>0);
|
||||
}
|
||||
|
||||
fltk::CheckButton *engageButton=(fltk::CheckButton *)0;
|
||||
|
||||
static void cb_engageButton(fltk::CheckButton*, void*) {
|
||||
label_engage_1click = (int) engageButton->value();
|
||||
}
|
||||
|
||||
fltk::CheckButton *bg_color_check=(fltk::CheckButton *)0;
|
||||
|
||||
static void cb_bg_color_check(fltk::CheckButton* o, void*) {
|
||||
if(o->value()) colorButton->activate();
|
||||
else colorButton->deactivate();
|
||||
label_trans = (o->value()==0);
|
||||
}
|
||||
|
||||
#include <fltk/run.h>
|
||||
|
||||
int main (int argc, char **argv) {
|
||||
|
||||
fltk::Window* w;
|
||||
//fl_init_locale_support("eiconsconf", PREFIX"/share/locale");
|
||||
readIconsConfiguration();
|
||||
{fltk::Window* o = iconsConfWindow = new fltk::Window(265, 310, "Icons settings");
|
||||
w = o;
|
||||
o->set_vertical();
|
||||
o->begin();
|
||||
{fltk::Button* o = new fltk::Button(25, 277, 75, 25, "&OK");
|
||||
o->callback((fltk::Callback*)cb_OK);
|
||||
}
|
||||
{fltk::Button* o = new fltk::Button(185, 277, 75, 25, "&Cancel");
|
||||
o->callback((fltk::Callback*)cb_Cancel);
|
||||
}
|
||||
{fltk::Button* o = new fltk::Button(105, 277, 75, 25, "&Apply");
|
||||
o->callback((fltk::Callback*)cb_Apply);
|
||||
}
|
||||
{fltk::TabGroup* o = new fltk::TabGroup(1, 5, 259, 262);
|
||||
o->set_vertical();
|
||||
o->color((fltk::Color)0xfffffffe);
|
||||
o->begin();
|
||||
{fltk::Group* o = new fltk::Group(0, 20, 255, 239, "Look&&feel");
|
||||
o->begin();
|
||||
{fltk::Button* o = colorButton = new fltk::Button(164, 20, 60, 18, "Background color: ");
|
||||
o->callback((fltk::Callback*)cb_colorButton);
|
||||
o->align(fltk::ALIGN_LEFT);
|
||||
o->color((fltk::Color)label_background);
|
||||
if(label_trans) o->deactivate();
|
||||
}
|
||||
{fltk::Button* o = colorButton1 = new fltk::Button(164, 45, 60, 18, "Label color: ");
|
||||
o->callback((fltk::Callback*)cb_colorButton1);
|
||||
o->align(fltk::ALIGN_LEFT);
|
||||
o->color((fltk::Color) label_foreground);
|
||||
}
|
||||
{fltk::ValueSlider* o = maxWidthSlider = new fltk::ValueSlider(114, 78, 125, 20, "Maximum width: ");
|
||||
o->minimum(48);
|
||||
o->maximum(200);
|
||||
o->step(1);
|
||||
o->value(50);
|
||||
o->slider_size(10);
|
||||
o->callback((fltk::Callback*)cb_maxWidthSlider);
|
||||
o->align(fltk::ALIGN_LEFT);
|
||||
o->value(label_maxwidth);
|
||||
}
|
||||
{fltk::ValueSlider* o = fontsizeSlider = new fltk::ValueSlider(114, 108, 125, 20, "Font height: ");
|
||||
o->type(fltk::ValueSlider::TICK_ABOVE);
|
||||
o->minimum(8);
|
||||
o->maximum(48);
|
||||
o->step(1);
|
||||
o->value(10);
|
||||
o->slider_size(10);
|
||||
o->callback((fltk::Callback*)cb_fontsizeSlider);
|
||||
o->align(fltk::ALIGN_LEFT);
|
||||
o->value(label_fontsize);
|
||||
}
|
||||
{fltk::ValueSlider* o = gridspaceSlider = new fltk::ValueSlider(114, 138, 125, 20, "Grid spacing: ");
|
||||
o->type(fltk::ValueSlider::TICK_ABOVE);
|
||||
o->minimum(1);
|
||||
o->maximum(50);
|
||||
o->step(1);
|
||||
o->value(10);
|
||||
o->slider_size(10);
|
||||
o->callback((fltk::Callback*)cb_gridspaceSlider);
|
||||
o->align(fltk::ALIGN_LEFT);
|
||||
o->value(label_gridspacing);
|
||||
}
|
||||
{fltk::CheckButton* o = autoArrButton = new fltk::CheckButton(24, 198, 222, 20, "Auto arrange icons");
|
||||
o->callback((fltk::Callback*)cb_autoArrButton);
|
||||
o->value(auto_arr);
|
||||
}
|
||||
{fltk::CheckButton* o = engageButton = new fltk::CheckButton(24, 173, 222, 20, "Engage with just one click");
|
||||
o->callback((fltk::Callback*)cb_engageButton);
|
||||
o->value(label_engage_1click);
|
||||
}
|
||||
{fltk::CheckButton* o = bg_color_check = new fltk::CheckButton(226, 20, 20, 18);
|
||||
o->callback((fltk::Callback*)cb_bg_color_check);
|
||||
o->tooltip("Clear this, to get transparent background.");
|
||||
if(!label_trans) o->set();
|
||||
}
|
||||
o->end();
|
||||
}
|
||||
o->end();
|
||||
}
|
||||
o->end();
|
||||
o->resizable(o);
|
||||
}
|
||||
w->show(argc, argv);
|
||||
return fltk::run();
|
||||
}
|
||||
|
||||
void changeBoxColor(fltk::Button *box) {
|
||||
//Fl_Button *colorBox = box;
|
||||
fltk::Color oldColor = box->color();
|
||||
fltk::Color defColor = oldColor;
|
||||
fltk::color_chooser(_("Choose color"), defColor);
|
||||
if ( defColor != oldColor ) {
|
||||
box->color(defColor);
|
||||
box->redraw();
|
||||
}
|
||||
}
|
||||
131
eiconsconf/eiconsconf.fld
Executable file
131
eiconsconf/eiconsconf.fld
Executable file
@@ -0,0 +1,131 @@
|
||||
# data file for the FLTK User Interface Designer (FLUID)
|
||||
version 2.0100
|
||||
images_dir ./icons
|
||||
header_name {.h}
|
||||
code_name {.cpp}
|
||||
gridx 5
|
||||
gridy 5
|
||||
snap 3
|
||||
decl {/*
|
||||
* $Id$
|
||||
*
|
||||
* Icon properties (for eiconman - the EDE desktop)
|
||||
* Part of Equinox Desktop Environment (EDE).
|
||||
* Copyright (c) 2000-2006 EDE Authors.
|
||||
*
|
||||
* This program is licenced under terms of the
|
||||
* GNU General Public Licence version 2 or newer.
|
||||
* See COPYING for details.
|
||||
*/} {}
|
||||
|
||||
decl {\#include <fltk/ColorChooser.h>} {}
|
||||
|
||||
decl {\#include "../edelib2/NLS.h"} {}
|
||||
|
||||
decl {\#include "../edeconf.h"} {}
|
||||
|
||||
decl {\#include "eicon.h"} {}
|
||||
|
||||
Function {} {open
|
||||
} {
|
||||
code {//fl_init_locale_support("eiconsconf", PREFIX"/share/locale");
|
||||
readIconsConfiguration();} {}
|
||||
{fltk::Window} iconsConfWindow {
|
||||
label {Icons settings} open
|
||||
xywh {386 204 265 310} resizable visible
|
||||
} {
|
||||
{fltk::Button} {} {
|
||||
label {&OK}
|
||||
callback {writeIconsConfiguration();
|
||||
sendUpdateInfo();
|
||||
exit(0);}
|
||||
xywh {25 277 75 25}
|
||||
}
|
||||
{fltk::Button} {} {
|
||||
label {&Cancel}
|
||||
callback {exit(0);}
|
||||
xywh {185 277 75 25}
|
||||
}
|
||||
{fltk::Button} {} {
|
||||
label {&Apply}
|
||||
callback {writeIconsConfiguration();
|
||||
sendUpdateInfo();}
|
||||
xywh {105 277 75 25}
|
||||
}
|
||||
{fltk::TabGroup} {} {open
|
||||
xywh {1 5 259 262} color 0xfffffffe
|
||||
} {
|
||||
{fltk::Group} {} {
|
||||
label {Look&&feel} open
|
||||
xywh {0 20 255 239}
|
||||
} {
|
||||
{fltk::Button} colorButton {
|
||||
label {Background color: }
|
||||
callback {changeBoxColor(colorButton);
|
||||
label_background = (int) colorButton->color();}
|
||||
xywh {164 20 60 18} align 4
|
||||
extra_code {o->color((fltk::Color)label_background);
|
||||
if(label_trans) o->deactivate();}
|
||||
}
|
||||
{fltk::Button} colorButton1 {
|
||||
label {Label color: }
|
||||
callback {changeBoxColor(colorButton1);
|
||||
label_foreground = (int) colorButton1->color();}
|
||||
xywh {164 45 60 18} align 4
|
||||
extra_code {o->color((fltk::Color) label_foreground);}
|
||||
}
|
||||
{fltk::ValueSlider} maxWidthSlider {
|
||||
label {Maximum width: }
|
||||
callback {label_maxwidth = (int) maxWidthSlider->value();}
|
||||
xywh {114 78 125 20} align 4 minimum 48 maximum 200 step 1 value 50 slider_size 10
|
||||
extra_code {o->value(label_maxwidth);}
|
||||
}
|
||||
{fltk::ValueSlider} fontsizeSlider {
|
||||
label {Font height: }
|
||||
callback {label_fontsize = (int) fontsizeSlider->value();}
|
||||
xywh {114 108 125 20} type TICK_ABOVE align 4 minimum 8 maximum 48 step 1 value 10 slider_size 10
|
||||
extra_code {o->value(label_fontsize);}
|
||||
}
|
||||
{fltk::ValueSlider} gridspaceSlider {
|
||||
label {Grid spacing: }
|
||||
callback {label_gridspacing = (int) gridspaceSlider->value();}
|
||||
xywh {114 138 125 20} type TICK_ABOVE align 4 minimum 1 maximum 50 step 1 value 10 slider_size 10
|
||||
extra_code {o->value(label_gridspacing);}
|
||||
}
|
||||
{fltk::CheckButton} autoArrButton {
|
||||
label {Auto arrange icons}
|
||||
callback {auto_arr = (o->value()>0);}
|
||||
xywh {24 198 222 20}
|
||||
extra_code {o->value(auto_arr);}
|
||||
}
|
||||
{fltk::CheckButton} engageButton {
|
||||
label {Engage with just one click}
|
||||
callback {label_engage_1click = (int) engageButton->value();}
|
||||
xywh {24 173 222 20}
|
||||
extra_code {o->value(label_engage_1click);}
|
||||
}
|
||||
{fltk::CheckButton} bg_color_check {
|
||||
callback {if(o->value()) colorButton->activate();
|
||||
else colorButton->deactivate();
|
||||
label_trans = (o->value()==0);}
|
||||
tooltip {Clear this, to get transparent background.}
|
||||
xywh {226 20 20 18}
|
||||
extra_code {if(!label_trans) o->set();}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Function {changeBoxColor(fltk::Button *box)} {open return_type void
|
||||
} {
|
||||
code {//Fl_Button *colorBox = box;
|
||||
fltk::Color oldColor = box->color();
|
||||
fltk::Color defColor = oldColor;
|
||||
fltk::color_chooser(_("Choose color"), defColor);
|
||||
if ( defColor != oldColor ) {
|
||||
box->color(defColor);
|
||||
box->redraw();
|
||||
}} {selected
|
||||
}
|
||||
}
|
||||
21
eiconsconf/eiconsconf.h
Executable file
21
eiconsconf/eiconsconf.h
Executable file
@@ -0,0 +1,21 @@
|
||||
// generated by Fast Light User Interface Designer (fluid) version 2.0100
|
||||
|
||||
#ifndef eiconsconf_h
|
||||
#define eiconsconf_h
|
||||
#include <fltk/Window.h>
|
||||
extern fltk::Window* iconsConfWindow;
|
||||
#include <fltk/Button.h>
|
||||
#include <fltk/TabGroup.h>
|
||||
#include <fltk/Group.h>
|
||||
extern fltk::Button* colorButton;
|
||||
extern fltk::Button* colorButton1;
|
||||
#include <fltk/ValueSlider.h>
|
||||
extern fltk::ValueSlider* maxWidthSlider;
|
||||
extern fltk::ValueSlider* fontsizeSlider;
|
||||
extern fltk::ValueSlider* gridspaceSlider;
|
||||
#include <fltk/CheckButton.h>
|
||||
extern fltk::CheckButton* autoArrButton;
|
||||
extern fltk::CheckButton* engageButton;
|
||||
extern fltk::CheckButton* bg_color_check;
|
||||
void changeBoxColor(fltk::Button *box);
|
||||
#endif
|
||||
67
eiconsconf/locale/hu.po
Executable file
67
eiconsconf/locale/hu.po
Executable file
@@ -0,0 +1,67 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2005-02-09 11:22+0100\n"
|
||||
"Last-Translator: Nemeth Otto <otto_nemeth@freemail.hu>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: eiconsconf.cpp:85
|
||||
msgid "Icons settings"
|
||||
msgstr "Ikon beállítások"
|
||||
|
||||
#: eiconsconf.cpp:87
|
||||
msgid "&OK"
|
||||
msgstr "&OK"
|
||||
|
||||
#: eiconsconf.cpp:90
|
||||
msgid "&Cancel"
|
||||
msgstr "Mégs&em"
|
||||
|
||||
#: eiconsconf.cpp:93
|
||||
msgid "&Apply"
|
||||
msgstr "&Alkalmaz"
|
||||
|
||||
#: eiconsconf.cpp:97
|
||||
msgid "Look&&feel"
|
||||
msgstr "Megjelenés"
|
||||
|
||||
#: eiconsconf.cpp:99
|
||||
msgid "Background color: "
|
||||
msgstr "Háttér szín:"
|
||||
|
||||
#: eiconsconf.cpp:106
|
||||
msgid "Label color: "
|
||||
msgstr "Szöveg szín:"
|
||||
|
||||
#: eiconsconf.cpp:112
|
||||
msgid "Maximum width: "
|
||||
msgstr "Maximális szélesség:"
|
||||
|
||||
#: eiconsconf.cpp:123
|
||||
msgid "Font height: "
|
||||
msgstr "Font magasság:"
|
||||
|
||||
#: eiconsconf.cpp:134
|
||||
msgid "Grid spacing: "
|
||||
msgstr "Rácshoz igazítás:"
|
||||
|
||||
#: eiconsconf.cpp:145
|
||||
msgid "Auto arrange icons"
|
||||
msgstr "Ikonok automatikus rendezése"
|
||||
|
||||
#: eiconsconf.cpp:151
|
||||
msgid "Engage with just one click"
|
||||
msgstr "Egy kattintással aktivál"
|
||||
|
||||
#: eiconsconf.cpp:159
|
||||
msgid "Clear this, to get transparent background."
|
||||
msgstr "Töröld a kijelölést a szövegháttér eltűnéséhez"
|
||||
|
||||
#: eiconsconf.cpp:176
|
||||
msgid "Choose color"
|
||||
msgstr "Szín kiválasztása"
|
||||
|
||||
71
eiconsconf/locale/id.po
Executable file
71
eiconsconf/locale/id.po
Executable file
@@ -0,0 +1,71 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eiconsconf 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-02-04 12:25+0100\n"
|
||||
"PO-Revision-Date: 202-11-29 14:58+0700\n"
|
||||
"Last-Translator: Bambang Purnomosidi D. P. <i-am-the-boss@bpdp.org>\n"
|
||||
"Language-Team: id <i-am-the-boss@bpdp.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=iso-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: eiconsconf.cpp:85
|
||||
msgid "Icons settings"
|
||||
msgstr "Seting ikon"
|
||||
|
||||
#: eiconsconf.cpp:87
|
||||
msgid "&OK"
|
||||
msgstr "&OK"
|
||||
|
||||
#: eiconsconf.cpp:90
|
||||
msgid "&Cancel"
|
||||
msgstr "&Batal"
|
||||
|
||||
#: eiconsconf.cpp:93
|
||||
msgid "&Apply"
|
||||
msgstr "&Terapkan"
|
||||
|
||||
#: eiconsconf.cpp:97
|
||||
msgid "Look&&feel"
|
||||
msgstr "Look&&feel"
|
||||
|
||||
#: eiconsconf.cpp:99
|
||||
msgid "Background color: "
|
||||
msgstr "Warna latar belakang"
|
||||
|
||||
#: eiconsconf.cpp:106
|
||||
msgid "Label color: "
|
||||
msgstr "Warna label"
|
||||
|
||||
#: eiconsconf.cpp:112
|
||||
msgid "Maximum width: "
|
||||
msgstr "Lebar maximum: "
|
||||
|
||||
#: eiconsconf.cpp:123
|
||||
msgid "Font height: "
|
||||
msgstr "Tinggi font: "
|
||||
|
||||
#: eiconsconf.cpp:134
|
||||
msgid "Grid spacing: "
|
||||
msgstr "Spasi grid: "
|
||||
|
||||
#: eiconsconf.cpp:145
|
||||
msgid "Auto arrange icons"
|
||||
msgstr "Ikon tersusun otomatis"
|
||||
|
||||
#: eiconsconf.cpp:151
|
||||
msgid "Engage with just one click"
|
||||
msgstr "Bekerja hanya dengan satu klik"
|
||||
|
||||
#: eiconsconf.cpp:159
|
||||
msgid "Clear this, to get transparent background."
|
||||
msgstr "Bersihkan ini, untuk mendapatkan latar belakang transparan."
|
||||
|
||||
#: eiconsconf.cpp:176
|
||||
msgid "Choose color"
|
||||
msgstr "Pilih warna"
|
||||
73
eiconsconf/locale/messages.pot
Executable file
73
eiconsconf/locale/messages.pot
Executable file
@@ -0,0 +1,73 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-02-04 12:25+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: eiconsconf.cpp:85
|
||||
msgid "Icons settings"
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:87
|
||||
msgid "&OK"
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:90
|
||||
msgid "&Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:93
|
||||
msgid "&Apply"
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:97
|
||||
msgid "Look&&feel"
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:99
|
||||
msgid "Background color: "
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:106
|
||||
msgid "Label color: "
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:112
|
||||
msgid "Maximum width: "
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:123
|
||||
msgid "Font height: "
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:134
|
||||
msgid "Grid spacing: "
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:145
|
||||
msgid "Auto arrange icons"
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:151
|
||||
msgid "Engage with just one click"
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:159
|
||||
msgid "Clear this, to get transparent background."
|
||||
msgstr ""
|
||||
|
||||
#: eiconsconf.cpp:176
|
||||
msgid "Choose color"
|
||||
msgstr ""
|
||||
72
eiconsconf/locale/ru.po
Executable file
72
eiconsconf/locale/ru.po
Executable file
@@ -0,0 +1,72 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-02-04 12:25+0100\n"
|
||||
"PO-Revision-Date: 2002-11-28 HO:MI+ZONE\n"
|
||||
"Last-Translator: aabbvv <null@list.ru>\n"
|
||||
"Language-Team: RUSSIAN <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=koi8-r\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: eiconsconf.cpp:85
|
||||
msgid "Icons settings"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
#: eiconsconf.cpp:87
|
||||
msgid "&OK"
|
||||
msgstr "&OK"
|
||||
|
||||
#: eiconsconf.cpp:90
|
||||
msgid "&Cancel"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
#: eiconsconf.cpp:93
|
||||
msgid "&Apply"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
#: eiconsconf.cpp:97
|
||||
msgid "Look&&feel"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>"
|
||||
|
||||
#: eiconsconf.cpp:99
|
||||
msgid "Background color: "
|
||||
msgstr "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>: "
|
||||
|
||||
#: eiconsconf.cpp:106
|
||||
msgid "Label color: "
|
||||
msgstr "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: "
|
||||
|
||||
#: eiconsconf.cpp:112
|
||||
msgid "Maximum width: "
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>: "
|
||||
|
||||
#: eiconsconf.cpp:123
|
||||
msgid "Font height: "
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: "
|
||||
|
||||
#: eiconsconf.cpp:134
|
||||
msgid "Grid spacing: "
|
||||
msgstr "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>: "
|
||||
|
||||
#: eiconsconf.cpp:145
|
||||
msgid "Auto arrange icons"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
#: eiconsconf.cpp:151
|
||||
msgid "Engage with just one click"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
#: eiconsconf.cpp:159
|
||||
msgid "Clear this, to get transparent background."
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
#: eiconsconf.cpp:176
|
||||
msgid "Choose color"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"
|
||||
71
eiconsconf/locale/sk.po
Executable file
71
eiconsconf/locale/sk.po
Executable file
@@ -0,0 +1,71 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eiconsconf 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-02-04 12:25+0100\n"
|
||||
"PO-Revision-Date: 2002-04-21 14:50+0200\n"
|
||||
"Last-Translator: Martin Pekar <cortex@nextra.sk>\n"
|
||||
"Language-Team: Slovak <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: eiconsconf.cpp:85
|
||||
msgid "Icons settings"
|
||||
msgstr "Nastavenie ikon"
|
||||
|
||||
#: eiconsconf.cpp:87
|
||||
msgid "&OK"
|
||||
msgstr "&OK"
|
||||
|
||||
#: eiconsconf.cpp:90
|
||||
msgid "&Cancel"
|
||||
msgstr "&Zrušiť"
|
||||
|
||||
#: eiconsconf.cpp:93
|
||||
msgid "&Apply"
|
||||
msgstr "&Použiť"
|
||||
|
||||
#: eiconsconf.cpp:97
|
||||
msgid "Look&&feel"
|
||||
msgstr "Look&&feel"
|
||||
|
||||
#: eiconsconf.cpp:99
|
||||
msgid "Background color: "
|
||||
msgstr "Farba pozadia:"
|
||||
|
||||
#: eiconsconf.cpp:106
|
||||
msgid "Label color: "
|
||||
msgstr "Farba menovky:"
|
||||
|
||||
#: eiconsconf.cpp:112
|
||||
msgid "Maximum width: "
|
||||
msgstr "Maximálna šírka:"
|
||||
|
||||
#: eiconsconf.cpp:123
|
||||
msgid "Font height: "
|
||||
msgstr "Veľkosť fontu:"
|
||||
|
||||
#: eiconsconf.cpp:134
|
||||
msgid "Grid spacing: "
|
||||
msgstr "Odstup mriežky:"
|
||||
|
||||
#: eiconsconf.cpp:145
|
||||
msgid "Auto arrange icons"
|
||||
msgstr "Automaticky usporiadavať ikony"
|
||||
|
||||
#: eiconsconf.cpp:151
|
||||
msgid "Engage with just one click"
|
||||
msgstr "Potvrdiť iba jedným kliknutím"
|
||||
|
||||
#: eiconsconf.cpp:159
|
||||
msgid "Clear this, to get transparent background."
|
||||
msgstr "Ak je tlačidlo odškrtnuté, budú sa zobrazovať transparentné ikony."
|
||||
|
||||
#: eiconsconf.cpp:176
|
||||
msgid "Choose color"
|
||||
msgstr "Voľba farby"
|
||||
71
eiconsconf/locale/sr.po
Executable file
71
eiconsconf/locale/sr.po
Executable file
@@ -0,0 +1,71 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eiconsconf 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-02-04 12:25+0100\n"
|
||||
"PO-Revision-Date: 2002-11-30 01:46+0100\n"
|
||||
"Last-Translator: Dejan Lekic <dejan@nu6.org>\n"
|
||||
"Language-Team: LINUKS.org T.T. <i18n@linuks.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: eiconsconf.cpp:85
|
||||
msgid "Icons settings"
|
||||
msgstr "Подешавања икона"
|
||||
|
||||
#: eiconsconf.cpp:87
|
||||
msgid "&OK"
|
||||
msgstr "&У реду"
|
||||
|
||||
#: eiconsconf.cpp:90
|
||||
msgid "&Cancel"
|
||||
msgstr "&Одустани"
|
||||
|
||||
#: eiconsconf.cpp:93
|
||||
msgid "&Apply"
|
||||
msgstr "&Примени"
|
||||
|
||||
#: eiconsconf.cpp:97
|
||||
msgid "Look&&feel"
|
||||
msgstr "Изглед и особине"
|
||||
|
||||
#: eiconsconf.cpp:99
|
||||
msgid "Background color: "
|
||||
msgstr "Боја позадине:"
|
||||
|
||||
#: eiconsconf.cpp:106
|
||||
msgid "Label color: "
|
||||
msgstr "Боја наслова:"
|
||||
|
||||
#: eiconsconf.cpp:112
|
||||
msgid "Maximum width: "
|
||||
msgstr "Максимална ширина:"
|
||||
|
||||
#: eiconsconf.cpp:123
|
||||
msgid "Font height: "
|
||||
msgstr "Висина фонта:"
|
||||
|
||||
#: eiconsconf.cpp:134
|
||||
msgid "Grid spacing: "
|
||||
msgstr "Размак међу линијама:"
|
||||
|
||||
#: eiconsconf.cpp:145
|
||||
msgid "Auto arrange icons"
|
||||
msgstr "Аутоматско ређање икона"
|
||||
|
||||
#: eiconsconf.cpp:151
|
||||
msgid "Engage with just one click"
|
||||
msgstr "Стартуј једним кликом:"
|
||||
|
||||
#: eiconsconf.cpp:159
|
||||
msgid "Clear this, to get transparent background."
|
||||
msgstr "Искључити ово, да би се добила провидна позадина."
|
||||
|
||||
#: eiconsconf.cpp:176
|
||||
msgid "Choose color"
|
||||
msgstr "Изаберите боју"
|
||||
Reference in New Issue
Block a user