summaryrefslogtreecommitdiffstats
path: root/po/mk.po
blob: 6441e10a7e0fb08130fbfea92b32e9cbdd0289f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

namespace phpbb\config;

/**
* Configuration container class
*/
class config implements \ArrayAccess, \IteratorAggregate, \Countable
{
	/**
	* The configuration data
	* @var array(string => string)
	*/
	protected $config;

	/**
	* Creates a configuration container with a default set of values
	*
	* @param array(string => string) $config The configuration data.
	*/
	public function __construct(array $config)
	{
		$this->config = $config;
	}

	/**
	* Retrieves an ArrayIterator over the configuration values.
	*
	* @return \ArrayIterator An iterator over all config data
	*/
	public function getIterator()
	{
		return new \ArrayIterator($this->config);
	}

	/**
	* Checks if the specified config value exists.
	*
	* @param  string $key The configuration option's name.
	* @return bool        Whether the configuration option exists.
	*/
	public function offsetExists($key)
	{
		return isset($this->config[$key]);
	}

	/**
	* Retrieves a configuration value.
	*
	* @param  string $key The configuration option's name.
	* @return string      The configuration value
	*/
	public function offsetGet($key)
	{
		return (isset($this->config[$key])) ? $this->config[$key] : '';
	}

	/**
	* Temporarily overwrites the value of a configuration variable.
	*
	* The configuration change will not persist. It will be lost
	* after the request.
	*
	* @param string $key   The configuration option's name.
	* @param string $value The temporary value.
	*/
	public function offsetSet($key, $value)
	{
		$this->config[$key] = $value;
	}

	/**
	* Called when deleting a configuration value directly, triggers an error.
	*
	* @param string $key The configuration option's name.
	*/
	public function offsetUnset($key)
	{
		trigger_error('Config values have to be deleted explicitly with the \phpbb\config\config::delete($key) method.', E_USER_ERROR);
	}

	/**
	* Retrieves the number of configuration options currently set.
	*
	* @return int Number of config options
	*/
	public function count()
	{
		return count($this->config);
	}

	/**
	* Removes a configuration option
	*
	* @param  String $key       The configuration option's name
	* @param  bool   $use_cache Whether this variable should be cached or if it
	*                           changes too frequently to be efficiently cached
	* @return null
	*/
	public function delete($key, $use_cache = true)
	{
		unset($this->config[$key]);
	}

	/**
	* Sets a configuration option's value
	*
	* @param string $key       The configuration option's name
	* @param string $value     New configuration value
	* @param bool   $use_cache Whether this variable should be cached or if it
	*                          changes too frequently to be efficiently cached.
	*/
	public function set($key, $value, $use_cache = true)
	{
		$this->config[$key] = $value;
	}

	/**
	* Sets a configuration option's value only if the old_value matches the
	* current configuration value or the configuration value does not exist yet.
	*
	* @param  string $key       The configuration option's name
	* @param  string $old_value Current configuration value
	* @param  string $new_value New configuration value
	* @param  bool   $use_cache Whether this variable should be cached or if it
	*                           changes too frequently to be efficiently cached.
	* @return bool              True if the value was changed, false otherwise.
	*/
	public function set_atomic($key, $old_value, $new_value, $use_cache = true)
	{
		if (!isset($this->config[$key]) || $this->config[$key] == $old_value)
		{
			$this->config[$key] = $new_value;
			return true;
		}
		return false;
	}

	/**
	* Checks configuration option's value only if the new_value matches the
	* current configuration value and the configuration value does exist.Called
	* only after set_atomic has been called.
	*
	* @param  string $key       The configuration option's name
	* @param  string $new_value New configuration value
	* @throws \phpbb\exception\http_exception when config value is set and not equal to new_value.
	* @return bool              True if the value was changed, false otherwise.
	*/
	public function ensure_lock($key, $new_value)
	{
		if (isset($this->config[$key]) && $this->config[$key] == $new_value)
		{
			return true;
		}
		throw new \phpbb\exception\http_exception(500, 'Failure while aqcuiring locks.');
	}

	/**
	* Increments an integer configuration value.
	*
	* @param string $key       The configuration option's name
	* @param int    $increment Amount to increment by
	* @param bool   $use_cache Whether this variable should be cached or if it
	*                          changes too frequently to be efficiently cached.
	*/
	function increment($key, $increment, $use_cache = true)
	{
		if (!isset($this->config[$key]))
		{
			$this->config[$key] = 0;
		}

		$this->config[$key] += $increment;
	}
}
n628' href='#n628'>628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
# translation of mdkonline-mk.po to Macedonian
# Copyright (C) 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
#
# Danko Ilik <danko@mindless.com>, 2002.
# Зоран Димовски <decata@mt.net.mk>, 2004, 2005.
# Zoran Dimovski <zoki.dimovski@gmail.com>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: mgaonline-mk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-02-03 21:41+0100\n"
"PO-Revision-Date: 2006-09-17 20:55-0700\n"
"Last-Translator: Zoran Dimovski <zoki.dimovski@gmail.com>\n"
"Language-Team: Macedonian\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1\n"

