@ -0,0 +1,2 @@
|
||||
Originally by Matthew Mullins. |
||||
Recoded into seperate modules by Christopher 'devilhorns' Michael <devilhorns@comcast.net> |
@ -0,0 +1,32 @@
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to |
||||
deal in the Software without restriction, including without limitation the |
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
||||
sell copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies of the Software and its Copyright notices. In addition publicly |
||||
documented acknowledgment must be given that this software has been used if no |
||||
source code of this software is made available publicly. Making the source |
||||
available publicly means including the source for this software with the |
||||
distribution, or a method to get this software via some reasonable mechanism |
||||
(electronic transfer via a network or media) as well as making an offer to |
||||
supply the source on request. This Copyright notice serves as an offer to |
||||
supply the source on on request as well. Instead of this, supplying |
||||
acknowledgments of use of this software in either Copyright notices, Manuals, |
||||
Publicity and Marketing documents or any documentation provided with any |
||||
product containing this software. This License does not apply to any software |
||||
that links to the libraries provided by this software (statically or |
||||
dynamically), but only to the software provided. |
||||
|
||||
Please see the COPYING-PLAIN for a plain-english explanation of this notice |
||||
and its intent. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
||||
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,33 @@
|
||||
Plain English Copyright Notice |
||||
|
||||
This file is not intended to be the actual License. The reason this file |
||||
exists is that we here are programmers and engineers. We aren't lawyers. We |
||||
provide licenses that we THINK say the right things, but we have our own |
||||
intentions at heart. This is a plain-english explanation of what those |
||||
intentions are, and if you follow them you will be within the "spirit" of |
||||
the license. |
||||
|
||||
The intent is for us to enjoy writing software that is useful to us (the |
||||
AUTHORS) and allow others to use it freely and also benefit from the work we |
||||
put into making it. We don't want to restrict others using it. They should |
||||
not *HAVE* to make the source code of the applications they write that |
||||
simply link to these libraries (be that statically or dynamically), or for |
||||
them to be limited as to what license they choose to use (be it open, closed |
||||
or anything else). But we would like to know you are using these libraries. |
||||
We simply would like to know that it has been useful to someone. This is why |
||||
we ask for acknowledgement of some sort. |
||||
|
||||
You can do what you want with the source of this software - it doesn't |
||||
matter. We still have it here for ourselves and it is open and free to use |
||||
and download and play with. It can't be taken away. We don't really mind what |
||||
you do with the source to your software. We would simply like to know that |
||||
you are using it - especially if it makes it to a commerical product. If you |
||||
simply e-mail all the AUTHORS (see COPYING and AUTHORS files) telling us, and |
||||
then make sure you include a paragraph or page in the manual for the product |
||||
with the copyright notice and state that you used this software, we will be |
||||
very happy. If you want to contribute back modifications and fixes you may have |
||||
made we will welcome those too with open arms (generally). If you want help |
||||
with changes needed, ports needed or features to be added, arrangements can |
||||
be easily made with some dialogue. |
||||
|
||||
Christopher Michael <devilhorns@comcast.net> |
@ -0,0 +1,11 @@
|
||||
COMPILING and INSTALLING: |
||||
|
||||
If you got a official release tar archive do: |
||||
./autogen.sh |
||||
|
||||
Then to compile: |
||||
make |
||||
|
||||
To install: |
||||
make install |
||||
|
@ -0,0 +1,33 @@
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
|
||||
config.sub configure depcomp install-sh ltmain.sh \
|
||||
missing module.desktop config.rpath mkinstalldirs
|
||||
|
||||
SUBDIRS = src
|
||||
|
||||
if HAVE_PO |
||||
|
||||
SUBDIRS += po
|
||||
|
||||
endif |
||||
|
||||
EDJE_FLAGS = -v \
|
||||
-id $(top_srcdir)/images
|
||||
|
||||
filesdir = $(datadir)
|
||||
files_DATA = module.desktop e-module-mem.edj mem.edj
|
||||
|
||||
EXTRA_DIST = module.desktop.in \
|
||||
e_modules-mem.spec.in \
|
||||
e-module-mem.edc \
|
||||
mem.edc \
|
||||
$(wildcard images/*.png)
|
||||
|
||||
%.edj: %.edc |
||||
$(EDJE_CC) $(EDJE_FLAGS) $< $@
|
||||
|
||||
clean-local: |
||||
rm -rf e-module-mem.edj mem.edj module.desktop e_modules-mem.spec *~
|
||||
|
||||
uninstall: |
||||
rm -rf $(DESTDIR)$(datadir)
|
@ -0,0 +1,17 @@
|
||||
#!/bin/sh |
||||
|
||||
rm -rf autom4te.cache |
||||
rm -f aclocal.m4 ltmain.sh |
||||
|
||||
touch README |
||||
|
||||
echo "Running autopoint..." ; autopoint -f || : |
||||
echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1 |
||||
echo "Running autoheader..." ; autoheader || exit 1 |
||||
echo "Running autoconf..." ; autoconf || exit 1 |
||||
echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1 |
||||
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1 |
||||
|
||||
if [ -z "$NOCONFIGURE" ]; then |
||||
./configure "$@" |
||||
fi |
@ -0,0 +1,92 @@
|
||||
dnl Process this file with autoconf to produce a configure script. |
||||
|
||||
# get rid of that stupid cache mechanism |
||||
rm -f config.cache |
||||
|
||||
AC_INIT(mem, 0.1.0, enlightenment-devel@lists.sourceforge.net) |
||||
AC_PREREQ(2.52) |
||||
AC_CONFIG_SRCDIR(configure.ac) |
||||
AC_CANONICAL_BUILD |
||||
AC_CANONICAL_HOST |
||||
AC_ISC_POSIX |
||||
|
||||
AM_INIT_AUTOMAKE(1.6) |
||||
AC_CONFIG_HEADERS(config.h) |
||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
||||
|
||||
AC_PROG_CC |
||||
AC_HEADER_STDC |
||||
AC_C_CONST |
||||
|
||||
define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl |
||||
define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl |
||||
AC_PROG_LIBTOOL |
||||
|
||||
m4_ifdef([AM_GNU_GETTEXT_VERSION], [ |
||||
AM_GNU_GETTEXT_VERSION([0.14]) |
||||
]) |
||||
|
||||
m4_ifdef([AM_GNU_GETTEXT], [ |
||||
AM_GNU_GETTEXT([external]) |
||||
po_makefile_in=po/Makefile.in |
||||
AM_CONDITIONAL([HAVE_PO], [true]) |
||||
],[ |
||||
AM_CONDITIONAL([HAVE_PO], [false]) |
||||
]) |
||||
AC_SUBST(LTLIBINTL) |
||||
|
||||
PKG_CHECK_MODULES(E, [enlightenment]) |
||||
release=$(pkg-config --variable=release enlightenment) |
||||
MODULE_ARCH="$host_os-$host_cpu-$release" |
||||
AC_SUBST(MODULE_ARCH) |
||||
AC_DEFINE_UNQUOTED(MODULE_ARCH, "$MODULE_ARCH", "Module architecture") |
||||
|
||||
uname=`uname` |
||||
|
||||
AM_CONDITIONAL(BUILD_LINUX, test x$uname = xLinux) |
||||
AM_CONDITIONAL(BUILD_FREEBSD, test x$uname = xFreeBSD) |
||||
AM_CONDITIONAL(BUILD_NETBSD, test x$uname = xNetBSD) |
||||
|
||||
case $uname in |
||||
FreeBSD*) |
||||
machdep_libs= |
||||
;; |
||||
Linux*) |
||||
machdep_libs= |
||||
;; |
||||
NetBSD*) |
||||
machdep_libs="-lkvm" |
||||
;; |
||||
esac |
||||
AC_SUBST(machdep_libs) |
||||
|
||||
# Find edje_cc |
||||
PKG_CHECK_MODULES(EDJE, [edje >= 0.5.0]) |
||||
AC_ARG_WITH(edje-cc, |
||||
AC_HELP_STRING([--with-edje-cc=PATH], [specify a specific path to edje_cc]), |
||||
[ |
||||
v=$withval; |
||||
EDJE_CC=$v |
||||
],[ |
||||
EDJE_CC=$(pkg-config --variable=prefix edje)/bin/edje_cc |
||||
] |
||||
) |
||||
AC_SUBST(EDJE_CC) |
||||
AC_MSG_CHECKING([Which edje_cc to use]) |
||||
AC_MSG_RESULT(${EDJE_CC}) |
||||
|
||||
datadir=$(pkg-config --variable=modules enlightenment)/${PACKAGE} |
||||
AC_ARG_ENABLE(homedir-install, |
||||
AS_HELP_STRING([--enable-homedir-install], [Install module in homedir]), |
||||
[ datadir="${HOME}/.e/e/modules/${PACKAGE}" ] |
||||
) |
||||
|
||||
AC_OUTPUT([ |
||||
Makefile |
||||
src/Makefile |
||||
e_modules-mem.spec |
||||
module.desktop |
||||
$po_makefile_in |
||||
], [ |
||||
]) |
||||
|
@ -0,0 +1,32 @@
|
||||
images { |
||||
image: "module_icon.png" COMP; |
||||
} |
||||
collections { |
||||
group { |
||||
name: "icon"; |
||||
max: 48 48; |
||||
parts { |
||||
part { |
||||
name: "image"; |
||||
type: IMAGE; |
||||
mouse_events: 0; |
||||
description { |
||||
state: "default" 0.00; |
||||
visible: 1; |
||||
aspect: 1.00 1.00; |
||||
rel1 { |
||||
relative: 0.00 0.00; |
||||
offset: 0 0; |
||||
} |
||||
rel2 { |
||||
relative: 1.00 1.00; |
||||
offset: -1 -1; |
||||
} |
||||
image { |
||||
normal: "module_icon.png"; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@
|
||||
%define module_name mem |
||||
%{!?_rel:%{expand:%%global _rel 0.enl%{?dist}}} |
||||
|
||||
Summary: %{module_name} module for the Enlightenment window manager |
||||
Name: e_modules-%{module_name} |
||||
Version: @VERSION@ |
||||
Release: %{_rel} |
||||
License: BSD |
||||
Group: User Interface/Desktops |
||||
URL: http://www.enlightenment.org/ |
||||
Source: ftp://ftp.enlightenment.org/pub/enlightenment/%{module_name}-%{version}.tar.gz |
||||
Packager: %{?_packager:%{_packager}}%{!?_packager:Michael Jennings <mej@eterm.org>} |
||||
Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)} |
||||
Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} |
||||
BuildRequires: ecore-devel, evas-devel, edje-bin |
||||
BuildRequires: edje-devel, eet-devel, enlightenment-devel >= 0.16.999 |
||||
Requires: enlightenment >= 0.16.999 |
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root |
||||
|
||||
%description |
||||
%{module_name} module for the Enlightenment window manager. |
||||
|
||||
%prep |
||||
%setup -q -n %{module_name}-%{version} |
||||
|
||||
%build |
||||
%{configure} |
||||
%{__make} %{?_smp_mflags} %{?mflags} |
||||
|
||||
%install |
||||
%{__make} %{?mflags_install} DESTDIR=$RPM_BUILD_ROOT install |
||||
%{find_lang} %{module_name} || true > %{module_name}.lang |
||||
|
||||
%clean |
||||
test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT |
||||
|
||||
%post |
||||
/sbin/ldconfig |
||||
|
||||
%postun |
||||
/sbin/ldconfig |
||||
|
||||
%files -f %{module_name}.lang |
||||
%defattr(-, root, root) |
||||
%doc AUTHORS ChangeLog COPYING* INSTALL NEWS README |
||||
%{_libdir}/enlightenment/modules/%{module_name}* |
||||
|
||||
%changelog |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 100 B |
After Width: | Height: | Size: 376 B |
After Width: | Height: | Size: 527 B |
After Width: | Height: | Size: 652 B |
After Width: | Height: | Size: 744 B |
After Width: | Height: | Size: 863 B |
After Width: | Height: | Size: 975 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 100 B |
After Width: | Height: | Size: 534 B |
After Width: | Height: | Size: 813 B |
After Width: | Height: | Size: 1022 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.4 KiB |
@ -0,0 +1,454 @@
|
||||
images |
||||
{ |
||||
image: "icon.png" COMP; |
||||
image: "real_00.png" COMP; |
||||
image: "real_01.png" COMP; |
||||
image: "real_02.png" COMP; |
||||
image: "real_03.png" COMP; |
||||
image: "real_04.png" COMP; |
||||
image: "real_05.png" COMP; |
||||
image: "real_06.png" COMP; |
||||
image: "real_07.png" COMP; |
||||
image: "real_08.png" COMP; |
||||
image: "real_09.png" COMP; |
||||
image: "real_10.png" COMP; |
||||
image: "swap_00.png" COMP; |
||||
image: "swap_01.png" COMP; |
||||
image: "swap_02.png" COMP; |
||||
image: "swap_03.png" COMP; |
||||
image: "swap_04.png" COMP; |
||||
image: "swap_05.png" COMP; |
||||
image: "swap_06.png" COMP; |
||||
image: "swap_07.png" COMP; |
||||
image: "swap_08.png" COMP; |
||||
image: "swap_09.png" COMP; |
||||
image: "swap_10.png" COMP; |
||||
} |
||||
|
||||
collections |
||||
{ |
||||
group |
||||
{ |
||||
name: "modules/mem/main"; |
||||
min: 4 4; |
||||
max: 128 128; |
||||
script |
||||
{ |
||||
public message(Msg_Type:type, id, ...) |
||||
{ |
||||
if ((type == MSG_FLOAT) && (id == 1)) |
||||
{ |
||||
new Float:value; |
||||
|
||||
value = getfarg(2); |
||||
set_state(PART:"real_meter", "default", value); |
||||
} |
||||
if ((type == MSG_FLOAT) && (id == 2)) |
||||
{ |
||||
new Float:value; |
||||
|
||||
value = getfarg(2); |
||||
set_state(PART:"swap_meter", "default", value); |
||||
} |
||||
} |
||||
} |
||||
|
||||
parts |
||||
{ |
||||
part |
||||
{ |
||||
name: "fade_clip"; |
||||
type: RECT; |
||||
description |
||||
{ |
||||
state: "default" 0.0; |
||||
color: 255 255 255 255; |
||||
rel1 |
||||
{ |
||||
relative: 0.0 0.0; |
||||
offset: 0 0; |
||||
} |
||||
rel2 |
||||
{ |
||||
relative: 1.0 1.0; |
||||
offset: -1 -1; |
||||
} |
||||
} |
||||
} |
||||
part |
||||
{ |
||||
name: "mem"; |
||||
type: IMAGE; |
||||
clip_to: "fade_clip"; |
||||
description |
||||
{ |
||||
state: "default" 0.0; |
||||
aspect: 1.0 1.0; |
||||
aspect_preference: BOTH; |
||||
rel1 |
||||
{ |
||||
relative: 0.0 0.0; |
||||
offset: 0 0; |
||||
} |
||||
rel2 |
||||
{ |
||||
relative: 1.0 1.0; |
||||
offset: -1 -1; |
||||
} |
||||
image |
||||
{ |
||||
normal: "icon.png"; |
||||
} |
||||
color: 255 255 255 192; |
||||
} |
||||
} |
||||
part |
||||
{ |
||||
name: "real_meter"; |
||||
type: IMAGE; |
||||
clip_to: "fade_clip"; |
||||
description |
||||
{ |
||||
state: "default" 0.0; |
||||
rel1 |
||||
{ |
||||
relative: 0.0 0.0; |
||||
offset: 0 0; |
||||
} |
||||
rel2 |
||||
{ |
||||
relative: 1.0 0.25; |
||||
offset: -1 -1; |
||||
} |
||||
image |
||||
{ |
||||
normal: "real_00.png"; |
||||
} |
||||
color: 255 255 255 192; |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.1; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_01.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.2; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_02.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.3; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_03.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.4; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_04.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.5; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_05.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.6; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_06.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.7; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_07.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.8; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_08.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.9; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_09.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 1.0; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "real_10.png"; |
||||
} |
||||
} |
||||
} |
||||
part |
||||
{ |
||||
name: "real_label"; |
||||
type: TEXT; |
||||
effect: SOFT_SHADOW; |
||||
description |
||||
{ |
||||
state: "default" 0.0; |
||||
color: 255 255 255 0; |
||||
color3: 0 0 0 0; |
||||
visible: 0; |
||||
rel1 |
||||
{ |
||||
relative: 0.5 0.0; |
||||
offset: 0 0; |
||||
to: "real_meter"; |
||||
} |
||||
rel2 |
||||
{ |
||||
relative: 0.5 1.0; |
||||
offset: -1 -1; |
||||
to: "real_meter"; |
||||
} |
||||
text |
||||
{ |
||||
text: "Real:"; |
||||
font: "Sans:style=Mono"; |
||||
size: 9; |
||||
min: 1 1; |
||||
align: 0.5 1.0; |
||||
text_class: "module_small"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "visible" 0.0; |
||||
inherit: "default" 0.0; |
||||
visible: 1; |
||||
color: 255 255 255 255; |
||||
color3: 0 0 0 42; |
||||
color_class: "module_label"; |
||||
} |
||||
} |
||||
part |
||||
{ |
||||
name: "swap_meter"; |
||||
type: IMAGE; |
||||
clip_to: "fade_clip"; |
||||
description |
||||
{ |
||||
state: "default" 0.0; |
||||
rel1 |
||||
{ |
||||
relative: 0.0 0.75; |
||||
offset: 0 0; |
||||
} |
||||
rel2 |
||||
{ |
||||
relative: 1.0 1.0; |
||||
offset: -1 -1; |
||||
} |
||||
image |
||||
{ |
||||
normal: "swap_00.png"; |
||||
} |
||||
color: 255 255 255 192; |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.1; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_01.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.2; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_02.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.3; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_03.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.4; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_04.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.5; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_05.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.6; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_06.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.7; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_07.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.8; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_08.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 0.9; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_09.png"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "default" 1.0; |
||||
inherit: "default" 0.0; |
||||
image |
||||
{ |
||||
normal: "swap_10.png"; |
||||
} |
||||
} |
||||
} |
||||
part |
||||
{ |
||||
name: "swap_label"; |
||||
type: TEXT; |
||||
effect: SOFT_SHADOW; |
||||
description |
||||
{ |
||||
state: "default" 0.0; |
||||
color: 255 255 255 0; |
||||
color3: 0 0 0 0; |
||||
visible: 0; |
||||
rel1 |
||||
{ |
||||
relative: 0.5 0.0; |
||||
offset: 0 0; |
||||
to: "swap_meter"; |
||||
} |
||||
rel2 |
||||
{ |
||||
relative: 0.5 1.0; |
||||
offset: -1 -1; |
||||
to: "swap_meter"; |
||||
} |
||||
text |
||||
{ |
||||
text: "Swap:"; |
||||
font: "Sans:style=Mono"; |
||||
size: 9; |
||||
min: 1 1; |
||||
align: 0.5 1.0; |
||||
text_class: "module_small"; |
||||
} |
||||
} |
||||
description |
||||
{ |
||||
state: "visible" 0.0; |
||||
inherit: "default" 0.0; |
||||
visible: 1; |
||||
color: 255 255 255 255; |
||||
color3: 0 0 0 42; |
||||
color_class: "module_label"; |
||||
} |
||||
} |
||||
} |
||||
programs |
||||
{ |
||||
program |
||||
{ |
||||
name: "go_active"; |
||||
signal: "label_active"; |
||||
source: ""; |
||||
action: STATE_SET "visible" 0.0; |
||||
transition: SINUSOIDAL 0.5; |
||||
target: "real_label"; |
||||
target: "swap_label"; |
||||
} |
||||
program |
||||
{ |
||||
name: "go_passive2"; |
||||
signal: "label_passive2"; |
||||
source: ""; |
||||
action: ACTION_STOP; |
||||
target: "go_active"; |
||||
} |
||||
program |
||||
{ |
||||
name: "go_passive"; |
||||
signal: "label_passive"; |
||||
source: ""; |
||||
action: STATE_SET "default" 0.0; |
||||
transition: SINUSOIDAL 1.0; |
||||
target: "real_label"; |
||||
target: "swap_label"; |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,22 @@
|
||||
[Desktop Entry] |
||||
Type=Link |
||||
Name=Mem |
||||
Name[ru]=Память |
||||
Name[eo]=Memoro |
||||
Name[hu]=Memória |
||||
Name[fr]=Mémoire |
||||
Name[el]=Μνήμη |
||||
Name[pt]=Memória |
||||
Icon=e-module-mem |
||||
X-Enlightenment-ModuleType=system |
||||
Comment=Used to monitor memory utilization. |
||||
Comment[ru]=Используется для мониторинга использования памяти. |
||||
Comment[cs]=Zobrazí využití paměti. |
||||
Comment[eo]=Elrigardi la uzadon de memoro. |
||||
Comment[es]=Utilizado para monitorizar el uso de la memoria. |
||||
Comment[gl]=Empregado para monitorizar o uso da memoria. |
||||
Comment[hu]=A fizikai memória foglaltságát jelzi ki. |
||||
Comment[it]=Usato per il monitoraggio dell'utilizzo della memoria. |
||||
Comment[fr]=Affiche l'utilisation de la mémoire. |
||||
Comment[el]=Χρησιμοποιείται για την παρατήρηση της μνήμης. |
||||
Comment[pt]=Utilizado para monitorizar a memória utilizada |
@ -0,0 +1 @@
|
||||
ar bg ca cs de el eo es fi fr gl he hr hu it ja lt nb nl pl pt pt_BR ru sk sl sr sv tr uk zh_CN |
@ -0,0 +1,41 @@
|
||||
# Makefile variables for PO directory in any package using GNU gettext. |
||||
|
||||
# Usually the message domain is the same as the package name. |
||||
DOMAIN = $(PACKAGE) |
||||
|
||||
# These two variables depend on the location of this directory. |
||||
subdir = po |
||||
top_builddir = .. |
||||
|
||||
# These options get passed to xgettext. |
||||
XGETTEXT_OPTIONS = --keyword=N_ --keyword=D_ --from-code=UTF-8 --foreign-user |
||||
|
||||
# This is the copyright holder that gets inserted into the header of the |
||||
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding |
||||
# package. (Note that the msgstr strings, extracted from the package's |
||||
# sources, belong to the copyright holder of the package.) Translators are |
||||
# expected to transfer the copyright for their translations to this person |
||||
# or entity, or to disclaim their copyright. The empty string stands for |
||||
# the public domain; in this case the translators are expected to disclaim |
||||
# their copyright. |
||||
COPYRIGHT_HOLDER = Enlightenment development team |
||||
|
||||
# This is the email address or URL to which the translators shall report |
||||
# bugs in the untranslated strings: |
||||
# - Strings which are not entire sentences, see the maintainer guidelines |
||||
# in the GNU gettext documentation, section 'Preparing Strings'. |
||||
# - Strings which use unclear terms or require additional context to be |
||||
# understood. |
||||
# - Strings which make invalid assumptions about notation of date, time or |
||||
# money. |
||||
# - Pluralisation problems. |
||||
# - Incorrect English spelling. |
||||
# - Incorrect formatting. |
||||
# It can be your email address, or a mailing list address where translators |
||||
# can write to without being subscribed, or the URL of a web page through |
||||
# which the translators can contact you. |
||||
MSGID_BUGS_ADDRESS = enlightenment-devel@lists.sourceforge.net |
||||
|
||||
# This is the list of locale categories, beyond LC_MESSAGES, for which the |
||||
# message catalogs shall be used. It is usually empty. |
||||
EXTRA_LOCALE_CATEGORIES = |
@ -0,0 +1,5 @@
|
||||
src/e_mod_config.c |
||||
src/e_mod_main.c |
||||
src/e_mod_main.h |
||||
src/machdep_freebsd.c |
||||
src/machdep_linux.c |
@ -0,0 +1,63 @@
|
||||
# Bulgarian translation for enlightenment |
||||
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 |
||||
# This file is distributed under the same license as the enlightenment package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009. |
||||
# |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: enlightenment\n" |
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"POT-Creation-Date: 2009-11-05 16:07+0800\n" |
||||
"PO-Revision-Date: 2009-09-25 16:19+0000\n" |
||||
"Last-Translator: vlood <vlood.vassilev@gmail.com>\n" |
||||
"Language-Team: Bulgarian <bg@li.org>\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"X-Launchpad-Export-Date: 2009-11-12 04:50+0000\n" |
||||
"X-Generator: Launchpad (build Unknown)\n" |
||||
|
||||
#: ../src/e_mod_config.c:43 |
||||
msgid "Mem Configuration" |
||||
msgstr "Конфигурация на Mem" |
||||
|
||||
#: ../src/e_mod_config.c:92 |
||||
msgid "General Settings" |
||||
msgstr "Общи настройки" |
||||
|
||||
#: ../src/e_mod_config.c:94 |
||||
msgid "Always Show Text" |
||||
msgstr "Винаги показвай текста" |
||||
|
||||
#: ../src/e_mod_config.c:96 |
||||
msgid "Show Text On Mouse Over" |
||||
msgstr "Показвай текста при преминаване с мишката" |
||||
|
||||
#: ../src/e_mod_config.c:99 |
||||
msgid "Show Text As Percent" |
||||
msgstr "Показвай текста като процент" |
||||
|
||||
#: ../src/e_mod_config.c:104 |
||||
msgid "Ignore Buffers" |
||||
msgstr "Игнорирай буферите" |
||||
|
||||
#: ../src/e_mod_config.c:108 |
||||
msgid "Ignore Cached" |
||||
msgstr "Игнорирай кеша" |
||||
|
||||
#: ../src/e_mod_config.c:112 |
||||
msgid "Check Interval:" |
||||
msgstr "Интервал от време за проверка:" |
||||
|
||||
#: ../src/e_mod_config.c:115 |
||||
#, c-format |
||||
msgid "%1.0f seconds" |
||||
msgstr "%1.0f·секунди" |
||||
|
||||
#: ../src/e_mod_main.c:105 |
||||
msgid "Mem" |
||||
msgstr "Mem" |
||||
|
||||
#: ../src/e_mod_main.c:162 |
||||
msgid "Configuration" |
||||
msgstr "Настройка" |
@ -0,0 +1,69 @@
|
||||
# Czech translation. |
||||
# This file is put in the public domain. |
||||
# quaker66@gmail.com |
||||
# Vít Pelčák <vit@pelcak.org>, 2011. |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: Mem\n" |
||||
"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" |
||||
"POT-Creation-Date: 2011-10-16 14:36+0200\n" |
||||
"PO-Revision-Date: 2011-10-15 13:05+0200\n" |
||||
"Last-Translator: Vít Pelčák <vit@pelcak.org>\n" |
||||
"Language-Team: Czech <kde-i18n-doc@kde.org>\n" |
||||
"Language: \n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"X-Generator: Lokalize 1.2\n" |
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
||||
|
||||
#: ../src/e_mod_config.c:43 |
||||
msgid "Mem Settings" |
||||
msgstr "Nastavení Mem" |
||||
|
||||
#: ../src/e_mod_config.c:92 |
||||
msgid "General Settings" |
||||
msgstr "Obecná nastavení" |
||||
|
||||
#: ../src/e_mod_config.c:94 |
||||
msgid "Always Show Text" |
||||
msgstr "Vždy zobrazit text" |
||||
|
||||
#: ../src/e_mod_config.c:96 |
||||
msgid "Show Text On Mouse Over" |
||||
msgstr "Zobrazit text, když je na ikoně kurzor" |
||||
|
||||
#: ../src/e_mod_config.c:99 |
||||
msgid "Show Text As Percent" |
||||
msgstr "Zobrazit text jako procenta" |
||||
|
||||
#: ../src/e_mod_config.c:104 |
||||
msgid "Ignore Buffers" |
||||
msgstr "Ignorovat buffery" |
||||
|
||||
#: ../src/e_mod_config.c:108 |
||||
msgid "Ignore Cached" |
||||
msgstr "Ignorovat cache" |
||||
|
||||
#: ../src/e_mod_config.c:112 |
||||
msgid "Check Interval:" |
||||
msgstr "Interval kontroly:" |
||||
|
||||
#: ../src/e_mod_config.c:115 |
||||
#, c-format |
||||
msgid "%1.0f seconds" |
||||
msgstr "%1.0f sekund" |
||||
|
||||
#: ../src/e_mod_main.c:108 |
||||
msgid "Mem" |
||||
msgstr "Mem" |
||||
|
||||
#: ../src/e_mod_main.c:162 |
||||
msgid "Settings" |
||||
msgstr "Nastavení" |
||||
|
||||
#~ msgid "Mem Configuration" |
||||
#~ msgstr "Nastavení mem modulu" |
||||
|
||||
#~ msgid "Configuration" |
||||
#~ msgstr "Konfigurace" |
@ -0,0 +1,69 @@
|
||||
# German translation for enlightenment |
||||
# This file is distributed under the same license as the enlightenment package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009. |
||||
# |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: enlightenment\n" |
||||
"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" |
||||
"POT-Creation-Date: 2010-11-23 23:43+0100\n" |
||||
"PO-Revision-Date: 2009-11-07 18:14+0000\n" |
||||
"Last-Translator: MixCool <lars.thoms@mixcool.de>\n" |
||||
"Language-Team: German <de@li.org>\n" |
||||
"Language: de\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"X-Launchpad-Export-Date: 2009-11-12 04:50+0000\n" |
||||
"X-Generator: Launchpad (build Unknown)\n" |
||||
|
||||
#: src/e_mod_config.c:43 |
||||
msgid "Mem Settings" |
||||
msgstr "Speichermodul-Einstellungen" |
||||
|
||||
#: src/e_mod_config.c:92 |
||||
msgid "General Settings" |
||||
msgstr "Allgemeine Einstellungen" |
||||
|
||||
#: src/e_mod_config.c:94 |
||||
msgid "Always Show Text" |
||||
msgstr "Text immer zeigen" |
||||
|
||||
#: src/e_mod_config.c:96 |
||||
msgid "Show Text On Mouse Over" |
||||
msgstr "Beim Überfahren mit dem Mauszeiger Text anzeigen" |
||||
|
||||
#: src/e_mod_config.c:99 |
||||
msgid "Show Text As Percent" |
||||
msgstr "Text in Prozent anzeigen" |
||||
|
||||
#: src/e_mod_config.c:104 |
||||
msgid "Ignore Buffers" |
||||
msgstr "Puffer ignorieren" |
||||
|
||||
#: src/e_mod_config.c:108 |
||||
msgid "Ignore Cached" |
||||
msgstr "Gecachtes ignorieren" |
||||
|
||||
#: src/e_mod_config.c:112 |
||||
msgid "Check Interval:" |
||||
msgstr "Abfrageintervall:" |
||||
|
||||
#: src/e_mod_config.c:115 |
||||
#, c-format |
||||
msgid "%1.0f seconds" |
||||
msgstr "%1.0f Sekunden" |
||||
|
||||
#: src/e_mod_main.c:108 |
||||
msgid "Mem" |
||||
msgstr "Speichermodul" |
||||
|
||||
#: src/e_mod_main.c:167 |
||||
msgid "Settings" |
||||
msgstr "Einstellungen" |
||||
|
||||
#~ msgid "Mem Configuration" |
||||
#~ msgstr "Mem Einstellungen" |
||||
|
||||
#~ msgid "Configuration" |
||||
#~ msgstr "Einstellungen" |
@ -0,0 +1,61 @@
|
||||
# translation of el.po to Greek |
||||
# Mem module (e17), Finnish translation |
||||
# This file is put in the public domain. |
||||
# |
||||
# |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: el\n" |
||||
"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" |
||||
"POT-Creation-Date: 2009-08-25 17:14+0800\n" |
||||
"PO-Revision-Date: 2009-02-08 20:56+0000\n" |
||||
"Last-Translator: Galatsanos Panagiotis <Unknown>\n" |
||||
"Language-Team: Greek <en@li.org>\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
|
||||
#: ../src/e_mod_config.c:43 |
||||
msgid "Mem Configuration" |
||||
msgstr "Ρύθμιση Mem" |
||||
|
||||
#: ../src/e_mod_config.c:92 |
||||
msgid "General Settings" |
||||
msgstr "Γενικές Ρυθμίσεις" |
||||
|
||||
#: ../src/e_mod_config.c:94 |
||||
msgid "Always Show Text" |
||||
msgstr "Εμφάνιση Κειμένου Πάντα" |
||||
|
||||
#: ../src/e_mod_config.c:96 |
||||
msgid "Show Text On Mouse Over" |
||||
msgstr "Εμφάνιση Κειμένου όταν βρίσκεται Πάνω το Ποντίκι" |
||||
|
||||
#: ../src/e_mod_config.c:99 |
||||
msgid "Show Text As Percent" |
||||
msgstr "Εμφάνιση Κειμένου Ως Ποσοστό" |
||||
|
||||
#: ../src/e_mod_config.c:104 |
||||
msgid "Ignore Buffers" |
||||
msgstr "" |
||||
|
||||
#: ../src/e_mod_config.c:108 |
||||
msgid "Ignore Cached" |
||||
msgstr "Αγνόησε αποθηκευμένα" |
||||
|
||||
#: ../src/e_mod_config.c:112 |
||||
msgid "Check Interval:" |
||||
msgstr "Χρονικό Διάστημα Ελέγχου:" |
||||
|
||||
#: ../src/e_mod_config.c:115 |
||||
#, c-format |
||||
msgid "%1.0f seconds" |
||||
msgstr "%1.0f δευτερόλεπτα" |
||||
|
||||
#: ../src/e_mod_main.c:105 |
||||
msgid "Mem" |
||||
msgstr "Mem" |
||||
|
||||
#: ../src/e_mod_main.c:162 |
||||
msgid "Configuration" |
||||
msgstr "Ρύθμιση" |
@ -0,0 +1,62 @@
|
||||
# translation of eo.po to |
||||
# This file is put in the public domain. |
||||
# Olivier M.<olivierweb@ifrance.com> |
||||
# |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: eo\n" |
||||
"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" |
||||
"POT-Creation-Date: 2012-12-04 13:32+0100\n" |
||||
"PO-Revision-Date: 2012-11-26 09:49+0000\n" |
||||
"Last-Translator: Eliovir <Unknown>\n" |
||||
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"X-Launchpad-Export-Date: 2012-12-05 05:27+0000\n" |
||||
"X-Generator: Launchpad (build 16335)\n" |
||||
|
||||
#: src/e_mod_config.c:43 |
||||
msgid "Mem Settings" |
||||
msgstr "Agordoj de Memoro" |
||||
|
||||
#: src/e_mod_config.c:92 |
||||
msgid "General Settings" |
||||
msgstr "Ĝeneralaj agordoj" |
||||
|
||||
#: src/e_mod_config.c:94 |
||||
msgid "Always Show Text" |
||||
msgstr "Ĉiam montri tekson" |
||||
|
||||
#: src/e_mod_config.c:96 |
||||
msgid "Show Text On Mouse Over" |
||||
msgstr "Montri tekston kiam muso supras" |
||||
|
||||
#: src/e_mod_config.c:99 |
||||
msgid "Show Text As Percent" |
||||
msgstr "Montri tekston kiel procento" |
||||
|
||||
#: src/e_mod_config.c:104 |
||||
msgid "Ignore Buffers" |
||||
msgstr "Ignori bufrojn" |
||||
|
||||
#: src/e_mod_config.c:108 |
||||
msgid "Ignore Cached" |
||||
msgstr "Ignori kaŝmemoron" |
||||
|
||||
#: src/e_mod_config.c:112 |
||||
msgid "Check Interval:" |
||||
msgstr "Kontroli intervalon:" |
||||
|
||||
#: src/e_mod_config.c:115 |
||||
#, c-format |
||||
msgid "%1.0f seconds" |
||||
msgstr "%1.0f sekundoj" |
||||
|
||||
#: src/e_mod_main.c:108 |
||||
msgid "Mem" |
||||
msgstr "Memoro" |
||||
|
||||
#: src/e_mod_main.c:162 |
||||
msgid "Settings" |
||||
msgstr "Agordoj" |
@ -0,0 +1,63 @@
|
||||
# Spanish translation for enlightenment |
||||
# This file is distributed under the same license as the enlightenment package. |
||||
# |
||||
# chilicuil <Unknown>, 2008. |
||||
# Francisco Perez Lopez, 2008. |
||||
# DiegoJ <diegojromerolopez@gmail.com>, 2009. |
||||
# |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: enlightenment\n" |
||||
"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" |
||||
"POT-Creation-Date: 2009-08-25 17:14+0800\n" |
||||
"PO-Revision-Date: 2009-04-11 14:30+0000\n" |
||||
"Last-Translator: DiegoJ <diegojromerolopez@gmail.com>\n" |
||||
"Language-Team: Spanish\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
|
||||
#: ../src/e_mod_config.c:43 |
||||
msgid "Mem Configuration" |
||||
msgstr "Configuración de Mem" |
||||
|
||||
#: ../src/e_mod_config.c:92 |
||||
msgid "General Settings" |
||||
msgstr "Preferencias generales" |
||||
|
||||
#: ../src/e_mod_config.c:94 |
||||
msgid "Always Show Text" |
||||
msgstr "Mostrar siempre texto" |
||||
|
||||
#: ../src/e_mod_config.c:96 |
||||
msgid "Show Text On Mouse Over" |
||||
msgstr "Mostrar etiquetas cuando el raton pase sobre el elemento" |
||||
|
||||
#: ../src/e_mod_config.c:99 |
||||
msgid "Show Text As Percent" |
||||
msgstr "Mostrar la información en porcentajes" |
||||
|
||||
#: ../src/e_mod_config.c:104 |
||||
msgid "Ignore Buffers" |
||||
msgstr "Ignorar búfers" |
||||
|
||||
#: ../src/e_mod_config.c:108 |
||||
msgid "Ignore Cached" |
||||
msgstr "Ignorar la caché" |
||||
|
||||
#: ../src/e_mod_config.c:112 |
||||
msgid "Check Interval:" |
||||
msgstr "Tasa de comprobación:" |
||||
|
||||
#: ../src/e_mod_config.c:115 |
||||
#, c-format |
||||
msgid "%1.0f seconds" |
||||
msgstr "%1.0f segundos" |
||||
|
||||
#: ../src/e_mod_main.c:105 |
||||
msgid "Mem" |
||||
msgstr "Mem" |
||||
|
||||
#: ../src/e_mod_main.c:162 |
||||
msgid "Configuration" |
||||
msgstr "Configuración" |
@ -0,0 +1,60 @@
|
||||
# Mem module (e17), Finnish translation |
||||
# This file is put in the public domain. |
||||
# Jani väyrynen <janivayrynen@gmail.com>, 2008. |
||||
# |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: Mem module (e17)\n" |
||||
"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" |
||||
"POT-Creation-Date: 2009-08-25 17:14+0800\n" |
||||
"PO-Revision-Date: 2008-01-23 01:50+0200\n" |
||||
"Last-Translator: Jani väyrynen <janivayrynen@gmail.com>\n" |
||||
"Language-Team: Finnish <janivayrynen@gmail.com>\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
|
||||
#: ../src/e_mod_config.c:43 |
||||
msgid "Mem Configuration" |
||||
msgstr "Muistin asetukset" |
||||
|
||||
#: ../src/e_mod_config.c:92 |
||||
msgid "General Settings" |
||||
msgstr "Yleisasetukset" |
||||
|
||||
#: ../src/e_mod_config.c:94 |
||||
msgid "Always Show Text" |
||||
msgstr "Näytä teksti aina" |
||||
|
||||
#: ../src/e_mod_config.c:96 |
||||
msgid "Show Text On Mouse Over" |
||||
msgstr "Näytä teksti hiiren ollessa kohdalla" |
||||
|
||||
#: ../src/e_mod_config.c:99 |
||||
msgid "Show Text As Percent" |
||||
msgstr "Näytä teksti prosentteina" |
||||
|
||||
#: ../src/e_mod_config.c:104 |
||||
msgid "Ignore Buffers" |
||||
msgstr "Ohita puskurit" |
||||
|
||||
#: ../src/e_mod_config.c:108 |
||||
msgid "Ignore Cached" |
||||
msgstr "Ohita välimuisti" |
||||
|
||||
#: ../src/e_mod_config.c:112 |
||||
msgid "Check Interval:" |
||||
msgstr "Tarkistusväli:" |
||||
|
||||
#: ../src/e_mod_config.c:115 |
||||
#, c-format |
||||
msgid "%1.0f seconds" |
||||
msgstr "%1.0f sekuntia" |
||||
|
||||
#: ../src/e_mod_main.c:105 |
||||
msgid "Mem" |
||||
msgstr "Muisti" |
||||
|
||||
#: ../src/e_mod_main.c:162 |
||||
msgid "Configuration" |
||||
msgstr "Asetukset" |