#. -PO: here %s will be replaced by the local time (eg: "Will check updates at 14:03:50"
#: ../mgaapplet:82
#, fuzzy, c-format
msgid "Will check updates at %s"
msgstr "Провери за ажурирање"

#: ../mgaapplet:90
#, c-format
msgid "Your system is up-to-date"
msgstr "Вашиот систем е ажуриран"

#: ../mgaapplet:95
#, c-format
msgid ""
"Service configuration problem. Please check logs and send mail to "
"support@mageiaonline.com"
msgstr ""
"Проблем при конфигурирање на сервисот. Ве молиме проверете ги логовите и "
"испратете пошта на  support@mageiaonline.com"

#: ../mgaapplet:101
#, c-format
msgid "Please wait, finding available packages..."
msgstr "Почекајте, пронаоѓање на достапните пакети..."

#: ../mgaapplet:106
#, c-format
msgid "New updates are available for your system"
msgstr "Достапни се нови ажурирања за вашиот систем"

#: ../mgaapplet:112
#, c-format
msgid "A new version of Mageia distribution has been released"
msgstr ""

#: ../mgaapplet:123
#, c-format
msgid "Network is down. Please configure your network"
msgstr "Мрежата не работи. Ве молиме конфигурирајте ја вашата мрежа"

#: ../mgaapplet:129
#, c-format
msgid "Service is not activated. Please click on \"Online Website\""
msgstr "Сервисот не е вклучен. Ве молиме притиснете на \"Онлајн Веб сајт\""

#: ../mgaapplet:134 ../mgaapplet:140
#, fuzzy, c-format
msgid "urpmi database locked"
msgstr "базата на податоци на urpmi е заклучена"

#: ../mgaapplet:145
#, c-format
msgid "Release not supported (too old release, or development release)"
msgstr ""
"Верзијата не е подржана (премногу стара верзија или верзија во развоја фаза)"

#: ../mgaapplet:150
#, c-format
msgid ""
"No medium found. You must add some media through 'Software Media Manager'."
msgstr ""

#: ../mgaapplet:155
#, fuzzy, c-format
msgid ""
"You already have at least one update medium configured, but\n"
"all of them are currently disabled. You should run the Software\n"
"Media Manager to enable at least one (check it in the \"%s\"\n"
"column).\n"
"\n"
"Then, restart \"%s\"."
msgstr ""
"Веќе имате конфигурирано барем еден медиум за ажурирање,\n"
"но сите такви се моментално оневозможени. Би требало да го\n"
"вклучите Менаџерот на софтверски медиуми и да овозможите барем еден\n"
"од таквите медиуми (штиклирајте во колоната Овозможено).\n"
"\n"
"Потоа, рестатувајте го %s."

#: ../mgaapplet:160
#, c-format
msgid "Enabled"
msgstr "Овозможено"

#: ../mgaapplet:166 ../mgaapplet:688
#, c-format
msgid "Install updates"
msgstr "Инсталирај надоградувања"

#: ../mgaapplet:167
#, c-format
msgid "Check Updates"
msgstr "Провери за ажурирање"

#: ../mgaapplet:168
#, c-format
msgid "Configure Network"
msgstr "Конфигурирај мрежа"

#: ../mgaapplet:169
#, c-format
msgid "Upgrade the system"
msgstr ""

#: ../mgaapplet:343
#, c-format
msgid "Received SIGHUP (probably an upgrade has finished), restarting applet."
msgstr ""

#: ../mgaapplet:350
#, c-format
msgid "Launching drakconnect\n"
msgstr "Вклучувам drakconnect\n"

#: ../mgaapplet:357 ../mgaapplet:433 ../mgaapplet:494
#, c-format
msgid "New version of Mageia distribution"
msgstr ""

#: ../mgaapplet:362
#, c-format
msgid "Browse"
msgstr ""

#: ../mgaapplet:366 ../mgaapplet-upgrade-helper:89
#: ../mgaapplet-upgrade-helper:137 ../mgaapplet-upgrade-helper:170
#: ../mgaapplet-upgrade-helper:176 ../mgaapplet-upgrade-helper:224
#: ../mgaapplet-upgrade-helper:283 ../mgaapplet_gui.pm:211
#, c-format
msgid "Error"
msgstr "Грешка"

#: ../mgaapplet:366
#, c-format
msgid "You must choose a directory owned by the super administrator!"
msgstr ""

#: ../mgaapplet:373
#, c-format
msgid "A new version of Mageia distribution has been released."
msgstr ""

#: ../mgaapplet:375 ../mgaapplet:445
#, c-format
msgid "More info about this new version"
msgstr ""

#: ../mgaapplet:377 ../mgaapplet:439
#, c-format
msgid "Do you want to upgrade to the '%s' distribution?"
msgstr ""

#: ../mgaapplet:379 ../mgaapplet:449
#, c-format
msgid "Do not ask me next time"
msgstr ""

#: ../mgaapplet:380
#, c-format
msgid "Download all packages at once"
msgstr ""

#: ../mgaapplet:381
#, c-format
msgid "(Warning: You will need quite a lot of free space)"
msgstr ""

#: ../mgaapplet:386
#, c-format
msgid "Where to download packages:"
msgstr ""

#: ../mgaapplet:389 ../mgaapplet:454 ../mgaapplet:520 ../mgaapplet_gui.pm:199
#, c-format
msgid "Next"
msgstr "Следно"

#: ../mgaapplet:389 ../mgaapplet:454 ../mgaapplet:520
#: ../mgaapplet-upgrade-helper:143 ../mgaapplet-upgrade-helper:159
#: ../mgaapplet_gui.pm:199
#, c-format
msgid "Cancel"
msgstr "Откажи"

#: ../mgaapplet:406
#, c-format
msgid ""
"Maintenance for this Mageia version has ended. No more updates will be "
"delivered for this system."
msgstr ""

#: ../mgaapplet:412
#, c-format
msgid "In order to keep your system secure, you can:"
msgstr ""

#: ../mgaapplet:418
#, c-format
msgid "Mageia"
msgstr "Mageia"

#: ../mgaapplet:419
#, c-format
msgid "You should upgrade to a newer version of the %s distribution."
msgstr ""

#: ../mgaapplet:428
#, c-format
msgid "Your distribution is no longer supported"
msgstr ""

#: ../mgaapplet:511
#, c-format
msgid ""
"This upgrade requires high bandwidth network connection (cable, xDSL, ...)  "
"and may take several hours to complete."
msgstr ""

#: ../mgaapplet:513
#, c-format
msgid "Estimated download data will be %s"
msgstr ""

#: ../mgaapplet:514
#, c-format
msgid "You should close all other running applications before continuing."
msgstr ""

#: ../mgaapplet:517
#, c-format
msgid ""
"You should put your laptop on AC and favor ethernet connection over wifi, if "
"available."
msgstr ""

#: ../mgaapplet:551
#, c-format
msgid "Launching MageiaUpdate\n"
msgstr "Вклучувам MageiaUpdate\n"

#: ../mgaapplet:569
#, c-format
msgid "Computing new updates...\n"
msgstr "Ги пресметувам новите ажурирања...\n"

#: ../mgaapplet:607
#, c-format
msgid "Checking Network: seems disabled\n"
msgstr "Проверувам мрежа: изгледа е оневозможена\n"

#: ../mgaapplet:634
#, c-format
msgid "Mageia Online %s"
msgstr "Mageia Online %s"

#: ../mgaapplet:635 ../mgaapplet:636
#, c-format
msgid "Copyright (C) %s by %s"
msgstr "Авторски права (C) %s од „%s“"

#: ../mgaapplet:639
#, c-format
msgid "Mageia Online gives access to Mageia web services."
msgstr "„Mageia Online“ дава пристап до веб сервисите на „Mageia“."

#: ../mgaapplet:641
#, c-format
msgid "Online WebSite"
msgstr "Онлајн Веб сајт"

#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#: ../mgaapplet:645
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr ""

#: ../mgaapplet:674
#, c-format
msgid "Warning"
msgstr "Внимание"

#: ../mgaapplet:677 ../mgaapplet:682 ../mgaapplet_gui.pm:231
#, c-format
msgid "More Information"
msgstr ""

#: ../mgaapplet:690
#, c-format
msgid "Add media"
msgstr ""

#: ../mgaapplet:708
#, c-format
msgid "About..."
msgstr "За..."

#: ../mgaapplet:710 ../mgaapplet-config:66
#, fuzzy, c-format
msgid "Updates Configuration"
msgstr "Читам конфигурација\n"

#: ../mgaapplet:712
#, c-format
msgid "Always launch on startup"
msgstr "Секогаш вклучувај при подигнување"

#: ../mgaapplet:714
#, c-format
msgid "Quit"
msgstr "Напушти"

#: ../mgaapplet-config:43
#, c-format
msgid "Adding an additional package medium"
msgstr ""

#: ../mgaapplet-config:67
#, c-format
msgid "Here you can configure the updates applet"
msgstr ""

#: ../mgaapplet-config:69
#, c-format
msgid "Update frequency (hours)"
msgstr ""

#: ../mgaapplet-config:77
#, c-format
msgid "First check delay (minutes)"
msgstr ""

#: ../mgaapplet-config:85
#, c-format
msgid "Check for newer \"%s\" releases"
msgstr ""

#: ../mgaapplet-upgrade-helper:86
#, c-format
msgid ""
"Your system does not have enough space left in %s for upgrade (%dMB < %dMB)"
msgstr ""

#: ../mgaapplet-upgrade-helper:141 ../mgaapplet-upgrade-helper:225
#: ../mgaapplet-upgrade-helper:284
#, c-format
msgid "Installation failed"
msgstr "Неуспешна инсталација"

#: ../mgaapplet-upgrade-helper:142
#, c-format
msgid "Installation logs can be found in '%s'"
msgstr ""

#: ../mgaapplet-upgrade-helper:143
#, c-format
msgid "Retry"
msgstr ""

#: ../mgaapplet-upgrade-helper:152
#, c-format
msgid "Congratulations"
msgstr "Честитки"

#: ../mgaapplet-upgrade-helper:156
#, c-format
msgid "Upgrade to Mageia %s release was successful."
msgstr ""

#: ../mgaapplet-upgrade-helper:158
#, c-format
msgid "You must restart your system."
msgstr ""

#: ../mgaapplet-upgrade-helper:159
#, c-format
msgid "Reboot"
msgstr "Рестартирај"

#: ../mgaapplet-upgrade-helper:170
#, c-format
msgid "Unable to download distro list"
msgstr ""

#: ../mgaapplet-upgrade-helper:176
#, c-format
msgid "Distribution version %s was not found in the update list"
msgstr ""

#: ../mgaapplet-upgrade-helper:185
#, c-format
msgid "Preparation Required"
msgstr ""

#: ../mgaapplet-upgrade-helper:185
#, c-format
msgid ""
"In order to upgrade, your current installation needs to be prepared.\n"
"\n"
"Do you wish to do this preparation now?"
msgstr ""

#: ../mgaapplet-upgrade-helper:196
#, c-format
msgid ""
"Further action is required before you can continue.\n"
"\n"
"Please see %s for more information."
msgstr ""

#: ../mgaapplet-upgrade-helper:197
#, c-format
msgid "Next Steps"
msgstr ""

#: ../mgaapplet-upgrade-helper:227
#, c-format
msgid ""
"Packages database is locked. Please close other applications\n"
"working with packages database (do you have another media\n"
"manager on another desktop, or are you currently installing\n"
"packages as well?)."
msgstr ""
"Базата на пакети е заклучена. Затворете ги другите апликации\n"
"што работат со неа (дали имате друг менаџер на медиуми на некој\n"
"друг десктоп, или пак моментално инсталирате некои пакети?)."

#: ../mgaapplet-upgrade-helper:285
#, c-format
msgid "Failure when adding medium"
msgstr "Неуспех при додавање медиум"

#: ../mgaapplet.pm:18
#, c-format
msgid "Error updating media"
msgstr ""

#: ../mgaapplet_gui.pm:180
#, c-format
msgid "More information on your user account"
msgstr ""

#: ../mgaapplet_gui.pm:187
#, c-format
msgid "Your email"
msgstr ""

#: ../mgaapplet_gui.pm:188
#, fuzzy, c-format
msgid "Your password"
msgstr "Погрешна лозинка"

#: ../mgaapplet_gui.pm:195
#, fuzzy, c-format
msgid "Forgotten password"
msgstr "Погрешна лозинка"

#: ../mgaapplet_gui.pm:212
#, c-format
msgid "Password and email cannot be empty."
msgstr ""

#: ../mgaapplet_gui.pm:234
#, c-format
msgid "Close"
msgstr "Затвори"

#: ../mgaonline.pm:145
#, fuzzy, c-format
msgid "Mageia Flash"
msgstr "Mageia Online %s"

#: ../mgaonline.pm:146 ../mgaonline.pm:160
#, fuzzy, c-format
msgid "Mageia Free"
msgstr "Mageia Online %s"

#: ../mgaonline.pm:147
#, fuzzy, c-format
msgid "Mageia Mini"
msgstr "Mageia Online %s"

#: ../mgaonline.pm:148
#, fuzzy, c-format
msgid "Mageia One"
msgstr "Mageia Online %s"

#: ../mgaonline.pm:161
#, c-format
msgid "The 100%% Open Source distribution freely available."
msgstr ""

#: ../mgaonline.pm:175
#, c-format
msgid "Distribution Upgrade"
msgstr ""

#: ../mgaupdate:60
#, c-format
msgid ""
"mgaupdate version %s\n"
"%s\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"mgaupdate верзија %s\n"
"%s\n"
"Ова е бесплатен софтвер и може да се редистрибуира под условите на GNU GPL.\n"
"\n"
"употреба:\n"

#: ../mgaupdate:66
#, c-format
msgid "Copyright (C) %s %s"
msgstr "Авторски права (C) %s од „%s“"

#: ../mgaupdate:66
#, c-format
msgid "  --help\t\t- print this help message.\n"
msgstr "  --help\t\t- ја печати оваа помошна порака.\n"

#: ../mgaupdate:67
#, c-format
msgid "  --auto\t\t- Mageia Update launched automatically.\n"
msgstr "  --auto\t\t- Автоматско вклучување на Mageia Update.\n"

#: ../mgaupdate:68
#, c-format
msgid "  --mnf\t\t\t- launch mnf specific scripts.\n"
msgstr "  --mnf\t\t\t- вклучува одредени mnf скрипти.\n"

#: ../mgaupdate:69
#, c-format
msgid "  --noX\t\t\t- text mode version of Mageia Update.\n"
msgstr "  --noX\t\t\t- верзија на Mageia Update во текстуален режим.\n"

#: ../mgaupdate:70
#, c-format
msgid "  --debug\t\t\t- log what is done\n"
msgstr "  --debug\t\t\t- запишува што се случува\n"

#: ../mgaupdate:100
#, c-format
msgid "Unable to update packages from update_source medium.\n"
msgstr "Не можам да ги ажурирам пакетите од медиумот update_source.\n"

#: ../polkit/org.mageia.mgaapplet-config.policy.in.h:1
#, fuzzy
msgid "Run Mageia Update Applet Configuration"
msgstr "Читам конфигурација\n"

#: ../polkit/org.mageia.mgaapplet-config.policy.in.h:2
msgid "Authentication is required to run Mageia Update Applet Configuration"
msgstr ""

#: ../polkit/org.mageia.mgaapplet-upgrade-helper.policy.in.h:1
msgid "Run Mageia Upgrade Helper"
msgstr ""

#: ../polkit/org.mageia.mgaapplet-upgrade-helper.policy.in.h:2
msgid "Authentication is required to run Mageia Upgrade Helper"
msgstr ""

#: ../polkit/org.mageia.mgaupdate.policy.in.h:1
#, fuzzy
msgid "Run Mageia Updater"
msgstr "Вклучувам MageiaUpdate\n"

#: ../polkit/org.mageia.mgaupdate.policy.in.h:2
msgid "Authentication is required to run Mageia Updater"
msgstr ""

#: ../polkit/org.mageia.urpmi.update.policy.in.h:1
#, fuzzy
msgid "Run Mageia Package Media Updater"
msgstr "Вклучувам MageiaUpdate\n"

#: ../polkit/org.mageia.urpmi.update.policy.in.h:2
msgid "Authentication is required to run Mageia Package Media Updater"
msgstr ""

#~ msgid "System is up-to-date\n"
#~ msgstr "Системот е ажуриран\n"

#, fuzzy
#~ msgid ""
#~ "mgaupdate version %s\n"
#~ "Copyright (C) %s Mandriva.\n"
#~ "Copyright (C) %s Mageia.\n"
#~ "This is free software and may be redistributed under the terms of the GNU "
#~ "GPL.\n"
#~ "\n"
#~ "usage:\n"
#~ msgstr ""
#~ "mdkupdate верзија %s\n"
#~ "Авторски права (C) %s Mageia.\n"
#~ "Ова е бесплатен софтвер и може да се редистрибуира под условите на GNU "
#~ "GPL.\n"
#~ "\n"
#~ "употреба:\n"

#, fuzzy
#~ msgid "Online subscription"
#~ msgstr "Опис на машината:"

#~ msgid "An error occurred"
#~ msgstr "Се случи грешка"

#, fuzzy
#~ msgid "An error occurred while adding medium"
#~ msgstr "Неуспех при додавање медиум"

#~ msgid "Ok"
#~ msgstr "Во ред"

#, fuzzy
#~ msgid "Mageia Features"
#~ msgstr "Mageia Online %s"

#, fuzzy
#~ msgid "Mageia PowerPack"
#~ msgstr "„Mageia Online“"

#, fuzzy
#~ msgid "Mageia Linux"
#~ msgstr "Mageia Online %s"

#, fuzzy
#~ msgid "Mandiva Free"
#~ msgstr "Mageia Online %s"

#, fuzzy
#~ msgid "Get Powerpack subscription!"
#~ msgstr "Опис на машината:"

#~ msgid "Yes"
#~ msgstr "Да"

#~ msgid "No"
#~ msgstr "Не"

#~ msgid "Mageia Online seems to be reinstalled, reloading applet ...."
#~ msgstr ""
#~ "Изгледа дека Mageia Online е повторно инсталиран, го превчитувам "
#~ "аплетот ...."

#~ msgid "Checking... Updates are available\n"
#~ msgstr "Проверувам... Пакетите за ажурирање се достапни\n"

#, fuzzy
#~ msgid "Failed to open urpmi database"
#~ msgstr "не можам да отворам rpmdb"

#~ msgid "Connecting to"
#~ msgstr "Се поврзувам со"

#~ msgid "Mageia Linux Updates Applet"
#~ msgstr "Аплет за ажурирање на Mageia Linux"

#~ msgid "Security error"
#~ msgstr "Безбедносна грешка"

#~ msgid "Generic error (machine already registered)"
#~ msgstr "Општа грешка (машината е веќе регистрирана)"

#~ msgid "Database error"
#~ msgstr "Грешка на базата на податоци"

#~ msgid ""
#~ "Server Database failed\n"
#~ "Please Try again Later"
#~ msgstr ""
#~ "Серверот за бази на податоци е недостапен\n"
#~ "Ве молиме обидете се подоцна"

#~ msgid "Registration error"
#~ msgstr "Грешка при регистрација"

#~ msgid "Some parameters are missing"
#~ msgstr "Недостасуваат некои параметри"

#~ msgid "Password error"
#~ msgstr "Грешка во лозинката"

#~ msgid "Login error"
#~ msgstr "Грешка при најавување"

#~ msgid ""
#~ "The email you provided is already in use\n"
#~ "Please enter another one\n"
#~ msgstr ""
#~ "Е-поштата која ја внесовте е веќе во употреба\n"
#~ "Ве молиме внесете друга\n"

#~ msgid "The email you provided is invalid or forbidden"
#~ msgstr "Е-поштата која ја внесовте е невалидна или забранета"

#~ msgid ""
#~ "Email address box is empty\n"
#~ "Please provide one"
#~ msgstr ""
#~ "Сандачето на е-поштата е празно\n"
#~ "Ве молиме внесете едно"

#~ msgid "Restriction Error"
#~ msgstr "Грешка при огранучување"

#~ msgid "Database access forbidden"
#~ msgstr "Пристапот кон базата на податоци е забранет"

#~ msgid "Service error"
#~ msgstr "Грешка во сервисот"

#~ msgid ""
#~ "Mageia web services are currently unavailable\n"
#~ "Please Try again Later"
#~ msgstr ""
#~ "Веб сервисите на Mageia тековно се недостапни\n"
#~ "Ве молиме обидете се подоцна"

#~ msgid "Password mismatch"
#~ msgstr "Лозинките не се совпаѓаат"

#~ msgid ""
#~ "Mageia web services are under maintenance\n"
#~ "Please Try again Later"
#~ msgstr ""
#~ "Веб сервисите на Mageia се сервисираат\n"
#~ "Ве молиме обидете се подоцна"

#~ msgid "User Forbidden"
#~ msgstr "Корисникот е забранет"

#~ msgid "User account forbidden by Mageia web services"
#~ msgstr "Корисничката сметка е забранета од веб сервисите на Mageia"

#~ msgid "Connection error"
#~ msgstr "Грешка при поврзување"

#~ msgid "Mageia web services not reachable"
#~ msgstr "Веб сервисите на Mageia се недостапни"

#~ msgid ""
#~ "  --bundle file.bundle\t- parse and install package from .bundle metainfo "
#~ "file.\n"
#~ msgstr ""
#~ "  --bundle datoteka.bundle\t- анализира и инсталира пакет од мета "
#~ "информациите на „.bundle“ датотека.\n"

#~ msgid ""
#~ "You first need to install the system on your harddrive with the 'Live "
#~ "Install' wizard."
#~ msgstr ""
#~ "Најпрво треба да го инсталирате системот на вашиот хард диск преку "
#~ "волшебникот „Live Install“."

#~ msgid "Please wait"
#~ msgstr "Ве молиме, почекајте"

#~ msgid "Preparing..."
#~ msgstr "Се подготвувам..."

#~ msgid ""
#~ "Failed to authenticate to the bundle server:\n"
#~ "\n"
#~ "%s"
#~ msgstr ""
#~ "Неуспешно потврдување на серверот за пакет со апликации:\n"
#~ "\n"
#~ "%s"

#~ msgid ""
#~ "The version of the Mageia Online client is too old.\n"
#~ "\n"
#~ "You need to update to a newer version. You can get a new one from http://"
#~ "start.mandriva.com"
#~ msgstr ""
#~ "Верзијата на клиентот „Mageia Online“ е премногу стара.\n"
#~ "\n"
#~ "Треба да го надградите со понова верзија. Новата верзија можете да ја "
#~ "преземете од http://start.mandriva.com"

#~ msgid "This bundle is not well formated. Aborting."
#~ msgstr "Овој пакет со апликации не е добро форматиран. Прекинувам."

#~ msgid "Installing packages ...\n"
#~ msgstr "Инсталирање на пакетите...\n"

#~ msgid "New bundles are available for your system"
#~ msgstr "Достапен е нов пакет со апликации за вашиот систем"

#~ msgid "Service is not configured. Please click on \"Configure the service\""
#~ msgstr ""
#~ "Сервисот не е конфигуриран. Ве молиме притиснете на \"конфигурај го "
#~ "сервисот\""

#~ msgid "Configure the service"
#~ msgstr "Конфигурирај го сервисот"

#~ msgid "Check updates"
#~ msgstr "Провери за ажурирање"

#~ msgid "Configure Now!"
#~ msgstr "Конфигурирај Веднаш!"

#~ msgid "Actions"
#~ msgstr "Акции"

#~ msgid "Configure"
#~ msgstr "Конфигурирај"

#~ msgid "See logs"
#~ msgstr "Види логови"

#~ msgid "Status"
#~ msgstr "Статус"

#~ msgid "Network Connection: "
#~ msgstr "Мрежна конекција: "

#~ msgid "Up"
#~ msgstr "Горе"

#~ msgid "Down"
#~ msgstr "Долу"

#~ msgid "Last check: "
#~ msgstr "Последна проверка: "

#~ msgid "Machine name:"
#~ msgstr "Име на машината:"

#~ msgid "Updates: "
#~ msgstr "Ажурирања: "

#~ msgid "Development release not supported by service"
#~ msgstr "Верзија во развојна фаза, не е подржана од сервисот"

#~ msgid "Too old release not supported by service"
#~ msgstr "Премногу стара верзија, не е подржана од сервисот"

#~ msgid "Unknown state"
#~ msgstr "Непозната држава"

#~ msgid "Online services disabled. Contact Mageia Online site\n"
#~ msgstr ""
#~ "Онлајн сервисите се оневозможени. Контактирајте со сајтот Mageia Online\n"

#~ msgid "Wrong Password.\n"
#~ msgstr "Погрешна лозинка.\n"

#~ msgid "Wrong Action or host or login.\n"
#~ msgstr "Погрешна акција или компјутер или логирање.\n"

#~ msgid ""
#~ "Something is wrong with your network settings (check your route, firewall "
#~ "or proxy settings)\n"
#~ msgstr ""
#~ "Нешто не е во ред со вашите мрежни подесувања (проверете го вашиот route, "
#~ "firewall или прокси подесувањата)\n"

#~ msgid ""
#~ "Problem occured while connecting to the server, please contact the "
#~ "support team"
#~ msgstr ""
#~ "Се појави проблем при поврзување со серверот. Ве молиме контактирајте со "
#~ "тимот за поддршка"

#~ msgid "Response from Mageia Online server\n"
#~ msgstr "Одговор од серверот на Mageia Online\n"

#~ msgid "No check"
#~ msgstr "Без проверка"

#~ msgid "Checking config file: Not present\n"
#~ msgstr "Проверувам конфигурациона датотека: Не е достапна\n"

#~ msgid "Logs"
#~ msgstr "Логови"

#~ msgid "Clear"
#~ msgstr "Исчисти"

#~ msgid "  --box=\t\t\t- hostname.\n"
#~ msgstr "  --box=\t\t\t- имеНаХостот.\n"

#~ msgid "  --country\t\t\t- name of country of the user. \n"
#~ msgstr "  --country\t\t\t- име на државата на корисникот. \n"

#~ msgid "  --interactive\t\t- use the interactive mode.\n"
#~ msgstr "  --interactive\t\t- користи интерактивен режим.\n"

#~ msgid "  --nointeractive\t- use the non-interactive mode.\n"
#~ msgstr "  --nointeractive\t- користи не-интерактивен режим.\n"

#~ msgid "  --login=\t\t     - login name of the user.\n"
#~ msgstr "  --login=\t\t     - име за најавување на корисникот.\n"

#~ msgid "  --pass=\t\t\t- password  of the user.\n"
#~ msgstr "  --pass=\t\t\t- лозинка на корисникот.\n"

#~ msgid "I already have an account"
#~ msgstr "Веќе имам сметка"

#~ msgid "I want to subscribe"
#~ msgstr "Сакам да се зачленам"

#~ msgid "Mr."
#~ msgstr "г-дин"

#~ msgid "Mrs."
#~ msgstr "Г-ѓа"

#~ msgid "Ms."
#~ msgstr "Г-ца"

#~ msgid ""
#~ "This assistant will help you to upload your configuration\n"
#~ "(packages, hardware configuration) to a centralized database in\n"
#~ "order to keep you informed about security updates and useful upgrades.\n"
#~ msgstr ""
#~ "Овој асистент ќе ви помогне да ја пратите вашата конфигурација\n"
#~ "(пакети, хардверска конфигурација) во централизирана база на податоци\n"
#~ "за да ве известува за сигурносни ажурирања и корисни надоградувања.\n"

#~ msgid "Account creation or authentication"
#~ msgstr "Создавање на сметка или автентикација"

#~ msgid "Enter your Mageia Online login, password and machine name:"
#~ msgstr "Внесете го вашиот Mageia Online логин, лозинка и име на машината:"

#~ msgid "Email address:"
#~ msgstr "Адреса на е-пошта:"

#~ msgid "Country"
#~ msgstr "Држава"

#~ msgid "Password:"
#~ msgstr "Лозинка:"

#~ msgid "(Ex: My Home Office's Computer)"
#~ msgstr "(Пр: Компјутер за мојата домашна канцеларија)"

#~ msgid "Machine name must be 1 to 40 alphanumerical characters"
#~ msgstr "Името на машината море да има од 1-40 алфанумерички карактери"

#~ msgid "Connecting to Mageia Online website..."
#~ msgstr "Се поврзувам на веб страницата Mageia Online..."

#~ msgid ""
#~ "In order to benefit from Mageia Online services,\n"
#~ "we are about to upload your configuration.\n"
#~ "\n"
#~ "The Wizard will now send the following information to Mageia:\n"
#~ "\n"
#~ "1) the list of packages you have installed on your system,\n"
#~ "\n"
#~ "2) your hardware configuration.\n"
#~ "\n"
#~ "If you feel uncomfortable by that idea, or do not want to benefit from "
#~ "this service,\n"
#~ "please press 'Cancel'. By pressing 'Next', you allow us to keep you "
#~ "informed\n"
#~ "about security updates and useful upgrades via personalized email "
#~ "alerts.\n"
#~ "Furthermore, you benefit from discounted paid support services on\n"
#~ "www.mandrivaexpert.com."
#~ msgstr ""
#~ "За да придобивате од сервисите на Mageia Online,\n"
#~ "сега ќе ја пратиме вашата конфигурација.\n"
#~ "\n"
#~ "Волшебникот сега ќе ги испрати следниве информации на Mageia:\n"
#~ "\n"
#~ "1) листа на пакетите кои се инсталирани на вашиот систем,\n"
#~ "\n"
#~ "2) вашата хардверска конфигурација.\n"
#~ "\n"
#~ "Ако се чествувате неудобно од оваа идеја, или не сакате да придобиете од "
#~ "овој сервис,\n"
#~ "ве молиме притиснете 'Откажи'. Со притискање на 'Следно', ни дозволувате "
#~ "постојано да ве известуваме\n"
#~ "за сигурносни ажурирања и корисни надоградувања преку персонализирани "
#~ "email пораки.\n"
#~ "Дури и придобивате од сервисите за подршка со намалена наплата на\n"
#~ "www.mandrivaexpert.com."

#~ msgid "Connection problem"
#~ msgstr "Проблем со конекцијата"

#~ msgid "Problem occurs when uploading files, please try again"
#~ msgstr "Проблем при испраќање на датотеките, ве молиме обидете се повторно"

#~ msgid "Create a Mageia Online Account"
#~ msgstr "Создади Mageia Online сметка"

#~ msgid "Greeting:"
#~ msgstr "Поздрав:"

#~ msgid "First name:"
#~ msgstr "Име:"

#~ msgid "Last name:"
#~ msgstr "Презиме:"

#~ msgid "Confirm Password:"
#~ msgstr "Потврди ја лозинката:"

#~ msgid ""
#~ "The passwords do not match\n"
#~ " Please try again\n"
#~ msgstr ""
#~ "Лозинките не се совпаѓаат\n"
#~ " Ве молиме обидете се повторно\n"

#~ msgid "Please fill in each field"
#~ msgstr "Ве молиме пополнете ги сите полиња"

#~ msgid "Not a valid mail address!\n"
#~ msgstr "Невалидна email адреса!\n"

#~ msgid "Creating account failed!"
#~ msgstr "Неуспешно создавање на сметка!"

#~ msgid ""
#~ "Mageia Online Account successfuly created.\n"
#~ "Please click \"Next\" to authenticate and upload your configuration\n"
#~ msgstr ""
#~ "„Mageia Online“ сметката е успешно креирана.\n"
#~ "Ве молиме притиснете „Следно“ за автентикација и испраќање на вашата "
#~ "конфигурација\n"

#~ msgid "Your upload was successful!"
#~ msgstr "Вашето испраќање е успешно!"

#~ msgid ""
#~ "From now you will receive on security and updates \n"
#~ "announcements thanks to Mageia Online."
#~ msgstr ""
#~ "Од сега па понатаму ќе добивате известувања за \n"
#~ "сигурност и ажурирања, благодарение на „Mageia Online“."

#~ msgid ""
#~ "Mageia Online offers you the ability to automate the updates.\n"
#~ "A program will run regulary in your system waiting for new updates\n"
#~ msgstr ""
#~ "„Mageia Online“ ви ја нуди способноста за автоматско ажурирање.\n"
#~ "Програмата ќе работи регуларно на вашиот систем чекајќи за нови "
#~ "ажирирања\n"

#~ msgid "Your Mageia Online account has been successfuly configured\n"
#~ msgstr "Вашата „Mageia Online“ сметка успешно е конфигуирана\n"

#~ msgid "Configuration uploaded successfuly"
#~ msgstr "Конфигурацијата е успешно испратена"

#~ msgid "Problem uploading configuration"
#~ msgstr "Проблем при праќање на конфигурацијата"

#~ msgid ""
#~ "Cannot connect to Mageia Online website: wrong login/password or router/"
#~ "firewall bad settings"
#~ msgstr ""
#~ "Не можам да се поврзам на веб страницата на „Mageia Online“: погрешна "
#~ "најава/лозинка или лоши поставувања на рутерот/огнениот ѕид"

#~ msgid "  --applet\t\t- launch Mageia Update.\n"
#~ msgstr "  --applet\t\t- Вклучување на Mageia Update.\n"

#~ msgid "Cannot get list of updates: %s"
#~ msgstr "Не може да се достави листата на надградби: %s"

#~ msgid "Choose which packages should be installed and Press Ok"
#~ msgstr "Изберете кои пакети да се инсталираат и притиснете Во ред"